From 5259a4d65d8676772ee5da1caf3794d4ac39ad8b Mon Sep 17 00:00:00 2001 From: Danilo Burbano <37355249+danilojsl@users.noreply.github.com> Date: Thu, 6 Apr 2023 12:56:54 -0500 Subject: [PATCH 01/26] SPARKNLP-782 Removes deprecated parameter enablePatternRegex (#13664) --- python/sparknlp/annotator/er/entity_ruler.py | 23 +------------------ .../annotators/er/EntityRulerApproach.scala | 22 ++---------------- .../nlp/annotators/er/EntityRulerModel.scala | 17 ++++---------- .../com/johnsnowlabs/storage/Database.scala | 4 ---- 4 files changed, 8 insertions(+), 58 deletions(-) diff --git a/python/sparknlp/annotator/er/entity_ruler.py b/python/sparknlp/annotator/er/entity_ruler.py index f5e57efac327..d470dec59ab2 100755 --- a/python/sparknlp/annotator/er/entity_ruler.py +++ b/python/sparknlp/annotator/er/entity_ruler.py @@ -27,9 +27,6 @@ class EntityRulerApproach(AnnotatorApproach, HasStorage): to be set as the "format" field in the ``option`` parameter map and depending on the file type, additional parameters might need to be set. - To enable regex extraction, ``setEnablePatternRegex(True)`` needs to be - called. - If the file is in a JSON format, then the rule definitions need to be given in a list with the fields "id", "label" and "patterns":: @@ -71,8 +68,6 @@ class EntityRulerApproach(AnnotatorApproach, HasStorage): ---------- patternsResource Resource in JSON or CSV format to map entities to patterns - enablePatternRegex - Enables regex pattern match useStorage Whether to use RocksDB storage to serialize patterns @@ -106,8 +101,7 @@ class EntityRulerApproach(AnnotatorApproach, HasStorage): ... "patterns.csv", ... ReadAs.TEXT, ... {"format": "csv", "delimiter": "\\\\|"} - ... ) \\ - ... .setEnablePatternRegex(True) + ... ) >>> pipeline = Pipeline().setStages([ ... documentAssembler, ... tokenizer, @@ -135,11 +129,6 @@ class EntityRulerApproach(AnnotatorApproach, HasStorage): "Resource in JSON or CSV format to map entities to patterns", typeConverter=TypeConverters.identity) - enablePatternRegex = Param(Params._dummy(), - "enablePatternRegex", - "Enables regex pattern match", - typeConverter=TypeConverters.toBoolean) - useStorage = Param(Params._dummy(), "useStorage", "Whether to use RocksDB storage to serialize patterns", @@ -174,16 +163,6 @@ def setPatternsResource(self, path, read_as=ReadAs.TEXT, options={"format": "JSO """ return self._set(patternsResource=ExternalResource(path, read_as, options)) - def setEnablePatternRegex(self, value): - """Sets whether to enable regex pattern matching. - - Parameters - ---------- - value : bool - Whether to enable regex pattern matching. - """ - return self._set(enablePatternRegex=value) - def setUseStorage(self, value): """Sets whether to use RocksDB storage to serialize patterns. diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/er/EntityRulerApproach.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/er/EntityRulerApproach.scala index 1fe96c9d45cc..19efe6bdad5a 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/er/EntityRulerApproach.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/er/EntityRulerApproach.scala @@ -44,7 +44,6 @@ import scala.io.Source * `setPatternsResource`. The file format needs to be set as the "format" field in the `option` * parameter map and depending on the file type, additional parameters might need to be set. * - * To enable regex extraction, `setEnablePatternRegex(true)` needs to be called. * * If the file is in a JSON format, then the rule definitions need to be given in a list with the * fields "id", "label" and "patterns": @@ -115,7 +114,6 @@ import scala.io.Source * readAs = ReadAs.TEXT, * options = Map("format" -> "csv", "delimiter" -> "\\|") * ) - * .setEnablePatternRegex(true) * * val pipeline = new Pipeline().setStages(Array( * documentAssembler, @@ -170,19 +168,11 @@ class EntityRulerApproach(override val uid: String) * * @group param */ - val patternsResource = new ExternalResourceParam( + val patternsResource: ExternalResourceParam = new ExternalResourceParam( this, "patternsResource", "Resource in JSON or CSV format to map entities to patterns") - /** Enables regex pattern match (Default: `false`). - * - * @group param - */ - @deprecated("Enabling pattern regex now is define on each pattern", "Since 4.2.0") - val enablePatternRegex = - new BooleanParam(this, "enablePatternRegex", "Enables regex pattern match") - val sentenceMatch = new BooleanParam( this, "sentenceMatch", @@ -200,10 +190,6 @@ class EntityRulerApproach(override val uid: String) "alphabet", "Alphabet resource path to plain text file with all characters in a given alphabet") - /** @group setParam */ - @deprecated("Enabling pattern regex now is define on each pattern", "4.2.0") - def setEnablePatternRegex(value: Boolean): this.type = set(enablePatternRegex, value) - /** @group setParam */ def setPatternsResource( path: String, @@ -224,7 +210,6 @@ class EntityRulerApproach(override val uid: String) setDefault( storagePath -> ExternalResource("", ReadAs.TEXT, Map()), patternsResource -> null, - enablePatternRegex -> false, useStorage -> false, sentenceMatch -> false, caseSensitive -> true, @@ -568,10 +553,7 @@ class EntityRulerApproach(override val uid: String) } protected def createWriter(database: Name, connection: RocksDBConnection): StorageWriter[_] = { - database match { - case Database.ENTITY_PATTERNS => new PatternsReadWriter(connection) - case Database.ENTITY_REGEX_PATTERNS => new RegexPatternsReadWriter(connection) - } + new RegexPatternsReadWriter(connection) } override def indexStorage(fitDataset: Dataset[_], resource: Option[ExternalResource]): Unit = { diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/er/EntityRulerModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/er/EntityRulerModel.scala index fe0ddd7723d4..eab4a1dd52b9 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/er/EntityRulerModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/er/EntityRulerModel.scala @@ -20,7 +20,7 @@ import com.johnsnowlabs.nlp.AnnotatorType.{CHUNK, DOCUMENT, TOKEN} import com.johnsnowlabs.nlp.annotators.common._ import com.johnsnowlabs.nlp.serialization.StructFeature import com.johnsnowlabs.nlp.{Annotation, AnnotatorModel, HasPretrained, HasSimpleAnnotate} -import com.johnsnowlabs.storage.Database.{ENTITY_PATTERNS, ENTITY_REGEX_PATTERNS, Name} +import com.johnsnowlabs.storage.Database.{ENTITY_REGEX_PATTERNS, Name} import com.johnsnowlabs.storage._ import org.apache.spark.broadcast.Broadcast import org.apache.spark.ml.PipelineModel @@ -60,7 +60,7 @@ class EntityRulerModel(override val uid: String) private val logger: Logger = LoggerFactory.getLogger("Credentials") - @deprecated("Enabling pattern regex now is define on each pattern", "Since 4.2.0") + // Keeping this parameter for backward compatibility private[er] val enablePatternRegex = new BooleanParam(this, "enablePatternRegex", "Enables regex pattern match") @@ -83,10 +83,6 @@ class EntityRulerModel(override val uid: String) private[er] val ahoCorasickAutomaton: StructFeature[Option[AhoCorasickAutomaton]] = new StructFeature[Option[AhoCorasickAutomaton]](this, "AhoCorasickAutomaton") - @deprecated("Enabling pattern regex now is define on each pattern", "Since 4.2.0") - private[er] def setEnablePatternRegex(value: Boolean): this.type = - set(enablePatternRegex, value) - private[er] def setRegexEntities(value: Array[String]): this.type = set(regexEntities, value) private[er] def setEntityRulerFeatures(value: EntityRulerFeatures): this.type = @@ -118,7 +114,7 @@ class EntityRulerModel(override val uid: String) } } - setDefault(useStorage -> false, caseSensitive -> true) + setDefault(useStorage -> false, caseSensitive -> true, enablePatternRegex -> false) /** Annotator reference id. Used to identify elements in metadata or to refer to this annotator * type @@ -321,10 +317,7 @@ class EntityRulerModel(override val uid: String) protected val databases: Array[Name] = EntityRulerModel.databases protected def createReader(database: Name, connection: RocksDBConnection): StorageReader[_] = { - database match { - case Database.ENTITY_PATTERNS => new PatternsReader(connection) - case Database.ENTITY_REGEX_PATTERNS => new RegexPatternsReader(connection) - } + new RegexPatternsReader(connection) } } @@ -332,7 +325,7 @@ trait ReadablePretrainedEntityRuler extends StorageReadable[EntityRulerModel] with HasPretrained[EntityRulerModel] { - override val databases: Array[Name] = Array(ENTITY_PATTERNS, ENTITY_REGEX_PATTERNS) + override val databases: Array[Name] = Array(ENTITY_REGEX_PATTERNS) override val defaultModelName: Option[String] = None diff --git a/src/main/scala/com/johnsnowlabs/storage/Database.scala b/src/main/scala/com/johnsnowlabs/storage/Database.scala index 8a76fa8fa168..02d08fb81c99 100644 --- a/src/main/scala/com/johnsnowlabs/storage/Database.scala +++ b/src/main/scala/com/johnsnowlabs/storage/Database.scala @@ -36,10 +36,6 @@ object Database { val TMNODES: Name = new Name { override val name: String = "TMNODES" } - @deprecated - val ENTITY_PATTERNS: Name = new Name { - override val name: String = "ENTITY_PATTERNS" - } val ENTITY_REGEX_PATTERNS: Name = new Name { override val name: String = "ENTITY_REGEX_PATTERNS" } From 87127c621dec8b5485634d63e889a727b8ad2976 Mon Sep 17 00:00:00 2001 From: Devin Ha <33089471+DevinTDHa@users.noreply.github.com> Date: Thu, 6 Apr 2023 19:57:30 +0200 Subject: [PATCH 02/26] SPARKNLP-748: Custom Entity Name for Date2Chunk (#13680) - added parameter "entityName" to change metadata name --- python/sparknlp/annotator/date2_chunk.py | 26 +++++++-- python/test/annotator/date2_chunk_test.py | 3 +- .../nlp/annotators/Date2Chunk.scala | 19 +++++- .../johnsnowlabs/nlp/Date2ChunkTestSpec.scala | 58 ++++++++++++++++--- 4 files changed, 90 insertions(+), 16 deletions(-) diff --git a/python/sparknlp/annotator/date2_chunk.py b/python/sparknlp/annotator/date2_chunk.py index 3bbe15e5c546..39e63fa48adf 100755 --- a/python/sparknlp/annotator/date2_chunk.py +++ b/python/sparknlp/annotator/date2_chunk.py @@ -29,16 +29,17 @@ class Date2Chunk(AnnotatorModel): Parameters ---------- - None + entityName + Entity name for the metadata, by default ``"DATE"``. Examples -------- >>> from pyspark.ml import Pipeline -import sparknlp -from sparknlp.base import * -from sparknlp.annotator import * -documentAssembler = DocumentAssembler() \\ + >>> import sparknlp + >>> from sparknlp.base import * + >>> from sparknlp.annotator import * + >>> documentAssembler = DocumentAssembler() \\ ... .setInputCol("text") \\ ... .setOutputCol("document") >>> date = DateMatcher() \\ @@ -70,3 +71,18 @@ class Date2Chunk(AnnotatorModel): @keyword_only def __init__(self): super(Date2Chunk, self).__init__(classname="com.johnsnowlabs.nlp.annotators.Date2Chunk") + self._setDefault(entityName="DATE") + + entityName = Param(Params._dummy(), "entityName", "Entity name for the metadata", + TypeConverters.toString) + + def setEntityName(self, name): + """Sets Learning Rate, by default 0.001. + + Parameters + ---------- + v : float + Learning Rate + """ + self._set(entityName=name) + return self diff --git a/python/test/annotator/date2_chunk_test.py b/python/test/annotator/date2_chunk_test.py index de3715f456c8..4918a866945b 100644 --- a/python/test/annotator/date2_chunk_test.py +++ b/python/test/annotator/date2_chunk_test.py @@ -51,7 +51,8 @@ def runTest(self): date_to_chunk = Date2Chunk() \ .setInputCols(['date']) \ - .setOutputCol("date_chunk") + .setOutputCol("date_chunk") \ + .setEntityName("DATUM") pipeline = Pipeline(stages=[ document_assembler, diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/Date2Chunk.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/Date2Chunk.scala index 2641716e9f37..5d558a7a1495 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/Date2Chunk.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/Date2Chunk.scala @@ -18,12 +18,13 @@ package com.johnsnowlabs.nlp.annotators import com.johnsnowlabs.nlp.AnnotatorType._ import com.johnsnowlabs.nlp.{Annotation, AnnotatorModel, HasSimpleAnnotate} +import org.apache.spark.ml.param.Param import org.apache.spark.ml.util.{DefaultParamsReadable, Identifiable} /** Converts `DATE` type Annotations to `CHUNK` type. * * This can be useful if the following annotators after DateMatcher and MultiDateMatcher require - * `CHUNK` types. + * `CHUNK` types. The entity name in the metadata can be changed with `setEntityName`. * * ==Example== * {{{ @@ -104,6 +105,20 @@ class Date2Chunk(override val uid: String) def this() = this(Identifiable.randomUID("Date2Chunk")) + /** Entity name for metadata (Default: `DATE`) + * + * @group param + */ + val entityName = + new Param[String](this, "entityName", "Entity name for the metadata") + + /** Sets entity name for metadata (Default: `DATE`) + * + * @group setParam + */ + def setEntityName(name: String): this.type = set(this.entityName, name) + + setDefault(entityName -> "DATE") override def annotate(annotations: Seq[Annotation]): Seq[Annotation] = { annotations.map { date => Annotation( @@ -111,7 +126,7 @@ class Date2Chunk(override val uid: String) date.begin, date.end, date.result, - date.metadata ++ Map("entity" -> "DATE", "chunk" -> "0")) + date.metadata ++ Map("entity" -> $(entityName), "chunk" -> "0")) } } diff --git a/src/test/scala/com/johnsnowlabs/nlp/Date2ChunkTestSpec.scala b/src/test/scala/com/johnsnowlabs/nlp/Date2ChunkTestSpec.scala index 678164d29c46..204b9118d5f6 100644 --- a/src/test/scala/com/johnsnowlabs/nlp/Date2ChunkTestSpec.scala +++ b/src/test/scala/com/johnsnowlabs/nlp/Date2ChunkTestSpec.scala @@ -25,19 +25,15 @@ import org.scalatest.flatspec.AnyFlatSpec class Date2ChunkTestSpec extends AnyFlatSpec { - "Date2Chunk" should "correctly converts DATE to CHUNK type" taggedAs FastTest in { + behavior of "Date2Chunk" + + it should "correctly converts DATE to CHUNK type" taggedAs FastTest in { val data: Dataset[Row] = DataBuilder.multipleDataBuild( Array( """Omicron is a new variant of COVID-19, which the World Health Organization designated a variant of concern on Nov. 26, 2021/26/11.""", """Neighbouring Austria has already locked down its population this week for at until 2021/10/12, becoming the first to reimpose such restrictions.""")) - val dateChunkAnswer = Array( - Seq[Annotation]( - Annotation(AnnotatorType.CHUNK, 118, 121, "2021/01/01", Map("sentence" -> "0"))), - Seq[Annotation]( - Annotation(AnnotatorType.CHUNK, 83, 86, "2021/01/01", Map("sentence" -> "0")))) - val inputFormats = Array("yyyy", "yyyy/dd/MM", "MM/yyyy", "yyyy") val outputFormat = "yyyy/MM/dd" @@ -90,7 +86,53 @@ class Date2ChunkTestSpec extends AnyFlatSpec { .transform(data) .select("multi_date_chunk.metadata") .show(false) - } + it should "be able to accept different entity names" taggedAs FastTest in { + + val data: Dataset[Row] = DataBuilder.multipleDataBuild( + Array( + """Omicron is a new variant of COVID-19, which the World Health Organization designated a variant of concern on Nov. 26, 2021/26/11.""", + """Neighbouring Austria has already locked down its population this week for at until 2021/10/12, becoming the first to reimpose such restrictions.""")) + + val inputFormats = Array("yyyy", "yyyy/dd/MM", "MM/yyyy", "yyyy") + val outputFormat = "yyyy/MM/dd" + + val date = new DateMatcher() + .setInputCols("document") + .setOutputCol("date") + .setAnchorDateYear(1900) + .setInputFormats(inputFormats) + .setOutputFormat(outputFormat) + + val multiDate = new MultiDateMatcher() + .setInputCols("document") + .setOutputCol("multi_date") + .setAnchorDateYear(1900) + .setInputFormats(inputFormats) + .setOutputFormat(outputFormat) + + val entityName = "DATUM" + val date2Chunk = new Date2Chunk() + .setInputCols("date") + .setOutputCol("date_chunk") + .setEntityName(entityName) + + val multiDate2Chunk = new Date2Chunk() + .setInputCols("multi_date") + .setOutputCol("multi_date_chunk") + .setEntityName(entityName) + + val pipeline = new Pipeline().setStages(Array(date, multiDate, date2Chunk, multiDate2Chunk)) + + val result = pipeline.fit(data).transform(data) + + val collected = Annotation.collect(result, "date_chunk", "multi_date_chunk") + + collected.foreach { annotations => + annotations.foreach { annotation => + assert(annotation.metadata("entity") == entityName) + } + } + } } From dbad9f2c111fb9ce6e0ed20f1a1d739cd25b0c04 Mon Sep 17 00:00:00 2001 From: Danilo Burbano <37355249+danilojsl@users.noreply.github.com> Date: Thu, 6 Apr 2023 13:00:01 -0500 Subject: [PATCH 03/26] SPARKNLP-784 Fix loading WordEmbeddingsModel bug when cache_folder is from S3 (#13707) --- .../johnsnowlabs/client/aws/AWSGateway.scala | 44 ++++++++++++- .../nlp/embeddings/WordEmbeddingsModel.scala | 2 +- .../nlp/pretrained/ResourceDownloader.scala | 16 ++--- .../johnsnowlabs/storage/StorageHelper.scala | 62 ++++++++++++++----- .../johnsnowlabs/storage/StorageLocator.scala | 7 +-- 5 files changed, 101 insertions(+), 30 deletions(-) diff --git a/src/main/scala/com/johnsnowlabs/client/aws/AWSGateway.scala b/src/main/scala/com/johnsnowlabs/client/aws/AWSGateway.scala index 8554cf529721..a65b29ac2685 100644 --- a/src/main/scala/com/johnsnowlabs/client/aws/AWSGateway.scala +++ b/src/main/scala/com/johnsnowlabs/client/aws/AWSGateway.scala @@ -37,6 +37,7 @@ import org.slf4j.{Logger, LoggerFactory} import scala.jdk.CollectionConverters._ import java.io.File +import java.nio.file.Files import scala.util.control.NonFatal class AWSGateway( @@ -185,7 +186,9 @@ class AWSGateway( def downloadFilesFromDirectory( bucketName: String, keyPrefix: String, - directoryPath: File): Unit = { + directoryPath: File, + isIndex: Boolean = false): Unit = { + val transferManager = TransferManagerBuilder .standard() .withS3Client(client) @@ -201,6 +204,45 @@ class AWSGateway( "Amazon service error when downloading files from S3 directory: " + e.getMessage) } transferManager.shutdownNow() + + if (isIndex) { + // Recursively rename the downloaded files to the desired directory path + def renameFiles(directory: File, keySuffix: String): Unit = { + val downloadedFiles = directory.listFiles() + for (file <- downloadedFiles) { + if (file.isDirectory()) { + // If the file is a directory, recursively rename its contents + val subDirectory = new File(directory, file.getName()) + val subKeySuffix = file.getName() + renameFiles(subDirectory, subKeySuffix) + } else { + // Otherwise, rename the file to the desired local file path + val fileName = file.getName() + val newFilePath = + new File(directoryPath, fileName.stripPrefix(keyPrefix)).getPath() + file.renameTo(new File(newFilePath)) + } + } + } + + // Rename the downloaded files to the desired local file path + val keySuffix = keyPrefix.split("/").tail.mkString("/") + renameFiles(directoryPath, keySuffix) + + // Remove all old folders + def removeAllFolders(directoryPath: File): Unit = { + val files = directoryPath.listFiles() + for (file <- files) { + if (file.isDirectory()) { + removeAllFolders(file) + Files.deleteIfExists(file.toPath()) + } + } + } + + removeAllFolders(directoryPath) + } + } private def waitForCompletion(transfer: Transfer): Unit = { diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/WordEmbeddingsModel.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/WordEmbeddingsModel.scala index 68a10f7d01d9..23ec8ff9d215 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/WordEmbeddingsModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/WordEmbeddingsModel.scala @@ -229,7 +229,7 @@ class WordEmbeddingsModel(override val uid: String) WordpieceEmbeddingsSentence.pack(withEmbeddings) } - def retrieveEmbeddings(token: String): (Option[Array[Float]], Array[Float]) = { + private def retrieveEmbeddings(token: String): (Option[Array[Float]], Array[Float]) = { if ($(enableInMemoryStorage)) { val zeroArray = Array.fill[Float]($(dimension))(0f) var embeddings: Option[Array[Float]] = None diff --git a/src/main/scala/com/johnsnowlabs/nlp/pretrained/ResourceDownloader.scala b/src/main/scala/com/johnsnowlabs/nlp/pretrained/ResourceDownloader.scala index a54d679407d5..0a3a22bfb4b0 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/pretrained/ResourceDownloader.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/pretrained/ResourceDownloader.scala @@ -581,15 +581,17 @@ object ResourceDownloader { /** Downloads the provided S3 path to a local temporary directory and returns the location of * the folder. * - * @param path + * @param s3Path * S3 URL to the resource * @return * URI of the local path to the temporary folder of the resource */ - def downloadS3Directory(path: String): URI = { - - val (bucketName, keyPrefix) = ResourceHelper.parseS3URI(path) + def downloadS3Directory( + s3Path: String, + tempLocalPath: String = "", + isIndex: Boolean = false): URI = { + val (bucketName, keyPrefix) = ResourceHelper.parseS3URI(s3Path) val (accessKey, secretKey, sessionToken) = ConfigHelper.getHadoopS3Config val region = ConfigLoader.getConfigStringValue(ConfigHelper.awsExternalRegion) val privateS3Defined = @@ -605,10 +607,10 @@ object ResourceDownloader { new AWSGateway(credentialsType = "public") } - val tmpDirectory = SparkFiles.getRootDirectory() - awsGateway.downloadFilesFromDirectory(bucketName, keyPrefix, new File(tmpDirectory)) + val directory = if (tempLocalPath.isEmpty) SparkFiles.getRootDirectory() else tempLocalPath + awsGateway.downloadFilesFromDirectory(bucketName, keyPrefix, new File(directory), isIndex) + Paths.get(directory, keyPrefix).toUri - Paths.get(tmpDirectory, keyPrefix).toUri } } diff --git a/src/main/scala/com/johnsnowlabs/storage/StorageHelper.scala b/src/main/scala/com/johnsnowlabs/storage/StorageHelper.scala index 8d99738a6d43..4bc2ad9eb148 100644 --- a/src/main/scala/com/johnsnowlabs/storage/StorageHelper.scala +++ b/src/main/scala/com/johnsnowlabs/storage/StorageHelper.scala @@ -16,6 +16,7 @@ package com.johnsnowlabs.storage +import com.johnsnowlabs.nlp.pretrained.ResourceDownloader import org.apache.hadoop.fs.{FileSystem, FileUtil, Path} import org.apache.spark.sql.SparkSession import org.apache.spark.{SparkContext, SparkFiles} @@ -35,15 +36,14 @@ object StorageHelper { withinStorage: Boolean): RocksDBConnection = { val dbFolder = StorageHelper.resolveStorageName(database, storageRef) - val src = StorageLocator.getStorageSerializedPath( + val source = StorageLocator.getStorageSerializedPath( storageSourcePath.replaceAllLiterally("\\", "/"), dbFolder, withinStorage) val locator = StorageLocator(database, storageRef, spark) - sendToCluster( - src, + source, locator.clusterFilePath, locator.clusterFileName, locator.destinationScheme, @@ -83,40 +83,68 @@ object StorageHelper { destinationScheme: String, sparkContext: SparkContext): Unit = { destinationScheme match { - case "file" => - copyIndexToLocal( - source, - new Path(RocksDBConnection.getLocalPath(clusterFileName)), - sparkContext) + case "file" => { + val destination = new Path(RocksDBConnection.getLocalPath(clusterFileName)) + copyIndexToLocal(source, destination, sparkContext) + } case _ => copyIndexToCluster(source, clusterFilePath, sparkContext) } } - private def copyIndexToCluster(sourcePath: Path, dst: Path, spark: SparkContext): String = { + private def copyIndexToCluster( + sourcePath: Path, + dst: Path, + sparkContext: SparkContext): String = { if (!new File(SparkFiles.get(dst.getName)).exists()) { - val srcFS = sourcePath.getFileSystem(spark.hadoopConfiguration) - val dstFS = dst.getFileSystem(spark.hadoopConfiguration) + val srcFS = sourcePath.getFileSystem(sparkContext.hadoopConfiguration) + val dstFS = dst.getFileSystem(sparkContext.hadoopConfiguration) if (srcFS.getScheme == "file") { val src = sourcePath dstFS.copyFromLocalFile(false, true, src, dst) } else { - FileUtil.copy(srcFS, sourcePath, dstFS, dst, false, true, spark.hadoopConfiguration) + FileUtil.copy( + srcFS, + sourcePath, + dstFS, + dst, + false, + true, + sparkContext.hadoopConfiguration) } - spark.addFile(dst.toString, recursive = true) + sparkContext.addFile(dst.toString, recursive = true) } dst.toString } - private def copyIndexToLocal(source: Path, destination: Path, context: SparkContext): Unit = { + private def copyIndexToLocal( + source: Path, + destination: Path, + sparkContext: SparkContext): Unit = { /** if we don't do a copy, and just move, it will all fail when re-saving utilized storage * because of bad crc */ - val fs = source.getFileSystem(context.hadoopConfiguration) - if (!fs.exists(destination)) - fs.copyFromLocalFile(false, true, source, destination) + val fileSystemDestination = destination.getFileSystem(sparkContext.hadoopConfiguration) + val fileSystemSource = source.getFileSystem(sparkContext.hadoopConfiguration) + + if (fileSystemDestination.exists(destination)) { + return + } + + if (fileSystemSource.getScheme == "s3a" && fileSystemDestination.getScheme == "file") { + ResourceDownloader.downloadS3Directory( + source.toString, + destination.toString, + isIndex = true) + sparkContext.addFile(destination.toString, recursive = true) + return + } + + if (fileSystemDestination.getScheme != "s3a") { + fileSystemDestination.copyFromLocalFile(false, true, source, destination) + } } } diff --git a/src/main/scala/com/johnsnowlabs/storage/StorageLocator.scala b/src/main/scala/com/johnsnowlabs/storage/StorageLocator.scala index 1adbd0012cdc..e7dc43d5ff96 100644 --- a/src/main/scala/com/johnsnowlabs/storage/StorageLocator.scala +++ b/src/main/scala/com/johnsnowlabs/storage/StorageLocator.scala @@ -26,7 +26,7 @@ case class StorageLocator(database: String, storageRef: String, sparkSession: Sp private val clusterTmpLocation: String = { val tmpLocation = getTmpLocation - if (tmpLocation.startsWith("s3:/")) { + if (tmpLocation.matches("s3[a]?:/.*")) { tmpLocation } else { val tmpLocationPath = new Path(tmpLocation) @@ -41,15 +41,14 @@ case class StorageLocator(database: String, storageRef: String, sparkSession: Sp } val clusterFilePath: Path = { - if (!getTmpLocation.startsWith("s3:/")) { + if (!getTmpLocation.matches("s3[a]?:/.*")) { Path.mergePaths( new Path(fileSystem.getUri.toString + clusterTmpLocation), new Path("/" + clusterFileName)) } else new Path(clusterTmpLocation + "/" + clusterFileName) } - val destinationScheme: String = - if (getTmpLocation.startsWith("s3:/")) "s3" else fileSystem.getScheme + val destinationScheme: String = fileSystem.getScheme private def getTmpLocation: String = { ConfigLoader.getConfigStringValue(ConfigHelper.storageTmpDir) From bf4428d1bb507129a213897c3debe87740fa9b86 Mon Sep 17 00:00:00 2001 From: Devin Ha <33089471+DevinTDHa@users.noreply.github.com> Date: Thu, 6 Apr 2023 20:02:51 +0200 Subject: [PATCH 04/26] SPARKNLP-605: ConvNextForImageClassification (#13713) * SPARKNLP-605: ConvNextForImageClassification - Added ConvNextForImageClassification with new tests - Refactored image Preprocessor and added new config - Implemented filters with resample property for ImageResizeUtils.resizeBufferedImage (with minor performance gain) - Minor improvements for ViT and Swin * SPARKNLP-605: Docs * SPARKNLP-605: Lazy values for test --- docs/en/annotators.md | 5 +- .../ConvNextForImageClassification.md | 165 ++++++++ python/sparknlp/annotator/cv/__init__.py | 1 + .../cv/convnext_for_image_classification.py | 269 ++++++++++++ .../cv/swin_for_image_classification.py | 21 +- .../cv/vit_for_image_classification.py | 17 +- python/sparknlp/common/properties.py | 10 +- python/sparknlp/internal/__init__.py | 6 + python/test/README.md | 6 + .../convnext_for_image_classification_test.py | 105 +++++ .../cv/swin_for_image_classification_test.py | 19 +- .../cv/vit_for_image_classification_test.py | 20 +- .../ml/ai/ConvNextClassifier.scala | 68 ++++ .../johnsnowlabs/ml/ai/ViTClassifier.scala | 36 +- .../nlp/HasImageFeatureProperties.scala | 10 +- .../com/johnsnowlabs/nlp/annotator.scala | 14 +- .../cv/ConvNextForImageClassification.scala | 384 ++++++++++++++++++ .../cv/SwinForImageClassification.scala | 51 ++- .../cv/ViTForImageClassification.scala | 42 +- .../cv/feature_extractor/Preprocessor.scala | 129 ++++-- .../cv/util/transform/ImageResizeUtils.scala | 99 +++-- .../nlp/pretrained/ResourceDownloader.scala | 7 +- .../normalized_egyptian_cat.json | 2 - .../image_preprocessor/ox_cropped.png | Bin 0 -> 121340 bytes .../image_preprocessor/ox_small.JPEG | Bin 0 -> 14498 bytes .../preprocessor_config_convnext.json | 23 ++ ...nvNextForImageClassificationTestSpec.scala | 31 ++ .../cv/SwinForImageClassificationTest.scala | 7 +- .../cv/ViTImageClassificationTestSpec.scala | 62 +-- .../ImageUtilsTestSpec.scala | 129 +++--- .../com/johnsnowlabs/util/TestUtils.scala | 46 +++ 31 files changed, 1548 insertions(+), 236 deletions(-) create mode 100644 docs/en/transformer_entries/ConvNextForImageClassification.md create mode 100644 python/sparknlp/annotator/cv/convnext_for_image_classification.py create mode 100644 python/test/annotator/cv/convnext_for_image_classification_test.py create mode 100644 src/main/scala/com/johnsnowlabs/ml/ai/ConvNextClassifier.scala create mode 100644 src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassification.scala delete mode 100644 src/test/resources/image_preprocessor/normalized_egyptian_cat.json create mode 100644 src/test/resources/image_preprocessor/ox_cropped.png create mode 100644 src/test/resources/image_preprocessor/ox_small.JPEG create mode 100644 src/test/resources/image_preprocessor/preprocessor_config_convnext.json create mode 100644 src/test/scala/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassificationTestSpec.scala create mode 100644 src/test/scala/com/johnsnowlabs/util/TestUtils.scala diff --git a/docs/en/annotators.md b/docs/en/annotators.md index c1f55331a329..3f24ab1c5bb5 100644 --- a/docs/en/annotators.md +++ b/docs/en/annotators.md @@ -40,7 +40,6 @@ There are two types of Annotators: - `pretrained(name, language, extra_location)` -> by default, pre-trained will bring a default model, sometimes we offer more than one model, in this case, you may have to use name, language or extra location to download them. - ## Available Annotators {:.table-model-big} @@ -101,7 +100,8 @@ There are two types of Annotators: {% include templates/anno_table_entry.md path="" name="YakeKeywordExtraction" summary="Unsupervised, Corpus-Independent, Domain and Language-Independent and Single-Document keyword extraction."%} ## Available Transformers -Additionally, these transformers are available to generate embeddings. + +Additionally, these transformers are available. {:.table-model-big} |Transformer|Description|Version| @@ -118,6 +118,7 @@ Additionally, these transformers are available to generate embeddings. {% include templates/anno_table_entry.md path="./transformers" name="CamemBertEmbeddings" summary="CamemBert is based on Facebook’s RoBERTa model released in 2019."%} {% include templates/anno_table_entry.md path="./transformers" name="CamemBertForSequenceClassification" summary="amemBertForSequenceClassification can load CamemBERT Models with sequence classification/regression head on top (a linear layer on top of the pooled output) e.g. for multi-class document classification tasks."%} {% include templates/anno_table_entry.md path="./transformers" name="CamemBertForTokenClassification" summary="CamemBertForTokenClassification can load CamemBERT Models with a token classification head on top"%} +{% include templates/anno_table_entry.md path="./transformers" name="ConvNextForImageClassification" summary="ConvNextForImageClassification is an image classifier based on ConvNet models"%} {% include templates/anno_table_entry.md path="./transformers" name="DeBertaEmbeddings" summary="DeBERTa builds on RoBERTa with disentangled attention and enhanced mask decoder training with half of the data used in RoBERTa."%} {% include templates/anno_table_entry.md path="./transformers" name="DeBertaForQuestionAnswering" summary="DeBertaForQuestionAnswering can load DeBERTa Models with a span classification head on top for extractive question-answering tasks like SQuAD."%} {% include templates/anno_table_entry.md path="./transformers" name="DistilBertEmbeddings" summary="DistilBERT is a small, fast, cheap and light Transformer model trained by distilling BERT base."%} diff --git a/docs/en/transformer_entries/ConvNextForImageClassification.md b/docs/en/transformer_entries/ConvNextForImageClassification.md new file mode 100644 index 000000000000..302918971619 --- /dev/null +++ b/docs/en/transformer_entries/ConvNextForImageClassification.md @@ -0,0 +1,165 @@ +{%- capture title -%} +ConvNextForImageClassification +{%- endcapture -%} + +{%- capture description -%} +ConvNextForImageClassification is an image classifier based on ConvNet models. + +The ConvNeXT model was proposed in A ConvNet for the 2020s by Zhuang Liu, Hanzi Mao, Chao-Yuan +Wu, Christoph Feichtenhofer, Trevor Darrell, Saining Xie. ConvNeXT is a pure convolutional +model (ConvNet), inspired by the design of Vision Transformers, that claims to outperform +them. + +Pretrained models can be loaded with `pretrained` of the companion object: + +```scala +val imageClassifier = ConvNextForImageClassification.pretrained() + .setInputCols("image_assembler") + .setOutputCol("class") +``` + +The default model is `"image_classifier_convnext_tiny_224_local"`, if no name is provided. + +For available pretrained models please see the +[Models Hub](https://nlp.johnsnowlabs.com/models?task=Image+Classification). + +Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To +see which models are compatible and how to import them see +https://github.com/JohnSnowLabs/spark-nlp/discussions/5669 and to see more extended +examples, see +[ConvNextForImageClassificationTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassificationTestSpec.scala). + +**References:** + +[A ConvNet for the 2020s](https://arxiv.org/abs/2201.03545) + +**Paper Abstract:** + +*The "Roaring 20s" of visual recognition began with the introduction of Vision Transformers +(ViTs), which quickly superseded ConvNets as the state-of-the-art image classification model. +A vanilla ViT, on the other hand, faces difficulties when applied to general computer vision +tasks such as object detection and semantic segmentation. It is the hierarchical Transformers +(e.g., Swin Transformers) that reintroduced several ConvNet priors, making Transformers +practically viable as a generic vision backbone and demonstrating remarkable performance on a +wide variety of vision tasks. However, the effectiveness of such hybrid approaches is still +largely credited to the intrinsic superiority of Transformers, rather than the inherent +inductive biases of convolutions. In this work, we reexamine the design spaces and test the +limits of what a pure ConvNet can achieve. We gradually "modernize" a standard ResNet toward +the design of a vision Transformer, and discover several key components that contribute to the +performance difference along the way. The outcome of this exploration is a family of pure +ConvNet models dubbed ConvNeXt. Constructed entirely from standard ConvNet modules, ConvNeXts +compete favorably with Transformers in terms of accuracy and scalability, achieving 87.8% +ImageNet top-1 accuracy and outperforming Swin Transformers on COCO detection and ADE20K +segmentation, while maintaining the simplicity and efficiency of standard ConvNets.* +{%- endcapture -%} + +{%- capture input_anno -%} +IMAGE +{%- endcapture -%} + +{%- capture output_anno -%} +CATEGORY +{%- endcapture -%} + +{%- capture python_example -%} +import sparknlp +from sparknlp.base import * +from sparknlp.annotator import * +from pyspark.ml import Pipeline +imageDF = spark.read \ + .format("image") \ + .option("dropInvalid", value = True) \ + .load("src/test/resources/image/") +imageAssembler = ImageAssembler() \ + .setInputCol("image") \ + .setOutputCol("image_assembler") +imageClassifier = ConvNextForImageClassification \ + .pretrained() \ + .setInputCols(["image_assembler"]) \ + .setOutputCol("class") +pipeline = Pipeline().setStages([imageAssembler, imageClassifier]) +pipelineDF = pipeline.fit(imageDF).transform(imageDF) +pipelineDF \ + .selectExpr("reverse(split(image.origin, '/'))[0] as image_name", "class.result") \ + .show(truncate=False) ++-----------------+----------------------------------------------------------+ +|image_name |result | ++-----------------+----------------------------------------------------------+ +|bluetick.jpg |[bluetick] | +|chihuahua.jpg |[Chihuahua] | +|egyptian_cat.jpeg|[tabby, tabby cat] | +|hen.JPEG |[hen] | +|hippopotamus.JPEG|[hippopotamus, hippo, river horse, Hippopotamus amphibius]| +|junco.JPEG |[junco, snowbird] | +|ostrich.JPEG |[ostrich, Struthio camelus] | +|ox.JPEG |[ox] | +|palace.JPEG |[palace] | +|tractor.JPEG |[thresher, thrasher, threshing machine | ++-----------------+----------------------------------------------------------+ +{%- endcapture -%} + +{%- capture scala_example -%} +import com.johnsnowlabs.nlp.annotator._ +import com.johnsnowlabs.nlp.ImageAssembler +import org.apache.spark.ml.Pipeline + +val imageDF: DataFrame = spark.read + .format("image") + .option("dropInvalid", value = true) + .load("src/test/resources/image/") + +val imageAssembler = new ImageAssembler() + .setInputCol("image") + .setOutputCol("image_assembler") + +val imageClassifier = ConvNextForImageClassification + .pretrained() + .setInputCols("image_assembler") + .setOutputCol("class") + +val pipeline = new Pipeline().setStages(Array(imageAssembler, imageClassifier)) +val pipelineDF = pipeline.fit(imageDF).transform(imageDF) + +pipelineDF + .selectExpr("reverse(split(image.origin, '/'))[0] as image_name", "class.result") + .show(truncate = false) ++-----------------+----------------------------------------------------------+ +|image_name |result | ++-----------------+----------------------------------------------------------+ +|palace.JPEG |[palace] | +|egyptian_cat.jpeg|[tabby, tabby cat] | +|hippopotamus.JPEG|[hippopotamus, hippo, river horse, Hippopotamus amphibius]| +|hen.JPEG |[hen] | +|ostrich.JPEG |[ostrich, Struthio camelus] | +|junco.JPEG |[junco, snowbird] | +|bluetick.jpg |[bluetick] | +|chihuahua.jpg |[Chihuahua] | +|tractor.JPEG |[tractor] | +|ox.JPEG |[ox] | ++-----------------+----------------------------------------------------------+ + +{%- endcapture -%} + +{%- capture api_link -%} +[ConvNextForImageClassification](/api/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassification) +{%- endcapture -%} + +{%- capture python_api_link -%} +[ConvNextForImageClassification](/api/python/reference/autosummary/sparknlp/annotator/cv/convnext_for_image_classification/index.html#sparknlp.annotator.cv.convnext_for_image_classification.ConvNextForImageClassification) +{%- endcapture -%} + +{%- capture source_link -%} +[ConvNextForImageClassification](https://github.com/JohnSnowLabs/spark-nlp/tree/master/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassification.scala) +{%- endcapture -%} + +{% include templates/anno_template.md +title=title +description=description +input_anno=input_anno +output_anno=output_anno +python_example=python_example +scala_example=scala_example +api_link=api_link +python_api_link=python_api_link +source_link=source_link +%} \ No newline at end of file diff --git a/python/sparknlp/annotator/cv/__init__.py b/python/sparknlp/annotator/cv/__init__.py index ba2cd000b3cd..3df185a2df4d 100644 --- a/python/sparknlp/annotator/cv/__init__.py +++ b/python/sparknlp/annotator/cv/__init__.py @@ -13,3 +13,4 @@ # limitations under the License. from sparknlp.annotator.cv.vit_for_image_classification import * from sparknlp.annotator.cv.swin_for_image_classification import * +from sparknlp.annotator.cv.convnext_for_image_classification import * diff --git a/python/sparknlp/annotator/cv/convnext_for_image_classification.py b/python/sparknlp/annotator/cv/convnext_for_image_classification.py new file mode 100644 index 000000000000..86d1e99f4ab4 --- /dev/null +++ b/python/sparknlp/annotator/cv/convnext_for_image_classification.py @@ -0,0 +1,269 @@ +# Copyright 2017-2022 John Snow Labs +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Contains classes concerning ConvNextForImageClassification.""" + +from sparknlp.common import * + + +class ConvNextForImageClassification(AnnotatorModel, + HasBatchedAnnotateImage, + HasImageFeatureProperties, + HasEngine): + """ConvNextForImageClassification is an image classifier based on ConvNet models. + + The ConvNeXT model was proposed in A ConvNet for the 2020s by Zhuang Liu, Hanzi Mao, Chao-Yuan + Wu, Christoph Feichtenhofer, Trevor Darrell, Saining Xie. ConvNeXT is a pure convolutional + model (ConvNet), inspired by the design of Vision Transformers, that claims to outperform + them. + + For available pretrained models please see the + `Models Hub `__. + + Models from the HuggingFace 🤗 Transformers library are also compatible with Spark + NLP 🚀. To see which models are compatible and how to import them see + https://github.com/JohnSnowLabs/spark-nlp/discussions/5669 and to see more extended + examples, see + `ConvNextForImageClassificationTestSpec `__. + + ====================== ====================== + Input Annotation types Output Annotation type + ====================== ====================== + ``IMAGE`` ``CATEGORY`` + ====================== ====================== + + **Paper Abstract:** + + *The "Roaring 20s" of visual recognition began with the introduction of Vision Transformers (ViTs), which quickly + superseded ConvNets as the state-of-the-art image classification model. A vanilla ViT, on the other hand, faces + difficulties when applied to general computer vision tasks such as object detection and semantic segmentation. It is + the hierarchical Transformers (e.g., Swin Transformers) that reintroduced several ConvNet priors, making + Transformers practically viable as a generic vision backbone and demonstrating remarkable performance on a wide + variety of vision tasks. However, the effectiveness of such hybrid approaches is still largely credited to the + intrinsic superiority of Transformers, rather than the inherent inductive biases of convolutions. In this work, we + reexamine the design spaces and test the limits of what a pure ConvNet can achieve. We gradually "modernize" a + standard ResNet toward the design of a vision Transformer, and discover several key components that contribute to + the performance difference along the way. The outcome of this exploration is a family of pure ConvNet models dubbed + ConvNeXt. Constructed entirely from standard ConvNet modules, ConvNeXts compete favorably with Transformers in terms + of accuracy and scalability, achieving 87.8% ImageNet top-1 accuracy and outperforming Swin Transformers on COCO + detection and ADE20K segmentation, while maintaining the simplicity and efficiency of standard ConvNets. * + + References + ---------- + + `A ConvNet for the 2020s `__ + + Parameters + ---------- + doResize + Whether to resize the input to a certain size + doNormalize + Whether to normalize the input with mean and standard deviation + featureExtractorType + Name of model's architecture for feature extraction + imageMean + The sequence of means for each channel, to be used when normalizing images + imageStd + The sequence of standard deviations for each channel, to be used when normalizing images + resample + An optional resampling filter. This can be one of `PIL.Image.NEAREST`, `PIL.Image.BILINEAR` or + `PIL.Image.BICUBIC`. Only has an effect if do_resize is set to True. + size + Resize the input to the given size. If a tuple is provided, it should be (width, height). If only an integer is + provided, then the input will be resized to (size, size). Only has an effect if do_resize is set to True. + doRescale + Whether to rescale the image values by rescaleFactor + rescaleFactor + Factor to scale the image values + cropPct + Percentage of the resized image to crop + configProtoBytes + ConfigProto from tensorflow, serialized into byte array. + + Examples + -------- + >>> import sparknlp + >>> from sparknlp.base import * + >>> from sparknlp.annotator import * + >>> from pyspark.ml import Pipeline + >>> imageDF = spark.read \\ + ... .format("image") \\ + ... .option("dropInvalid", value = True) \\ + ... .load("src/test/resources/image/") + >>> imageAssembler = ImageAssembler() \\ + ... .setInputCol("image") \\ + ... .setOutputCol("image_assembler") + >>> imageClassifier = ConvNextForImageClassification \\ + ... .pretrained() \\ + ... .setInputCols(["image_assembler"]) \\ + ... .setOutputCol("class") + >>> pipeline = Pipeline().setStages([imageAssembler, imageClassifier]) + >>> pipelineDF = pipeline.fit(imageDF).transform(imageDF) + >>> pipelineDF \\ + ... .selectExpr("reverse(split(image.origin, '/'))[0] as image_name", "class.result") \\ + ... .show(truncate=False) + +-----------------+----------------------------------------------------------+ + |image_name |result | + +-----------------+----------------------------------------------------------+ + |bluetick.jpg |[bluetick] | + |chihuahua.jpg |[Chihuahua] | + |egyptian_cat.jpeg|[tabby, tabby cat] | + |hen.JPEG |[hen] | + |hippopotamus.JPEG|[hippopotamus, hippo, river horse, Hippopotamus amphibius]| + |junco.JPEG |[junco, snowbird] | + |ostrich.JPEG |[ostrich, Struthio camelus] | + |ox.JPEG |[ox] | + |palace.JPEG |[palace] | + |tractor.JPEG |[thresher, thrasher, threshing machine | + +-----------------+----------------------------------------------------------+ + """ + name = "ConvNextForImageClassification" + + inputAnnotatorTypes = [AnnotatorType.IMAGE] + + outputAnnotatorType = AnnotatorType.CATEGORY + + configProtoBytes = Param(Params._dummy(), + "configProtoBytes", + "ConfigProto from tensorflow, serialized into byte array. Get with " + "config_proto.SerializeToString()", + TypeConverters.toListInt) + + doRescale = Param(Params._dummy(), "doRescale", + "Whether to rescale the image values by rescaleFactor.", + TypeConverters.toBoolean) + + rescaleFactor = Param(Params._dummy(), "rescaleFactor", + "Factor to scale the image values", + TypeConverters.toFloat) + + cropPct = Param(Params._dummy(), "cropPct", + "Percentage of the resized image to crop", + TypeConverters.toFloat) + + def setDoRescale(self, value): + """Sets Whether to rescale the image values by rescaleFactor, by default `True`. + + Parameters + ---------- + value : Boolean + Whether to rescale the image values by rescaleFactor. + """ + return self._set(doRescale=value) + + def setRescaleFactor(self, value): + """Sets Factor to scale the image values, by default `1/255.0`. + + Parameters + ---------- + value : Boolean + Whether to rescale the image values by rescaleFactor. + """ + return self._set(rescaleFactor=value) + + def setCropPct(self, value): + """Determines rescale and crop percentage for images smaller than the configured size, by default `224 / 256`. + + If the image size is smaller than the specified size, the smaller edge of the image will be + matched to `int(size / cropPct)`. Afterwards the image is cropped to `(size, size)`. + + Parameters + ---------- + value : Float + Percentage of the resized image to crop + """ + return self._set(cropPct=value) + + def getClasses(self): + """ + Returns labels used to train this model + """ + return self._call_java("getClasses") + + def setConfigProtoBytes(self, b): + """Sets configProto from tensorflow, serialized into byte array. + + Parameters + ---------- + b : List[int] + ConfigProto from tensorflow, serialized into byte array + """ + return self._set(configProtoBytes=b) + + @keyword_only + def __init__(self, + classname="com.johnsnowlabs.nlp.annotators.cv.ConvNextForImageClassification", + java_model=None): + super(ConvNextForImageClassification, self).__init__( + classname=classname, + java_model=java_model + ) + self._setDefault( + batchSize=2, + doNormalize=True, + doRescale=True, + doResize=True, + imageMean=[0.485, 0.456, 0.406], + imageStd=[0.229, 0.224, 0.225], + resample=3, + size=224, + rescaleFactor=1 / 255.0, + cropPct=224 / 256.0 + ) + + @staticmethod + def loadSavedModel(folder, spark_session): + """Loads a locally saved model. + + Parameters + ---------- + folder : str + Folder of the saved model + spark_session : pyspark.sql.SparkSession + The current SparkSession + + Returns + ------- + ConvNextForImageClassification + The restored model + """ + from sparknlp.internal import _ConvNextForImageClassification + jModel = _ConvNextForImageClassification(folder, + spark_session._jsparkSession)._java_obj + return ConvNextForImageClassification(java_model=jModel) + + @staticmethod + def pretrained(name="image_classifier_convnext_tiny_224_local", lang="en", + remote_loc=None): + """Downloads and loads a pretrained model. + + Parameters + ---------- + name : str, optional + Name of the pretrained model, by default + "image_classifier_convnext_tiny_224_local" + lang : str, optional + Language of the pretrained model, by default "en" + remote_loc : str, optional + Remote address of the resource, by default None. Will use + Spark NLPs repositories otherwise. + + Returns + ------- + ConvNextForImageClassification + The restored model + """ + from sparknlp.pretrained import ResourceDownloader + return ResourceDownloader.downloadModel(ConvNextForImageClassification, name, lang, + remote_loc) diff --git a/python/sparknlp/annotator/cv/swin_for_image_classification.py b/python/sparknlp/annotator/cv/swin_for_image_classification.py index d4a2cff2ce28..388ef4b52858 100644 --- a/python/sparknlp/annotator/cv/swin_for_image_classification.py +++ b/python/sparknlp/annotator/cv/swin_for_image_classification.py @@ -86,7 +86,26 @@ class SwinForImageClassification(AnnotatorModel, Parameters ---------- - + doResize + Whether to resize the input to a certain size + doNormalize + Whether to normalize the input with mean and standard deviation + featureExtractorType + Name of model's architecture for feature extraction + imageMean + The sequence of means for each channel, to be used when normalizing images + imageStd + The sequence of standard deviations for each channel, to be used when normalizing images + resample + An optional resampling filter. This can be one of `PIL.Image.NEAREST`, `PIL.Image.BILINEAR` or + `PIL.Image.BICUBIC`. Only has an effect if do_resize is set to True. + size + Resize the input to the given size. If a tuple is provided, it should be (width, height). If only an integer is + provided, then the input will be resized to (size, size). Only has an effect if do_resize is set to True. + doRescale + Whether to rescale the image values by rescaleFactor + rescaleFactor + Factor to scale the image values configProtoBytes ConfigProto from tensorflow, serialized into byte array. diff --git a/python/sparknlp/annotator/cv/vit_for_image_classification.py b/python/sparknlp/annotator/cv/vit_for_image_classification.py index df3dfbbff7ab..623420f681eb 100644 --- a/python/sparknlp/annotator/cv/vit_for_image_classification.py +++ b/python/sparknlp/annotator/cv/vit_for_image_classification.py @@ -77,7 +77,22 @@ class ViTForImageClassification(AnnotatorModel, Parameters ---------- - + doResize + Whether to resize the input to a certain size + doNormalize + Whether to normalize the input with mean and standard deviation + featureExtractorType + Name of model's architecture for feature extraction + imageMean + The sequence of means for each channel, to be used when normalizing images + imageStd + The sequence of standard deviations for each channel, to be used when normalizing images + resample + An optional resampling filter. This can be one of `PIL.Image.NEAREST`, `PIL.Image.BILINEAR` or + `PIL.Image.BICUBIC`. Only has an effect if do_resize is set to True. + size + Resize the input to the given size. If a tuple is provided, it should be (width, height). If only an integer is + provided, then the input will be resized to (size, size). Only has an effect if do_resize is set to True. configProtoBytes ConfigProto from tensorflow, serialized into byte array. diff --git a/python/sparknlp/common/properties.py b/python/sparknlp/common/properties.py index 855f8929db0d..d9eb3d8bcbe6 100644 --- a/python/sparknlp/common/properties.py +++ b/python/sparknlp/common/properties.py @@ -187,9 +187,8 @@ class HasImageFeatureProperties: TypeConverters.toListFloat) resample = Param(Params._dummy(), "resample", - "An optional resampling filter. This can be one of PIL.Image.NEAREST, PIL.Image.BOX, " - "PIL.Image.BILINEAR, PIL.Image.HAMMING, PIL.Image.BICUBIC or PIL.Image.LANCZOS. Only has an " - "effect if do_resize is set to True", + "An optional resampling filter. This can be one of PIL.Image.NEAREST, PIL.Image.BILINEAR or " + "PIL.Image.BICUBIC. Only has an effect if do_resize is set to True.", TypeConverters.toInt) size = Param(Params._dummy(), "size", @@ -254,9 +253,8 @@ def setResample(self, value): Parameters ---------- value : int - An optional resampling filter. This can be one of PIL.Image.NEAREST, - PIL.Image.BOX, PIL.Image.BILINEAR PIL.Image.HAMMING, PIL.Image.BICUBIC or PIL.Image.LANCZOS. Only has an - effect if do_resize is set to True + Resampling filter for resizing. This can be one of `PIL.Image.NEAREST`, `PIL.Image.BILINEAR` or + `PIL.Image.BICUBIC`. Only has an effect if `do_resize` is set to `True`. """ return self._set(resample=value) diff --git a/python/sparknlp/internal/__init__.py b/python/sparknlp/internal/__init__.py index 4d609d8cb0b7..d33c9d2fd26c 100644 --- a/python/sparknlp/internal/__init__.py +++ b/python/sparknlp/internal/__init__.py @@ -452,6 +452,12 @@ def __init__(self, path, jspark): "com.johnsnowlabs.nlp.annotators.cv.SwinForImageClassification.loadSavedModel", path, jspark) +class _ConvNextForImageClassification(ExtendedJavaWrapper): + def __init__(self, path, jspark): + super(_ConvNextForImageClassification, self).__init__( + "com.johnsnowlabs.nlp.annotators.cv.ConvNextForImageClassification.loadSavedModel", path, jspark) + + class _Wav2Vec2ForCTC(ExtendedJavaWrapper): def __init__(self, path, jspark): super(_Wav2Vec2ForCTC, self).__init__( diff --git a/python/test/README.md b/python/test/README.md index d4b0f339a198..67555542153d 100644 --- a/python/test/README.md +++ b/python/test/README.md @@ -34,6 +34,12 @@ tests that contain "NerDL" we can run these tests like so: pytest -v -k "NerDL" ``` +### JetBrains IDEs + +To run individual tests in a JetBrains IDE (i.e. IntelliJ or PyCharm) there might be issues when using to interface to +run the tests. To fix this, go to _Project (Alt+1)_, choose the `python` folder and mark the directory with _Mark +Directory as > Test Sources Root_. + # Tests with unittest Third party app integration still uses the old unittests, as these require additional dependencies that are not needed for the other tests. diff --git a/python/test/annotator/cv/convnext_for_image_classification_test.py b/python/test/annotator/cv/convnext_for_image_classification_test.py new file mode 100644 index 000000000000..73c2b4c59ad7 --- /dev/null +++ b/python/test/annotator/cv/convnext_for_image_classification_test.py @@ -0,0 +1,105 @@ +# Copyright 2017-2022 John Snow Labs +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +import os +import unittest + +import pytest + +from sparknlp.annotator import * +from sparknlp.base import * +from test.util import SparkSessionForTest + + +class ConvNextForImageClassificationTestSetUp(unittest.TestCase): + gold_standards = { + "bluetick.jpg": "bluetick", + "chihuahua.jpg": "Chihuahua", + "egyptian_cat.jpeg": "tabby, tabby cat", + "hen.JPEG": "hen", + "hippopotamus.JPEG": "hippopotamus, hippo, river horse, Hippopotamus amphibius", + "junco.JPEG": "junco, snowbird", + "ostrich.JPEG": "ostrich, Struthio camelus", + "ox.JPEG": "ox", + "palace.JPEG": "palace", + "tractor.JPEG": "thresher, thrasher, threshing machine", + } + + def setUp(self): + self.images_path = os.getcwd() + "/../src/test/resources/image/" + self.data = SparkSessionForTest.spark.read.format("image") \ + .load(path=self.images_path) + + image_assembler = ImageAssembler() \ + .setInputCol("image") \ + .setOutputCol("image_assembler") + + imageClassifier = ConvNextForImageClassification \ + .pretrained() \ + .setInputCols("image_assembler") \ + .setOutputCol("class") + + pipeline = Pipeline(stages=[ + image_assembler, + imageClassifier, + ]) + + self.model = pipeline.fit(self.data) + + +@pytest.mark.slow +class ConvNextForImageClassificationTestSpec(ConvNextForImageClassificationTestSetUp, unittest.TestCase): + def setUp(self): + super().setUp() + + def runTest(self): + result = self.model.transform(self.data).select("image.origin", "class.result").collect() + + for row in result: + file_name = row["origin"].rsplit("/", 1)[-1] + self.assertEqual(self.gold_standards[file_name], row["result"][0]) + + +@pytest.mark.slow +class LightConvNextForImageClassificationOneImageTestSpec(ConvNextForImageClassificationTestSetUp, unittest.TestCase): + + def setUp(self): + super().setUp() + + def runTest(self): + light_pipeline = LightPipeline(self.model) + + annotations_result = light_pipeline.fullAnnotateImage(self.images_path + "hippopotamus.JPEG") + + self.assertEqual(len(annotations_result), 1) + for result in annotations_result: + self.assertTrue(len(result["image_assembler"]) > 0) + self.assertTrue(len(result["class"]) > 0) + + +@pytest.mark.slow +class LightConvNextForImageClassificationTestSpec(ConvNextForImageClassificationTestSetUp, unittest.TestCase): + + def setUp(self): + super().setUp() + + def runTest(self): + light_pipeline = LightPipeline(self.model) + images = [self.images_path + "hippopotamus.JPEG", self.images_path + "egyptian_cat.jpeg"] + + annotations_result = light_pipeline.fullAnnotateImage(images) + + self.assertEqual(len(annotations_result), len(images)) + for result in annotations_result: + self.assertTrue(len(result["image_assembler"]) > 0) + self.assertTrue(len(result["class"]) > 0) diff --git a/python/test/annotator/cv/swin_for_image_classification_test.py b/python/test/annotator/cv/swin_for_image_classification_test.py index f7d4bbba0285..12b379964e87 100644 --- a/python/test/annotator/cv/swin_for_image_classification_test.py +++ b/python/test/annotator/cv/swin_for_image_classification_test.py @@ -22,6 +22,18 @@ class SwinForImageClassificationTestSetUp(unittest.TestCase): + gold_standards = { + "bluetick.jpg": "bluetick", + "chihuahua.jpg": "Chihuahua", + "egyptian_cat.jpeg": "tabby, tabby cat", + "hen.JPEG": "hen", + "hippopotamus.JPEG": "hippopotamus, hippo, river horse, Hippopotamus amphibius", + "junco.JPEG": "junco, snowbird", + "ostrich.JPEG": "ostrich, Struthio camelus", + "ox.JPEG": "ox", + "palace.JPEG": "palace", + "tractor.JPEG": "tractor", + } def setUp(self): self.images_path = os.getcwd() + "/../src/test/resources/image/" self.data = SparkSessionForTest.spark.read.format("image") \ @@ -50,10 +62,11 @@ def setUp(self): super().setUp() def runTest(self): + result = self.model.transform(self.data).select("image.origin", "class.result").collect() - result_df = self.model.transform(self.data) - - self.assertTrue(result_df.select("class").count() > 0) + for row in result: + file_name = row["origin"].rsplit("/", 1)[-1] + self.assertEqual(self.gold_standards[file_name], row["result"][0]) @pytest.mark.slow diff --git a/python/test/annotator/cv/vit_for_image_classification_test.py b/python/test/annotator/cv/vit_for_image_classification_test.py index 29a49c4054ab..be7cb5e1d350 100644 --- a/python/test/annotator/cv/vit_for_image_classification_test.py +++ b/python/test/annotator/cv/vit_for_image_classification_test.py @@ -22,6 +22,19 @@ class ViTForImageClassificationTestSetUp(unittest.TestCase): + gold_standards = { + "bluetick.jpg": "bluetick", + "chihuahua.jpg": "Chihuahua", + "egyptian_cat.jpeg": "Egyptian cat", + "hen.JPEG": "hen", + "hippopotamus.JPEG": "hippopotamus, hippo, river horse, Hippopotamus amphibius", + "junco.JPEG": "junco, snowbird", + "ostrich.JPEG": "ostrich, Struthio camelus", + "ox.JPEG": "ox", + "palace.JPEG": "palace", + "tractor.JPEG": "tractor", + } + def setUp(self): self.images_path = os.getcwd() + "/../src/test/resources/image/" self.data = SparkSessionForTest.spark.read.format("image") \ @@ -50,10 +63,11 @@ def setUp(self): super().setUp() def runTest(self): + result = self.model.transform(self.data).select("image.origin", "class.result").collect() - result_df = self.model.transform(self.data) - - self.assertTrue(result_df.select("class").count() > 0) + for row in result: + file_name = row["origin"].rsplit("/", 1)[-1] + self.assertEqual(self.gold_standards[file_name], row["result"][0]) @pytest.mark.slow diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/ConvNextClassifier.scala b/src/main/scala/com/johnsnowlabs/ml/ai/ConvNextClassifier.scala new file mode 100644 index 000000000000..523122b93ea9 --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/ml/ai/ConvNextClassifier.scala @@ -0,0 +1,68 @@ +/* + * Copyright 2017-2022 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.ml.ai + +import com.johnsnowlabs.ml.tensorflow.TensorflowWrapper +import com.johnsnowlabs.nlp._ +import com.johnsnowlabs.nlp.annotators.cv.feature_extractor.Preprocessor +import com.johnsnowlabs.nlp.annotators.cv.util.io.ImageIOUtils +import com.johnsnowlabs.nlp.annotators.cv.util.transform.ImageResizeUtils + +private[johnsnowlabs] class ConvNextClassifier( + tensorflowWrapper: TensorflowWrapper, + configProtoBytes: Option[Array[Byte]] = None, + tags: Map[String, BigInt], + preprocessor: Preprocessor, + signatures: Option[Map[String, String]] = None) + extends ViTClassifier(tensorflowWrapper, configProtoBytes, tags, preprocessor, signatures) { + + override def encode( + annotations: Array[AnnotationImage], + preprocessor: Preprocessor): Array[Array[Array[Array[Float]]]] = { + annotations.map { annot => + val bufferedImage = ImageIOUtils.byteToBufferedImage( + bytes = annot.result, + w = annot.width, + h = annot.height, + nChannels = annot.nChannels) + + val resizedImage = + if (preprocessor.crop_pct.isDefined && preprocessor.size < 384) + ImageResizeUtils.resizeAndCenterCropImage( + bufferedImage, + requestedSize = preprocessor.size, + cropPct = preprocessor.crop_pct.get, + resample = preprocessor.resample) + else + ImageResizeUtils.resizeBufferedImage( + width = preprocessor.size, + height = preprocessor.size, + resample = preprocessor.resample)(bufferedImage) + + val normalizedImage = ImageResizeUtils.normalizeAndConvertBufferedImage( + img = resizedImage, + mean = preprocessor.image_mean, + std = preprocessor.image_std, + doNormalize = preprocessor.do_normalize, + doRescale = preprocessor.do_rescale, + rescaleFactor = preprocessor.rescale_factor) + + normalizedImage + } + } + +} diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/ViTClassifier.scala b/src/main/scala/com/johnsnowlabs/ml/ai/ViTClassifier.scala index a90480913c85..6a7e81171627 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/ViTClassifier.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/ViTClassifier.scala @@ -29,10 +29,7 @@ private[johnsnowlabs] class ViTClassifier( val tensorflowWrapper: TensorflowWrapper, configProtoBytes: Option[Array[Byte]] = None, tags: Map[String, BigInt], - imageMean: Array[Double], - imageStd: Array[Double], - resample: Int, - size: Int, + preprocessor: Preprocessor, signatures: Option[Map[String, String]] = None) extends Serializable { @@ -43,15 +40,6 @@ private[johnsnowlabs] class ViTClassifier( val image = ImageIOUtils.loadImage(getClass.getResourceAsStream("/image/ox.JPEG")) val bytes = ImageIOUtils.bufferedImageToByte(image.get) - val preprocessor = - Preprocessor( - do_normalize = true, - do_resize = true, - "ViTFeatureExtractor", - imageMean, - imageStd, - resample, - size) val images = Array(AnnotationImage("image", "ox.JPEG", 265, 360, 3, 16, bytes, Map("image" -> "0"))) val encoded = encode(images, preprocessor) @@ -171,17 +159,23 @@ private[johnsnowlabs] class ViTClassifier( h = annot.height, nChannels = annot.nChannels) - val resizedImage = + val resizedImage = if (preprocessor.do_resize) { ImageResizeUtils.resizeBufferedImage( width = preprocessor.size, height = preprocessor.size, - Some(annot.nChannels))(bufferedImage) - - ImageResizeUtils.normalizeBufferedImage( - img = resizedImage, - mean = preprocessor.image_mean, - std = preprocessor.image_std, - rescaleFactor = preprocessor.rescale_factor) + preprocessor.resample)(bufferedImage) + } else bufferedImage + + val normalizedImage = + ImageResizeUtils.normalizeAndConvertBufferedImage( + img = resizedImage, + mean = preprocessor.image_mean, + std = preprocessor.image_std, + doNormalize = preprocessor.do_normalize, + doRescale = preprocessor.do_rescale, + rescaleFactor = preprocessor.rescale_factor) + + normalizedImage } batchProcessedImages diff --git a/src/main/scala/com/johnsnowlabs/nlp/HasImageFeatureProperties.scala b/src/main/scala/com/johnsnowlabs/nlp/HasImageFeatureProperties.scala index b49ed019f0be..b5a5f5fb91a7 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/HasImageFeatureProperties.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/HasImageFeatureProperties.scala @@ -149,7 +149,15 @@ trait HasImageFeatureProperties extends ParamsAndFeaturesWritable { def getImageStd: Array[Double] = $(imageStd) /** @group getParam */ - def getResample: Int = $(resample) + def getResample: Int = $(resample) match { + // Match to AffineTransformOp + case 0 => 1 // NEAREST + case 2 => 2 // BILINEAR + case 3 => 3 // BICUBIC + case otherValue: Int => + throw new IllegalArgumentException( + s"Invalid value for resampling ($otherValue). Only Nearest Neighbour (0), Bilinear (2) or Bicubic (3) filters are currently supported.") + } /** @group getParam */ def getSize: Int = $(size) diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotator.scala b/src/main/scala/com/johnsnowlabs/nlp/annotator.scala index f4b121683df7..480ab6b0be7b 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotator.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotator.scala @@ -29,12 +29,7 @@ import com.johnsnowlabs.nlp.annotators.coref.{ ReadSpanBertCorefTensorflowModel, ReadablePretrainedSpanBertCorefModel } -import com.johnsnowlabs.nlp.annotators.cv.{ - ReadSwinForImageDLModel, - ReadViTForImageDLModel, - ReadablePretrainedSwinForImageModel, - ReadablePretrainedViTForImageModel -} +import com.johnsnowlabs.nlp.annotators.cv._ import com.johnsnowlabs.nlp.annotators.er.ReadablePretrainedEntityRuler import com.johnsnowlabs.nlp.annotators.ld.dl.{ ReadLanguageDetectorDLTensorflowModel, @@ -645,6 +640,13 @@ package object annotator { extends ReadablePretrainedSwinForImageModel with ReadSwinForImageDLModel + type ConvNextForImageClassification = + com.johnsnowlabs.nlp.annotators.cv.ConvNextForImageClassification + + object ConvNextForImageClassification + extends ReadablePretrainedConvNextForImageModel + with ReadConvNextForImageDLModel + type CamemBertForQuestionAnswering = com.johnsnowlabs.nlp.annotators.classifier.dl.CamemBertForQuestionAnswering diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassification.scala new file mode 100644 index 000000000000..bfb5128ad002 --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassification.scala @@ -0,0 +1,384 @@ +/* + * Copyright 2017-2022 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.nlp.annotators.cv + +import com.johnsnowlabs.ml.ai.ConvNextClassifier +import com.johnsnowlabs.ml.tensorflow.{ReadTensorflowModel, TensorflowWrapper} +import com.johnsnowlabs.ml.util.LoadExternalModel.{ + loadJsonStringAsset, + modelSanityCheck, + notSupportedEngineError +} +import com.johnsnowlabs.ml.util.ModelEngine +import com.johnsnowlabs.nlp._ +import com.johnsnowlabs.nlp.annotators.cv.feature_extractor.Preprocessor +import org.apache.spark.broadcast.Broadcast +import org.apache.spark.ml.param.DoubleParam +import org.apache.spark.ml.util.Identifiable +import org.apache.spark.sql.SparkSession +import org.json4s._ +import org.json4s.jackson.JsonMethods._ + +/** ConvNextForImageClassification is an image classifier based on ConvNet models. + * + * The ConvNeXT model was proposed in A ConvNet for the 2020s by Zhuang Liu, Hanzi Mao, Chao-Yuan + * Wu, Christoph Feichtenhofer, Trevor Darrell, Saining Xie. ConvNeXT is a pure convolutional + * model (ConvNet), inspired by the design of Vision Transformers, that claims to outperform + * them. + * + * Pretrained models can be loaded with `pretrained` of the companion object: + * {{{ + * val imageClassifier = ConvNextForImageClassification.pretrained() + * .setInputCols("image_assembler") + * .setOutputCol("class") + * }}} + * The default model is `"image_classifier_convnext_tiny_224_local"`, if no name is provided. + * + * For available pretrained models please see the + * [[https://nlp.johnsnowlabs.com/models?task=Image+Classification Models Hub]]. + * + * Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To + * see which models are compatible and how to import them see + * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended + * examples, see + * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassificationTestSpec.scala ConvNextForImageClassificationTestSpec]]. + * + * '''References:''' + * + * [[https://arxiv.org/abs/2201.03545 A ConvNet for the 2020s]] + * + * '''Paper Abstract:''' + * + * ''The "Roaring 20s" of visual recognition began with the introduction of Vision Transformers + * (ViTs), which quickly superseded ConvNets as the state-of-the-art image classification model. + * A vanilla ViT, on the other hand, faces difficulties when applied to general computer vision + * tasks such as object detection and semantic segmentation. It is the hierarchical Transformers + * (e.g., Swin Transformers) that reintroduced several ConvNet priors, making Transformers + * practically viable as a generic vision backbone and demonstrating remarkable performance on a + * wide variety of vision tasks. However, the effectiveness of such hybrid approaches is still + * largely credited to the intrinsic superiority of Transformers, rather than the inherent + * inductive biases of convolutions. In this work, we reexamine the design spaces and test the + * limits of what a pure ConvNet can achieve. We gradually "modernize" a standard ResNet toward + * the design of a vision Transformer, and discover several key components that contribute to the + * performance difference along the way. The outcome of this exploration is a family of pure + * ConvNet models dubbed ConvNeXt. Constructed entirely from standard ConvNet modules, ConvNeXts + * compete favorably with Transformers in terms of accuracy and scalability, achieving 87.8% + * ImageNet top-1 accuracy and outperforming Swin Transformers on COCO detection and ADE20K + * segmentation, while maintaining the simplicity and efficiency of standard ConvNets. '' + * + * ==Example== + * {{{ + * import com.johnsnowlabs.nlp.annotator._ + * import com.johnsnowlabs.nlp.ImageAssembler + * import org.apache.spark.ml.Pipeline + * + * val imageDF: DataFrame = spark.read + * .format("image") + * .option("dropInvalid", value = true) + * .load("src/test/resources/image/") + * + * val imageAssembler = new ImageAssembler() + * .setInputCol("image") + * .setOutputCol("image_assembler") + * + * val imageClassifier = ConvNextForImageClassification + * .pretrained() + * .setInputCols("image_assembler") + * .setOutputCol("class") + * + * val pipeline = new Pipeline().setStages(Array(imageAssembler, imageClassifier)) + * val pipelineDF = pipeline.fit(imageDF).transform(imageDF) + * + * pipelineDF + * .selectExpr("reverse(split(image.origin, '/'))[0] as image_name", "class.result") + * .show(truncate = false) + * +-----------------+----------------------------------------------------------+ + * |image_name |result | + * +-----------------+----------------------------------------------------------+ + * |palace.JPEG |[palace] | + * |egyptian_cat.jpeg|[tabby, tabby cat] | + * |hippopotamus.JPEG|[hippopotamus, hippo, river horse, Hippopotamus amphibius]| + * |hen.JPEG |[hen] | + * |ostrich.JPEG |[ostrich, Struthio camelus] | + * |junco.JPEG |[junco, snowbird] | + * |bluetick.jpg |[bluetick] | + * |chihuahua.jpg |[Chihuahua] | + * |tractor.JPEG |[tractor] | + * |ox.JPEG |[ox] | + * +-----------------+----------------------------------------------------------+ + * }}} + * + * @param uid + * required uid for storing annotator to disk + * @groupname anno Annotator types + * @groupdesc anno + * Required input and expected output annotator types + * @groupname Ungrouped Members + * @groupname param Parameters + * @groupname setParam Parameter setters + * @groupname getParam Parameter getters + * @groupname Ungrouped Members + * @groupprio param 1 + * @groupprio anno 2 + * @groupprio Ungrouped 3 + * @groupprio setParam 4 + * @groupprio getParam 5 + * @groupdesc param + * A list of (hyper-)parameter keys this annotator can take. Users can set and get the + * parameter values through setters and getters, respectively. + */ +class ConvNextForImageClassification(override val uid: String) + extends SwinForImageClassification(uid) { + + /** Annotator reference id. Used to identify elements in metadata or to refer to this annotator + * type + */ + def this() = this(Identifiable.randomUID("ConvNextForImageClassification")) + + /** Determines rescale and crop percentage for images smaller than the configured size (Default: + * `224 / 256d`). + * + * If the image size is smaller than the specified size, the smaller edge of the image will be + * matched to `int(size / cropPct)`. Afterwards the image is cropped to `(size, size)`. + * + * @group param + */ + val cropPct = + new DoubleParam(this, "cropPct", "Percentage of the resized image to crop") + + /** @group setParam */ + def setCropPct(value: Double): this.type = set(this.cropPct, value) + + /** @group getParam */ + def getCropPct: Double = $(cropPct) + + setDefault( + batchSize -> 2, + doNormalize -> true, + doRescale -> true, + doResize -> true, + imageMean -> Array(0.485d, 0.456d, 0.406d), + imageStd -> Array(0.229d, 0.224d, 0.225d), + resample -> 3, + size -> 224, + rescaleFactor -> 1 / 255d, + cropPct -> 224 / 256d) + + private var _model: Option[Broadcast[ConvNextClassifier]] = None + + /** @group getParam */ + override def getModelIfNotSet: ConvNextClassifier = _model.get.value + + override def setModelIfNotSet( + spark: SparkSession, + tensorflow: TensorflowWrapper, + preprocessor: Preprocessor): ConvNextForImageClassification.this.type = { + if (_model.isEmpty) { + + _model = Some( + spark.sparkContext.broadcast( + new ConvNextClassifier( + tensorflow, + configProtoBytes = getConfigProtoBytes, + tags = $$(labels), + preprocessor = preprocessor, + signatures = getSignatures))) + } + this + } + + /** Takes a document and annotations and produces new annotations of this annotator's annotation + * type + * + * @param batchedAnnotations + * Annotations that correspond to inputAnnotationCols generated by previous annotators if any + * @return + * any number of annotations processed for every input annotation. Not necessary one to one + * relationship + */ + override def batchAnnotate( + batchedAnnotations: Seq[Array[AnnotationImage]]): Seq[Seq[Annotation]] = { + // Zip annotations to the row it belongs to + val imagesWithRow = batchedAnnotations.zipWithIndex + .flatMap { case (annotations, i) => annotations.map(x => (x, i)) } + + val noneEmptyImages = imagesWithRow.map(_._1).filter(_.result.nonEmpty).toArray + + val allAnnotations = + if (noneEmptyImages.nonEmpty) { + getModelIfNotSet.predict( + images = noneEmptyImages, + batchSize = $(batchSize), + preprocessor = Preprocessor( + do_normalize = getDoNormalize, + do_resize = getDoResize, + feature_extractor_type = getFeatureExtractorType, + image_mean = getImageMean, + image_std = getImageStd, + resample = getResample, + size = getSize, + do_rescale = getDoRescale, + rescale_factor = getRescaleFactor, + crop_pct = Option(getCropPct))) + } else { + Seq.empty[Annotation] + } + + // Group resulting annotations by rows. If there are not sentences in a given row, return empty sequence + batchedAnnotations.indices.map(rowIndex => { + val rowAnnotations = allAnnotations + // zip each annotation with its corresponding row index + .zip(imagesWithRow) + // select the sentences belonging to the current row + .filter(_._2._2 == rowIndex) + // leave the annotation only + .map(_._1) + + if (rowAnnotations.nonEmpty) + rowAnnotations + else + Seq.empty[Annotation] + }) + + } + + override def onWrite(path: String, spark: SparkSession): Unit = { + writeTensorflowModelV2( + path, + spark, + getModelIfNotSet.tensorflowWrapper, + "_image_classification", + ConvNextForImageClassification.tfFile, + configProtoBytes = getConfigProtoBytes) + } + +} + +trait ReadablePretrainedConvNextForImageModel + extends ParamsAndFeaturesReadable[ConvNextForImageClassification] + with HasPretrained[ConvNextForImageClassification] { + override val defaultModelName: Some[String] = Some("image_classifier_convnext_tiny_224_local") + + /** Java compliant-overrides */ + override def pretrained(): ConvNextForImageClassification = super.pretrained() + + override def pretrained(name: String): ConvNextForImageClassification = super.pretrained(name) + + override def pretrained(name: String, lang: String): ConvNextForImageClassification = + super.pretrained(name, lang) + + override def pretrained( + name: String, + lang: String, + remoteLoc: String): ConvNextForImageClassification = super.pretrained(name, lang, remoteLoc) +} + +trait ReadConvNextForImageDLModel extends ReadTensorflowModel { + this: ParamsAndFeaturesReadable[ConvNextForImageClassification] => + + override val tfFile: String = "image_classification_convnext_tensorflow" + + def readTensorflow( + instance: ConvNextForImageClassification, + path: String, + spark: SparkSession): Unit = { + + val tf = readTensorflowModel(path, spark, "_image_classification_tf") + + val preprocessor = Preprocessor( + do_normalize = instance.getDoNormalize, + do_resize = instance.getDoRescale, + feature_extractor_type = "ConvNextFeatureExtractor", + image_mean = instance.getImageMean, + image_std = instance.getImageStd, + resample = instance.getResample, + do_rescale = instance.getDoRescale, + rescale_factor = instance.getRescaleFactor, + size = instance.getSize, + crop_pct = Option(instance.getCropPct)) + + instance.setModelIfNotSet(spark, tf, preprocessor) + + } + + addReader(readTensorflow) + + def loadSavedModel(modelPath: String, spark: SparkSession): ConvNextForImageClassification = { + + val (localModelPath, detectedEngine) = modelSanityCheck(modelPath) + + // TODO: sometimes results in [String, BigInt] where BigInt is actually a string + val labelJsonContent = loadJsonStringAsset(localModelPath, "labels.json") + val labelJsonMap = + parse(labelJsonContent, useBigIntForLong = true).values + .asInstanceOf[Map[String, BigInt]] + + val preprocessorConfigJsonContent = + loadJsonStringAsset(localModelPath, "preprocessor_config.json") + val preprocessorConfig = + Preprocessor.loadPreprocessorConfig(preprocessorConfigJsonContent) + + require( + preprocessorConfig.size >= 384 || preprocessorConfig.crop_pct.nonEmpty, + "Property \'crop_pct\' should be defined, if size < 384.") + val cropPct = preprocessorConfig.crop_pct.get + + val annotatorModel = new ConvNextForImageClassification() + .setLabels(labelJsonMap) + .setDoNormalize(preprocessorConfig.do_normalize) + .setDoResize(preprocessorConfig.do_resize) + .setFeatureExtractorType(preprocessorConfig.feature_extractor_type) + .setImageMean(preprocessorConfig.image_mean) + .setImageStd(preprocessorConfig.image_std) + .setResample(preprocessorConfig.resample) + .setSize(preprocessorConfig.size) + .setDoRescale(preprocessorConfig.do_rescale) + .setRescaleFactor(preprocessorConfig.rescale_factor) + .setCropPct(cropPct) + + annotatorModel.set(annotatorModel.engine, detectedEngine) + + detectedEngine match { + case ModelEngine.tensorflow => + val (wrapper, signatures) = + TensorflowWrapper.read(localModelPath, zipped = false, useBundle = true) + + val _signatures = signatures match { + case Some(s) => s + case None => throw new Exception("Cannot load signature definitions from model!") + } + + /** the order of setSignatures is important if we use getSignatures inside + * setModelIfNotSet + */ + annotatorModel + .setSignatures(_signatures) + .setModelIfNotSet(spark, wrapper, preprocessorConfig) + case _ => + throw new Exception(notSupportedEngineError) + } + + annotatorModel + } +} + +/** This is the companion object of [[ConvNextForImageClassification]]. Please refer to that class + * for the documentation. + */ +object ConvNextForImageClassification + extends ReadablePretrainedConvNextForImageModel + with ReadConvNextForImageDLModel diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/SwinForImageClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/SwinForImageClassification.scala index 44fb3027c10d..21ce7a0d175f 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/SwinForImageClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/SwinForImageClassification.scala @@ -169,13 +169,13 @@ class SwinForImageClassification(override val uid: String) def setDoRescale(value: Boolean): this.type = set(this.doRescale, value) /** @group getParam */ - private def getDoRescale: Boolean = $(doRescale) + def getDoRescale: Boolean = $(doRescale) /** @group setParam */ def setRescaleFactor(value: Double): this.type = set(this.rescaleFactor, value) /** @group getParam */ - private def getRescaleFactor: Double = $(rescaleFactor) + def getRescaleFactor: Double = $(rescaleFactor) setDefault( batchSize -> 2, @@ -212,15 +212,15 @@ class SwinForImageClassification(override val uid: String) images = noneEmptyImages, batchSize = $(batchSize), preprocessor = Preprocessor( - getDoResize, - getDoNormalize, - getFeatureExtractorType, - getImageMean, - getImageStd, - getResample, - getSize, - getDoRescale, - getRescaleFactor)) + do_normalize = getDoNormalize, + do_resize = getDoResize, + feature_extractor_type = getFeatureExtractorType, + image_mean = getImageMean, + image_std = getImageStd, + resample = getResample, + size = getSize, + do_rescale = getDoRescale, + rescale_factor = getRescaleFactor)) } else { Seq.empty[Annotation] } @@ -244,7 +244,6 @@ class SwinForImageClassification(override val uid: String) } override def onWrite(path: String, spark: SparkSession): Unit = { - super.onWrite(path, spark) writeTensorflowModelV2( path, spark, @@ -287,13 +286,19 @@ trait ReadSwinForImageDLModel extends ReadTensorflowModel { spark: SparkSession): Unit = { val tf = readTensorflowModel(path, spark, "_image_classification_tf") - instance.setModelIfNotSet( - spark, - tf, - instance.getImageMean, - instance.getImageStd, - instance.getResample, - instance.getSize) + + val preprocessor = Preprocessor( + do_normalize = instance.getDoNormalize, + do_resize = instance.getDoRescale, + feature_extractor_type = "SwinFeatureExtractor", + image_mean = instance.getImageMean, + image_std = instance.getImageStd, + resample = instance.getResample, + do_rescale = instance.getDoRescale, + rescale_factor = instance.getRescaleFactor, + size = instance.getSize) + + instance.setModelIfNotSet(spark, tf, preprocessor) } addReader(readTensorflow) @@ -343,13 +348,7 @@ trait ReadSwinForImageDLModel extends ReadTensorflowModel { */ annotatorModel .setSignatures(_signatures) - .setModelIfNotSet( - spark, - wrapper, - preprocessorConfig.image_mean, - preprocessorConfig.image_std, - preprocessorConfig.resample, - preprocessorConfig.size) + .setModelIfNotSet(spark, wrapper, preprocessorConfig) case _ => throw new Exception(notSupportedEngineError) diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ViTForImageClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ViTForImageClassification.scala index d4f80e85c688..768cda90ae54 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ViTForImageClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ViTForImageClassification.scala @@ -230,10 +230,7 @@ class ViTForImageClassification(override val uid: String) def setModelIfNotSet( spark: SparkSession, tensorflow: TensorflowWrapper, - imageMean: Array[Double], - imageStd: Array[Double], - resample: Int, - size: Int): this.type = { + preprocessor: Preprocessor): this.type = { if (_model.isEmpty) { _model = Some( @@ -242,10 +239,7 @@ class ViTForImageClassification(override val uid: String) tensorflow, configProtoBytes = getConfigProtoBytes, tags = $$(labels), - imageMean = imageMean, - imageStd = imageStd, - resample = resample, - size = size, + preprocessor = preprocessor, signatures = getSignatures))) } this @@ -277,13 +271,13 @@ class ViTForImageClassification(override val uid: String) images = noneEmptyImages, batchSize = $(batchSize), preprocessor = Preprocessor( - getDoResize, - getDoNormalize, - getFeatureExtractorType, - getImageMean, - getImageStd, - getResample, - getSize)) + do_normalize = getDoNormalize, + do_resize = getDoResize, + feature_extractor_type = getFeatureExtractorType, + image_mean = getImageMean, + image_std = getImageStd, + resample = getResample, + size = getSize)) } else { Seq.empty[Annotation] } @@ -346,13 +340,17 @@ trait ReadViTForImageDLModel extends ReadTensorflowModel { def readModel(instance: ViTForImageClassification, path: String, spark: SparkSession): Unit = { val tf = readTensorflowModel(path, spark, "_image_classification_tf", initAllTables = false) - instance.setModelIfNotSet( - spark, - tf, + + val preprocessor = Preprocessor( + do_normalize = true, + do_resize = true, + "ViTFeatureExtractor", instance.getImageMean, instance.getImageStd, instance.getResample, instance.getSize) + + instance.setModelIfNotSet(spark, tf, preprocessor) } addReader(readModel) @@ -400,13 +398,7 @@ trait ReadViTForImageDLModel extends ReadTensorflowModel { */ annotatorModel .setSignatures(_signatures) - .setModelIfNotSet( - spark, - wrapper, - preprocessorConfig.image_mean, - preprocessorConfig.image_std, - preprocessorConfig.resample, - preprocessorConfig.size) + .setModelIfNotSet(spark, wrapper, preprocessorConfig) case _ => throw new Exception(notSupportedEngineError) diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/feature_extractor/Preprocessor.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/feature_extractor/Preprocessor.scala index 21d0ee569609..f043f8450d1e 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/feature_extractor/Preprocessor.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/feature_extractor/Preprocessor.scala @@ -17,9 +17,35 @@ package com.johnsnowlabs.nlp.annotators.cv.feature_extractor import com.johnsnowlabs.util.JsonParser -import org.json4s.jackson.JsonMethods import org.json4s.{JNothing, JValue} +/** Case class represting an image pre-processor. Instances should be initialized with + * loadPreprocessorConfig. + * + * @param do_normalize + * Whether to normalize the image by subtracting `mean` and dividing by `std` + * @param do_resize + * Whether to resize the image to `size` + * @param feature_extractor_type + * Name of the feature extractor + * @param image_mean + * Array of means, one value for each color channel + * @param image_std + * Array of standard deviations, one value for each color channel + * @param resample + * Integer representing an image filter to be used for resizing/resampling. Corresponds to + * constants defined in PIL (either PIL.Image.NEAREST, PIL.Image.BILINEAR or PIL.Image.BICUBIC + * supported). + * @param size + * Size of the image after processing + * @param do_rescale + * Whether to rescale color values to rescale_factor + * @param rescale_factor + * Factor to rescale color values by + * @param crop_pct + * Percentage to crop the image. If set, first scales the image, then crops it to arrive at + * `size` + */ private[johnsnowlabs] case class Preprocessor( do_normalize: Boolean = true, do_resize: Boolean = true, @@ -29,7 +55,8 @@ private[johnsnowlabs] case class Preprocessor( resample: Int, size: Int, do_rescale: Boolean = true, - rescale_factor: Double = 1 / 255.0d) + rescale_factor: Double = 1 / 255.0d, + crop_pct: Option[Double] = None) private[johnsnowlabs] case class PreprocessorConfig( do_normalize: Boolean, @@ -41,7 +68,8 @@ private[johnsnowlabs] case class PreprocessorConfig( resample: Int, size: Any, do_rescale: Option[Boolean], - rescale_factor: Option[Double]) + rescale_factor: Option[Double], + crop_pct: Option[Double]) private[johnsnowlabs] object Preprocessor { def apply( @@ -70,6 +98,13 @@ private[johnsnowlabs] object Preprocessor { } } + /** Loads in initializes a Preprocessor from a json string. + * + * @param preprocessorConfigJsonContent + * Json contents in a String + * @return + * Loaded Preprocessor + */ def loadPreprocessorConfig(preprocessorConfigJsonContent: String): Preprocessor = { val preprocessorJsonErrorMsg = @@ -83,53 +118,71 @@ private[johnsnowlabs] object Preprocessor { | "resample": int, | "size": int, | ["do_rescale": bool], - | ["rescale_factor": double] + | ["rescale_factor": double], + | ["crop_pct": double] |} |""".stripMargin + def parseSize(config: PreprocessorConfig) = { + config.size match { + case sizeMap: Map[String, BigInt] if sizeMap.contains("width") => + val width = sizeMap("width") + require( + width == sizeMap("height"), + "Different sizes for width and height are currently not supported.") + width.toInt + case sizeMap: Map[String, BigInt] if sizeMap.contains("shortest_edge") => + // ConvNext case: Size of the output image after `resize` has been applied + sizeMap("shortest_edge").toInt + case sizeInt: BigInt => sizeInt.toInt + case _ => + throw new IllegalArgumentException( + "Unsupported format for size. Should either be int or dict with entries \'width\' and \'height\' or \'shortest_edge\'") + } + } + + def parseExtractorType(config: PreprocessorConfig) = { + config.feature_extractor_type.getOrElse({ + config.image_processor_type + .getOrElse(throw new IllegalArgumentException( + "Either \'feature_extractor_type\' or \'image_processor_type\' should be set.")) + .replace("ImageProcessor", "FeatureExtractor") + }) + } + + def parseRescaleFactor(config: PreprocessorConfig) = { + if (config.do_rescale.isDefined) config.rescale_factor.getOrElse { + throw new IllegalArgumentException( + "Value do_rescale is true but no rescale_factor found in config.") + } + else 1 / 255.0d + } + val preprocessorConfig = try { val config = JsonParser.parseObject[PreprocessorConfig](preprocessorConfigJsonContent) // json4s parses BigInt by default - val size: Int = config.size match { - case sizeMap: Map[String, BigInt] => - val width = sizeMap("width") - require( - width == sizeMap("height"), - "Different sizes for width and height are currently not supported.") - width.toInt - case sizeInt: BigInt => sizeInt.toInt - case _ => - throw new IllegalArgumentException( - "Unsupported format for size. Should either be int or dict with entries \'width\' and \'height\'") - } - - val extractorType = config.feature_extractor_type.getOrElse({ - config.image_processor_type - .getOrElse(throw new IllegalArgumentException( - "Either \'feature_extractor_type\' or \'image_processor_type\' should be set.")) - .replace("ImageProcessor", "FeatureExtractor") - }) - - val doRescale = config.do_rescale.getOrElse(false) - - val rescaleFactor: Double = if (doRescale) config.rescale_factor.getOrElse { - throw new IllegalArgumentException( - "Value do_rescale is true but no rescale_factor found in config.") - } - else 1 / 255.0d // Default value + val size: Int = parseSize(config) + + val extractorType = parseExtractorType(config) + + val rescaleFactor: Double = + parseRescaleFactor(config) // Default value + + val doRescale = config.do_rescale.getOrElse(true) Preprocessor( do_normalize = config.do_normalize, do_resize = config.do_resize, - extractorType, - config.image_mean, - config.image_std, - config.resample, - size, - doRescale, - rescaleFactor) + feature_extractor_type = extractorType, + image_mean = config.image_mean, + image_std = config.image_std, + resample = config.resample, + size = size, + do_rescale = doRescale, + rescale_factor = rescaleFactor, + crop_pct = config.crop_pct) } catch { case e: Exception => println(s"$preprocessorJsonErrorMsg \n error: ${e.getMessage}") diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/util/transform/ImageResizeUtils.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/util/transform/ImageResizeUtils.scala index d2661c2d01a2..c393fc30e010 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/util/transform/ImageResizeUtils.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/util/transform/ImageResizeUtils.scala @@ -16,36 +16,40 @@ package com.johnsnowlabs.nlp.annotators.cv.util.transform -import com.johnsnowlabs.nlp.annotators.cv.util.io.ImageIOUtils - +import java.awt.Color import java.awt.geom.AffineTransform import java.awt.image.{AffineTransformOp, BufferedImage} -import java.awt.{Color, Image} import scala.collection.mutable.ArrayBuffer private[johnsnowlabs] object ImageResizeUtils { - def resizeBufferedImage(width: Int, height: Int, channels: Option[Int])( + /** Resized a BufferedImage with specified width, height and filter. + * + * @param width + * Target width of the image + * @param height + * Target height of the image + * @param resample + * Transformation/Filter to apply, either `AffineTransformOp.TYPE_NEAREST_NEIGHBOR`(1), + * `AffineTransformOp.TYPE_BILINEAR`(2), `AffineTransformOp.TYPE_BICUBIC`(3) + * @param image + * Image to resize + * @return + * Resized BufferedImage + */ + def resizeBufferedImage(width: Int, height: Int, resample: Int)( image: BufferedImage): BufferedImage = { - val imgType = channels.map(ImageIOUtils.convertChannelsToType).getOrElse(image.getType) - if (image.getWidth == width && - image.getHeight == height && - image.getType == imgType) { - return image - } + val scaleX = width / image.getWidth.toDouble + val scaleY = height / image.getHeight.toDouble + + val transform = AffineTransform.getScaleInstance(scaleX, scaleY) + val transformOp = new AffineTransformOp(transform, resample) + val result = transformOp.filter(image, null) // Creates new BufferedImage - // SCALE_AREA_AVERAGING performs slower than SCALE_DEFAULT - val resizedImage = image.getScaledInstance(width, height, Image.SCALE_DEFAULT) - val bufferedImage = new BufferedImage(width, height, imgType) - val graphic = bufferedImage.createGraphics() - // scalastyle:ignore null - graphic.drawImage(resizedImage, 0, 0, null) - graphic.dispose() - bufferedImage + result } - // TODO implement doNormalize = false to only return Array[Array[Array[Float]]] without normalizing /** @param img * The image in BufferedImage * @param mean @@ -56,11 +60,14 @@ private[johnsnowlabs] object ImageResizeUtils { * Factor to rescale the image values by * @return */ - def normalizeBufferedImage( + def normalizeAndConvertBufferedImage( img: BufferedImage, mean: Array[Double], std: Array[Double], - rescaleFactor: Double = 1 / 255.0d): Array[Array[Array[Float]]] = { + doNormalize: Boolean, + doRescale: Boolean, + rescaleFactor: Double): Array[Array[Array[Float]]] = { + val data = Array(ArrayBuffer[Array[Float]](), ArrayBuffer[Array[Float]](), ArrayBuffer[Array[Float]]()) for (y <- 0 until img.getHeight) { @@ -73,10 +80,18 @@ private[johnsnowlabs] object ImageResizeUtils { // Creating a Color object from pixel value val color = new Color(pixel, true) - // Retrieving the R G B values and Normalizing them - val red = ((color.getRed * rescaleFactor) - mean.head) / std.head - val green = ((color.getGreen * rescaleFactor) - mean(1)) / std(1) - val blue = ((color.getBlue * rescaleFactor) - mean(2)) / std(2) + // Retrieving the R G B values, rescaling and normalizing them + val rescaledRed = if (doRescale) color.getRed * rescaleFactor else color.getRed + val rescaledGreen = if (doRescale) color.getGreen * rescaleFactor else color.getGreen + val rescaledBlue = if (doRescale) color.getBlue * rescaleFactor else color.getBlue + + val (red, green, blue) = if (doNormalize) { + val normR = (rescaledRed - mean.head) / std.head + val normG = (rescaledGreen - mean(1)) / std(1) + val normB = (rescaledBlue - mean(2)) / std(2) + (normR, normG, normB) + } else (rescaledRed, rescaledGreen, rescaledBlue) + RedList += red.toFloat GreenList += green.toFloat BlueList += blue.toFloat @@ -125,4 +140,38 @@ private[johnsnowlabs] object ImageResizeUtils { height: Int): BufferedImage = { bufferedImage.getSubimage(x, y, width, height) } + + /** Resizes and crops an image, intended for smaller images. + * + * The image is resized based on a percentage. The smaller edge will be resized to + * `requestedSize / cropPct` and then cropped to `(requestedSize, requestedSize)`. + */ + def resizeAndCenterCropImage( + img: BufferedImage, + requestedSize: Int, + resample: Int, + cropPct: Double): BufferedImage = { + + val width = img.getWidth() + val height = img.getHeight() + + val (shortEdge, longEdge) = if (width <= height) (width, height) else (height, width) + + val sizeForCrop = requestedSize / cropPct + val newShortEdge = sizeForCrop.toInt + val newLongEdge = (sizeForCrop * (longEdge / shortEdge.toFloat)).toInt + + val (resizeWidth, resizeHeight) = + if (width <= height) (newShortEdge, newLongEdge) else (newLongEdge, newShortEdge) + + // Resize the Image with the new calculated size + val resizedImage = + resizeBufferedImage(resizeWidth, resizeHeight, resample)(img) + + // Crop at the center of the image + val cropLeft = (resizeWidth - requestedSize).abs / 2 + val cropTop = (resizeHeight - requestedSize).abs / 2 + + cropBufferedImage(resizedImage, cropLeft, cropTop, requestedSize, requestedSize) + } } diff --git a/src/main/scala/com/johnsnowlabs/nlp/pretrained/ResourceDownloader.scala b/src/main/scala/com/johnsnowlabs/nlp/pretrained/ResourceDownloader.scala index 0a3a22bfb4b0..87a326209d92 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/pretrained/ResourceDownloader.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/pretrained/ResourceDownloader.scala @@ -21,7 +21,11 @@ import com.johnsnowlabs.nlp.annotators._ import com.johnsnowlabs.nlp.annotators.audio.{HubertForCTC, Wav2Vec2ForCTC} import com.johnsnowlabs.nlp.annotators.classifier.dl._ import com.johnsnowlabs.nlp.annotators.coref.SpanBertCorefModel -import com.johnsnowlabs.nlp.annotators.cv.{SwinForImageClassification, ViTForImageClassification} +import com.johnsnowlabs.nlp.annotators.cv.{ + ConvNextForImageClassification, + SwinForImageClassification, + ViTForImageClassification +} import com.johnsnowlabs.nlp.annotators.er.EntityRulerModel import com.johnsnowlabs.nlp.annotators.ld.dl.LanguageDetectorDL import com.johnsnowlabs.nlp.annotators.ner.crf.NerCrfModel @@ -708,6 +712,7 @@ object PythonResourceDownloader { "SpanBertCorefModel" -> SpanBertCorefModel, "ViTForImageClassification" -> ViTForImageClassification, "SwinForImageClassification" -> SwinForImageClassification, + "ConvNextForImageClassification" -> ConvNextForImageClassification, "Wav2Vec2ForCTC" -> Wav2Vec2ForCTC, "HubertForCTC" -> HubertForCTC, "CamemBertForTokenClassification" -> CamemBertForTokenClassification, diff --git a/src/test/resources/image_preprocessor/normalized_egyptian_cat.json b/src/test/resources/image_preprocessor/normalized_egyptian_cat.json deleted file mode 100644 index 68c506c6cdbd..000000000000 --- a/src/test/resources/image_preprocessor/normalized_egyptian_cat.json +++ /dev/null @@ -1,2 +0,0 @@ -[[[0.31381112337112427,0.5193081498146057,0.5706824064254761,0.5706824064254761,0.48505866527557373,0.6049319505691528,0.5878071784973145,0.433684378862381,0.5535576939582825,0.33093586564064026,0.5706824064254761,0.7419299483299255,0.6905556917190552,0.8275537490844727,0.6049319505691528,0.7761794924736023,0.8275537490844727,0.6049319505691528,0.7076804637908936,0.6905556917190552,0.7933042049407959,0.7076804637908936,0.8618032336235046,0.6905556917190552,0.8275537490844727,0.9816765189170837,0.7933042049407959,0.7419299483299255,0.7419299483299255,0.8104289770126343,0.8275537490844727,0.7076804637908936,0.913177490234375,0.7590547204017639,0.8104289770126343,1.0501755475997925,0.9816765189170837,0.9645517468452454,0.9474270343780518,0.9474270343780518,0.5364329218864441,0.6905556917190552,0.7761794924736023,0.8446784615516663,0.9474270343780518,0.7590547204017639,0.7590547204017639,1.0159260034561157,0.8960527181625366,0.7076804637908936,0.7590547204017639,0.7248051762580872,0.9303022623062134,0.878928005695343,0.9303022623062134,0.7933042049407959,0.9645517468452454,0.913177490234375,0.913177490234375,0.8960527181625366,0.9816765189170837,0.6905556917190552,0.8618032336235046,0.8618032336235046,1.033050775527954,0.9474270343780518,0.9816765189170837,0.9303022623062134,0.9303022623062134,0.913177490234375,1.1529240608215332,0.8446784615516663,1.1357992887496948,1.0844250917434692,1.1186745166778564,0.913177490234375,1.033050775527954,1.0844250917434692,1.1529240608215332,0.8618032336235046,0.8960527181625366,0.9303022623062134,1.0159260034561157,1.0159260034561157,0.9474270343780518,0.9988012909889221,1.1529240608215332,0.9645517468452454,1.375545859336853,0.878928005695343,1.1529240608215332,1.0159260034561157,1.0844250917434692,0.9988012909889221,1.0844250917434692,1.18717360496521,1.0501755475997925,1.1186745166778564,1.2214230298995972,1.0159260034561157,1.2042982578277588,1.2214230298995972,1.18717360496521,0.9816765189170837,0.7419299483299255,1.033050775527954,0.8104289770126343,0.913177490234375,0.8960527181625366,0.6563062071800232,0.7933042049407959,0.8275537490844727,0.913177490234375,1.0159260034561157,0.9988012909889221,0.8446784615516663,0.7933042049407959,0.9303022623062134,0.7590547204017639,0.7933042049407959,0.8275537490844727,0.6220566630363464,0.7248051762580872,0.7419299483299255,0.48505866527557373,0.7590547204017639,0.5878071784973145,0.6391814351081848,0.5878071784973145,0.6220566630363464,0.7419299483299255,0.34806060791015625,0.6391814351081848,0.433684378862381,0.6391814351081848,0.3823101222515106,0.24531209468841553,0.31381112337112427,0.3823101222515106,0.09118931740522385,0.03981505334377289,0.36518537998199463,0.22818733751773834,-0.028683962300419807,-0.04580871760845184,-0.14855724573135376,-0.08005822449922562,-0.28555527329444885,-0.0971829816699028,-0.01155920885503292,-0.028683962300419807,-0.14855724573135376,0.022690298035740852,-0.28555527329444885,-0.0971829816699028,-0.2513057589530945,-0.3198047876358032,-0.2170562595129013,-0.30268001556396484,-0.16568198800086975,0.09118931740522385,0.07406456023454666,0.03981505334377289,-0.11430773138999939,-0.14855724573135376,-0.26843053102493286,-0.2513057589530945,-0.3711790442466736,-0.4739275574684143,-1.073293924331665,-2.0494048595428467,-2.1179039478302,-2.1179039478302,-1.6555355787277222,-1.1246682405471802,-1.073293924331665,-1.3472900390625,-0.9362959265708923,-0.6794245839118958,-0.542426586151123,-0.4568028151988983,-0.3711790442466736,-0.4910523295402527,-0.7650483846664429,-0.5938008427619934,-0.5081770420074463,-0.14855724573135376,-0.19993150234222412,-0.08005822449922562,0.022690298035740852,-0.13143248856067657,-0.16568198800086975,0.056939806789159775,0.07406456023454666,-0.08005822449922562,0.022690298035740852,0.10831406712532043,0.12543882429599762,-0.01155920885503292,0.03981505334377289,0.005565545056015253,-0.04580871760845184,-0.01155920885503292,-0.028683962300419807,-0.08005822449922562,-0.0971829816699028,-0.18280674517154694,0.022690298035740852,-0.28555527329444885,-0.04580871760845184,-0.2513057589530945,-0.06293346732854843,-0.30268001556396484,-0.3369295299053192,-0.18280674517154694,-0.16568198800086975,-0.576676070690155,-0.3369295299053192,-0.5938008427619934,-0.19993150234222412,-0.28555527329444885,-0.4739275574684143,-0.3711790442466736,-0.14855724573135376],[0.5021833777427673,0.399434894323349,0.5021833777427673,0.6563062071800232,0.6563062071800232,0.46793389320373535,0.6734309196472168,0.5535576939582825,0.6563062071800232,0.6220566630363464,0.5706824064254761,0.878928005695343,0.7761794924736023,0.8618032336235046,0.9645517468452454,0.8275537490844727,0.6391814351081848,0.9303022623062134,0.8446784615516663,0.8446784615516663,0.8104289770126343,0.7761794924736023,0.6734309196472168,0.7590547204017639,0.913177490234375,0.7590547204017639,0.5535576939582825,0.6734309196472168,0.6391814351081848,0.878928005695343,0.8104289770126343,0.8618032336235046,0.7933042049407959,0.7590547204017639,0.8618032336235046,0.8960527181625366,0.7761794924736023,0.8104289770126343,0.7590547204017639,0.7761794924736023,0.6905556917190552,0.8275537490844727,0.8960527181625366,0.878928005695343,0.7590547204017639,0.8104289770126343,0.6049319505691528,0.8446784615516663,0.878928005695343,0.8618032336235046,0.878928005695343,0.6220566630363464,0.8618032336235046,0.8446784615516663,0.7590547204017639,0.9988012909889221,0.6563062071800232,1.0501755475997925,1.2214230298995972,0.9645517468452454,0.9474270343780518,1.1700488328933716,1.0501755475997925,1.2214230298995972,1.0501755475997925,0.8104289770126343,1.0844250917434692,0.878928005695343,0.9816765189170837,0.878928005695343,1.0673003196716309,1.0673003196716309,0.9816765189170837,1.0501755475997925,1.1186745166778564,1.18717360496521,1.18717360496521,1.0844250917434692,1.0501755475997925,0.9816765189170837,1.101549744606018,1.033050775527954,1.1529240608215332,1.1186745166778564,1.0501755475997925,0.9303022623062134,0.8275537490844727,0.8960527181625366,0.878928005695343,0.9988012909889221,1.18717360496521,0.8960527181625366,1.1529240608215332,1.1700488328933716,1.101549744606018,1.101549744606018,1.2042982578277588,1.0159260034561157,1.2042982578277588,1.1529240608215332,1.0844250917434692,1.1186745166778564,1.0501755475997925,0.8618032336235046,0.7419299483299255,0.878928005695343,0.8446784615516663,0.9816765189170837,0.9645517468452454,0.878928005695343,0.8960527181625366,0.7419299483299255,0.7761794924736023,0.8104289770126343,0.6220566630363464,0.9474270343780518,0.9303022623062134,0.7590547204017639,0.7419299483299255,0.8104289770126343,0.6563062071800232,0.6563062071800232,0.7933042049407959,0.6220566630363464,0.46793389320373535,0.8446784615516663,0.6049319505691528,0.6563062071800232,0.6391814351081848,0.5364329218864441,0.5706824064254761,0.5193081498146057,0.7761794924736023,0.5535576939582825,0.5364329218864441,0.21106259524822235,0.10831406712532043,0.19393783807754517,-0.04580871760845184,0.09118931740522385,0.17681308090686798,-0.14855724573135376,-0.0971829816699028,0.022690298035740852,-0.11430773138999939,-0.2170562595129013,-0.0971829816699028,-0.028683962300419807,0.022690298035740852,-0.01155920885503292,-0.13143248856067657,-0.01155920885503292,-0.42255330085754395,-0.2170562595129013,-0.2170562595129013,-0.14855724573135376,-0.3711790442466736,-0.16568198800086975,0.03981505334377289,-0.06293346732854843,0.09118931740522385,-0.028683962300419807,-0.0971829816699028,-0.19993150234222412,-0.0971829816699028,-0.2341810017824173,-0.30268001556396484,-0.28555527329444885,-1.073293924331665,-0.9534206986427307,-1.8952821493148804,-2.1007792949676514,-2.1179039478302,-1.3301652669906616,-1.604161262512207,-1.3130404949188232,-0.8506721258163452,-1.004794955253601,-0.7307988405227661,-0.6622998714447021,-0.4568028151988983,-0.28555527329444885,-0.2513057589530945,-0.3883037865161896,-0.5081770420074463,-0.26843053102493286,-0.2513057589530945,-0.11430773138999939,-0.028683962300419807,0.12543882429599762,0.022690298035740852,-0.08005822449922562,-0.0971829816699028,0.10831406712532043,0.03981505334377289,0.10831406712532043,0.19393783807754517,0.07406456023454666,0.005565545056015253,-0.04580871760845184,0.09118931740522385,0.03981505334377289,-0.01155920885503292,-0.13143248856067657,0.056939806789159775,-0.19993150234222412,-0.2513057589530945,0.12543882429599762,-0.3883037865161896,-0.14855724573135376,-0.28555527329444885,-0.0971829816699028,-0.11430773138999939,-0.2170562595129013,-0.2341810017824173,-0.30268001556396484,-0.3198047876358032,-0.26843053102493286,-0.2341810017824173,-0.3540542721748352,-0.3540542721748352,-0.2513057589530945,-0.30268001556396484,-0.5081770420074463],[0.24531209468841553,0.399434894323349,0.33093586564064026,0.416559636592865,0.5535576939582825,0.5364329218864441,0.5878071784973145,0.433684378862381,0.6220566630363464,0.8275537490844727,0.7933042049407959,0.6734309196472168,0.7761794924736023,0.7419299483299255,0.6734309196472168,0.8618032336235046,0.8618032336235046,0.7076804637908936,0.8275537490844727,0.9303022623062134,0.7076804637908936,0.878928005695343,0.8618032336235046,0.9474270343780518,0.8618032336235046,0.7590547204017639,0.7419299483299255,0.5706824064254761,0.6220566630363464,0.6905556917190552,0.6049319505691528,0.9816765189170837,0.7761794924736023,1.0673003196716309,1.1186745166778564,0.7933042049407959,0.8618032336235046,0.9474270343780518,0.8275537490844727,1.0844250917434692,0.8618032336235046,0.7248051762580872,0.7076804637908936,0.7419299483299255,0.8618032336235046,0.878928005695343,0.878928005695343,0.7933042049407959,0.878928005695343,0.9645517468452454,0.8275537490844727,0.7419299483299255,0.5364329218864441,0.8104289770126343,0.8104289770126343,0.9303022623062134,0.8446784615516663,0.878928005695343,0.7933042049407959,1.033050775527954,1.033050775527954,0.9645517468452454,1.0501755475997925,0.9816765189170837,1.0159260034561157,1.0159260034561157,0.9474270343780518,0.878928005695343,0.878928005695343,0.9988012909889221,0.8446784615516663,0.8275537490844727,0.9816765189170837,1.1186745166778564,1.0159260034561157,1.1186745166778564,1.1186745166778564,1.0501755475997925,0.9474270343780518,0.9474270343780518,0.8960527181625366,0.9988012909889221,0.913177490234375,0.878928005695343,0.9645517468452454,1.0159260034561157,1.1529240608215332,0.9816765189170837,1.1357992887496948,1.0673003196716309,1.0673003196716309,1.033050775527954,0.9816765189170837,1.0844250917434692,1.1186745166778564,1.0159260034561157,1.0159260034561157,0.878928005695343,1.255672574043274,1.2214230298995972,1.033050775527954,0.8275537490844727,1.0159260034561157,0.8618032336235046,0.8275537490844727,0.7933042049407959,0.7076804637908936,0.913177490234375,0.913177490234375,0.8960527181625366,0.8446784615516663,0.9303022623062134,0.6905556917190552,0.913177490234375,0.7419299483299255,0.7248051762580872,0.7933042049407959,0.7076804637908936,0.7076804637908936,0.8104289770126343,0.7076804637908936,0.6905556917190552,0.6049319505691528,0.5364329218864441,0.6734309196472168,0.6563062071800232,0.6563062071800232,0.5193081498146057,0.7248051762580872,0.7761794924736023,0.7248051762580872,0.5364329218864441,0.5878071784973145,0.33093586564064026,0.1596883237361908,0.19393783807754517,0.03981505334377289,0.022690298035740852,0.03981505334377289,0.1596883237361908,-0.19993150234222412,0.056939806789159775,0.09118931740522385,0.022690298035740852,-0.06293346732854843,-0.18280674517154694,-0.01155920885503292,0.005565545056015253,-0.2170562595129013,-0.06293346732854843,-0.13143248856067657,-0.5253018140792847,-0.2170562595129013,-0.08005822449922562,-0.2341810017824173,-0.42255330085754395,-0.0971829816699028,0.12543882429599762,0.12543882429599762,-0.0971829816699028,-0.11430773138999939,-0.28555527329444885,-0.3198047876358032,-0.2341810017824173,-0.2513057589530945,0.005565545056015253,-0.28555527329444885,-0.6109256148338318,-1.9295316934585571,-0.6109256148338318,-2.0665297508239746,-2.0494048595428467,-2.0665297508239746,-1.0219197273254395,-1.415789008140564,-1.3815394639968872,-0.7650483846664429,-0.6794245839118958,-0.9362959265708923,-0.7650483846664429,-0.6109256148338318,-0.3883037865161896,-0.2513057589530945,-0.28555527329444885,-0.40542855858802795,-0.3540542721748352,-0.42255330085754395,-0.30268001556396484,-0.2513057589530945,-0.2513057589530945,-0.19993150234222412,-0.04580871760845184,-0.028683962300419807,-0.01155920885503292,0.056939806789159775,0.10831406712532043,0.1596883237361908,0.03981505334377289,0.09118931740522385,0.1425635814666748,0.07406456023454666,-0.16568198800086975,-0.0971829816699028,0.022690298035740852,0.07406456023454666,-0.13143248856067657,-0.14855724573135376,-0.28555527329444885,-0.06293346732854843,-0.26843053102493286,-0.08005822449922562,-0.28555527329444885,-0.2341810017824173,-0.28555527329444885,-0.3198047876358032,-0.4739275574684143,-0.2170562595129013,-0.2513057589530945,-0.3198047876358032,-0.3198047876358032,-0.3540542721748352,-0.5595513582229614,-0.576676070690155,-0.4910523295402527],[0.3823101222515106,0.45080915093421936,0.5535576939582825,0.416559636592865,0.31381112337112427,0.5535576939582825,0.399434894323349,0.48505866527557373,0.6734309196472168,0.7761794924736023,0.6220566630363464,0.45080915093421936,0.7419299483299255,0.6391814351081848,0.8960527181625366,0.6734309196472168,0.6905556917190552,0.7590547204017639,0.8104289770126343,0.9645517468452454,0.8104289770126343,0.8104289770126343,0.7076804637908936,0.7761794924736023,0.7248051762580872,0.6734309196472168,0.7419299483299255,0.6563062071800232,0.6391814351081848,0.7076804637908936,0.6220566630363464,0.5706824064254761,0.7933042049407959,0.48505866527557373,1.0159260034561157,0.8960527181625366,0.8960527181625366,0.9303022623062134,0.8960527181625366,0.9303022623062134,0.7248051762580872,0.5706824064254761,0.9474270343780518,0.7419299483299255,0.8446784615516663,0.6563062071800232,0.7590547204017639,0.7590547204017639,0.7248051762580872,0.9474270343780518,0.9303022623062134,0.7590547204017639,0.9474270343780518,0.8960527181625366,1.0501755475997925,0.9988012909889221,0.878928005695343,1.0159260034561157,0.8618032336235046,0.7590547204017639,0.8618032336235046,0.8446784615516663,0.7076804637908936,0.9645517468452454,0.9816765189170837,0.8275537490844727,1.0159260034561157,0.9303022623062134,0.7419299483299255,0.7761794924736023,0.9816765189170837,1.033050775527954,0.878928005695343,0.8618032336235046,0.9988012909889221,1.0673003196716309,0.9645517468452454,0.9303022623062134,1.0673003196716309,1.101549744606018,0.6905556917190552,1.033050775527954,0.9816765189170837,1.1186745166778564,0.878928005695343,0.8960527181625366,1.1186745166778564,1.0159260034561157,0.878928005695343,0.9645517468452454,0.9816765189170837,1.101549744606018,1.0159260034561157,0.9988012909889221,1.1529240608215332,1.1357992887496948,1.0501755475997925,1.18717360496521,0.9988012909889221,1.101549744606018,1.0501755475997925,0.8275537490844727,0.6220566630363464,0.7076804637908936,0.913177490234375,0.8446784615516663,0.7076804637908936,0.9303022623062134,0.8618032336235046,0.5535576939582825,0.7248051762580872,0.6563062071800232,0.8960527181625366,0.8446784615516663,0.8618032336235046,0.7590547204017639,0.7761794924736023,0.6563062071800232,0.8104289770126343,0.5021833777427673,0.5878071784973145,0.6563062071800232,0.5193081498146057,0.5193081498146057,0.5878071784973145,0.6049319505691528,0.6563062071800232,0.5193081498146057,0.7248051762580872,0.7419299483299255,0.5193081498146057,0.6734309196472168,0.19393783807754517,-0.11430773138999939,0.1425635814666748,0.21106259524822235,0.022690298035740852,0.10831406712532043,0.1596883237361908,0.005565545056015253,0.07406456023454666,-0.18280674517154694,-0.26843053102493286,-0.0971829816699028,-0.08005822449922562,-0.14855724573135376,-0.11430773138999939,0.005565545056015253,-0.19993150234222412,-0.2170562595129013,-0.2170562595129013,-0.04580871760845184,-0.18280674517154694,-0.26843053102493286,-0.28555527329444885,-0.028683962300419807,0.09118931740522385,-0.01155920885503292,-0.08005822449922562,-0.30268001556396484,-0.3369295299053192,0.005565545056015253,-0.01155920885503292,-0.13143248856067657,-0.28555527329444885,-0.3540542721748352,-0.5081770420074463,-0.9534206986427307,-1.467163324356079,-2.1179039478302,-2.1179039478302,-1.9809058904647827,-2.0494048595428467,-0.9020463824272156,-1.4329137802124023,-1.2787909507751465,-1.2616662979125977,-0.6794245839118958,-0.576676070690155,-0.6965493559837341,-0.5081770420074463,-0.28555527329444885,-0.11430773138999939,-0.028683962300419807,-0.0971829816699028,-0.14855724573135376,-0.30268001556396484,-0.18280674517154694,-0.26843053102493286,-0.18280674517154694,-0.01155920885503292,-0.0971829816699028,-0.16568198800086975,-0.0971829816699028,-0.01155920885503292,-0.11430773138999939,0.07406456023454666,-0.04580871760845184,-0.01155920885503292,0.022690298035740852,-0.028683962300419807,0.09118931740522385,0.005565545056015253,-0.01155920885503292,-0.04580871760845184,-0.04580871760845184,0.022690298035740852,-0.42255330085754395,0.03981505334377289,-0.3369295299053192,-0.19993150234222412,-0.2513057589530945,-0.5253018140792847,-0.3369295299053192,-0.3540542721748352,-0.30268001556396484,-0.19993150234222412,-0.2170562595129013,-0.5938008427619934,-0.08005822449922562,-0.4910523295402527,-0.4568028151988983,-0.2341810017824173,-0.16568198800086975],[0.36518537998199463,0.19393783807754517,0.31381112337112427,0.33093586564064026,0.46793389320373535,0.46793389320373535,0.48505866527557373,0.5706824064254761,0.45080915093421936,0.6391814351081848,0.5193081498146057,0.7076804637908936,0.6563062071800232,0.6905556917190552,0.7590547204017639,0.7761794924736023,0.7590547204017639,0.9303022623062134,0.7419299483299255,0.9303022623062134,0.9988012909889221,0.8960527181625366,0.5706824064254761,0.6905556917190552,0.7419299483299255,0.6391814351081848,0.7076804637908936,0.7761794924736023,0.6220566630363464,0.5706824064254761,0.7590547204017639,0.6220566630363464,0.7248051762580872,0.8275537490844727,1.033050775527954,0.9303022623062134,0.9303022623062134,0.8275537490844727,0.8618032336235046,0.9816765189170837,0.5706824064254761,0.9645517468452454,0.8275537490844727,0.7248051762580872,0.7590547204017639,0.6905556917190552,0.7933042049407959,0.7248051762580872,0.8104289770126343,0.9303022623062134,0.9816765189170837,0.913177490234375,0.5193081498146057,0.9645517468452454,1.0501755475997925,0.913177490234375,1.18717360496521,1.033050775527954,0.8104289770126343,0.878928005695343,1.1529240608215332,0.8446784615516663,0.913177490234375,1.0159260034561157,1.0501755475997925,0.9645517468452454,0.9816765189170837,1.1186745166778564,1.1700488328933716,0.8960527181625366,0.8275537490844727,0.9816765189170837,1.101549744606018,1.0159260034561157,0.9816765189170837,0.9645517468452454,0.913177490234375,0.8104289770126343,0.9645517468452454,0.8104289770126343,0.6563062071800232,0.8104289770126343,1.1186745166778564,0.9645517468452454,0.8618032336235046,0.9816765189170837,1.101549744606018,1.033050775527954,1.0159260034561157,0.9645517468452454,1.1186745166778564,0.9474270343780518,0.8275537490844727,0.9816765189170837,1.1700488328933716,0.9474270343780518,1.0501755475997925,1.2214230298995972,1.0159260034561157,0.8446784615516663,0.6220566630363464,0.8104289770126343,0.7590547204017639,0.6905556917190552,0.6734309196472168,0.7761794924736023,0.6391814351081848,0.7933042049407959,0.6563062071800232,0.7076804637908936,0.8104289770126343,0.6049319505691528,0.7248051762580872,0.8275537490844727,0.8618032336235046,0.6563062071800232,0.7076804637908936,0.7761794924736023,0.7761794924736023,0.7076804637908936,0.6049319505691528,0.6563062071800232,0.8104289770126343,0.7248051762580872,0.6905556917190552,0.5878071784973145,0.6220566630363464,0.6563062071800232,0.878928005695343,0.7761794924736023,0.2966863512992859,0.10831406712532043,0.1596883237361908,0.10831406712532043,0.005565545056015253,0.03981505334377289,-0.028683962300419807,0.07406456023454666,-0.2170562595129013,-0.028683962300419807,-0.04580871760845184,0.056939806789159775,-0.13143248856067657,-0.0971829816699028,-0.28555527329444885,-0.16568198800086975,-0.028683962300419807,-0.2341810017824173,-0.19993150234222412,-0.2513057589530945,-0.3198047876358032,-0.2513057589530945,-0.2513057589530945,-0.11430773138999939,0.056939806789159775,0.1596883237361908,-0.028683962300419807,0.005565545056015253,-0.2170562595129013,-0.30268001556396484,-0.028683962300419807,-0.18280674517154694,-0.04580871760845184,-0.14855724573135376,-0.4568028151988983,-0.42255330085754395,-0.5081770420074463,-1.8952821493148804,-1.1075434684753418,-2.0836544036865234,-2.1179039478302,-1.946656346321106,-1.3986642360687256,-1.5870366096496582,-1.2616662979125977,-1.0904186964035034,-1.1417930126190186,-0.8506721258163452,-0.5253018140792847,-0.576676070690155,-0.6109256148338318,-0.6280503273010254,-0.3540542721748352,-0.0971829816699028,-0.0971829816699028,-0.18280674517154694,0.056939806789159775,-0.11430773138999939,0.03981505334377289,0.056939806789159775,0.022690298035740852,-0.08005822449922562,0.056939806789159775,-0.01155920885503292,0.07406456023454666,0.19393783807754517,-0.028683962300419807,0.005565545056015253,-0.028683962300419807,0.005565545056015253,0.09118931740522385,-0.04580871760845184,0.022690298035740852,0.10831406712532043,-0.04580871760845184,-0.01155920885503292,-0.19993150234222412,0.12543882429599762,-0.13143248856067657,-0.3369295299053192,-0.3198047876358032,-0.5081770420074463,-0.30268001556396484,-0.19993150234222412,-0.3540542721748352,-0.3883037865161896,-0.2170562595129013,-0.4739275574684143,-0.43967804312705994,-0.3883037865161896,-0.40542855858802795,-0.4568028151988983,-0.16568198800086975,-0.3369295299053192],[0.19393783807754517,0.34806060791015625,0.6220566630363464,0.2624368667602539,0.5193081498146057,0.6049319505691528,0.48505866527557373,0.3823101222515106,0.45080915093421936,0.6563062071800232,0.5706824064254761,0.7076804637908936,0.8275537490844727,0.7076804637908936,0.7590547204017639,0.7076804637908936,0.6220566630363464,0.878928005695343,0.6220566630363464,0.7761794924736023,0.7419299483299255,0.8275537490844727,0.6049319505691528,0.5535576939582825,0.48505866527557373,0.7590547204017639,0.8618032336235046,0.7248051762580872,0.6734309196472168,0.6734309196472168,0.6220566630363464,0.6734309196472168,0.6563062071800232,0.8104289770126343,0.913177490234375,0.7590547204017639,0.7076804637908936,0.8275537490844727,0.7248051762580872,0.8618032336235046,0.8446784615516663,0.7248051762580872,0.7761794924736023,0.7590547204017639,0.6905556917190552,0.6049319505691528,0.7248051762580872,0.6734309196472168,0.6905556917190552,0.6734309196472168,0.9303022623062134,0.7419299483299255,0.8960527181625366,0.9816765189170837,0.913177490234375,0.7076804637908936,0.913177490234375,0.7590547204017639,0.8275537490844727,1.0673003196716309,0.9645517468452454,0.9816765189170837,0.7933042049407959,0.8104289770126343,0.913177490234375,0.9816765189170837,0.8960527181625366,0.8618032336235046,1.0159260034561157,0.7761794924736023,1.0159260034561157,0.7933042049407959,0.913177490234375,0.9988012909889221,1.0159260034561157,0.8446784615516663,1.033050775527954,1.1186745166778564,0.9816765189170837,0.8446784615516663,0.9303022623062134,0.9474270343780518,0.913177490234375,0.8618032336235046,0.9474270343780518,0.9816765189170837,0.7933042049407959,0.8960527181625366,0.8618032336235046,0.913177490234375,0.6905556917190552,1.0159260034561157,1.0844250917434692,1.0673003196716309,0.9988012909889221,0.9988012909889221,1.0844250917434692,0.8960527181625366,0.7076804637908936,0.8275537490844727,0.6391814351081848,0.7590547204017639,0.913177490234375,0.6391814351081848,0.8104289770126343,0.7761794924736023,0.7076804637908936,0.6391814351081848,0.6391814351081848,0.7248051762580872,0.5878071784973145,0.6563062071800232,0.7076804637908936,0.8104289770126343,0.6563062071800232,0.8960527181625366,0.5535576939582825,0.5706824064254761,0.5021833777427673,0.48505866527557373,0.416559636592865,0.6905556917190552,0.3823101222515106,0.5535576939582825,0.8275537490844727,0.416559636592865,0.5878071784973145,0.6049319505691528,0.2624368667602539,0.09118931740522385,0.10831406712532043,0.005565545056015253,-0.01155920885503292,-0.01155920885503292,-0.0971829816699028,0.056939806789159775,-0.01155920885503292,-0.0971829816699028,0.022690298035740852,-0.13143248856067657,-0.19993150234222412,-0.30268001556396484,-0.19993150234222412,-0.06293346732854843,-0.30268001556396484,-0.26843053102493286,-0.2341810017824173,-0.19993150234222412,-0.43967804312705994,-0.3369295299053192,-0.26843053102493286,-0.2341810017824173,-0.13143248856067657,0.03981505334377289,0.022690298035740852,-0.11430773138999939,0.09118931740522385,-0.0971829816699028,0.005565545056015253,-0.18280674517154694,-0.2341810017824173,-0.28555527329444885,-0.43967804312705994,-0.4910523295402527,-0.3883037865161896,-0.5081770420074463,-0.6965493559837341,-1.1760424375534058,-2.032280206680298,-2.032280206680298,-2.0494048595428467,-1.8267830610275269,-1.1417930126190186,-1.4842880964279175,-1.3301652669906616,-1.1417930126190186,-0.8506721258163452,-0.8506721258163452,-0.7136741280555725,-0.4739275574684143,-0.42255330085754395,-0.5253018140792847,-0.4568028151988983,-0.3369295299053192,-0.2170562595129013,0.005565545056015253,0.022690298035740852,0.09118931740522385,0.005565545056015253,0.09118931740522385,0.005565545056015253,-0.01155920885503292,0.005565545056015253,-0.13143248856067657,0.005565545056015253,0.056939806789159775,0.12543882429599762,0.17681308090686798,0.022690298035740852,0.1596883237361908,-0.01155920885503292,-0.08005822449922562,-0.01155920885503292,-0.0971829816699028,0.056939806789159775,-0.028683962300419807,-0.06293346732854843,-0.028683962300419807,-0.26843053102493286,-0.3540542721748352,-0.06293346732854843,-0.3198047876358032,-0.30268001556396484,-0.2341810017824173,-0.4910523295402527,-0.3711790442466736,-0.3883037865161896,-0.3198047876358032,-0.5253018140792847,-0.2513057589530945,-0.3540542721748352,-0.4568028151988983,-0.28555527329444885,-0.40542855858802795],[0.022690298035740852,0.1425635814666748,0.056939806789159775,0.22818733751773834,0.33093586564064026,0.48505866527557373,0.399434894323349,0.416559636592865,0.5706824064254761,0.6220566630363464,0.6049319505691528,0.5706824064254761,0.6734309196472168,0.6734309196472168,0.5535576939582825,0.6049319505691528,0.6905556917190552,0.6563062071800232,0.7076804637908936,0.8446784615516663,0.6905556917190552,0.8618032336235046,0.8104289770126343,0.5878071784973145,0.5021833777427673,0.6905556917190552,0.6905556917190552,0.7933042049407959,0.6734309196472168,0.878928005695343,0.7076804637908936,0.8446784615516663,0.9816765189170837,0.6049319505691528,0.9303022623062134,0.7419299483299255,0.6734309196472168,0.8104289770126343,0.7248051762580872,0.878928005695343,0.8446784615516663,0.7076804637908936,0.7933042049407959,0.5706824064254761,0.6049319505691528,0.7248051762580872,0.913177490234375,0.8275537490844727,0.7761794924736023,0.878928005695343,0.7590547204017639,0.8104289770126343,0.8104289770126343,0.878928005695343,0.7933042049407959,0.9474270343780518,0.7761794924736023,0.8960527181625366,0.7248051762580872,0.8104289770126343,0.9816765189170837,0.7933042049407959,0.8446784615516663,0.913177490234375,0.7419299483299255,0.7248051762580872,0.7590547204017639,0.9474270343780518,0.9474270343780518,0.7590547204017639,0.878928005695343,0.8446784615516663,0.7248051762580872,0.8275537490844727,0.8960527181625366,0.878928005695343,0.9816765189170837,0.8960527181625366,0.6734309196472168,0.9645517468452454,0.8275537490844727,0.8104289770126343,0.9303022623062134,0.8104289770126343,0.7419299483299255,0.8275537490844727,0.7590547204017639,0.7590547204017639,0.9303022623062134,0.878928005695343,0.6049319505691528,0.9816765189170837,0.9303022623062134,0.9303022623062134,0.9645517468452454,0.878928005695343,0.7419299483299255,0.5193081498146057,0.5535576939582825,0.878928005695343,0.7419299483299255,0.7590547204017639,0.6049319505691528,0.7933042049407959,0.433684378862381,0.7761794924736023,0.8104289770126343,0.7761794924736023,0.7590547204017639,0.6391814351081848,0.7419299483299255,0.6049319505691528,0.6734309196472168,0.6734309196472168,0.5021833777427673,0.7076804637908936,0.6563062071800232,0.46793389320373535,0.6391814351081848,0.6563062071800232,0.5364329218864441,0.7933042049407959,0.7248051762580872,0.7761794924736023,0.913177490234375,0.33093586564064026,0.46793389320373535,0.10831406712532043,-0.13143248856067657,-0.04580871760845184,-0.28555527329444885,0.10831406712532043,0.005565545056015253,0.056939806789159775,0.17681308090686798,-0.0971829816699028,-0.028683962300419807,0.022690298035740852,-0.01155920885503292,-0.06293346732854843,-0.13143248856067657,-0.14855724573135376,-0.2513057589530945,-0.26843053102493286,-0.26843053102493286,-0.2513057589530945,-0.26843053102493286,-0.3540542721748352,-0.2513057589530945,-0.26843053102493286,-0.2170562595129013,0.07406456023454666,-0.11430773138999939,-0.13143248856067657,-0.2513057589530945,-0.2170562595129013,-0.14855724573135376,-0.30268001556396484,-0.0971829816699028,-0.18280674517154694,-0.16568198800086975,-0.26843053102493286,-0.2170562595129013,-0.3883037865161896,-0.7136741280555725,-0.7992978692054749,-2.1179039478302,-1.689785122871399,-2.1179039478302,-2.1179039478302,-1.9809058904647827,-1.2445415258407593,-1.878157377243042,-1.535662293434143,-1.4500385522842407,-1.1931672096252441,-0.7650483846664429,-0.9534206986427307,-0.7136741280555725,-0.5081770420074463,-0.5081770420074463,-0.43967804312705994,-0.5081770420074463,-0.2341810017824173,-0.26843053102493286,-0.28555527329444885,0.005565545056015253,-0.18280674517154694,-0.0971829816699028,-0.11430773138999939,0.005565545056015253,-0.13143248856067657,-0.08005822449922562,0.056939806789159775,-0.14855724573135376,-0.26843053102493286,-0.2513057589530945,-0.0971829816699028,0.022690298035740852,0.12543882429599762,0.07406456023454666,0.09118931740522385,0.005565545056015253,0.03981505334377289,-0.028683962300419807,-0.13143248856067657,-0.04580871760845184,0.03981505334377289,-0.11430773138999939,-0.30268001556396484,-0.3540542721748352,-0.2341810017824173,-0.16568198800086975,-0.3369295299053192,-0.542426586151123,-0.3369295299053192,-0.3711790442466736,-0.43967804312705994,-0.40542855858802795,-0.4568028151988983,-0.4910523295402527,-0.43967804312705994,-0.3369295299053192,-0.3883037865161896],[-0.26843053102493286,0.1425635814666748,0.2624368667602539,0.24531209468841553,0.19393783807754517,0.22818733751773834,0.48505866527557373,0.416559636592865,0.5878071784973145,0.5706824064254761,0.2966863512992859,0.7419299483299255,0.5021833777427673,0.5193081498146057,0.46793389320373535,0.48505866527557373,0.5193081498146057,0.7076804637908936,0.6563062071800232,0.6905556917190552,0.6563062071800232,0.8446784615516663,0.6220566630363464,0.6563062071800232,0.7933042049407959,0.7248051762580872,0.5878071784973145,0.7419299483299255,0.6220566630363464,0.7076804637908936,0.5878071784973145,0.5193081498146057,0.8104289770126343,0.7076804637908936,0.6734309196472168,0.8104289770126343,0.6563062071800232,0.5364329218864441,0.6905556917190552,0.6905556917190552,0.8618032336235046,0.7419299483299255,0.7933042049407959,0.5535576939582825,0.5021833777427673,0.5878071784973145,0.6905556917190552,0.5878071784973145,0.7076804637908936,0.7419299483299255,0.913177490234375,0.7076804637908936,0.8104289770126343,0.8275537490844727,0.9988012909889221,0.9645517468452454,0.9303022623062134,0.9988012909889221,0.8104289770126343,0.8275537490844727,0.7761794924736023,0.9816765189170837,0.9303022623062134,0.6220566630363464,0.7590547204017639,0.913177490234375,0.8104289770126343,1.0673003196716309,0.9645517468452454,0.9474270343780518,0.8618032336235046,0.878928005695343,0.7419299483299255,0.9816765189170837,0.7076804637908936,0.7590547204017639,0.7761794924736023,0.9816765189170837,0.8104289770126343,0.9988012909889221,1.0501755475997925,0.8960527181625366,0.7248051762580872,0.9645517468452454,0.7761794924736023,0.7761794924736023,0.8446784615516663,0.8446784615516663,0.8618032336235046,1.0159260034561157,0.7933042049407959,0.8618032336235046,1.0673003196716309,0.7933042049407959,0.5021833777427673,0.9645517468452454,0.6049319505691528,0.46793389320373535,0.6734309196472168,0.9303022623062134,0.5535576939582825,0.6563062071800232,0.7419299483299255,0.7419299483299255,0.7248051762580872,0.7933042049407959,0.8446784615516663,0.7590547204017639,0.5364329218864441,0.6391814351081848,0.6905556917190552,0.7419299483299255,0.6391814351081848,0.5364329218864441,0.5706824064254761,0.6563062071800232,0.6391814351081848,0.7248051762580872,0.8275537490844727,0.7076804637908936,0.6049319505691528,0.5193081498146057,0.5535576939582825,0.5706824064254761,0.22818733751773834,0.03981505334377289,-0.0971829816699028,-0.04580871760845184,-0.028683962300419807,0.12543882429599762,0.005565545056015253,0.056939806789159775,0.005565545056015253,0.03981505334377289,-0.04580871760845184,-0.13143248856067657,-0.16568198800086975,-0.04580871760845184,0.056939806789159775,-0.3198047876358032,-0.2513057589530945,-0.19993150234222412,-0.0971829816699028,-0.28555527329444885,-0.14855724573135376,-0.4739275574684143,-0.3369295299053192,-0.2341810017824173,-0.28555527329444885,-0.30268001556396484,-0.11430773138999939,-0.28555527329444885,-0.028683962300419807,-0.4739275574684143,-0.3198047876358032,-0.16568198800086975,-0.30268001556396484,-0.542426586151123,-0.40542855858802795,-0.4568028151988983,-0.4910523295402527,-0.7136741280555725,-0.4910523295402527,-0.7136741280555725,-1.0904186964035034,-1.8610326051712036,-1.3472900390625,-2.1179039478302,-2.0665297508239746,-2.1179039478302,-1.9637811183929443,-1.7411593198776245,-1.7925336360931396,-1.3644148111343384,-1.4329137802124023,-1.073293924331665,-0.8677968978881836,-0.7821731567382812,-0.6280503273010254,-0.30268001556396484,-0.542426586151123,-0.30268001556396484,-0.3540542721748352,-0.19993150234222412,-0.2513057589530945,-0.30268001556396484,-0.2513057589530945,-0.14855724573135376,-0.08005822449922562,-0.14855724573135376,0.09118931740522385,-0.01155920885503292,0.022690298035740852,-0.01155920885503292,0.022690298035740852,-0.18280674517154694,-0.0971829816699028,-0.01155920885503292,-0.028683962300419807,0.21106259524822235,0.34806060791015625,0.22818733751773834,-0.18280674517154694,-0.18280674517154694,0.005565545056015253,-0.2341810017824173,-0.14855724573135376,-0.2341810017824173,-0.28555527329444885,-0.26843053102493286,-0.19993150234222412,-0.04580871760845184,-0.2513057589530945,-0.42255330085754395,-0.3198047876358032,-0.5595513582229614,-0.3711790442466736,-0.40542855858802795,-0.5081770420074463,-0.3711790442466736,-0.6280503273010254,-0.3369295299053192,-0.5595513582229614,-0.5253018140792847],[-0.3198047876358032,-0.06293346732854843,-0.11430773138999939,0.12543882429599762,0.31381112337112427,0.22818733751773834,0.22818733751773834,0.5364329218864441,0.31381112337112427,0.5706824064254761,0.433684378862381,0.5193081498146057,0.34806060791015625,0.34806060791015625,0.48505866527557373,0.5364329218864441,0.5878071784973145,0.46793389320373535,0.8104289770126343,0.8446784615516663,0.5535576939582825,0.7933042049407959,0.7076804637908936,0.6734309196472168,0.6220566630363464,0.6220566630363464,0.8104289770126343,0.6220566630363464,0.7590547204017639,0.5364329218864441,0.6391814351081848,0.5535576939582825,0.6220566630363464,0.5021833777427673,0.7761794924736023,0.8618032336235046,0.7761794924736023,0.6905556917190552,0.6049319505691528,0.5878071784973145,0.6049319505691528,0.5535576939582825,0.7076804637908936,0.7076804637908936,0.6734309196472168,0.5535576939582825,0.5535576939582825,0.5364329218864441,0.7761794924736023,0.6734309196472168,0.7248051762580872,0.6563062071800232,0.7933042049407959,0.9988012909889221,0.8275537490844727,0.7933042049407959,0.7248051762580872,1.0501755475997925,0.8275537490844727,0.5193081498146057,0.9303022623062134,0.9816765189170837,0.6905556917190552,0.7590547204017639,0.8618032336235046,0.7419299483299255,0.8446784615516663,0.6905556917190552,0.5706824064254761,0.5706824064254761,0.7590547204017639,0.8446784615516663,0.7248051762580872,0.8104289770126343,0.6905556917190552,0.7761794924736023,0.8104289770126343,0.6734309196472168,0.7761794924736023,0.878928005695343,0.7933042049407959,0.878928005695343,0.7933042049407959,0.9988012909889221,0.7761794924736023,0.8446784615516663,0.7248051762580872,0.8104289770126343,0.8446784615516663,0.8960527181625366,0.8446784615516663,0.8104289770126343,0.7933042049407959,0.7933042049407959,0.7933042049407959,0.7076804637908936,0.7761794924736023,0.7933042049407959,0.7761794924736023,0.5706824064254761,0.6734309196472168,0.9303022623062134,0.5878071784973145,0.5193081498146057,0.8960527181625366,0.7419299483299255,0.6734309196472168,0.46793389320373535,0.6220566630363464,0.6563062071800232,0.5706824064254761,0.7419299483299255,0.5706824064254761,0.6049319505691528,0.6220566630363464,0.6734309196472168,0.6220566630363464,0.6905556917190552,0.6220566630363464,0.5021833777427673,0.5878071784973145,0.399434894323349,0.17681308090686798,0.12543882429599762,0.056939806789159775,0.1596883237361908,-0.08005822449922562,-0.028683962300419807,0.09118931740522385,0.005565545056015253,-0.04580871760845184,0.056939806789159775,-0.028683962300419807,-0.18280674517154694,-0.2341810017824173,-0.2513057589530945,-0.0971829816699028,-0.11430773138999939,-0.11430773138999939,-0.3369295299053192,-0.3369295299053192,-0.4568028151988983,-0.40542855858802795,-0.16568198800086975,-0.30268001556396484,-0.30268001556396484,-0.2513057589530945,-0.28555527329444885,-0.13143248856067657,-0.2341810017824173,-0.14855724573135376,-0.2513057589530945,-0.2341810017824173,-0.30268001556396484,-0.2341810017824173,-0.3198047876358032,-0.5253018140792847,-0.3540542721748352,-0.2170562595129013,-0.43967804312705994,-0.6622998714447021,-0.7479236125946045,-0.7479236125946045,-0.7307988405227661,-1.0561691522598267,-1.9124069213867188,-1.3815394639968872,-2.1179039478302,-2.1179039478302,-2.1179039478302,-1.604161262512207,-1.9295316934585571,-1.6212860345840454,-1.3986642360687256,-1.2959157228469849,-1.1417930126190186,-0.7136741280555725,-0.6280503273010254,-0.43967804312705994,-0.4910523295402527,-0.576676070690155,-0.5938008427619934,-0.2513057589530945,-0.0971829816699028,-0.2170562595129013,-0.0971829816699028,-0.0971829816699028,-0.11430773138999939,0.07406456023454666,-0.06293346732854843,-0.06293346732854843,0.022690298035740852,-0.04580871760845184,0.005565545056015253,0.03981505334377289,-0.01155920885503292,0.03981505334377289,0.056939806789159775,-0.01155920885503292,-0.028683962300419807,0.005565545056015253,-0.2170562595129013,0.056939806789159775,0.07406456023454666,0.1596883237361908,-0.028683962300419807,0.07406456023454666,0.005565545056015253,-0.3711790442466736,-0.28555527329444885,-0.30268001556396484,-0.26843053102493286,-0.2513057589530945,-0.3540542721748352,-0.26843053102493286,-0.3883037865161896,-0.2513057589530945,-0.6109256148338318,-0.5081770420074463,-0.542426586151123,-0.542426586151123,-0.6109256148338318,-0.5595513582229614,-0.42255330085754395],[-0.576676070690155,-0.2513057589530945,0.10831406712532043,0.07406456023454666,0.1425635814666748,0.21106259524822235,0.2795616090297699,0.31381112337112427,0.2966863512992859,0.24531209468841553,0.2624368667602539,0.5193081498146057,0.399434894323349,0.399434894323349,0.5021833777427673,0.46793389320373535,0.31381112337112427,0.6220566630363464,0.399434894323349,0.5364329218864441,0.7419299483299255,0.6563062071800232,0.8960527181625366,0.7076804637908936,0.6049319505691528,0.6734309196472168,0.8275537490844727,0.6391814351081848,0.6220566630363464,0.6391814351081848,0.7590547204017639,0.8104289770126343,0.6049319505691528,0.6049319505691528,0.5535576939582825,0.8104289770126343,0.7419299483299255,0.5878071784973145,0.6563062071800232,0.6049319505691528,0.433684378862381,0.5878071784973145,0.2966863512992859,0.6563062071800232,0.7419299483299255,0.6391814351081848,0.6220566630363464,0.6391814351081848,0.7590547204017639,0.6220566630363464,0.7419299483299255,0.7076804637908936,0.5535576939582825,0.7419299483299255,0.7419299483299255,0.7590547204017639,0.5878071784973145,0.5193081498146057,0.8618032336235046,0.7590547204017639,0.8104289770126343,0.8275537490844727,0.7590547204017639,0.5193081498146057,0.46793389320373535,0.5706824064254761,0.8104289770126343,0.7248051762580872,0.8104289770126343,0.6049319505691528,0.7248051762580872,0.7933042049407959,0.6734309196472168,0.7419299483299255,0.8275537490844727,0.8960527181625366,0.6734309196472168,0.8104289770126343,0.7590547204017639,0.8960527181625366,0.7590547204017639,0.8618032336235046,0.6905556917190552,0.6220566630363464,0.6049319505691528,0.7248051762580872,0.6563062071800232,0.6220566630363464,0.7248051762580872,0.8960527181625366,0.7761794924736023,0.7248051762580872,0.7076804637908936,0.6049319505691528,0.7590547204017639,0.9303022623062134,0.8618032336235046,0.5878071784973145,0.5706824064254761,0.6563062071800232,0.7076804637908936,0.6905556917190552,0.5193081498146057,0.6049319505691528,0.6391814351081848,0.5535576939582825,0.5364329218864441,0.6905556917190552,0.6391814351081848,0.5021833777427673,0.5364329218864441,0.5021833777427673,0.433684378862381,0.5193081498146057,0.5706824064254761,0.5193081498146057,0.5878071784973145,0.6563062071800232,0.48505866527557373,0.5364329218864441,0.24531209468841553,0.07406456023454666,-0.08005822449922562,-0.04580871760845184,-0.0971829816699028,0.09118931740522385,0.056939806789159775,-0.11430773138999939,0.022690298035740852,-0.0971829816699028,-0.08005822449922562,-0.06293346732854843,-0.2513057589530945,-0.19993150234222412,-0.2513057589530945,-0.2513057589530945,-0.3369295299053192,-0.2513057589530945,-0.3198047876358032,-0.3369295299053192,-0.3198047876358032,-0.3198047876358032,-0.30268001556396484,-0.40542855858802795,-0.3198047876358032,-0.16568198800086975,-0.16568198800086975,-0.2513057589530945,-0.13143248856067657,-0.26843053102493286,-0.2170562595129013,-0.3711790442466736,-0.4568028151988983,-0.26843053102493286,-0.5081770420074463,-0.4739275574684143,-0.3883037865161896,-0.4739275574684143,-0.6451750993728638,-0.7136741280555725,-0.6622998714447021,-0.7650483846664429,-0.6451750993728638,-1.1246682405471802,-1.415789008140564,-2.032280206680298,-1.5527870655059814,-2.0836544036865234,-2.1179039478302,-2.0665297508239746,-1.5870366096496582,-1.7925336360931396,-1.809658408164978,-1.7411593198776245,-1.3130404949188232,-1.2959157228469849,-0.8335474133491516,-0.7650483846664429,-0.5938008427619934,-0.6109256148338318,-0.5081770420074463,-0.4739275574684143,-0.42255330085754395,-0.26843053102493286,-0.26843053102493286,-0.16568198800086975,-0.40542855858802795,-0.30268001556396484,-0.04580871760845184,-0.06293346732854843,0.03981505334377289,-0.01155920885503292,0.056939806789159775,-0.0971829816699028,-0.08005822449922562,0.12543882429599762,0.1425635814666748,0.005565545056015253,0.10831406712532043,0.10831406712532043,0.12543882429599762,0.17681308090686798,0.056939806789159775,-0.2341810017824173,-0.13143248856067657,-0.0971829816699028,-0.2341810017824173,-0.13143248856067657,-0.04580871760845184,-0.18280674517154694,-0.16568198800086975,-0.30268001556396484,-0.3883037865161896,-0.3369295299053192,-0.28555527329444885,-0.30268001556396484,-0.28555527329444885,-0.4739275574684143,-0.5253018140792847,-0.4910523295402527,-0.542426586151123,-0.5081770420074463,-0.3883037865161896,-0.3540542721748352],[-0.7650483846664429,-0.5081770420074463,0.005565545056015253,-0.19993150234222412,-0.0971829816699028,0.2966863512992859,0.22818733751773834,0.24531209468841553,0.433684378862381,0.17681308090686798,0.7076804637908936,0.3823101222515106,0.6734309196472168,0.34806060791015625,0.46793389320373535,0.5193081498146057,0.46793389320373535,0.416559636592865,0.46793389320373535,0.48505866527557373,0.36518537998199463,0.5364329218864441,0.6734309196472168,0.6563062071800232,0.5706824064254761,0.8104289770126343,0.46793389320373535,0.7419299483299255,0.6563062071800232,0.5535576939582825,0.7933042049407959,0.7248051762580872,0.6049319505691528,0.7248051762580872,0.7590547204017639,0.7761794924736023,0.5706824064254761,0.6391814351081848,0.6563062071800232,0.33093586564064026,0.5706824064254761,0.5535576939582825,0.5535576939582825,0.6734309196472168,0.6734309196472168,0.46793389320373535,0.36518537998199463,0.7933042049407959,0.5364329218864441,0.3823101222515106,0.46793389320373535,0.5706824064254761,0.5878071784973145,0.5021833777427673,0.7419299483299255,0.7248051762580872,0.7761794924736023,0.6049319505691528,0.6734309196472168,0.5706824064254761,0.6563062071800232,0.7761794924736023,0.6734309196472168,0.5706824064254761,0.6391814351081848,0.8618032336235046,0.7590547204017639,0.7761794924736023,0.5706824064254761,0.6563062071800232,0.7761794924736023,0.7419299483299255,0.5878071784973145,0.8104289770126343,0.48505866527557373,0.8104289770126343,0.8960527181625366,0.9303022623062134,0.7933042049407959,0.8104289770126343,0.7761794924736023,0.8446784615516663,0.7248051762580872,0.6049319505691528,0.5535576939582825,0.8275537490844727,0.7076804637908936,0.7590547204017639,0.6220566630363464,0.6563062071800232,0.6391814351081848,0.6220566630363464,0.6734309196472168,0.6563062071800232,0.6734309196472168,0.48505866527557373,0.6391814351081848,0.9645517468452454,0.5021833777427673,0.5193081498146057,0.5364329218864441,0.6905556917190552,0.7248051762580872,0.5706824064254761,0.433684378862381,0.5021833777427673,0.5878071784973145,0.5364329218864441,0.48505866527557373,0.45080915093421936,0.6220566630363464,0.48505866527557373,0.5193081498146057,0.416559636592865,0.5193081498146057,0.5193081498146057,0.48505866527557373,0.6563062071800232,0.21106259524822235,0.09118931740522385,-0.06293346732854843,-0.06293346732854843,0.056939806789159775,0.03981505334377289,-0.0971829816699028,-0.13143248856067657,0.022690298035740852,-0.06293346732854843,-0.01155920885503292,0.12543882429599762,-0.14855724573135376,-0.13143248856067657,-0.0971829816699028,-0.3711790442466736,-0.16568198800086975,-0.26843053102493286,-0.42255330085754395,-0.3198047876358032,-0.4910523295402527,-0.26843053102493286,-0.4910523295402527,-0.19993150234222412,-0.14855724573135376,-0.19993150234222412,-0.28555527329444885,-0.40542855858802795,-0.2170562595129013,-0.2341810017824173,-0.28555527329444885,-0.3369295299053192,-0.3369295299053192,-0.3711790442466736,-0.3883037865161896,-0.5595513582229614,-0.5081770420074463,-0.42255330085754395,-0.5253018140792847,-0.5253018140792847,-0.6965493559837341,-0.8164226412773132,-0.919171154499054,-0.919171154499054,-1.004794955253601,-1.4329137802124023,-2.1179039478302,-2.0665297508239746,-1.998030662536621,-2.032280206680298,-2.1179039478302,-1.8610326051712036,-1.946656346321106,-1.9809058904647827,-2.032280206680298,-1.7069098949432373,-1.3644148111343384,-1.3130404949188232,-0.9876701831817627,-0.7479236125946045,-0.576676070690155,-0.42255330085754395,-0.576676070690155,-0.4739275574684143,-0.4568028151988983,-0.4910523295402527,-0.0971829816699028,-0.06293346732854843,0.10831406712532043,-0.2341810017824173,-0.18280674517154694,-0.16568198800086975,-0.028683962300419807,-0.028683962300419807,0.005565545056015253,0.1425635814666748,0.005565545056015253,-0.01155920885503292,-0.13143248856067657,0.09118931740522385,-0.13143248856067657,-0.08005822449922562,-0.06293346732854843,-0.06293346732854843,-0.0971829816699028,0.1596883237361908,-0.30268001556396484,-0.0971829816699028,-0.2170562595129013,-0.2341810017824173,-0.0971829816699028,-0.2341810017824173,-0.16568198800086975,-0.4568028151988983,-0.42255330085754395,-0.3711790442466736,-0.5081770420074463,-0.4739275574684143,-0.3883037865161896,-0.42255330085754395,-0.6109256148338318,-0.6280503273010254,-0.30268001556396484,-0.6280503273010254,-0.3198047876358032,-0.4739275574684143],[-0.9020463824272156,-0.7307988405227661,-0.43967804312705994,-0.04580871760845184,-0.04580871760845184,0.1596883237361908,0.12543882429599762,0.36518537998199463,0.24531209468841553,0.31381112337112427,0.2795616090297699,0.2966863512992859,0.21106259524822235,0.46793389320373535,0.31381112337112427,0.48505866527557373,0.34806060791015625,0.3823101222515106,0.5535576939582825,0.48505866527557373,0.6734309196472168,0.416559636592865,0.5535576939582825,0.6734309196472168,0.48505866527557373,0.6391814351081848,0.399434894323349,0.45080915093421936,0.6220566630363464,0.6563062071800232,0.2966863512992859,0.5364329218864441,0.48505866527557373,0.5878071784973145,0.6563062071800232,0.5021833777427673,0.6220566630363464,0.7933042049407959,0.46793389320373535,0.3823101222515106,0.46793389320373535,0.7248051762580872,0.6391814351081848,0.5193081498146057,0.6049319505691528,0.7076804637908936,0.7419299483299255,0.8960527181625366,0.3823101222515106,0.46793389320373535,0.6905556917190552,0.5364329218864441,0.6049319505691528,0.6391814351081848,0.5706824064254761,0.5878071784973145,0.5193081498146057,0.7419299483299255,0.5706824064254761,0.8446784615516663,0.5706824064254761,0.433684378862381,0.5364329218864441,0.5021833777427673,0.399434894323349,0.31381112337112427,0.7248051762580872,0.5193081498146057,0.6905556917190552,0.5706824064254761,0.5364329218864441,0.399434894323349,0.3823101222515106,0.416559636592865,0.7248051762580872,0.34806060791015625,0.7933042049407959,0.6220566630363464,0.8960527181625366,0.7419299483299255,0.7419299483299255,0.6563062071800232,0.7590547204017639,0.8275537490844727,0.6391814351081848,0.5364329218864441,0.6734309196472168,0.7590547204017639,0.7590547204017639,0.5878071784973145,0.48505866527557373,0.5878071784973145,0.6734309196472168,0.7761794924736023,0.6049319505691528,0.6220566630363464,0.6905556917190552,0.433684378862381,0.7590547204017639,0.6734309196472168,0.5878071784973145,0.7076804637908936,0.6049319505691528,0.6391814351081848,0.6563062071800232,0.6049319505691528,0.5021833777427673,0.5878071784973145,0.5878071784973145,0.5193081498146057,0.36518537998199463,0.5535576939582825,0.5193081498146057,0.5535576939582825,0.433684378862381,0.31381112337112427,0.34806060791015625,0.022690298035740852,-0.08005822449922562,0.005565545056015253,0.17681308090686798,0.09118931740522385,-0.14855724573135376,0.022690298035740852,0.022690298035740852,-0.01155920885503292,-0.3198047876358032,0.1596883237361908,-0.16568198800086975,-0.5253018140792847,-0.26843053102493286,-0.13143248856067657,-0.28555527329444885,-0.28555527329444885,-0.26843053102493286,-0.4568028151988983,-0.08005822449922562,-0.30268001556396484,-0.0971829816699028,-0.16568198800086975,-0.2341810017824173,-0.3711790442466736,-0.11430773138999939,-0.3711790442466736,-0.43967804312705994,0.005565545056015253,-0.30268001556396484,-0.26843053102493286,-0.4739275574684143,-0.26843053102493286,-0.06293346732854843,-0.4568028151988983,-0.3711790442466736,-0.4739275574684143,-0.3540542721748352,-0.576676070690155,-0.6794245839118958,-0.7307988405227661,-0.8164226412773132,-1.004794955253601,-0.884921669960022,-1.1075434684753418,-1.7240345478057861,-2.1007792949676514,-2.0494048595428467,-2.1179039478302,-2.1007792949676514,-2.1007792949676514,-2.0494048595428467,-1.9809058904647827,-1.9124069213867188,-1.8952821493148804,-2.0494048595428467,-1.9295316934585571,-1.5870366096496582,-1.1417930126190186,-1.1589176654815674,-0.8335474133491516,-0.5595513582229614,-0.5081770420074463,-0.42255330085754395,-0.3198047876358032,-0.30268001556396484,-0.40542855858802795,-0.5081770420074463,-0.14855724573135376,-0.18280674517154694,-0.13143248856067657,-0.2513057589530945,-0.028683962300419807,-0.2513057589530945,0.03981505334377289,-0.0971829816699028,0.022690298035740852,0.09118931740522385,-0.06293346732854843,-0.01155920885503292,-0.08005822449922562,-0.04580871760845184,-0.0971829816699028,-0.18280674517154694,-0.2513057589530945,-0.16568198800086975,-0.028683962300419807,-0.08005822449922562,-0.16568198800086975,-0.18280674517154694,-0.3711790442466736,-0.26843053102493286,-0.43967804312705994,-0.3883037865161896,-0.3540542721748352,-0.28555527329444885,-0.3883037865161896,-0.3540542721748352,-0.3369295299053192,-0.3711790442466736,-0.3198047876358032,-0.42255330085754395,-0.4568028151988983,-0.30268001556396484,-0.30268001556396484,-0.5595513582229614,-0.5081770420074463],[-0.8677968978881836,-0.7992978692054749,-0.3369295299053192,-0.2170562595129013,-0.13143248856067657,0.056939806789159775,0.09118931740522385,0.12543882429599762,0.09118931740522385,0.24531209468841553,0.34806060791015625,0.48505866527557373,0.19393783807754517,0.46793389320373535,0.34806060791015625,0.46793389320373535,0.399434894323349,0.416559636592865,0.5878071784973145,0.2966863512992859,0.6220566630363464,0.5878071784973145,0.5193081498146057,0.416559636592865,0.6734309196472168,0.6391814351081848,0.6220566630363464,0.6391814351081848,0.46793389320373535,0.6905556917190552,0.6049319505691528,0.5021833777427673,0.5706824064254761,0.6391814351081848,0.36518537998199463,0.10831406712532043,0.33093586564064026,0.5021833777427673,0.48505866527557373,0.6905556917190552,0.5706824064254761,0.5535576939582825,0.6220566630363464,0.5878071784973145,0.7248051762580872,0.5878071784973145,0.6391814351081848,0.3823101222515106,0.5364329218864441,0.416559636592865,0.5021833777427673,0.5364329218864441,0.6220566630363464,0.5878071784973145,0.6563062071800232,0.433684378862381,0.5193081498146057,0.6905556917190552,0.6905556917190552,0.46793389320373535,0.46793389320373535,0.33093586564064026,0.5193081498146057,0.5193081498146057,0.45080915093421936,0.5364329218864441,0.416559636592865,0.48505866527557373,0.3823101222515106,0.5021833777427673,0.2966863512992859,0.7761794924736023,0.6734309196472168,0.48505866527557373,0.5193081498146057,0.7248051762580872,0.5364329218864441,0.6220566630363464,0.5535576939582825,0.5706824064254761,0.6391814351081848,0.6734309196472168,0.5706824064254761,0.7761794924736023,0.8275537490844727,0.6905556917190552,0.5878071784973145,0.7076804637908936,0.6391814351081848,0.5878071784973145,0.6563062071800232,0.5706824064254761,0.6905556917190552,0.6734309196472168,0.5878071784973145,0.6220566630363464,0.7419299483299255,0.5364329218864441,0.7248051762580872,0.6220566630363464,0.6905556917190552,0.5706824064254761,0.6905556917190552,0.6905556917190552,0.5364329218864441,0.5364329218864441,0.5535576939582825,0.6220566630363464,0.5535576939582825,0.5021833777427673,0.6391814351081848,0.48505866527557373,0.45080915093421936,0.2795616090297699,0.17681308090686798,0.12543882429599762,-0.06293346732854843,-0.01155920885503292,-0.16568198800086975,-0.11430773138999939,-0.2513057589530945,-0.04580871760845184,-0.14855724573135376,-0.14855724573135376,-0.18280674517154694,-0.2513057589530945,-0.3198047876358032,-0.04580871760845184,-0.01155920885503292,-0.13143248856067657,-0.19993150234222412,-0.42255330085754395,-0.0971829816699028,-0.2513057589530945,-0.18280674517154694,-0.26843053102493286,-0.19993150234222412,-0.18280674517154694,-0.3369295299053192,-0.28555527329444885,-0.43967804312705994,-0.30268001556396484,-0.2513057589530945,-0.2513057589530945,-0.26843053102493286,-0.3883037865161896,-0.3198047876358032,-0.19993150234222412,-0.3198047876358032,-0.40542855858802795,-0.576676070690155,-0.43967804312705994,-0.4910523295402527,-0.5595513582229614,-0.6622998714447021,-0.6965493559837341,-0.8677968978881836,-0.919171154499054,-0.9362959265708923,-1.0390443801879883,-1.3472900390625,-2.032280206680298,-1.998030662536621,-1.9809058904647827,-1.6212860345840454,-1.5870366096496582,-1.2445415258407593,-1.073293924331665,-0.7479236125946045,-1.7754088640213013,-2.0665297508239746,-1.7925336360931396,-1.9124069213867188,-2.0494048595428467,-1.8610326051712036,-1.3301652669906616,-1.1760424375534058,-1.0390443801879883,-0.7307988405227661,-0.6280503273010254,-0.6451750993728638,-0.3198047876358032,-0.3711790442466736,-0.30268001556396484,-0.5253018140792847,-0.5081770420074463,-0.3540542721748352,-0.2170562595129013,-0.14855724573135376,-0.40542855858802795,-0.19993150234222412,-0.13143248856067657,-0.19993150234222412,0.03981505334377289,-0.08005822449922562,-0.11430773138999939,-0.0971829816699028,-0.13143248856067657,-0.01155920885503292,-0.01155920885503292,0.03981505334377289,0.03981505334377289,-0.08005822449922562,-0.16568198800086975,-0.3369295299053192,0.005565545056015253,-0.14855724573135376,-0.14855724573135376,-0.26843053102493286,-0.40542855858802795,-0.18280674517154694,-0.30268001556396484,-0.43967804312705994,-0.4568028151988983,-0.28555527329444885,-0.5938008427619934,-0.5253018140792847,-0.42255330085754395,-0.7136741280555725,-0.5938008427619934,-0.3711790442466736,-0.5595513582229614,-0.5253018140792847,-0.542426586151123],[-1.0904186964035034,-0.8677968978881836,-0.6965493559837341,-0.3198047876358032,-0.3540542721748352,-0.13143248856067657,-0.18280674517154694,-0.01155920885503292,0.1425635814666748,0.21106259524822235,0.2624368667602539,0.2966863512992859,0.07406456023454666,0.31381112337112427,0.433684378862381,0.34806060791015625,0.3823101222515106,0.5021833777427673,0.5706824064254761,0.36518537998199463,0.5193081498146057,0.433684378862381,0.5021833777427673,0.5021833777427673,0.48505866527557373,0.433684378862381,0.5193081498146057,0.48505866527557373,0.6220566630363464,0.5706824064254761,0.5364329218864441,0.6049319505691528,0.6391814351081848,0.6049319505691528,0.6734309196472168,0.36518537998199463,0.31381112337112427,0.46793389320373535,0.46793389320373535,0.5364329218864441,0.6391814351081848,0.8960527181625366,0.5193081498146057,0.46793389320373535,0.6220566630363464,0.7761794924736023,0.5193081498146057,0.2624368667602539,0.5535576939582825,0.5021833777427673,0.22818733751773834,0.36518537998199463,0.46793389320373535,0.36518537998199463,0.46793389320373535,0.5021833777427673,0.45080915093421936,0.433684378862381,0.5021833777427673,0.3823101222515106,0.399434894323349,0.45080915093421936,0.399434894323349,0.48505866527557373,0.33093586564064026,0.3823101222515106,0.399434894323349,0.5193081498146057,0.6391814351081848,0.5706824064254761,0.48505866527557373,0.48505866527557373,0.46793389320373535,0.48505866527557373,0.5021833777427673,0.6734309196472168,0.433684378862381,0.5706824064254761,0.6734309196472168,0.45080915093421936,0.7419299483299255,0.6563062071800232,0.46793389320373535,0.7248051762580872,0.8104289770126343,0.6563062071800232,0.48505866527557373,0.433684378862381,0.36518537998199463,0.399434894323349,0.34806060791015625,0.31381112337112427,0.5364329218864441,0.5535576939582825,0.433684378862381,0.5364329218864441,0.5193081498146057,0.5364329218864441,0.6391814351081848,0.7419299483299255,0.5878071784973145,0.6391814351081848,0.5878071784973145,0.5878071784973145,0.45080915093421936,0.5193081498146057,0.48505866527557373,0.5021833777427673,0.399434894323349,0.5364329218864441,0.3823101222515106,0.416559636592865,0.12543882429599762,0.022690298035740852,0.09118931740522385,-0.028683962300419807,-0.14855724573135376,0.07406456023454666,0.005565545056015253,-0.13143248856067657,-0.04580871760845184,-0.19993150234222412,0.005565545056015253,-0.16568198800086975,0.022690298035740852,-0.30268001556396484,-0.13143248856067657,-0.16568198800086975,-0.13143248856067657,-0.30268001556396484,-0.3540542721748352,-0.2170562595129013,-0.3198047876358032,-0.2341810017824173,-0.14855724573135376,-0.28555527329444885,-0.30268001556396484,-0.08005822449922562,-0.28555527329444885,-0.26843053102493286,-0.3198047876358032,-0.2341810017824173,-0.3369295299053192,-0.3198047876358032,-0.42255330085754395,-0.19993150234222412,-0.3198047876358032,-0.3540542721748352,-0.26843053102493286,-0.3198047876358032,-0.3883037865161896,-0.4739275574684143,-0.6109256148338318,-0.6451750993728638,-0.7307988405227661,-0.7307988405227661,-1.0390443801879883,-1.2102919816970825,-1.2787909507751465,-1.7925336360931396,-2.0836544036865234,-2.1179039478302,-2.1179039478302,-1.1417930126190186,-1.4329137802124023,-1.1417930126190186,-0.7650483846664429,-0.6280503273010254,-0.30268001556396484,-1.6555355787277222,-1.8610326051712036,-1.8439078330993652,-1.7754088640213013,-1.9124069213867188,-1.8952821493148804,-1.9124069213867188,-1.5699118375778198,-1.2445415258407593,-1.0390443801879883,-0.9876701831817627,-0.6622998714447021,-0.576676070690155,-0.3883037865161896,-0.11430773138999939,-0.43967804312705994,-0.43967804312705994,-0.542426586151123,-0.16568198800086975,-0.3198047876358032,-0.18280674517154694,-0.14855724573135376,-0.19993150234222412,-0.18280674517154694,0.1425635814666748,-0.14855724573135376,-0.3198047876358032,-0.2170562595129013,0.10831406712532043,0.09118931740522385,-0.028683962300419807,-0.01155920885503292,-0.01155920885503292,-0.26843053102493286,-0.01155920885503292,-0.04580871760845184,-0.2341810017824173,-0.11430773138999939,-0.08005822449922562,-0.28555527329444885,-0.3711790442466736,-0.3369295299053192,-0.30268001556396484,-0.28555527329444885,-0.3883037865161896,-0.6109256148338318,-0.576676070690155,-0.28555527329444885,-0.3198047876358032,-0.5595513582229614,-0.4568028151988983,-0.6280503273010254,-0.5253018140792847,-0.5595513582229614,-0.4568028151988983],[-1.1760424375534058,-1.0904186964035034,-0.6965493559837341,-0.6280503273010254,-0.4739275574684143,-0.14855724573135376,-0.2341810017824173,-0.028683962300419807,-0.0971829816699028,0.2624368667602539,0.03981505334377289,0.1425635814666748,0.24531209468841553,0.2966863512992859,0.36518537998199463,0.24531209468841553,0.2795616090297699,0.416559636592865,0.31381112337112427,0.433684378862381,0.5364329218864441,0.5535576939582825,0.2966863512992859,0.45080915093421936,0.6220566630363464,0.416559636592865,0.34806060791015625,0.433684378862381,0.36518537998199463,0.31381112337112427,0.46793389320373535,0.6563062071800232,0.36518537998199463,0.399434894323349,0.19393783807754517,0.33093586564064026,0.3823101222515106,0.2624368667602539,0.22818733751773834,0.5706824064254761,0.5878071784973145,0.7076804637908936,0.5364329218864441,0.21106259524822235,0.5364329218864441,0.433684378862381,0.07406456023454666,0.2966863512992859,0.399434894323349,0.433684378862381,0.34806060791015625,0.31381112337112427,0.21106259524822235,0.5021833777427673,0.3823101222515106,0.24531209468841553,0.433684378862381,0.416559636592865,0.5193081498146057,0.36518537998199463,0.416559636592865,0.2966863512992859,0.19393783807754517,0.3823101222515106,0.19393783807754517,0.433684378862381,0.48505866527557373,0.33093586564064026,0.433684378862381,0.45080915093421936,0.21106259524822235,0.2966863512992859,0.48505866527557373,0.6563062071800232,0.5364329218864441,0.3823101222515106,0.5364329218864441,0.48505866527557373,0.45080915093421936,0.416559636592865,0.5706824064254761,0.3823101222515106,0.31381112337112427,0.5021833777427673,0.31381112337112427,0.10831406712532043,0.48505866527557373,0.416559636592865,0.433684378862381,0.34806060791015625,0.6220566630363464,0.5193081498146057,0.5878071784973145,0.433684378862381,0.45080915093421936,0.33093586564064026,0.45080915093421936,0.5364329218864441,0.31381112337112427,0.36518537998199463,0.5021833777427673,0.31381112337112427,0.5364329218864441,0.33093586564064026,0.2795616090297699,0.2966863512992859,0.2795616090297699,0.3823101222515106,0.10831406712532043,0.17681308090686798,0.056939806789159775,0.09118931740522385,-0.01155920885503292,-0.028683962300419807,0.03981505334377289,-0.16568198800086975,-0.01155920885503292,-0.2513057589530945,-0.16568198800086975,-0.18280674517154694,0.03981505334377289,-0.14855724573135376,-0.2341810017824173,-0.06293346732854843,-0.16568198800086975,-0.11430773138999939,-0.08005822449922562,-0.2513057589530945,-0.028683962300419807,-0.14855724573135376,-0.30268001556396484,-0.28555527329444885,-0.18280674517154694,-0.26843053102493286,-0.2513057589530945,-0.26843053102493286,-0.26843053102493286,-0.42255330085754395,-0.2170562595129013,-0.26843053102493286,-0.16568198800086975,-0.3540542721748352,-0.2170562595129013,-0.3198047876358032,-0.3540542721748352,-0.08005822449922562,-0.576676070690155,-0.4568028151988983,-0.43967804312705994,-0.7650483846664429,-0.5081770420074463,-0.7479236125946045,-0.6794245839118958,-1.004794955253601,-1.2959157228469849,-1.7754088640213013,-1.9124069213867188,-2.1179039478302,-2.032280206680298,-2.1179039478302,-2.1179039478302,-1.9809058904647827,-1.5527870655059814,-1.4842880964279175,-1.8952821493148804,-0.2341810017824173,-0.30268001556396484,-0.8677968978881836,-0.3883037865161896,-0.6794245839118958,-0.7821731567382812,-0.14855724573135376,-0.13143248856067657,-0.9705454111099243,-0.9362959265708923,-0.7992978692054749,-1.946656346321106,-1.7240345478057861,-1.415789008140564,-1.4329137802124023,-1.2616662979125977,-0.7650483846664429,-0.5595513582229614,-0.7136741280555725,-0.43967804312705994,-0.4910523295402527,-0.3198047876358032,-0.2513057589530945,-0.4910523295402527,-0.30268001556396484,-0.2513057589530945,-0.08005822449922562,-0.28555527329444885,-0.18280674517154694,-0.13143248856067657,-0.2341810017824173,-0.2170562595129013,0.07406456023454666,-0.11430773138999939,0.005565545056015253,0.03981505334377289,-0.16568198800086975,-0.04580871760845184,-0.2170562595129013,-0.06293346732854843,-0.14855724573135376,-0.19993150234222412,-0.2170562595129013,-0.3198047876358032,-0.13143248856067657,-0.04580871760845184,-0.14855724573135376,-0.542426586151123,-0.3883037865161896,-0.3369295299053192,-0.40542855858802795,-0.5081770420074463,-0.3369295299053192,-0.6280503273010254,-0.6109256148338318,-0.40542855858802795,-0.542426586151123,-0.40542855858802795,-0.4568028151988983],[-1.3301652669906616,-1.1246682405471802,-1.1075434684753418,-0.9705454111099243,-0.7479236125946045,-0.7136741280555725,-0.30268001556396484,0.005565545056015253,-0.18280674517154694,-0.08005822449922562,0.005565545056015253,0.17681308090686798,0.1596883237361908,0.10831406712532043,0.34806060791015625,0.2795616090297699,0.36518537998199463,0.2966863512992859,0.2624368667602539,0.416559636592865,0.5364329218864441,0.5535576939582825,0.416559636592865,0.3823101222515106,0.34806060791015625,0.2795616090297699,0.5706824064254761,0.6734309196472168,0.48505866527557373,0.5706824064254761,0.416559636592865,0.5193081498146057,0.2795616090297699,0.3823101222515106,0.34806060791015625,0.3823101222515106,0.399434894323349,0.34806060791015625,0.33093586564064026,0.2966863512992859,0.416559636592865,0.399434894323349,0.3823101222515106,0.22818733751773834,0.33093586564064026,0.33093586564064026,0.5021833777427673,0.2624368667602539,0.31381112337112427,0.34806060791015625,0.09118931740522385,0.21106259524822235,0.2966863512992859,0.19393783807754517,0.22818733751773834,0.022690298035740852,0.33093586564064026,-0.028683962300419807,0.17681308090686798,0.22818733751773834,0.21106259524822235,0.399434894323349,0.2795616090297699,0.31381112337112427,0.21106259524822235,0.1596883237361908,0.433684378862381,0.1425635814666748,0.399434894323349,0.46793389320373535,0.33093586564064026,0.2795616090297699,0.2624368667602539,0.46793389320373535,0.6391814351081848,0.2966863512992859,0.46793389320373535,0.5878071784973145,0.5535576939582825,0.36518537998199463,0.2795616090297699,0.2795616090297699,0.2966863512992859,0.5021833777427673,0.433684378862381,0.2966863512992859,0.056939806789159775,0.48505866527557373,0.3823101222515106,0.6734309196472168,0.3823101222515106,0.45080915093421936,0.45080915093421936,0.3823101222515106,0.22818733751773834,0.31381112337112427,0.5535576939582825,0.36518537998199463,0.34806060791015625,0.3823101222515106,0.19393783807754517,0.2624368667602539,0.24531209468841553,0.2624368667602539,0.1425635814666748,0.24531209468841553,0.12543882429599762,-0.0971829816699028,0.005565545056015253,0.24531209468841553,-0.11430773138999939,-0.13143248856067657,0.03981505334377289,0.07406456023454666,-0.13143248856067657,-0.028683962300419807,0.022690298035740852,0.12543882429599762,-0.028683962300419807,-0.14855724573135376,-0.28555527329444885,-0.11430773138999939,-0.2341810017824173,-0.08005822449922562,-0.11430773138999939,-0.2513057589530945,-0.16568198800086975,-0.01155920885503292,-0.11430773138999939,-0.30268001556396484,-0.4910523295402527,-0.28555527329444885,-0.3883037865161896,-0.18280674517154694,-0.28555527329444885,-0.30268001556396484,-0.2341810017824173,-0.26843053102493286,-0.2341810017824173,-0.3540542721748352,-0.3369295299053192,-0.28555527329444885,-0.4568028151988983,-0.2513057589530945,-0.3540542721748352,-0.3369295299053192,-0.3540542721748352,-0.4568028151988983,-0.4910523295402527,-0.884921669960022,-0.8335474133491516,-1.004794955253601,-1.7411593198776245,-2.1179039478302,-1.6212860345840454,-2.1007792949676514,-2.1179039478302,-1.4329137802124023,-1.5185375213623047,-2.1179039478302,-1.8610326051712036,-1.809658408164978,-1.9124069213867188,-1.3986642360687256,-0.9705454111099243,-0.542426586151123,-0.26843053102493286,-0.7307988405227661,-1.5527870655059814,-0.7992978692054749,-0.42255330085754395,-0.576676070690155,-0.6794245839118958,-0.5081770420074463,-0.7650483846664429,-0.2170562595129013,-1.0219197273254395,-1.2102919816970825,-2.1179039478302,-1.3815394639968872,-1.4329137802124023,-1.3986642360687256,-1.0390443801879883,-0.7307988405227661,-0.6451750993728638,-0.576676070690155,-0.6622998714447021,-0.11430773138999939,-0.28555527329444885,-0.3369295299053192,-0.30268001556396484,-0.2341810017824173,-0.3369295299053192,-0.3883037865161896,-0.26843053102493286,-0.18280674517154694,-0.19993150234222412,-0.028683962300419807,0.022690298035740852,-0.13143248856067657,-0.14855724573135376,-0.13143248856067657,-0.13143248856067657,-0.11430773138999939,-0.16568198800086975,-0.26843053102493286,-0.2341810017824173,-0.13143248856067657,-0.08005822449922562,-0.18280674517154694,-0.5253018140792847,-0.2341810017824173,-0.3198047876358032,-0.4739275574684143,-0.5081770420074463,-0.3369295299053192,-0.4568028151988983,-0.4568028151988983,-0.42255330085754395,-0.4739275574684143,-0.4739275574684143,-0.5595513582229614,-0.7307988405227661,-0.576676070690155],[-1.5014127492904663,-1.2959157228469849,-1.1075434684753418,-0.9020463824272156,-0.919171154499054,-0.5253018140792847,-0.4910523295402527,-0.3198047876358032,-0.16568198800086975,-0.0971829816699028,0.07406456023454666,0.022690298035740852,0.2624368667602539,0.1425635814666748,0.22818733751773834,0.10831406712532043,0.19393783807754517,0.5021833777427673,0.3823101222515106,0.34806060791015625,0.34806060791015625,0.399434894323349,0.34806060791015625,0.5706824064254761,0.5364329218864441,0.34806060791015625,0.399434894323349,0.416559636592865,0.45080915093421936,0.5706824064254761,0.48505866527557373,0.31381112337112427,0.399434894323349,0.36518537998199463,0.433684378862381,0.36518537998199463,0.45080915093421936,0.1596883237361908,0.3823101222515106,0.34806060791015625,0.1596883237361908,0.33093586564064026,0.24531209468841553,0.24531209468841553,0.2624368667602539,0.10831406712532043,0.056939806789159775,0.1425635814666748,0.2795616090297699,0.21106259524822235,0.2624368667602539,0.03981505334377289,0.2795616090297699,0.2966863512992859,0.022690298035740852,0.17681308090686798,0.1425635814666748,0.056939806789159775,0.1596883237361908,0.1425635814666748,0.2624368667602539,0.45080915093421936,0.022690298035740852,0.03981505334377289,0.17681308090686798,0.21106259524822235,0.2966863512992859,0.03981505334377289,0.399434894323349,0.45080915093421936,0.2624368667602539,0.21106259524822235,0.5364329218864441,0.46793389320373535,0.6049319505691528,0.5021833777427673,0.5193081498146057,0.45080915093421936,0.12543882429599762,0.2624368667602539,0.17681308090686798,0.2795616090297699,0.45080915093421936,0.2966863512992859,0.17681308090686798,0.31381112337112427,0.36518537998199463,0.22818733751773834,0.1425635814666748,0.056939806789159775,0.24531209468841553,0.09118931740522385,0.12543882429599762,0.2795616090297699,0.2624368667602539,0.2624368667602539,0.12543882429599762,0.399434894323349,0.2795616090297699,0.36518537998199463,0.34806060791015625,0.36518537998199463,0.2966863512992859,0.17681308090686798,0.31381112337112427,0.03981505334377289,-0.06293346732854843,0.12543882429599762,0.19393783807754517,0.19393783807754517,0.1596883237361908,0.03981505334377289,0.07406456023454666,-0.01155920885503292,0.07406456023454666,0.03981505334377289,-0.0971829816699028,-0.0971829816699028,-0.2170562595129013,-0.028683962300419807,0.022690298035740852,-0.04580871760845184,-0.14855724573135376,-0.16568198800086975,0.056939806789159775,-0.19993150234222412,-0.18280674517154694,-0.13143248856067657,-0.11430773138999939,-0.26843053102493286,-0.30268001556396484,-0.3540542721748352,-0.43967804312705994,-0.3369295299053192,-0.18280674517154694,-0.28555527329444885,-0.3883037865161896,-0.28555527329444885,-0.26843053102493286,-0.43967804312705994,-0.30268001556396484,-0.40542855858802795,-0.3540542721748352,-0.3369295299053192,-0.3711790442466736,-0.3711790442466736,-0.5081770420074463,-0.6794245839118958,-1.0561691522598267,-1.415789008140564,-1.8610326051712036,-2.1007792949676514,-2.0494048595428467,-1.9124069213867188,-2.0494048595428467,-1.535662293434143,-1.2445415258407593,-0.7650483846664429,-1.1589176654815674,-1.6212860345840454,-1.7069098949432373,-1.689785122871399,-1.8952821493148804,-0.9534206986427307,-0.2513057589530945,-0.542426586151123,-0.08005822449922562,-1.1760424375534058,-1.2787909507751465,-1.3130404949188232,0.022690298035740852,-0.40542855858802795,-0.40542855858802795,-1.1246682405471802,-0.7136741280555725,-0.7307988405227661,-0.43967804312705994,-0.9020463824272156,-0.9705454111099243,-1.3472900390625,-1.3644148111343384,-1.3815394639968872,-1.4500385522842407,-1.0904186964035034,-0.9876701831817627,-0.919171154499054,-0.8677968978881836,-0.542426586151123,-0.4568028151988983,-0.40542855858802795,-0.19993150234222412,-0.5595513582229614,-0.3369295299053192,-0.3711790442466736,-0.2513057589530945,-0.2513057589530945,-0.2170562595129013,-0.2513057589530945,-0.11430773138999939,-0.18280674517154694,-0.14855724573135376,-0.18280674517154694,-0.2513057589530945,-0.16568198800086975,-0.0971829816699028,-0.30268001556396484,-0.3883037865161896,-0.40542855858802795,-0.42255330085754395,-0.19993150234222412,-0.3198047876358032,-0.11430773138999939,-0.4739275574684143,-0.2341810017824173,-0.5081770420074463,-0.4739275574684143,-0.42255330085754395,-0.4568028151988983,-0.4910523295402527,-0.6109256148338318,-0.6451750993728638,-0.4910523295402527,-0.43967804312705994,-0.7307988405227661],[-1.7069098949432373,-1.415789008140564,-1.227416753768921,-1.2616662979125977,-1.004794955253601,-1.004794955253601,-0.7136741280555725,-0.42255330085754395,-0.30268001556396484,0.005565545056015253,0.03981505334377289,-0.06293346732854843,0.2624368667602539,0.09118931740522385,0.19393783807754517,0.34806060791015625,0.3823101222515106,0.2624368667602539,0.1596883237361908,0.2624368667602539,0.33093586564064026,0.399434894323349,0.22818733751773834,0.5364329218864441,0.36518537998199463,0.416559636592865,0.31381112337112427,0.2966863512992859,0.2966863512992859,0.3823101222515106,0.5021833777427673,0.2966863512992859,0.34806060791015625,0.5193081498146057,0.433684378862381,0.33093586564064026,0.45080915093421936,0.22818733751773834,0.3823101222515106,0.433684378862381,0.056939806789159775,0.24531209468841553,0.45080915093421936,0.2795616090297699,0.2795616090297699,0.33093586564064026,0.07406456023454666,0.2966863512992859,0.03981505334377289,0.07406456023454666,0.2966863512992859,0.056939806789159775,0.03981505334377289,0.022690298035740852,0.10831406712532043,0.34806060791015625,0.12543882429599762,0.056939806789159775,0.1596883237361908,0.10831406712532043,0.1596883237361908,0.09118931740522385,0.07406456023454666,-0.14855724573135376,-0.028683962300419807,0.21106259524822235,0.07406456023454666,0.24531209468841553,0.03981505334377289,0.21106259524822235,0.24531209468841553,0.03981505334377289,0.36518537998199463,0.22818733751773834,0.22818733751773834,-0.04580871760845184,0.09118931740522385,0.07406456023454666,0.1425635814666748,0.07406456023454666,0.022690298035740852,0.2795616090297699,0.22818733751773834,0.17681308090686798,-0.11430773138999939,0.07406456023454666,0.1596883237361908,0.17681308090686798,0.33093586564064026,0.1425635814666748,0.12543882429599762,0.12543882429599762,0.17681308090686798,0.2624368667602539,0.07406456023454666,0.399434894323349,0.17681308090686798,0.31381112337112427,0.34806060791015625,0.33093586564064026,0.21106259524822235,0.21106259524822235,0.31381112337112427,0.1425635814666748,0.17681308090686798,0.12543882429599762,0.34806060791015625,0.03981505334377289,-0.028683962300419807,0.022690298035740852,0.03981505334377289,0.03981505334377289,-0.0971829816699028,-0.01155920885503292,-0.04580871760845184,-0.028683962300419807,-0.06293346732854843,-0.18280674517154694,-0.06293346732854843,-0.01155920885503292,-0.13143248856067657,-0.06293346732854843,-0.0971829816699028,-0.13143248856067657,-0.40542855858802795,-0.01155920885503292,-0.3540542721748352,-0.26843053102493286,-0.3369295299053192,-0.3711790442466736,-0.3540542721748352,-0.3369295299053192,-0.42255330085754395,-0.4568028151988983,-0.3883037865161896,-0.3883037865161896,-0.3198047876358032,-0.28555527329444885,-0.28555527329444885,-0.3883037865161896,-0.5595513582229614,-0.4910523295402527,-0.4910523295402527,-0.5081770420074463,-0.6794245839118958,-0.7307988405227661,-0.9020463824272156,-1.3815394639968872,-1.809658408164978,-2.0494048595428467,-2.1179039478302,-2.1179039478302,-1.7925336360931396,-1.4329137802124023,-1.004794955253601,-0.8335474133491516,-1.1246682405471802,-1.7411593198776245,-2.032280206680298,-1.9124069213867188,-2.01515531539917,-1.0390443801879883,-1.415789008140564,-1.3986642360687256,-0.7992978692054749,-0.5938008427619934,0.03981505334377289,-0.6109256148338318,-0.9020463824272156,-2.0665297508239746,-1.1075434684753418,-0.5253018140792847,-0.2513057589530945,-0.8335474133491516,-0.6451750993728638,-0.6965493559837341,-0.2341810017824173,-0.14855724573135376,0.03981505334377289,-0.7479236125946045,-1.1760424375534058,-1.8610326051712036,-1.5870366096496582,-1.415789008140564,-1.2959157228469849,-1.1075434684753418,-0.9020463824272156,-1.1931672096252441,-0.7479236125946045,-0.43967804312705994,-0.5938008427619934,-0.26843053102493286,-0.2341810017824173,-0.3883037865161896,-0.18280674517154694,-0.028683962300419807,-0.18280674517154694,-0.26843053102493286,-0.42255330085754395,-0.16568198800086975,-0.3369295299053192,-0.0971829816699028,-0.2513057589530945,-0.2341810017824173,-0.3198047876358032,-0.3540542721748352,-0.2341810017824173,-0.3883037865161896,-0.4568028151988983,-0.30268001556396484,-0.43967804312705994,-0.4910523295402527,-0.542426586151123,-0.4739275574684143,-0.6109256148338318,-0.542426586151123,-0.5253018140792847,-0.3540542721748352,-0.5253018140792847,-0.43967804312705994,-0.3711790442466736,-0.3369295299053192,-0.3198047876358032,-0.3198047876358032],[-2.032280206680298,-1.6384108066558838,-1.5185375213623047,-1.1760424375534058,-1.2787909507751465,-0.8506721258163452,-0.7136741280555725,-0.576676070690155,-0.40542855858802795,-0.28555527329444885,-0.16568198800086975,-0.06293346732854843,0.056939806789159775,0.1425635814666748,0.09118931740522385,0.34806060791015625,0.09118931740522385,0.1425635814666748,0.17681308090686798,0.09118931740522385,0.17681308090686798,0.1425635814666748,0.24531209468841553,0.2795616090297699,0.433684378862381,0.2795616090297699,0.416559636592865,0.33093586564064026,0.416559636592865,0.22818733751773834,0.34806060791015625,0.22818733751773834,0.34806060791015625,0.2966863512992859,0.5706824064254761,0.34806060791015625,0.19393783807754517,0.005565545056015253,0.1596883237361908,0.33093586564064026,0.19393783807754517,0.2966863512992859,0.1425635814666748,-0.04580871760845184,0.03981505334377289,0.1425635814666748,0.03981505334377289,0.056939806789159775,0.33093586564064026,0.07406456023454666,-0.13143248856067657,0.10831406712532043,-0.13143248856067657,-0.028683962300419807,0.1596883237361908,-0.11430773138999939,-0.06293346732854843,0.005565545056015253,0.03981505334377289,0.056939806789159775,0.09118931740522385,0.03981505334377289,-0.01155920885503292,-0.0971829816699028,-0.3198047876358032,-0.13143248856067657,-0.14855724573135376,0.09118931740522385,-0.16568198800086975,-0.06293346732854843,0.022690298035740852,-0.0971829816699028,0.09118931740522385,-0.18280674517154694,0.022690298035740852,0.09118931740522385,0.07406456023454666,0.17681308090686798,0.2624368667602539,0.03981505334377289,-0.06293346732854843,0.10831406712532043,0.1425635814666748,0.10831406712532043,0.19393783807754517,-0.028683962300419807,0.19393783807754517,0.056939806789159775,-0.06293346732854843,-0.01155920885503292,0.24531209468841553,0.24531209468841553,0.12543882429599762,0.31381112337112427,0.24531209468841553,0.09118931740522385,0.1596883237361908,0.2795616090297699,0.17681308090686798,0.33093586564064026,0.2966863512992859,0.22818733751773834,0.07406456023454666,0.21106259524822235,0.21106259524822235,-0.01155920885503292,-0.01155920885503292,0.005565545056015253,-0.06293346732854843,-0.01155920885503292,-0.04580871760845184,-0.0971829816699028,-0.028683962300419807,-0.2170562595129013,-0.06293346732854843,-0.3369295299053192,-0.04580871760845184,0.022690298035740852,-0.01155920885503292,-0.16568198800086975,-0.26843053102493286,-0.13143248856067657,-0.13143248856067657,-0.14855724573135376,-0.3711790442466736,-0.2513057589530945,-0.26843053102493286,-0.18280674517154694,-0.14855724573135376,-0.30268001556396484,-0.3198047876358032,-0.2170562595129013,-0.0971829816699028,-0.42255330085754395,-0.14855724573135376,-0.5253018140792847,-0.26843053102493286,-0.4739275574684143,-0.4910523295402527,-0.542426586151123,-0.3883037865161896,-0.4910523295402527,-0.43967804312705994,-0.6794245839118958,-0.8164226412773132,-1.2445415258407593,-1.5014127492904663,-1.878157377243042,-2.0836544036865234,-2.1179039478302,-1.2959157228469849,-1.1589176654815674,-0.19993150234222412,-1.1417930126190186,-0.028683962300419807,-0.18280674517154694,-0.8164226412773132,-1.467163324356079,-1.3986642360687256,-1.604161262512207,0.17681308090686798,-1.1246682405471802,-1.7069098949432373,-1.8439078330993652,-1.073293924331665,-1.6726603507995605,-1.0219197273254395,0.5364329218864441,-0.5938008427619934,-0.028683962300419807,-0.42255330085754395,-1.5699118375778198,-0.9020463824272156,-0.4910523295402527,-0.6622998714447021,-0.7307988405227661,-0.43967804312705994,0.399434894323349,0.33093586564064026,0.24531209468841553,-0.43967804312705994,-1.3644148111343384,-1.6212860345840454,-1.6212860345840454,-1.3815394639968872,-1.227416753768921,-1.1075434684753418,-1.0390443801879883,-0.8506721258163452,-0.8506721258163452,-0.8506721258163452,-0.6280503273010254,-0.5253018140792847,-0.4739275574684143,-0.4568028151988983,-0.3198047876358032,-0.42255330085754395,-0.2170562595129013,-0.5081770420074463,-0.43967804312705994,-0.13143248856067657,-0.3198047876358032,-0.3711790442466736,-0.3198047876358032,-0.4739275574684143,-0.3711790442466736,-0.3369295299053192,-0.3198047876358032,-0.28555527329444885,-0.43967804312705994,-0.40542855858802795,-0.5253018140792847,-0.6280503273010254,-0.26843053102493286,-0.5253018140792847,-0.6622998714447021,-0.5938008427619934,-0.4910523295402527,-0.6451750993728638,-0.5938008427619934,-0.542426586151123,-0.6109256148338318,-0.6622998714447021,-0.4739275574684143],[-2.1179039478302,-1.9295316934585571,-1.535662293434143,-1.4329137802124023,-1.2787909507751465,-1.0904186964035034,-0.9362959265708923,-0.7479236125946045,-0.7650483846664429,-0.5081770420074463,-0.28555527329444885,-0.4739275574684143,-0.16568198800086975,-0.2513057589530945,0.005565545056015253,-0.04580871760845184,0.09118931740522385,0.056939806789159775,0.3823101222515106,0.1425635814666748,0.19393783807754517,0.1596883237361908,0.19393783807754517,0.17681308090686798,0.36518537998199463,0.1596883237361908,0.17681308090686798,0.45080915093421936,0.2624368667602539,0.2795616090297699,0.33093586564064026,0.33093586564064026,0.31381112337112427,0.2624368667602539,0.2966863512992859,0.34806060791015625,0.2966863512992859,0.09118931740522385,0.09118931740522385,0.022690298035740852,0.33093586564064026,0.24531209468841553,0.21106259524822235,0.056939806789159775,0.1425635814666748,0.10831406712532043,-0.11430773138999939,-0.06293346732854843,0.17681308090686798,0.005565545056015253,-0.06293346732854843,0.03981505334377289,0.005565545056015253,-0.11430773138999939,-0.0971829816699028,-0.0971829816699028,-0.0971829816699028,-0.04580871760845184,0.12543882429599762,-0.028683962300419807,-0.2170562595129013,0.22818733751773834,-0.14855724573135376,-0.06293346732854843,0.07406456023454666,-0.06293346732854843,0.005565545056015253,0.19393783807754517,-0.028683962300419807,-0.14855724573135376,-0.14855724573135376,0.22818733751773834,-0.0971829816699028,-0.08005822449922562,0.056939806789159775,0.07406456023454666,0.07406456023454666,0.19393783807754517,0.22818733751773834,0.09118931740522385,-0.01155920885503292,0.03981505334377289,0.1425635814666748,0.005565545056015253,0.10831406712532043,0.21106259524822235,0.21106259524822235,0.12543882429599762,0.1425635814666748,0.09118931740522385,0.17681308090686798,0.1596883237361908,0.399434894323349,-0.08005822449922562,0.1596883237361908,0.12543882429599762,0.22818733751773834,0.21106259524822235,0.19393783807754517,0.12543882429599762,0.17681308090686798,0.22818733751773834,0.12543882429599762,-0.08005822449922562,0.24531209468841553,-0.08005822449922562,-0.028683962300419807,0.005565545056015253,0.17681308090686798,-0.11430773138999939,0.022690298035740852,-0.13143248856067657,-0.3198047876358032,0.056939806789159775,-0.19993150234222412,-0.11430773138999939,-0.0971829816699028,0.07406456023454666,-0.01155920885503292,-0.26843053102493286,-0.26843053102493286,-0.30268001556396484,-0.3369295299053192,-0.542426586151123,-0.4568028151988983,-0.40542855858802795,-0.2513057589530945,-0.28555527329444885,-0.30268001556396484,-0.30268001556396484,-0.5081770420074463,-0.26843053102493286,-0.3883037865161896,-0.2513057589530945,-0.40542855858802795,-0.4568028151988983,-0.576676070690155,-0.3883037865161896,-0.5595513582229614,-0.6280503273010254,-0.5938008427619934,-0.7136741280555725,-0.9705454111099243,-1.1589176654815674,-1.3986642360687256,-1.6212860345840454,-1.809658408164978,-1.998030662536621,-1.3301652669906616,-1.5185375213623047,-1.1931672096252441,-1.2102919816970825,0.399434894323349,-0.19993150234222412,0.022690298035740852,-0.5595513582229614,0.33093586564064026,-1.2445415258407593,-0.6794245839118958,-0.3198047876358032,-0.7992978692054749,-0.3883037865161896,-0.43967804312705994,-0.919171154499054,-0.576676070690155,-1.2616662979125977,-1.3301652669906616,0.07406456023454666,-0.4739275574684143,-0.4910523295402527,-1.0219197273254395,-0.08005822449922562,-0.4739275574684143,-0.18280674517154694,-0.9705454111099243,-0.6451750993728638,-1.1246682405471802,-0.16568198800086975,0.22818733751773834,0.22818733751773834,-0.01155920885503292,-0.9876701831817627,-1.3472900390625,-1.5527870655059814,-1.8267830610275269,-1.535662293434143,-1.3815394639968872,-1.1246682405471802,-0.9534206986427307,-0.8677968978881836,-0.7136741280555725,-0.7821731567382812,-0.6280503273010254,-0.6622998714447021,-0.7650483846664429,-0.4910523295402527,-0.6109256148338318,-0.542426586151123,-0.2513057589530945,-0.5595513582229614,-0.6965493559837341,-0.542426586151123,-0.40542855858802795,-0.2170562595129013,-0.28555527329444885,-0.4568028151988983,-0.5595513582229614,-0.2513057589530945,-0.42255330085754395,-0.4739275574684143,-0.40542855858802795,-0.42255330085754395,-0.43967804312705994,-0.5595513582229614,-0.3711790442466736,-0.576676070690155,-0.40542855858802795,-0.542426586151123,-0.43967804312705994,-0.5595513582229614,-0.43967804312705994,-0.7136741280555725,-0.6280503273010254,-0.542426586151123],[-2.1179039478302,-2.1179039478302,-1.9637811183929443,-1.7411593198776245,-1.5185375213623047,-1.3472900390625,-1.3644148111343384,-1.0561691522598267,-0.8506721258163452,-0.6622998714447021,-0.7136741280555725,-0.5595513582229614,-0.14855724573135376,-0.2513057589530945,-0.11430773138999939,-0.028683962300419807,-0.11430773138999939,0.12543882429599762,0.19393783807754517,0.09118931740522385,0.17681308090686798,0.21106259524822235,0.1425635814666748,0.2624368667602539,0.022690298035740852,0.2795616090297699,0.17681308090686798,0.24531209468841553,0.17681308090686798,0.056939806789159775,0.36518537998199463,0.12543882429599762,0.399434894323349,0.2624368667602539,0.1596883237361908,0.22818733751773834,0.46793389320373535,-0.01155920885503292,0.24531209468841553,0.07406456023454666,0.19393783807754517,0.12543882429599762,0.12543882429599762,0.056939806789159775,0.056939806789159775,0.005565545056015253,0.03981505334377289,-0.028683962300419807,-0.04580871760845184,-0.26843053102493286,-0.11430773138999939,-0.14855724573135376,-0.08005822449922562,-0.028683962300419807,-0.2170562595129013,-0.08005822449922562,-0.08005822449922562,-0.2513057589530945,0.03981505334377289,-0.16568198800086975,-0.40542855858802795,-0.028683962300419807,-0.19993150234222412,-0.2341810017824173,-0.3369295299053192,-0.2170562595129013,-0.14855724573135376,-0.028683962300419807,-0.0971829816699028,-0.06293346732854843,-0.0971829816699028,-0.2341810017824173,0.03981505334377289,0.12543882429599762,-0.01155920885503292,-0.11430773138999939,-0.18280674517154694,-0.26843053102493286,0.24531209468841553,-0.01155920885503292,-0.19993150234222412,0.1596883237361908,-0.028683962300419807,-0.08005822449922562,-0.01155920885503292,-0.13143248856067657,0.056939806789159775,-0.06293346732854843,0.1425635814666748,0.10831406712532043,0.07406456023454666,0.22818733751773834,0.09118931740522385,0.2795616090297699,0.22818733751773834,0.09118931740522385,0.31381112337112427,0.07406456023454666,-0.06293346732854843,0.03981505334377289,0.03981505334377289,-0.19993150234222412,0.19393783807754517,0.056939806789159775,-0.11430773138999939,0.09118931740522385,0.03981505334377289,-0.01155920885503292,-0.2170562595129013,-0.16568198800086975,-0.16568198800086975,-0.18280674517154694,-0.2513057589530945,-0.2513057589530945,-0.28555527329444885,-0.04580871760845184,0.03981505334377289,-0.11430773138999939,-0.13143248856067657,-0.3198047876358032,-0.4568028151988983,-0.28555527329444885,-0.2513057589530945,-0.28555527329444885,-0.3369295299053192,-0.3540542721748352,-0.2513057589530945,-0.2513057589530945,-0.4568028151988983,-0.4739275574684143,-0.30268001556396484,-0.5081770420074463,-0.3369295299053192,-0.6451750993728638,-0.40542855858802795,-0.6280503273010254,-0.5938008427619934,-0.6965493559837341,-0.7479236125946045,-0.7136741280555725,-0.7992978692054749,-1.1417930126190186,-1.3986642360687256,-1.535662293434143,-1.6212860345840454,-1.946656346321106,-2.1179039478302,-1.3130404949188232,-1.2959157228469849,-0.3711790442466736,0.46793389320373535,0.9303022623062134,-0.7136741280555725,0.45080915093421936,0.03981505334377289,0.2966863512992859,-0.18280674517154694,-1.004794955253601,-0.2170562595129013,-0.5081770420074463,-1.2102919816970825,-1.4329137802124023,-0.2513057589530945,-0.5595513582229614,-0.5253018140792847,-1.2787909507751465,-0.7650483846664429,-1.073293924331665,0.1425635814666748,0.36518537998199463,-0.26843053102493286,-0.08005822449922562,-1.004794955253601,-1.1760424375534058,-1.1075434684753418,-0.884921669960022,-0.3883037865161896,-0.542426586151123,0.2795616090297699,0.09118931740522385,0.399434894323349,-0.01155920885503292,-0.5081770420074463,-1.5699118375778198,-1.4329137802124023,-1.5870366096496582,-1.6555355787277222,-1.535662293434143,-1.2787909507751465,-1.1417930126190186,-0.9705454111099243,-0.7821731567382812,-0.8335474133491516,-0.6965493559837341,-0.9362959265708923,-0.542426586151123,-0.576676070690155,-0.6280503273010254,-0.3883037865161896,-0.7821731567382812,-0.5938008427619934,-0.4739275574684143,-0.576676070690155,-0.5081770420074463,-0.3540542721748352,-0.40542855858802795,-0.3883037865161896,-0.5595513582229614,-0.40542855858802795,-0.40542855858802795,-0.5081770420074463,-0.576676070690155,-0.4739275574684143,-0.6109256148338318,-0.5253018140792847,-0.5595513582229614,-0.6280503273010254,-0.542426586151123,-0.6280503273010254,-0.7650483846664429,-0.6451750993728638,-0.40542855858802795,-0.576676070690155,-0.5253018140792847],[-2.1179039478302,-2.1007792949676514,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.01515531539917,-2.0665297508239746,-2.1179039478302,-1.7754088640213013,-1.3301652669906616,-0.9705454111099243,-0.9362959265708923,-0.4568028151988983,-0.4568028151988983,-0.19993150234222412,-0.16568198800086975,-0.08005822449922562,-0.30268001556396484,-0.04580871760845184,0.005565545056015253,0.005565545056015253,0.022690298035740852,0.022690298035740852,0.10831406712532043,0.12543882429599762,0.022690298035740852,0.12543882429599762,0.12543882429599762,0.19393783807754517,-0.04580871760845184,0.07406456023454666,0.10831406712532043,0.24531209468841553,0.07406456023454666,0.09118931740522385,0.056939806789159775,-0.18280674517154694,-0.19993150234222412,-0.08005822449922562,-0.06293346732854843,-0.028683962300419807,0.056939806789159775,-0.11430773138999939,-0.16568198800086975,0.09118931740522385,-0.08005822449922562,-0.0971829816699028,-0.18280674517154694,-0.2170562595129013,-0.04580871760845184,-0.2341810017824173,-0.08005822449922562,-0.11430773138999939,-0.2341810017824173,-0.26843053102493286,-0.16568198800086975,-0.3540542721748352,-0.3883037865161896,-0.4568028151988983,-0.542426586151123,-0.4568028151988983,-0.43967804312705994,-0.3198047876358032,-0.30268001556396484,-0.26843053102493286,-0.2341810017824173,-0.3883037865161896,-0.2170562595129013,-0.06293346732854843,-0.19993150234222412,-0.4568028151988983,-0.19993150234222412,-0.2341810017824173,-0.08005822449922562,0.03981505334377289,-0.16568198800086975,-0.0971829816699028,0.005565545056015253,-0.14855724573135376,-0.19993150234222412,0.03981505334377289,0.09118931740522385,-0.0971829816699028,-0.06293346732854843,-0.01155920885503292,-0.028683962300419807,-0.16568198800086975,-0.13143248856067657,-0.16568198800086975,-0.11430773138999939,-0.11430773138999939,-0.08005822449922562,-0.0971829816699028,0.022690298035740852,-0.01155920885503292,-0.13143248856067657,-0.01155920885503292,-0.14855724573135376,-0.26843053102493286,-0.28555527329444885,-0.30268001556396484,-0.13143248856067657,-0.2341810017824173,-0.2513057589530945,-0.13143248856067657,-0.28555527329444885,-0.2170562595129013,-0.4568028151988983,-0.3198047876358032,-0.2513057589530945,-0.2170562595129013,-0.3540542721748352,-0.2341810017824173,-0.7479236125946045,-0.28555527329444885,-0.3198047876358032,-0.2513057589530945,-0.26843053102493286,-0.26843053102493286,-0.3369295299053192,-0.3711790442466736,-0.3540542721748352,-0.4739275574684143,-0.5253018140792847,-0.5595513582229614,-0.4910523295402527,-0.542426586151123,-0.5595513582229614,-0.542426586151123,-0.576676070690155,-0.7307988405227661,-0.6280503273010254,-0.7307988405227661,-0.8335474133491516,-0.7992978692054749,-0.8677968978881836,-0.9876701831817627,-1.0390443801879883,-1.2787909507751465,-1.5185375213623047,-1.5870366096496582,-1.8610326051712036,-2.1179039478302,-2.0494048595428467,-1.1931672096252441,0.1425635814666748,-0.42255330085754395,-0.6280503273010254,0.09118931740522385,-0.2341810017824173,0.5364329218864441,-0.30268001556396484,-0.576676070690155,-0.08005822449922562,-0.4739275574684143,-1.3301652669906616,-1.1931672096252441,-0.5938008427619934,-0.6622998714447021,-0.7821731567382812,-0.40542855858802795,-0.0971829816699028,-0.0971829816699028,0.6220566630363464,0.2624368667602539,-0.7479236125946045,-0.43967804312705994,0.056939806789159775,-0.028683962300419807,0.33093586564064026,0.46793389320373535,-0.5938008427619934,-0.542426586151123,-1.5185375213623047,-1.1931672096252441,-1.0561691522598267,-0.7307988405227661,0.07406456023454666,0.1596883237361908,-0.04580871760845184,-0.6109256148338318,0.056939806789159775,-0.8164226412773132,-0.7307988405227661,-1.6384108066558838,-1.3301652669906616,-1.5014127492904663,-1.6212860345840454,-1.535662293434143,-1.3815394639968872,-1.2959157228469849,-1.073293924331665,-1.1760424375534058,-0.8335474133491516,-0.6794245839118958,-0.7650483846664429,-0.7992978692054749,-0.6451750993728638,-0.6280503273010254,-0.884921669960022,-0.7821731567382812,-0.6280503273010254,-0.5938008427619934,-0.6622998714447021,-0.5081770420074463,-0.6622998714447021,-0.6280503273010254,-0.576676070690155,-0.576676070690155,-0.6794245839118958,-0.6622998714447021,-0.6451750993728638,-0.8164226412773132,-0.6794245839118958,-0.5938008427619934,-0.8335474133491516,-0.5595513582229614,-0.6965493559837341,-0.7821731567382812,-0.8335474133491516,-0.542426586151123,-0.7136741280555725,-0.6965493559837341],[-2.1179039478302,-2.1007792949676514,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.0665297508239746,-1.7411593198776245,-2.1179039478302,-2.0665297508239746,-1.946656346321106,-2.0665297508239746,-1.946656346321106,-1.6384108066558838,-1.5014127492904663,-1.2959157228469849,-0.919171154499054,-0.4910523295402527,-0.18280674517154694,-0.11430773138999939,-0.13143248856067657,-0.0971829816699028,-0.2170562595129013,-0.06293346732854843,-0.08005822449922562,-0.08005822449922562,0.1425635814666748,0.056939806789159775,-0.028683962300419807,0.1596883237361908,-0.0971829816699028,-0.028683962300419807,0.09118931740522385,0.10831406712532043,0.056939806789159775,-0.16568198800086975,0.21106259524822235,-0.13143248856067657,-0.30268001556396484,-0.11430773138999939,-0.06293346732854843,-0.06293346732854843,-0.028683962300419807,0.056939806789159775,-0.2513057589530945,-0.06293346732854843,-0.0971829816699028,-0.18280674517154694,-0.2170562595129013,-0.3369295299053192,-0.30268001556396484,-0.16568198800086975,-0.3711790442466736,-0.28555527329444885,-0.3198047876358032,-0.18280674517154694,-0.08005822449922562,-0.542426586151123,-0.3198047876358032,-0.3540542721748352,-0.30268001556396484,-0.5081770420074463,-0.42255330085754395,-0.43967804312705994,-0.3883037865161896,-0.2170562595129013,-0.40542855858802795,-0.28555527329444885,-0.3711790442466736,-0.3540542721748352,-0.18280674517154694,-0.2341810017824173,-0.18280674517154694,-0.2513057589530945,-0.3540542721748352,-0.3369295299053192,-0.06293346732854843,-0.13143248856067657,-0.14855724573135376,-0.06293346732854843,-0.30268001556396484,-0.11430773138999939,-0.28555527329444885,-0.3198047876358032,-0.19993150234222412,-0.2341810017824173,-0.18280674517154694,-0.08005822449922562,-0.16568198800086975,-0.3883037865161896,-0.3369295299053192,-0.3369295299053192,-0.3540542721748352,-0.5081770420074463,-0.4739275574684143,-0.2513057589530945,-0.30268001556396484,-0.40542855858802795,-0.576676070690155,-0.5081770420074463,-0.6451750993728638,-0.3883037865161896,-0.542426586151123,-0.576676070690155,-0.42255330085754395,-0.42255330085754395,-0.4739275574684143,-0.6109256148338318,-0.3711790442466736,-0.3540542721748352,-0.30268001556396484,-0.5595513582229614,-0.3883037865161896,-0.5253018140792847,-0.3369295299053192,-0.3540542721748352,-0.3369295299053192,-0.3711790442466736,-0.3883037865161896,-0.5081770420074463,-0.4910523295402527,-0.5595513582229614,-0.576676070690155,-0.5595513582229614,-0.3711790442466736,-0.576676070690155,-0.542426586151123,-0.4910523295402527,-0.576676070690155,-0.4739275574684143,-0.5938008427619934,-0.6965493559837341,-0.7821731567382812,-0.8164226412773132,-1.0390443801879883,-1.073293924331665,-1.0904186964035034,-1.0904186964035034,-1.2102919816970825,-1.5527870655059814,-1.3986642360687256,-1.7411593198776245,-1.946656346321106,-2.0836544036865234,-1.998030662536621,-2.0836544036865234,-1.2102919816970825,-0.8164226412773132,-0.7650483846664429,0.34806060791015625,-0.30268001556396484,-0.3369295299053192,0.09118931740522385,-0.542426586151123,-1.2445415258407593,-1.0904186964035034,-1.3644148111343384,-1.604161262512207,-1.2445415258407593,-1.1931672096252441,-1.689785122871399,-0.6794245839118958,-0.14855724573135376,-0.919171154499054,0.17681308090686798,0.03981505334377289,0.2624368667602539,0.1596883237361908,-0.11430773138999939,-0.6794245839118958,-0.8677968978881836,-1.467163324356079,-0.028683962300419807,-0.01155920885503292,-1.6726603507995605,-1.1760424375534058,-1.2445415258407593,-1.1075434684753418,-0.18280674517154694,0.2966863512992859,0.005565545056015253,-0.06293346732854843,-0.3540542721748352,0.022690298035740852,-0.9876701831817627,-0.9534206986427307,-1.5185375213623047,-0.4739275574684143,-1.8610326051712036,-1.6384108066558838,-1.7069098949432373,-1.5527870655059814,-1.3644148111343384,-1.2102919816970825,-1.2787909507751465,-1.1075434684753418,-1.073293924331665,-0.6794245839118958,-0.542426586151123,-0.6794245839118958,-0.919171154499054,-0.7136741280555725,-0.6965493559837341,-0.7650483846664429,-0.5595513582229614,-0.6622998714447021,-0.6451750993728638,-0.7136741280555725,-0.5253018140792847,-0.6622998714447021,-0.8335474133491516,-0.7650483846664429,-0.8164226412773132,-0.6280503273010254,-0.7821731567382812,-0.7479236125946045,-0.576676070690155,-0.5595513582229614,-0.7992978692054749,-0.6622998714447021,-0.8506721258163452,-0.9362959265708923,-0.6794245839118958,-0.7992978692054749,-0.7479236125946045],[-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.1007792949676514,-2.01515531539917,-1.4500385522842407,-1.4842880964279175,-1.415789008140564,-1.535662293434143,-1.5699118375778198,-1.4842880964279175,-1.6212860345840454,-1.6384108066558838,-1.7411593198776245,-1.5527870655059814,-1.5527870655059814,-1.535662293434143,-1.3472900390625,-0.6794245839118958,-0.6794245839118958,-0.4739275574684143,-0.43967804312705994,-0.3540542721748352,-0.01155920885503292,-0.26843053102493286,-0.11430773138999939,0.09118931740522385,-0.2170562595129013,-0.06293346732854843,-0.13143248856067657,-0.2170562595129013,-0.11430773138999939,-0.16568198800086975,-0.16568198800086975,-0.08005822449922562,0.12543882429599762,-0.28555527329444885,-0.18280674517154694,-0.18280674517154694,-0.3369295299053192,-0.3198047876358032,-0.18280674517154694,-0.18280674517154694,-0.2341810017824173,-0.3369295299053192,-0.40542855858802795,-0.42255330085754395,-0.3198047876358032,-0.4910523295402527,-0.3883037865161896,-0.4568028151988983,-0.4568028151988983,-0.42255330085754395,-0.42255330085754395,-0.5595513582229614,-0.3711790442466736,-0.5938008427619934,-0.5938008427619934,-0.5595513582229614,-0.5253018140792847,-0.40542855858802795,-0.5253018140792847,-0.42255330085754395,-0.40542855858802795,-0.3369295299053192,-0.3198047876358032,-0.3540542721748352,-0.3883037865161896,-0.3369295299053192,-0.43967804312705994,-0.3540542721748352,-0.2170562595129013,-0.28555527329444885,-0.28555527329444885,-0.30268001556396484,-0.18280674517154694,-0.16568198800086975,-0.42255330085754395,-0.4739275574684143,-0.3711790442466736,-0.3369295299053192,-0.26843053102493286,-0.4739275574684143,-0.4739275574684143,-0.43967804312705994,-0.5081770420074463,-0.40542855858802795,-0.576676070690155,-0.6451750993728638,-0.4910523295402527,-0.6794245839118958,-0.576676070690155,-0.43967804312705994,-0.542426586151123,-0.542426586151123,-0.6965493559837341,-0.7479236125946045,-0.7650483846664429,-0.7307988405227661,-0.6794245839118958,-0.4739275574684143,-0.43967804312705994,-0.5081770420074463,-0.4910523295402527,-0.42255330085754395,-0.3711790442466736,-0.5595513582229614,-0.5081770420074463,-0.4739275574684143,-0.4568028151988983,-0.3198047876358032,-0.4568028151988983,-0.43967804312705994,-0.4739275574684143,-0.5081770420074463,-0.4739275574684143,-0.4739275574684143,-0.3198047876358032,-0.6451750993728638,-0.6622998714447021,-0.8164226412773132,-0.7821731567382812,-0.7992978692054749,-0.7307988405227661,-0.6794245839118958,-0.6280503273010254,-0.8335474133491516,-0.6109256148338318,-0.7650483846664429,-0.7992978692054749,-1.0219197273254395,-0.8335474133491516,-1.0390443801879883,-0.9876701831817627,-1.2445415258407593,-1.4500385522842407,-1.689785122871399,-1.6555355787277222,-1.8952821493148804,-2.0494048595428467,-2.0665297508239746,-2.1179039478302,-1.1931672096252441,-0.6280503273010254,-1.004794955253601,0.1425635814666748,-0.7650483846664429,-0.6965493559837341,-0.3540542721748352,-0.42255330085754395,-1.3130404949188232,-1.1931672096252441,-1.4842880964279175,-0.8335474133491516,-1.9809058904647827,-0.9705454111099243,-1.5185375213623047,-1.604161262512207,-0.7136741280555725,-0.9362959265708923,-0.9020463824272156,-0.9362959265708923,-0.3540542721748352,-0.5253018140792847,0.5535576939582825,0.46793389320373535,0.48505866527557373,-0.08005822449922562,-0.6451750993728638,-1.004794955253601,-0.2170562595129013,0.5021833777427673,-0.11430773138999939,-0.8335474133491516,-1.7240345478057861,-1.1589176654815674,-0.3540542721748352,0.3823101222515106,0.10831406712532043,0.8275537490844727,-0.5938008427619934,0.5706824064254761,-0.884921669960022,-0.7136741280555725,-0.7650483846664429,-0.6965493559837341,-1.415789008140564,-1.7411593198776245,-1.7069098949432373,-1.7925336360931396,-1.809658408164978,-1.7411593198776245,-1.467163324356079,-1.1760424375534058,-1.2102919816970825,-1.2616662979125977,-1.0561691522598267,-1.0561691522598267,-0.9705454111099243,-1.0390443801879883,-0.7821731567382812,-0.7307988405227661,-0.7821731567382812,-0.6965493559837341,-0.7650483846664429,-0.8335474133491516,-0.576676070690155,-0.7479236125946045,-0.884921669960022,-0.9020463824272156,-0.7136741280555725,-0.7479236125946045,-0.7307988405227661,-0.7307988405227661,-0.7307988405227661,-0.6622998714447021,-0.8506721258163452,-0.8677968978881836,-0.8164226412773132,-0.7307988405227661,-0.576676070690155,-0.6451750993728638,-0.6280503273010254],[-2.1007792949676514,-2.0836544036865234,-2.1007792949676514,-2.0665297508239746,-2.1007792949676514,-1.689785122871399,-1.6212860345840454,-1.5014127492904663,-1.1589176654815674,-1.2102919816970825,-1.0390443801879883,-1.1417930126190186,-1.227416753768921,-0.9876701831817627,-0.9876701831817627,-1.1417930126190186,-1.227416753768921,-1.1417930126190186,-1.227416753768921,-1.4329137802124023,-1.3986642360687256,-1.415789008140564,-1.3644148111343384,-1.3130404949188232,-1.1589176654815674,-0.6965493559837341,-0.7479236125946045,-0.7650483846664429,-0.3198047876358032,-0.2341810017824173,-0.028683962300419807,-0.16568198800086975,-0.26843053102493286,0.022690298035740852,-0.42255330085754395,-0.3198047876358032,-0.30268001556396484,-0.4910523295402527,-0.26843053102493286,-0.4568028151988983,-0.3540542721748352,-0.30268001556396484,-0.3540542721748352,-0.43967804312705994,-0.5081770420074463,-0.576676070690155,-0.542426586151123,-0.43967804312705994,-0.6280503273010254,-0.5253018140792847,-0.7650483846664429,-0.542426586151123,-0.6280503273010254,-0.7307988405227661,-0.42255330085754395,-0.4568028151988983,-0.542426586151123,-0.576676070690155,-0.43967804312705994,-0.4910523295402527,-0.7136741280555725,-0.6109256148338318,-0.5938008427619934,-0.4910523295402527,-0.4739275574684143,-0.40542855858802795,-0.542426586151123,-0.5081770420074463,-0.6280503273010254,-0.6965493559837341,-0.5081770420074463,-0.3711790442466736,-0.3883037865161896,-0.3369295299053192,-0.4739275574684143,-0.28555527329444885,-0.542426586151123,-0.6109256148338318,-0.5595513582229614,-0.5253018140792847,-0.5938008427619934,-0.7307988405227661,-0.6794245839118958,-0.5253018140792847,-0.6109256148338318,-0.7650483846664429,-0.8677968978881836,-0.8335474133491516,-0.7307988405227661,-0.8506721258163452,-0.8506721258163452,-0.884921669960022,-0.7650483846664429,-0.8335474133491516,-0.7479236125946045,-0.7992978692054749,-0.7992978692054749,-0.8677968978881836,-0.9020463824272156,-0.7821731567382812,-0.7479236125946045,-0.8506721258163452,-0.6451750993728638,-0.6622998714447021,-0.542426586151123,-0.7136741280555725,-0.8164226412773132,-0.5595513582229614,-0.6794245839118958,-0.576676070690155,-0.7479236125946045,-0.576676070690155,-0.5938008427619934,-0.6109256148338318,-0.576676070690155,-0.5253018140792847,-0.4568028151988983,-0.6109256148338318,-0.7992978692054749,-0.7650483846664429,-0.576676070690155,-0.5938008427619934,-0.6280503273010254,-0.6451750993728638,-0.6794245839118958,-0.6794245839118958,-0.8164226412773132,-0.8677968978881836,-0.8506721258163452,-1.0390443801879883,-1.0904186964035034,-1.1589176654815674,-1.0904186964035034,-1.1589176654815674,-1.4842880964279175,-1.6384108066558838,-1.6726603507995605,-1.8267830610275269,-1.8267830610275269,-2.0836544036865234,-2.0494048595428467,-2.1179039478302,-2.0494048595428467,0.2624368667602539,0.2624368667602539,0.34806060791015625,0.10831406712532043,0.22818733751773834,-0.6451750993728638,-0.6794245839118958,-1.4329137802124023,-1.6726603507995605,-1.3644148111343384,-1.2787909507751465,-1.1931672096252441,-0.7479236125946045,-1.3986642360687256,-1.2616662979125977,-1.0219197273254395,-0.9020463824272156,-0.6280503273010254,-0.2341810017824173,-0.5595513582229614,-0.9020463824272156,0.1425635814666748,0.09118931740522385,0.3823101222515106,0.7076804637908936,0.6391814351081848,0.19393783807754517,-1.9295316934585571,-0.2341810017824173,-0.5253018140792847,0.10831406712532043,1.1700488328933716,-0.30268001556396484,0.5878071784973145,0.22818733751773834,0.17681308090686798,1.0159260034561157,0.22818733751773834,-0.9020463824272156,0.5021833777427673,-0.5595513582229614,-1.1931672096252441,0.1425635814666748,0.399434894323349,-0.7650483846664429,-0.7479236125946045,-0.6622998714447021,-1.5699118375778198,-1.5527870655059814,-1.6726603507995605,-1.7069098949432373,-1.467163324356079,-1.467163324356079,-1.227416753768921,-1.0904186964035034,-1.1417930126190186,-0.9876701831817627,-1.227416753768921,-1.0219197273254395,-0.9876701831817627,-1.1075434684753418,-0.8506721258163452,-0.8506721258163452,-0.8506721258163452,-1.0390443801879883,-0.7479236125946045,-0.9020463824272156,-0.8677968978881836,-0.8506721258163452,-0.919171154499054,-0.7650483846664429,-0.6794245839118958,-0.9876701831817627,-1.0390443801879883,-0.7479236125946045,-0.7992978692054749,-0.8164226412773132,-0.919171154499054,-0.7136741280555725,-0.8506721258163452,-0.7650483846664429],[-2.0836544036865234,-2.0665297508239746,-2.0665297508239746,-2.0665297508239746,-2.1179039478302,-1.1417930126190186,-1.6555355787277222,-1.3130404949188232,-1.0904186964035034,-0.9534206986427307,-0.9020463824272156,-0.7821731567382812,-0.8164226412773132,-0.6794245839118958,-0.8164226412773132,-0.7821731567382812,-0.7821731567382812,-0.7650483846664429,-0.7479236125946045,-0.7479236125946045,-0.7650483846664429,-0.8506721258163452,-0.8677968978881836,-0.9362959265708923,-1.0561691522598267,-1.1417930126190186,-1.2959157228469849,-1.3130404949188232,-1.2102919816970825,-1.1589176654815674,-1.0219197273254395,-0.576676070690155,-0.7821731567382812,-0.576676070690155,-0.3711790442466736,-0.43967804312705994,-0.40542855858802795,-0.5081770420074463,-0.5595513582229614,-0.6109256148338318,-0.4739275574684143,-0.5081770420074463,-0.6622998714447021,-0.6280503273010254,-0.7136741280555725,-0.8677968978881836,-0.8164226412773132,-0.8164226412773132,-0.7821731567382812,-0.6622998714447021,-0.6622998714447021,-0.9362959265708923,-0.7650483846664429,-0.8677968978881836,-0.7479236125946045,-0.7307988405227661,-0.6965493559837341,-0.6109256148338318,-0.576676070690155,-0.6109256148338318,-0.8335474133491516,-0.8335474133491516,-0.6109256148338318,-0.6965493559837341,-0.5595513582229614,-0.7307988405227661,-0.7650483846664429,-0.6622998714447021,-0.5081770420074463,-0.576676070690155,-0.542426586151123,-0.576676070690155,-0.576676070690155,-0.6622998714447021,-0.7650483846664429,-0.6965493559837341,-0.7650483846664429,-0.7479236125946045,-0.919171154499054,-0.7650483846664429,-0.884921669960022,-0.9534206986427307,-0.8506721258163452,-1.1246682405471802,-0.9534206986427307,-1.1075434684753418,-1.0904186964035034,-1.1075434684753418,-1.1760424375534058,-1.227416753768921,-1.0904186964035034,-1.073293924331665,-1.073293924331665,-1.0390443801879883,-1.0561691522598267,-1.004794955253601,-1.0219197273254395,-1.2959157228469849,-1.2787909507751465,-1.3472900390625,-0.9020463824272156,-1.004794955253601,-0.884921669960022,-1.073293924331665,-0.8677968978881836,-0.6280503273010254,-0.7479236125946045,-0.6794245839118958,-0.7307988405227661,-0.8506721258163452,-0.6451750993728638,-0.8677968978881836,-0.7136741280555725,-0.8677968978881836,-0.8506721258163452,-0.8506721258163452,-0.8335474133491516,-1.004794955253601,-0.7992978692054749,-0.8164226412773132,-0.8677968978881836,-0.9534206986427307,-0.884921669960022,-0.6451750993728638,-0.6794245839118958,-0.919171154499054,-0.9705454111099243,-0.9705454111099243,-1.1589176654815674,-1.1589176654815674,-1.1417930126190186,-1.3130404949188232,-1.5527870655059814,-1.5014127492904663,-1.6555355787277222,-1.878157377243042,-1.8952821493148804,-2.032280206680298,-2.0665297508239746,-2.0665297508239746,-2.1179039478302,-2.0665297508239746,-0.7821731567382812,-1.0561691522598267,-0.919171154499054,-0.06293346732854843,-0.14855724573135376,0.6563062071800232,-0.13143248856067657,-1.4500385522842407,-1.7925336360931396,-1.415789008140564,-1.7754088640213013,-0.8506721258163452,-0.6280503273010254,-1.1589176654815674,-1.6384108066558838,-1.0561691522598267,-1.0219197273254395,-0.43967804312705994,0.5535576939582825,-0.11430773138999939,-1.0390443801879883,-0.3369295299053192,-0.08005822449922562,0.2624368667602539,0.6563062071800232,1.2042982578277588,0.2795616090297699,0.6220566630363464,-0.30268001556396484,-0.6622998714447021,-0.7650483846664429,-0.8335474133491516,-0.8164226412773132,-0.7479236125946045,0.10831406712532043,0.5193081498146057,1.2727973461151123,0.6563062071800232,0.22818733751773834,-0.11430773138999939,0.36518537998199463,0.1425635814666748,-0.919171154499054,0.21106259524822235,0.7248051762580872,-0.5081770420074463,0.17681308090686798,-0.3540542721748352,-1.1931672096252441,-0.6622998714447021,-1.2959157228469849,-2.0836544036865234,-1.6384108066558838,-1.689785122871399,-1.7925336360931396,-1.5014127492904663,-1.4500385522842407,-1.4500385522842407,-1.3472900390625,-0.9020463824272156,-1.1246682405471802,-0.9705454111099243,-1.073293924331665,-0.9362959265708923,-1.0219197273254395,-0.9020463824272156,-1.2102919816970825,-0.919171154499054,-0.9705454111099243,-0.9876701831817627,-0.9362959265708923,-1.1246682405471802,-1.1246682405471802,-0.9876701831817627,-0.8677968978881836,-1.2445415258407593,-1.0390443801879883,-0.9876701831817627,-0.7992978692054749,-0.9705454111099243,-0.884921669960022,-0.9020463824272156],[-2.1179039478302,-1.9809058904647827,-2.0836544036865234,-1.946656346321106,-2.1179039478302,-1.0219197273254395,-1.3472900390625,-0.8677968978881836,-0.7307988405227661,-0.9020463824272156,-0.8164226412773132,-0.8164226412773132,-0.8164226412773132,-0.4910523295402527,-0.6451750993728638,-0.42255330085754395,-0.4739275574684143,-0.6794245839118958,-0.3711790442466736,-0.3711790442466736,-0.576676070690155,-0.576676070690155,-0.6451750993728638,-0.7136741280555725,-0.7479236125946045,-0.6451750993728638,-0.6280503273010254,-0.7992978692054749,-0.9020463824272156,-0.9020463824272156,-1.1075434684753418,-1.0904186964035034,-0.919171154499054,-1.1075434684753418,-1.1246682405471802,-1.1931672096252441,-1.4329137802124023,-1.3130404949188232,-1.004794955253601,-1.073293924331665,-1.1246682405471802,-1.2102919816970825,-1.073293924331665,-1.1075434684753418,-1.1931672096252441,-1.1246682405471802,-1.0904186964035034,-1.004794955253601,-1.004794955253601,-0.9705454111099243,-0.9362959265708923,-0.9705454111099243,-0.7992978692054749,-0.884921669960022,-0.7821731567382812,-0.7650483846664429,-0.6622998714447021,-1.0390443801879883,-1.004794955253601,-0.7821731567382812,-0.9362959265708923,-0.8164226412773132,-1.0390443801879883,-0.6965493559837341,-0.6109256148338318,-0.919171154499054,-0.5595513582229614,-0.6965493559837341,-0.6109256148338318,-0.6794245839118958,-0.9362959265708923,-0.7650483846664429,-0.8335474133491516,-0.9705454111099243,-1.1417930126190186,-0.8677968978881836,-1.0390443801879883,-1.0219197273254395,-1.1246682405471802,-1.1075434684753418,-1.1246682405471802,-1.2102919816970825,-1.2959157228469849,-1.2787909507751465,-1.2787909507751465,-1.3301652669906616,-1.0904186964035034,-1.5699118375778198,-1.1075434684753418,-1.467163324356079,-1.5527870655059814,-1.073293924331665,-1.1760424375534058,-1.467163324356079,-0.9534206986427307,-1.6384108066558838,0.2624368667602539,0.8960527181625366,1.2727973461151123,1.2214230298995972,0.31381112337112427,-1.0561691522598267,-1.0390443801879883,-1.3301652669906616,-1.1931672096252441,-0.9876701831817627,-0.8335474133491516,-0.9020463824272156,-0.8335474133491516,-0.8335474133491516,-0.8164226412773132,-0.9534206986427307,-1.1589176654815674,-1.0561691522598267,-0.9876701831817627,-1.0904186964035034,-1.1246682405471802,-1.0561691522598267,-1.1760424375534058,-1.0561691522598267,-1.0904186964035034,-1.073293924331665,-0.919171154499054,-0.9020463824272156,-1.0904186964035034,-1.0390443801879883,-1.1417930126190186,-1.0390443801879883,-1.3644148111343384,-1.4500385522842407,-1.535662293434143,-1.5527870655059814,-1.5699118375778198,-1.8267830610275269,-1.9124069213867188,-1.9295316934585571,-2.032280206680298,-2.1179039478302,-2.1007792949676514,-2.0665297508239746,-1.998030662536621,-0.8164226412773132,-0.28555527329444885,0.2795616090297699,0.416559636592865,-0.6622998714447021,0.8275537490844727,-0.13143248856067657,-0.16568198800086975,-0.7307988405227661,-1.1246682405471802,-1.6726603507995605,-1.4329137802124023,-0.4739275574684143,-0.9362959265708923,-0.7650483846664429,-1.2445415258407593,-1.2959157228469849,-0.5595513582229614,-1.1589176654815674,-1.0390443801879883,-0.08005822449922562,-1.1931672096252441,-1.0561691522598267,-0.40542855858802795,0.1596883237361908,-0.2170562595129013,0.2966863512992859,-0.0971829816699028,0.6734309196472168,-1.1246682405471802,0.8446784615516663,0.07406456023454666,0.2624368667602539,1.0159260034561157,0.9474270343780518,0.17681308090686798,0.33093586564064026,0.7248051762580872,0.48505866527557373,0.17681308090686798,0.8104289770126343,-0.2341810017824173,-0.08005822449922562,-2.1179039478302,-0.2513057589530945,0.416559636592865,0.17681308090686798,0.6391814351081848,0.17681308090686798,0.399434894323349,-1.0390443801879883,-1.6384108066558838,-1.467163324356079,-0.7650483846664429,-1.604161262512207,-1.9809058904647827,-2.0494048595428467,-2.1007792949676514,-1.998030662536621,-1.809658408164978,-1.758284091949463,-1.4842880964279175,-1.0390443801879883,-1.3986642360687256,-1.2102919816970825,-1.1589176654815674,-1.1760424375534058,-1.227416753768921,-1.2787909507751465,-1.2959157228469849,-1.1589176654815674,-1.0904186964035034,-1.1760424375534058,-1.1246682405471802,-1.0904186964035034,-0.9705454111099243,-1.0390443801879883,-1.467163324356079,-1.1760424375534058,-1.0219197273254395,-1.0219197273254395,-1.004794955253601,-0.9534206986427307],[-2.0494048595428467,-1.878157377243042,-1.998030662536621,-2.1179039478302,-1.998030662536621,-1.1931672096252441,-1.1075434684753418,-0.7136741280555725,-0.7650483846664429,-0.6794245839118958,-0.7650483846664429,-0.4739275574684143,-0.40542855858802795,-0.4739275574684143,-0.3369295299053192,-0.3540542721748352,-0.3883037865161896,-0.3711790442466736,-0.28555527329444885,-0.2513057589530945,-0.2513057589530945,-0.30268001556396484,-0.11430773138999939,-0.3198047876358032,-0.18280674517154694,-0.42255330085754395,-0.5253018140792847,-0.4568028151988983,-0.4568028151988983,-0.576676070690155,-0.5081770420074463,-0.7307988405227661,-0.542426586151123,-0.6109256148338318,-0.8335474133491516,-0.8677968978881836,-0.884921669960022,-1.0904186964035034,-1.1760424375534058,-0.919171154499054,-1.0904186964035034,-1.3986642360687256,-1.2102919816970825,-1.3644148111343384,-1.3130404949188232,-1.3472900390625,-1.467163324356079,-1.6384108066558838,-1.467163324356079,-1.535662293434143,-1.6555355787277222,-1.4842880964279175,-1.4500385522842407,-1.3301652669906616,-1.2616662979125977,-1.0904186964035034,-1.2616662979125977,-1.0219197273254395,-0.9362959265708923,-1.073293924331665,-1.004794955253601,-1.227416753768921,-0.7992978692054749,-1.0219197273254395,-1.004794955253601,-0.6965493559837341,-0.7650483846664429,-0.6109256148338318,-0.8677968978881836,-0.9705454111099243,-1.1760424375534058,-1.1417930126190186,-0.9876701831817627,-1.1589176654815674,-1.2616662979125977,-1.1075434684753418,-1.1589176654815674,-1.2616662979125977,-1.3130404949188232,-1.2959157228469849,-1.3986642360687256,-1.2787909507751465,-1.6726603507995605,-1.4500385522842407,-1.4500385522842407,-1.5185375213623047,-1.5870366096496582,-1.1589176654815674,-0.6451750993728638,-1.227416753768921,-1.3644148111343384,-0.9705454111099243,-1.535662293434143,-1.689785122871399,0.2966863512992859,1.4269200563430786,1.2899221181869507,1.2899221181869507,1.5296686887741089,1.7351657152175903,1.906413197517395,-1.3130404949188232,-1.3644148111343384,-0.9705454111099243,-1.2445415258407593,-1.2959157228469849,-1.2102919816970825,-1.1931672096252441,-1.227416753768921,-1.0904186964035034,-1.1417930126190186,-1.1246682405471802,-1.1760424375534058,-1.1246682405471802,-1.0904186964035034,-1.0219197273254395,-1.1075434684753418,-1.1417930126190186,-1.3301652669906616,-1.1931672096252441,-1.2959157228469849,-1.2445415258407593,-1.1075434684753418,-1.2102919816970825,-1.1246682405471802,-1.1075434684753418,-1.1760424375534058,-1.3472900390625,-1.5527870655059814,-1.6726603507995605,-1.689785122871399,-1.8439078330993652,-1.9124069213867188,-1.9124069213867188,-1.998030662536621,-2.032280206680298,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.0665297508239746,-2.1007792949676514,-1.7069098949432373,-0.7992978692054749,0.7590547204017639,-0.6622998714447021,0.1596883237361908,-0.28555527329444885,0.1596883237361908,-1.227416753768921,-1.0561691522598267,-1.6726603507995605,-0.3883037865161896,-1.1075434684753418,-0.2170562595129013,-1.3644148111343384,-1.6212860345840454,-0.7136741280555725,-0.6794245839118958,-0.576676070690155,-1.004794955253601,-0.30268001556396484,-0.7821731567382812,0.6391814351081848,-0.884921669960022,-0.7650483846664429,-0.542426586151123,0.22818733751773834,0.7248051762580872,1.0501755475997925,1.0673003196716309,1.9406627416610718,0.3823101222515106,0.5193081498146057,0.7761794924736023,0.33093586564064026,-0.3540542721748352,0.33093586564064026,-0.5938008427619934,-0.576676070690155,0.7933042049407959,0.48505866527557373,0.056939806789159775,0.31381112337112427,0.7761794924736023,-1.2445415258407593,-0.028683962300419807,0.45080915093421936,0.19393783807754517,1.1529240608215332,0.48505866527557373,0.12543882429599762,0.433684378862381,-1.2959157228469849,-1.1417930126190186,-1.0904186964035034,-1.1589176654815674,-1.4842880964279175,-2.1007792949676514,-2.1179039478302,-1.8439078330993652,-2.032280206680298,-2.1007792949676514,-2.1179039478302,-1.9295316934585571,-1.946656346321106,-1.5870366096496582,-1.2787909507751465,-1.6555355787277222,-1.689785122871399,-1.689785122871399,-1.4842880964279175,-1.415789008140564,-1.2445415258407593,-1.227416753768921,-1.2102919816970825,-1.2445415258407593,-1.2445415258407593,-1.227416753768921,-1.3644148111343384,-1.2102919816970825,-1.1589176654815674,-1.2959157228469849,-0.9362959265708923,-0.9020463824272156],[-2.032280206680298,-1.8439078330993652,-1.758284091949463,-1.9637811183929443,-1.9295316934585571,-1.2102919816970825,-0.9362959265708923,-0.6965493559837341,-0.7307988405227661,-0.5595513582229614,-0.576676070690155,-0.5253018140792847,-0.3711790442466736,-0.2513057589530945,-0.3540542721748352,-0.28555527329444885,-0.28555527329444885,-0.14855724573135376,-0.19993150234222412,-0.028683962300419807,-0.19993150234222412,-0.0971829816699028,-0.0971829816699028,0.03981505334377289,0.022690298035740852,0.005565545056015253,0.022690298035740852,-0.06293346732854843,-0.028683962300419807,-0.0971829816699028,-0.16568198800086975,-0.2170562595129013,-0.08005822449922562,-0.28555527329444885,-0.3369295299053192,-0.3711790442466736,-0.3883037865161896,-0.4568028151988983,-0.5253018140792847,-0.19993150234222412,-0.40542855858802795,-0.7136741280555725,-0.7136741280555725,-0.7307988405227661,-0.7479236125946045,-0.7650483846664429,-0.5938008427619934,-0.7821731567382812,-0.8164226412773132,-0.6622998714447021,-0.7136741280555725,-0.7992978692054749,-0.7992978692054749,-0.7821731567382812,-0.7650483846664429,-0.7307988405227661,-1.1075434684753418,-1.0219197273254395,-1.1589176654815674,-1.1417930126190186,-1.1246682405471802,-1.1246682405471802,-1.1760424375534058,-1.5699118375778198,-1.415789008140564,-1.5185375213623047,-1.6384108066558838,-1.7240345478057861,-1.7069098949432373,-1.689785122871399,-1.7925336360931396,-1.689785122871399,-1.6384108066558838,-1.809658408164978,-1.9124069213867188,-1.5870366096496582,-1.878157377243042,-1.8952821493148804,-1.7411593198776245,-1.6726603507995605,-1.6384108066558838,-2.01515531539917,-0.7307988405227661,-1.227416753768921,-1.227416753768921,-0.7650483846664429,-1.2787909507751465,-1.4329137802124023,-0.40542855858802795,-0.542426586151123,0.005565545056015253,-0.0971829816699028,0.45080915093421936,2.1975340843200684,1.033050775527954,1.033050775527954,0.7419299483299255,1.2385478019714355,1.6837913990020752,2.0262866020202637,1.7522904872894287,-0.5253018140792847,-1.4842880964279175,-1.7240345478057861,-1.5014127492904663,-1.5185375213623047,-1.604161262512207,-1.535662293434143,-1.5527870655059814,-1.4329137802124023,-1.467163324356079,-1.3986642360687256,-1.3130404949188232,-1.2616662979125977,-1.3472900390625,-1.4842880964279175,-1.7069098949432373,-1.4329137802124023,-1.467163324356079,-1.535662293434143,-1.6726603507995605,-1.6212860345840454,-1.5699118375778198,-1.604161262512207,-1.5699118375778198,-1.9124069213867188,-1.7754088640213013,-1.946656346321106,-1.9124069213867188,-2.0665297508239746,-2.01515531539917,-2.032280206680298,-2.1007792949676514,-2.1007792949676514,-2.0836544036865234,-2.1179039478302,-2.1007792949676514,-2.1179039478302,-2.1179039478302,-1.9124069213867188,-1.1931672096252441,-0.3369295299053192,-1.227416753768921,0.005565545056015253,0.022690298035740852,0.03981505334377289,-1.1246682405471802,0.2795616090297699,-0.2341810017824173,-0.06293346732854843,-0.42255330085754395,-0.576676070690155,-1.1075434684753418,-1.2959157228469849,-0.28555527329444885,-0.7821731567382812,-0.9362959265708923,-1.2787909507751465,-0.3369295299053192,-1.1075434684753418,-1.3130404949188232,-1.2616662979125977,-0.6622998714447021,-0.5938008427619934,-0.8506721258163452,-1.2445415258407593,1.033050775527954,0.6391814351081848,1.3926706314086914,0.8275537490844727,0.22818733751773834,1.2214230298995972,0.10831406712532043,0.7419299483299255,0.17681308090686798,0.10831406712532043,-0.542426586151123,-0.7650483846664429,-0.3711790442466736,0.10831406712532043,0.34806060791015625,0.45080915093421936,0.7761794924736023,-0.5253018140792847,-1.5014127492904663,-0.9362959265708923,-0.4739275574684143,0.3823101222515106,-0.13143248856067657,0.10831406712532043,-0.4910523295402527,0.33093586564064026,-1.073293924331665,-0.3369295299053192,-0.26843053102493286,-0.4910523295402527,-0.14855724573135376,-2.0665297508239746,-1.998030662536621,-1.4329137802124023,-1.7411593198776245,-2.032280206680298,-1.7411593198776245,-1.8610326051712036,-1.073293924331665,-0.19993150234222412,-1.0390443801879883,-1.758284091949463,-2.0836544036865234,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.1007792949676514,-1.946656346321106,-1.8439078330993652,-1.6555355787277222,-1.689785122871399,-1.535662293434143,-1.2787909507751465,-1.1931672096252441,-1.1760424375534058,-1.2787909507751465,-1.0904186964035034,-1.1417930126190186],[-2.0836544036865234,-1.878157377243042,-1.7754088640213013,-2.1179039478302,-1.535662293434143,-1.4329137802124023,-0.6109256148338318,-0.5081770420074463,-0.30268001556396484,-0.6109256148338318,-0.4568028151988983,-0.2513057589530945,-0.16568198800086975,-0.28555527329444885,-0.08005822449922562,-0.26843053102493286,-0.13143248856067657,-0.028683962300419807,0.056939806789159775,0.005565545056015253,-0.01155920885503292,-0.01155920885503292,0.056939806789159775,-0.04580871760845184,-0.2170562595129013,0.056939806789159775,0.005565545056015253,-0.04580871760845184,0.21106259524822235,0.1425635814666748,0.022690298035740852,0.07406456023454666,-0.0971829816699028,-0.13143248856067657,-0.18280674517154694,-0.3198047876358032,-0.30268001556396484,-0.16568198800086975,-0.42255330085754395,-0.26843053102493286,-0.2341810017824173,-0.26843053102493286,-0.30268001556396484,-0.4568028151988983,-0.42255330085754395,-0.42255330085754395,-0.4739275574684143,-0.4568028151988983,-0.28555527329444885,-0.43967804312705994,-0.42255330085754395,-0.4739275574684143,-0.7136741280555725,-0.542426586151123,-0.5081770420074463,-0.6965493559837341,-0.6109256148338318,-0.6109256148338318,-0.5595513582229614,-0.6109256148338318,-0.7479236125946045,-0.8335474133491516,-1.0561691522598267,-0.6622998714447021,-0.8677968978881836,-0.9534206986427307,-1.2445415258407593,-1.0561691522598267,-1.1931672096252441,-1.2616662979125977,-1.2616662979125977,-1.2616662979125977,-1.2959157228469849,-1.3301652669906616,-1.3815394639968872,-1.2616662979125977,-1.3130404949188232,-1.467163324356079,-1.5870366096496582,-0.6622998714447021,0.1425635814666748,-1.3986642360687256,0.5021833777427673,0.5535576939582825,0.416559636592865,0.5706824064254761,-0.11430773138999939,-0.9534206986427307,-0.06293346732854843,-0.0971829816699028,0.6391814351081848,-0.3198047876358032,-1.073293924331665,0.6905556917190552,0.913177490234375,0.36518537998199463,-0.19993150234222412,1.7694151401519775,2.0262866020202637,2.1975340843200684,1.7522904872894287,-1.535662293434143,-2.0494048595428467,-2.0494048595428467,-2.1179039478302,-2.0494048595428467,-1.7925336360931396,-1.8439078330993652,-1.8610326051712036,-1.8267830610275269,-1.8952821493148804,-1.8439078330993652,-1.8267830610275269,-1.9637811183929443,-2.01515531539917,-1.689785122871399,-1.946656346321106,-1.6212860345840454,-1.7925336360931396,-1.878157377243042,-1.6212860345840454,-1.7240345478057861,-1.8952821493148804,-1.8952821493148804,-1.9295316934585571,-1.8439078330993652,-2.0494048595428467,-2.0665297508239746,-2.0665297508239746,-2.0665297508239746,-2.1007792949676514,-2.0836544036865234,-2.0836544036865234,-2.1179039478302,-2.1179039478302,-2.1007792949676514,-2.1007792949676514,-2.1007792949676514,-2.1007792949676514,0.2966863512992859,0.7933042049407959,0.24531209468841553,-0.43967804312705994,0.433684378862381,0.45080915093421936,-0.14855724573135376,-0.14855724573135376,1.5296686887741089,0.6049319505691528,-0.19993150234222412,0.9816765189170837,-1.1417930126190186,-0.9876701831817627,-1.0390443801879883,0.022690298035740852,-0.7307988405227661,-1.4329137802124023,-0.919171154499054,-0.8506721258163452,-0.7307988405227661,-0.8506721258163452,-1.6555355787277222,-1.0904186964035034,-0.542426586151123,-0.8677968978881836,-1.5699118375778198,-0.01155920885503292,0.09118931740522385,-0.16568198800086975,1.2899221181869507,0.24531209468841553,0.878928005695343,-0.5081770420074463,0.1596883237361908,-0.7136741280555725,0.6220566630363464,-0.19993150234222412,-0.6109256148338318,-0.6794245839118958,-0.18280674517154694,-0.3540542721748352,0.433684378862381,0.09118931740522385,0.33093586564064026,-1.7411593198776245,-1.4329137802124023,-0.9020463824272156,-1.0904186964035034,-0.04580871760845184,-0.0971829816699028,-0.028683962300419807,-0.2170562595129013,-0.5938008427619934,-0.7992978692054749,-0.3883037865161896,-0.028683962300419807,-0.3198047876358032,-1.535662293434143,-1.7240345478057861,-2.0665297508239746,-2.032280206680298,-1.7240345478057861,-1.4500385522842407,-1.2445415258407593,-1.0219197273254395,-0.4739275574684143,-1.5014127492904663,-1.4842880964279175,-1.8952821493148804,-2.0836544036865234,-2.032280206680298,-2.1179039478302,-2.0665297508239746,-2.0836544036865234,-2.0836544036865234,-2.1179039478302,-2.1179039478302,-1.8952821493148804,-1.689785122871399,-1.5014127492904663,-1.3472900390625,-1.467163324356079,-1.0904186964035034,-1.1417930126190186],[-1.8952821493148804,-1.689785122871399,-1.4842880964279175,-2.032280206680298,-1.0561691522598267,-1.1075434684753418,-0.4739275574684143,-0.30268001556396484,-0.14855724573135376,-0.06293346732854843,-0.04580871760845184,-0.11430773138999939,-0.11430773138999939,0.005565545056015253,-0.06293346732854843,-0.028683962300419807,-0.14855724573135376,-0.028683962300419807,-0.14855724573135376,0.056939806789159775,0.17681308090686798,0.2966863512992859,0.022690298035740852,0.1425635814666748,0.1596883237361908,0.022690298035740852,0.21106259524822235,0.17681308090686798,-0.01155920885503292,-0.11430773138999939,0.2966863512992859,0.056939806789159775,0.005565545056015253,0.07406456023454666,-0.06293346732854843,-0.028683962300419807,0.17681308090686798,-0.08005822449922562,-0.0971829816699028,-0.04580871760845184,-0.3198047876358032,-0.2513057589530945,-0.16568198800086975,-0.04580871760845184,-0.28555527329444885,-0.3369295299053192,-0.26843053102493286,-0.3711790442466736,-0.30268001556396484,-0.40542855858802795,-0.3883037865161896,-0.3540542721748352,-0.3540542721748352,-0.3369295299053192,-0.30268001556396484,-0.4739275574684143,-0.3540542721748352,-0.42255330085754395,-0.4568028151988983,-0.5595513582229614,-0.5938008427619934,-0.4568028151988983,-0.6622998714447021,-0.6794245839118958,-0.7136741280555725,-0.6794245839118958,-0.6280503273010254,-0.9362959265708923,-0.9534206986427307,-0.8677968978881836,-0.919171154499054,-0.8677968978881836,-1.004794955253601,-1.1075434684753418,-1.1075434684753418,-1.1760424375534058,-1.073293924331665,-1.2445415258407593,-0.5081770420074463,0.8618032336235046,0.7076804637908936,0.17681308090686798,1.3412963151931763,1.1186745166778564,0.9474270343780518,0.433684378862381,0.33093586564064026,-0.7650483846664429,-0.3369295299053192,0.5535576939582825,0.10831406712532043,0.433684378862381,1.2899221181869507,0.5535576939582825,-0.6109256148338318,1.2214230298995972,0.36518537998199463,1.8550390005111694,2.0091617107391357,2.231783628463745,1.101549744606018,-2.0494048595428467,-2.01515531539917,-2.0665297508239746,-2.01515531539917,-2.032280206680298,-2.1007792949676514,-2.0836544036865234,-2.0665297508239746,-2.0665297508239746,-2.0836544036865234,-2.0665297508239746,-2.032280206680298,-2.0836544036865234,-2.1007792949676514,-2.1007792949676514,-2.0836544036865234,-2.0836544036865234,-2.0494048595428467,-2.1007792949676514,-2.1007792949676514,-2.0836544036865234,-2.032280206680298,-1.998030662536621,-2.0665297508239746,-2.1179039478302,-2.0836544036865234,-2.0494048595428467,-2.1007792949676514,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.01515531539917,-2.1179039478302,0.3823101222515106,0.399434894323349,-0.08005822449922562,-0.26843053102493286,-0.028683962300419807,-0.7650483846664429,-1.3986642360687256,-0.6794245839118958,-0.3883037865161896,-0.4739275574684143,0.7761794924736023,0.10831406712532043,-0.4739275574684143,0.36518537998199463,0.056939806789159775,-0.9534206986427307,-1.0561691522598267,-0.19993150234222412,-1.998030662536621,-0.28555527329444885,-1.3130404949188232,-0.919171154499054,-0.7821731567382812,-0.14855724573135376,-0.7992978692054749,-1.0219197273254395,-1.7411593198776245,-1.3130404949188232,-0.5938008427619934,0.7761794924736023,0.24531209468841553,0.6905556917190552,0.17681308090686798,1.4611696004867554,0.6220566630363464,-0.2170562595129013,-0.028683962300419807,-0.4568028151988983,-0.3883037865161896,-0.6794245839118958,-0.8164226412773132,-0.06293346732854843,-0.7821731567382812,-0.2170562595129013,0.5193081498146057,-1.004794955253601,-0.8506721258163452,-1.535662293434143,-1.0561691522598267,-1.073293924331665,-0.3711790442466736,-1.004794955253601,0.005565545056015253,0.36518537998199463,-0.19993150234222412,0.07406456023454666,-0.4739275574684143,0.5535576939582825,-0.11430773138999939,-0.7821731567382812,-0.6280503273010254,-0.4739275574684143,-1.0561691522598267,-1.809658408164978,-1.1075434684753418,-1.227416753768921,-0.3198047876358032,-0.2170562595129013,0.2624368667602539,-1.3644148111343384,-1.6726603507995605,-1.7754088640213013,-1.8952821493148804,-1.998030662536621,-2.032280206680298,-2.032280206680298,-1.878157377243042,-2.0665297508239746,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.0665297508239746,-1.9809058904647827,-2.01515531539917,-2.01515531539917,-1.6726603507995605],[-1.6726603507995605,-1.5699118375778198,-1.3986642360687256,-2.1007792949676514,-0.7136741280555725,-1.227416753768921,-0.26843053102493286,-0.2513057589530945,0.07406456023454666,0.12543882429599762,0.1596883237361908,0.056939806789159775,0.022690298035740852,0.005565545056015253,0.12543882429599762,0.005565545056015253,0.2624368667602539,0.21106259524822235,0.22818733751773834,0.07406456023454666,0.12543882429599762,0.1425635814666748,0.12543882429599762,0.17681308090686798,0.12543882429599762,0.03981505334377289,0.10831406712532043,0.1596883237361908,0.12543882429599762,0.022690298035740852,-0.08005822449922562,0.24531209468841553,0.056939806789159775,0.056939806789159775,0.1425635814666748,0.022690298035740852,0.03981505334377289,0.03981505334377289,0.03981505334377289,0.17681308090686798,0.005565545056015253,-0.04580871760845184,-0.3540542721748352,-0.14855724573135376,-0.18280674517154694,-0.2341810017824173,-0.14855724573135376,-0.16568198800086975,-0.2341810017824173,0.005565545056015253,-0.30268001556396484,-0.08005822449922562,-0.2341810017824173,-0.2170562595129013,-0.2341810017824173,-0.19993150234222412,-0.18280674517154694,-0.3198047876358032,-0.3883037865161896,-0.43967804312705994,-0.3369295299053192,-0.2513057589530945,-0.40542855858802795,-0.4739275574684143,-0.3540542721748352,-0.4910523295402527,-0.6622998714447021,-0.5595513582229614,-0.6109256148338318,-0.6794245839118958,-0.6965493559837341,-0.6965493559837341,-0.7136741280555725,-0.7650483846664429,-0.7479236125946045,-0.7821731567382812,-0.7650483846664429,-0.26843053102493286,0.45080915093421936,0.913177490234375,1.1700488328933716,0.6049319505691528,1.1529240608215332,1.563918113708496,1.2899221181869507,0.913177490234375,0.7419299483299255,0.10831406712532043,-0.28555527329444885,0.7076804637908936,-0.4910523295402527,0.6049319505691528,1.1700488328933716,0.1596883237361908,-0.40542855858802795,0.5021833777427673,1.0844250917434692,1.6324172019958496,1.8036646842956543,1.8036646842956543,2.0605359077453613,-1.5699118375778198,-1.7240345478057861,-1.8267830610275269,-1.7754088640213013,-1.7069098949432373,-1.7925336360931396,-1.8952821493148804,-1.9637811183929443,-1.8610326051712036,-1.8610326051712036,-1.8610326051712036,-1.7754088640213013,-1.8267830610275269,-1.7925336360931396,-1.8610326051712036,-1.809658408164978,-1.7754088640213013,-1.9124069213867188,-1.9637811183929443,-1.9124069213867188,-2.01515531539917,-2.0665297508239746,-2.0494048595428467,-2.032280206680298,-2.0494048595428467,-2.0665297508239746,-2.032280206680298,-2.0836544036865234,-2.1007792949676514,-2.0836544036865234,-2.1007792949676514,-2.0836544036865234,-2.1007792949676514,-2.01515531539917,-2.1179039478302,-2.1179039478302,-2.1179039478302,0.3823101222515106,0.6734309196472168,0.09118931740522385,-1.0219197273254395,-1.0390443801879883,-0.5938008427619934,-1.1931672096252441,-0.9534206986427307,-0.9362959265708923,-0.542426586151123,0.6049319505691528,-0.3540542721748352,0.7076804637908936,0.17681308090686798,1.1357992887496948,-0.2341810017824173,-0.542426586151123,-0.26843053102493286,-0.8506721258163452,-0.7821731567382812,-0.6451750993728638,0.2795616090297699,-0.4910523295402527,-1.4329137802124023,-0.40542855858802795,-0.8164226412773132,-1.535662293434143,-1.1246682405471802,-0.6965493559837341,-0.028683962300419807,0.10831406712532043,0.09118931740522385,0.8960527181625366,0.6734309196472168,1.2042982578277588,-0.7307988405227661,0.5535576939582825,-0.8677968978881836,-0.2170562595129013,-0.7821731567382812,-0.7136741280555725,-0.3369295299053192,-1.2787909507751465,-0.7307988405227661,0.1425635814666748,-0.40542855858802795,-1.3301652669906616,-1.3815394639968872,-1.6384108066558838,-0.5938008427619934,-0.884921669960022,-0.4739275574684143,-0.9534206986427307,-0.4910523295402527,0.1425635814666748,-0.6109256148338318,-0.8164226412773132,0.31381112337112427,0.005565545056015253,-0.19993150234222412,0.03981505334377289,-0.0971829816699028,0.416559636592865,-1.1246682405471802,-1.2616662979125977,-1.3644148111343384,-1.073293924331665,-0.5081770420074463,-0.7136741280555725,-0.7821731567382812,-1.7754088640213013,-1.9637811183929443,-2.0665297508239746,-1.9809058904647827,-2.0836544036865234,-2.01515531539917,-1.9637811183929443,-2.1179039478302,-2.0836544036865234,-2.0494048595428467,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.1007792949676514,-1.9809058904647827,-2.1179039478302],[-1.7754088640213013,-1.467163324356079,-1.4500385522842407,-2.1179039478302,-0.42255330085754395,-1.1589176654815674,-0.2341810017824173,-0.08005822449922562,0.1596883237361908,0.03981505334377289,0.056939806789159775,0.2795616090297699,0.1425635814666748,0.12543882429599762,0.2795616090297699,0.1596883237361908,0.24531209468841553,0.19393783807754517,0.21106259524822235,0.2795616090297699,0.3823101222515106,0.31381112337112427,0.12543882429599762,0.1425635814666748,0.19393783807754517,-0.01155920885503292,0.10831406712532043,0.1425635814666748,0.07406456023454666,0.17681308090686798,0.07406456023454666,0.21106259524822235,0.17681308090686798,0.2795616090297699,0.12543882429599762,0.10831406712532043,0.19393783807754517,0.1596883237361908,-0.08005822449922562,-0.01155920885503292,0.005565545056015253,0.07406456023454666,0.10831406712532043,0.17681308090686798,-0.08005822449922562,-0.11430773138999939,-0.06293346732854843,-0.16568198800086975,-0.2341810017824173,-0.08005822449922562,-0.0971829816699028,-0.16568198800086975,-0.18280674517154694,0.07406456023454666,-0.2170562595129013,-0.2170562595129013,-0.19993150234222412,-0.2170562595129013,-0.2513057589530945,-0.3540542721748352,-0.40542855858802795,-0.0971829816699028,-0.13143248856067657,-0.2341810017824173,-0.2513057589530945,-0.3540542721748352,-0.4910523295402527,-0.5253018140792847,-0.4568028151988983,-0.5081770420074463,-0.4739275574684143,-0.4568028151988983,-0.4739275574684143,-0.6280503273010254,-0.6451750993728638,-0.576676070690155,-0.8164226412773132,0.2624368667602539,0.8446784615516663,1.18717360496521,1.1186745166778564,0.6734309196472168,1.5810428857803345,1.6324172019958496,1.2214230298995972,1.0844250917434692,0.878928005695343,-0.0971829816699028,0.09118931740522385,0.5193081498146057,-0.7479236125946045,-0.18280674517154694,-0.16568198800086975,1.4269200563430786,0.22818733751773834,-0.884921669960022,1.7009161710739136,1.8721636533737183,1.9920369386672974,1.1357992887496948,-0.8164226412773132,-1.5870366096496582,-1.5185375213623047,-1.535662293434143,-1.6384108066558838,-1.535662293434143,-1.5527870655059814,-1.604161262512207,-1.6384108066558838,-1.5527870655059814,-1.5185375213623047,-1.535662293434143,-1.467163324356079,-1.5870366096496582,-1.5527870655059814,-1.5699118375778198,-1.5527870655059814,-1.5014127492904663,-1.6726603507995605,-1.6212860345840454,-1.4842880964279175,-1.7069098949432373,-1.7069098949432373,-1.7925336360931396,-1.809658408164978,-1.8267830610275269,-1.9295316934585571,-1.9124069213867188,-1.8952821493148804,-1.878157377243042,-1.8439078330993652,-1.9124069213867188,-1.8439078330993652,-1.689785122871399,-1.946656346321106,-2.032280206680298,-1.809658408164978,-1.1075434684753418,-0.028683962300419807,0.7761794924736023,-0.43967804312705994,-1.4842880964279175,-1.467163324356079,-1.1246682405471802,-1.5185375213623047,-0.30268001556396484,-0.919171154499054,-0.28555527329444885,0.6391814351081848,-0.13143248856067657,0.6049319505691528,0.21106259524822235,0.3823101222515106,0.7761794924736023,0.5021833777427673,-0.5081770420074463,-1.809658408164978,-1.809658408164978,0.5535576939582825,-0.6280503273010254,-0.13143248856067657,-0.9534206986427307,-0.43967804312705994,-0.9705454111099243,-1.1246682405471802,-1.8952821493148804,-0.7992978692054749,-0.6280503273010254,0.6734309196472168,0.31381112337112427,0.913177490234375,0.5878071784973145,1.1186745166778564,-0.18280674517154694,-0.40542855858802795,-1.3301652669906616,-0.7307988405227661,-1.0219197273254395,-0.6109256148338318,-0.7821731567382812,-0.576676070690155,-0.5253018140792847,0.056939806789159775,-0.40542855858802795,-1.4842880964279175,-1.7411593198776245,-1.3986642360687256,-1.2616662979125977,-1.0219197273254395,-1.0561691522598267,-0.8335474133491516,-1.3301652669906616,-0.7650483846664429,-0.9534206986427307,-1.227416753768921,0.12543882429599762,-0.4568028151988983,-0.9705454111099243,0.3823101222515106,0.1596883237361908,0.7419299483299255,0.5193081498146057,-0.4568028151988983,-1.1417930126190186,-0.8335474133491516,-0.9020463824272156,-0.7650483846664429,-1.1075434684753418,-1.8267830610275269,-1.7240345478057861,-2.0836544036865234,-1.946656346321106,-1.9295316934585571,-2.0494048595428467,-1.9295316934585571,-1.9637811183929443,-2.0836544036865234,-2.0836544036865234,-2.1179039478302,-2.1007792949676514,-1.9809058904647827,-1.9637811183929443,-2.0494048595428467,-1.8952821493148804],[-1.6555355787277222,-1.415789008140564,-1.467163324356079,-2.1179039478302,-0.0971829816699028,-1.004794955253601,-0.06293346732854843,0.17681308090686798,0.09118931740522385,0.19393783807754517,0.03981505334377289,0.17681308090686798,-0.01155920885503292,0.12543882429599762,0.399434894323349,0.3823101222515106,0.21106259524822235,0.433684378862381,0.19393783807754517,0.416559636592865,0.3823101222515106,0.2966863512992859,0.24531209468841553,0.22818733751773834,0.19393783807754517,0.2966863512992859,0.10831406712532043,0.19393783807754517,0.1425635814666748,-0.04580871760845184,0.2795616090297699,0.03981505334377289,0.03981505334377289,-0.13143248856067657,-0.08005822449922562,0.1425635814666748,-0.04580871760845184,0.22818733751773834,0.022690298035740852,0.005565545056015253,0.056939806789159775,-0.2341810017824173,0.12543882429599762,0.07406456023454666,0.1425635814666748,0.022690298035740852,0.022690298035740852,0.005565545056015253,0.022690298035740852,-0.18280674517154694,-0.08005822449922562,0.022690298035740852,0.12543882429599762,-0.11430773138999939,-0.2513057589530945,-0.04580871760845184,-0.26843053102493286,-0.028683962300419807,-0.06293346732854843,-0.13143248856067657,-0.2170562595129013,-0.2170562595129013,-0.18280674517154694,-0.19993150234222412,-0.26843053102493286,-0.3198047876358032,-0.3198047876358032,-0.3711790442466736,-0.28555527329444885,-0.28555527329444885,-0.42255330085754395,-0.42255330085754395,-0.3198047876358032,-0.4568028151988983,-0.5081770420074463,-0.4568028151988983,-0.542426586151123,0.3823101222515106,0.17681308090686798,0.45080915093421936,1.033050775527954,1.033050775527954,1.4782943725585938,1.4782943725585938,1.4611696004867554,1.18717360496521,0.12543882429599762,0.2795616090297699,0.12543882429599762,-0.08005822449922562,-0.5081770420074463,-1.3130404949188232,-0.3198047876358032,0.878928005695343,0.46793389320373535,-0.06293346732854843,1.718040943145752,2.111910343170166,1.444044828414917,0.433684378862381,-1.5185375213623047,-1.4842880964279175,-1.5699118375778198,-1.467163324356079,-1.3986642360687256,-1.5699118375778198,-1.3472900390625,-1.3644148111343384,-1.2959157228469849,-1.3130404949188232,-1.3815394639968872,-1.3472900390625,-1.2959157228469849,-1.3815394639968872,-1.467163324356079,-1.4329137802124023,-1.4329137802124023,-1.4329137802124023,-1.3130404949188232,-1.4329137802124023,-1.415789008140564,-1.5014127492904663,-1.5527870655059814,-1.5185375213623047,-1.5527870655059814,-1.5527870655059814,-1.5527870655059814,-1.6555355787277222,-1.5185375213623047,-1.6212860345840454,-1.5699118375778198,-1.689785122871399,-1.7069098949432373,-1.8610326051712036,-1.6212860345840454,-2.0665297508239746,-1.878157377243042,0.5706824064254761,-1.3130404949188232,0.2966863512992859,-1.1417930126190186,-1.4842880964279175,-1.2102919816970825,-0.9362959265708923,-1.5870366096496582,-0.7992978692054749,-1.4842880964279175,-0.7307988405227661,0.6391814351081848,0.31381112337112427,0.5364329218864441,-0.9362959265708923,0.6220566630363464,0.46793389320373535,-0.19993150234222412,0.10831406712532043,0.45080915093421936,0.5364329218864441,0.9988012909889221,0.6905556917190552,0.34806060791015625,-1.0904186964035034,0.45080915093421936,-1.0390443801879883,-1.6384108066558838,-1.073293924331665,-0.7650483846664429,-0.8677968978881836,-0.2170562595129013,-0.40542855858802795,0.6391814351081848,0.2624368667602539,0.22818733751773834,-0.6451750993728638,-1.467163324356079,-1.1589176654815674,-1.4842880964279175,-0.542426586151123,0.19393783807754517,-1.0390443801879883,-1.0390443801879883,-1.2445415258407593,0.005565545056015253,0.1425635814666748,-1.878157377243042,-1.3986642360687256,-1.3986642360687256,-0.8164226412773132,-1.1075434684753418,-1.7925336360931396,-0.43967804312705994,-1.415789008140564,-1.1417930126190186,-0.2170562595129013,-1.1589176654815674,-0.30268001556396484,-0.19993150234222412,-0.7992978692054749,0.09118931740522385,0.056939806789159775,-0.028683962300419807,0.48505866527557373,0.10831406712532043,0.07406456023454666,-1.0219197273254395,-1.4842880964279175,-1.2959157228469849,-1.878157377243042,-1.8267830610275269,-1.9637811183929443,-1.8439078330993652,-1.9124069213867188,-1.7069098949432373,-1.7925336360931396,-2.1179039478302,-2.01515531539917,-2.0494048595428467,-2.1007792949676514,-2.1179039478302,-1.998030662536621,-1.5870366096496582,-1.4329137802124023,-1.467163324356079,-1.3644148111343384],[-1.3301652669906616,-1.227416753768921,-1.2959157228469849,-2.1179039478302,-0.18280674517154694,-1.2445415258407593,-0.01155920885503292,-0.08005822449922562,0.07406456023454666,0.19393783807754517,0.1596883237361908,0.022690298035740852,0.31381112337112427,0.36518537998199463,0.22818733751773834,0.2624368667602539,0.45080915093421936,0.2795616090297699,0.1425635814666748,0.24531209468841553,0.2624368667602539,0.19393783807754517,0.10831406712532043,0.33093586564064026,0.19393783807754517,0.6049319505691528,0.399434894323349,0.022690298035740852,0.056939806789159775,0.22818733751773834,0.005565545056015253,0.24531209468841553,0.056939806789159775,0.056939806789159775,0.2795616090297699,0.24531209468841553,-0.01155920885503292,0.005565545056015253,0.12543882429599762,0.09118931740522385,-0.11430773138999939,0.09118931740522385,-0.06293346732854843,0.056939806789159775,-0.11430773138999939,-0.14855724573135376,0.056939806789159775,-0.18280674517154694,0.005565545056015253,0.022690298035740852,-0.11430773138999939,-0.28555527329444885,-0.08005822449922562,-0.18280674517154694,0.03981505334377289,-0.06293346732854843,-0.11430773138999939,-0.42255330085754395,-0.3198047876358032,-0.028683962300419807,-0.2170562595129013,-0.40542855858802795,-0.18280674517154694,-0.16568198800086975,-0.28555527329444885,-0.26843053102493286,-0.3711790442466736,-0.18280674517154694,-0.3198047876358032,-0.4568028151988983,-0.3540542721748352,-0.40542855858802795,-0.3369295299053192,0.10831406712532043,0.03981505334377289,0.005565545056015253,0.5364329218864441,0.8104289770126343,0.07406456023454666,0.19393783807754517,0.7761794924736023,1.307046890258789,1.6837913990020752,1.5810428857803345,1.2727973461151123,1.4611696004867554,0.17681308090686798,0.21106259524822235,0.46793389320373535,-0.4910523295402527,-0.42255330085754395,-1.3130404949188232,-0.2170562595129013,0.19393783807754517,0.9645517468452454,0.005565545056015253,1.2042982578277588,1.786539912223816,0.46793389320373535,0.45080915093421936,-1.5014127492904663,-1.3644148111343384,-1.3815394639968872,-1.3644148111343384,-1.3301652669906616,-1.2787909507751465,-1.2959157228469849,-1.2959157228469849,-1.3130404949188232,-1.3130404949188232,-1.2445415258407593,-1.2787909507751465,-1.1589176654815674,-1.3301652669906616,-1.1075434684753418,-1.1931672096252441,-1.1589176654815674,-1.2445415258407593,-1.3815394639968872,-1.3815394639968872,-1.3472900390625,-1.4500385522842407,-1.3472900390625,-1.2959157228469849,-1.3130404949188232,-1.467163324356079,-1.467163324356079,-1.4329137802124023,-1.535662293434143,-1.415789008140564,-1.604161262512207,-1.467163324356079,-1.5699118375778198,-1.4842880964279175,-1.7925336360931396,-2.0836544036865234,0.46793389320373535,-0.3711790442466736,-1.4500385522842407,-0.9534206986427307,-1.3986642360687256,-1.5185375213623047,-1.0561691522598267,-1.4500385522842407,-1.004794955253601,-0.7650483846664429,-0.884921669960022,-0.6622998714447021,-0.7821731567382812,0.5878071784973145,1.6152924299240112,0.7761794924736023,0.5021833777427673,1.8892884254455566,1.2385478019714355,0.433684378862381,0.7761794924736023,-0.576676070690155,0.6220566630363464,0.33093586564064026,-0.3711790442466736,0.399434894323349,0.8618032336235046,-0.9876701831817627,-1.4329137802124023,-1.5014127492904663,-0.6451750993728638,-0.5253018140792847,-0.6451750993728638,-0.542426586151123,-0.01155920885503292,0.913177490234375,-0.7992978692054749,-0.6109256148338318,-0.4910523295402527,-1.6555355787277222,-1.2616662979125977,0.31381112337112427,-0.4568028151988983,-1.1417930126190186,-0.7136741280555725,-1.1417930126190186,0.022690298035740852,-0.8506721258163452,-1.2445415258407593,-1.2445415258407593,-1.1931672096252441,-1.7925336360931396,-1.4329137802124023,-1.4329137802124023,-1.0390443801879883,-1.5870366096496582,-1.3301652669906616,-1.3472900390625,-1.3815394639968872,-0.9705454111099243,-0.9020463824272156,-1.0390443801879883,-0.4739275574684143,0.31381112337112427,0.5878071784973145,0.433684378862381,-0.08005822449922562,0.36518537998199463,-0.26843053102493286,-0.6451750993728638,-0.8677968978881836,-1.073293924331665,-1.8952821493148804,-2.1007792949676514,-2.0836544036865234,-2.0665297508239746,-1.878157377243042,-1.6555355787277222,-1.7925336360931396,-1.878157377243042,-1.946656346321106,-2.0836544036865234,-2.1179039478302,-2.1179039478302,-1.1760424375534058,-0.8335474133491516,-1.1246682405471802,-0.9020463824272156],[-1.1931672096252441,-1.2787909507751465,-0.7992978692054749,-2.1179039478302,0.31381112337112427,-1.1589176654815674,0.2795616090297699,0.17681308090686798,0.21106259524822235,0.12543882429599762,0.34806060791015625,0.22818733751773834,0.24531209468841553,0.17681308090686798,0.17681308090686798,0.2795616090297699,0.24531209468841553,0.24531209468841553,0.2966863512992859,0.34806060791015625,0.17681308090686798,0.399434894323349,0.433684378862381,0.19393783807754517,0.09118931740522385,0.31381112337112427,0.2624368667602539,0.2624368667602539,0.34806060791015625,0.07406456023454666,0.07406456023454666,0.22818733751773834,0.10831406712532043,0.5535576939582825,0.48505866527557373,0.5364329218864441,0.48505866527557373,0.5535576939582825,0.8618032336235046,0.3823101222515106,0.6563062071800232,0.7248051762580872,0.7761794924736023,0.2966863512992859,0.433684378862381,0.399434894323349,0.6734309196472168,0.7419299483299255,0.36518537998199463,0.48505866527557373,0.6563062071800232,0.5021833777427673,0.7076804637908936,0.5364329218864441,0.5706824064254761,0.3823101222515106,0.5878071784973145,0.5364329218864441,0.46793389320373535,0.1596883237361908,-0.43967804312705994,-0.2513057589530945,-0.2341810017824173,-0.4739275574684143,-0.3711790442466736,-0.2513057589530945,-0.3883037865161896,-0.43967804312705994,-0.2170562595129013,-0.7307988405227661,0.24531209468841553,0.6734309196472168,0.7761794924736023,0.9816765189170837,1.18717360496521,0.7933042049407959,0.7590547204017639,1.1700488328933716,-0.028683962300419807,-0.04580871760845184,0.2624368667602539,0.878928005695343,1.786539912223816,1.4097954034805298,1.18717360496521,1.8207894563674927,0.6049319505691528,-0.28555527329444885,0.7248051762580872,-0.542426586151123,-0.2513057589530945,-0.4739275574684143,-0.16568198800086975,0.6563062071800232,0.7076804637908936,0.2966863512992859,-0.11430773138999939,0.1596883237361908,0.1596883237361908,-1.2959157228469849,-1.0561691522598267,-1.3986642360687256,-1.3644148111343384,-1.3130404949188232,-1.2445415258407593,-1.1589176654815674,-1.004794955253601,-1.073293924331665,-1.2959157228469849,-1.1760424375534058,-1.1589176654815674,-1.2102919816970825,-1.0904186964035034,-1.004794955253601,-1.1417930126190186,-0.9876701831817627,-1.0219197273254395,-1.1417930126190186,-1.1589176654815674,-1.073293924331665,-1.1075434684753418,-1.1589176654815674,-1.3301652669906616,-1.1931672096252441,-1.2787909507751465,-1.4329137802124023,-1.3130404949188232,-1.3986642360687256,-1.5014127492904663,-1.415789008140564,-1.415789008140564,-1.3644148111343384,-1.2787909507751465,-1.535662293434143,-1.8952821493148804,0.416559636592865,-1.1760424375534058,-1.1931672096252441,-1.6555355787277222,-1.4500385522842407,-1.8610326051712036,-1.3301652669906616,-1.1246682405471802,-1.0219197273254395,-0.919171154499054,-0.5081770420074463,-0.4910523295402527,-0.30268001556396484,0.48505866527557373,0.6391814351081848,1.0673003196716309,0.913177490234375,0.8275537490844727,0.2966863512992859,0.6220566630363464,0.6391814351081848,0.34806060791015625,0.913177490234375,1.0673003196716309,0.7933042049407959,0.48505866527557373,0.19393783807754517,0.45080915093421936,-1.0390443801879883,-0.4568028151988983,-1.0904186964035034,-0.9534206986427307,-0.4910523295402527,-0.6451750993728638,-1.2445415258407593,-0.3540542721748352,-0.11430773138999939,0.005565545056015253,-0.3883037865161896,-1.2787909507751465,-0.8335474133491516,-0.9020463824272156,0.17681308090686798,-0.542426586151123,-1.2959157228469849,0.10831406712532043,-0.9534206986427307,-0.6280503273010254,-0.2513057589530945,0.005565545056015253,-1.3301652669906616,-0.8164226412773132,-1.3301652669906616,-1.073293924331665,-0.5253018140792847,-0.30268001556396484,-1.5699118375778198,-0.7307988405227661,-0.6965493559837341,-1.7411593198776245,-0.7479236125946045,-0.6109256148338318,-1.3472900390625,-0.8677968978881836,0.07406456023454666,0.8104289770126343,0.33093586564064026,-0.2341810017824173,0.5021833777427673,0.19393783807754517,0.19393783807754517,0.21106259524822235,-0.18280674517154694,-0.2341810017824173,-0.3883037865161896,-0.6965493559837341,-0.884921669960022,-1.5870366096496582,-2.0494048595428467,-2.1179039478302,-1.6384108066558838,-2.032280206680298,-2.0836544036865234,-2.0665297508239746,-2.1179039478302,-1.5185375213623047,-0.5938008427619934,-0.30268001556396484,-0.6794245839118958],[-0.9705454111099243,-1.004794955253601,-0.6451750993728638,-2.0494048595428467,0.433684378862381,-1.1931672096252441,0.416559636592865,0.2624368667602539,0.433684378862381,0.36518537998199463,0.36518537998199463,0.46793389320373535,0.34806060791015625,0.5364329218864441,0.399434894323349,0.48505866527557373,0.433684378862381,0.34806060791015625,0.2795616090297699,0.45080915093421936,0.24531209468841553,0.45080915093421936,0.12543882429599762,0.36518537998199463,0.3823101222515106,0.48505866527557373,0.3823101222515106,0.5021833777427673,0.6220566630363464,0.6563062071800232,0.7248051762580872,0.6220566630363464,0.6220566630363464,0.5364329218864441,0.878928005695343,0.8446784615516663,0.7933042049407959,0.6049319505691528,-0.4568028151988983,0.12543882429599762,-0.028683962300419807,-0.3883037865161896,0.19393783807754517,0.3823101222515106,0.5193081498146057,0.2966863512992859,-0.6622998714447021,-0.6109256148338318,-0.3711790442466736,0.5364329218864441,0.5706824064254761,0.6905556917190552,0.6734309196472168,0.7076804637908936,0.6049319505691528,0.6734309196472168,0.6391814351081848,0.48505866527557373,0.45080915093421936,0.5193081498146057,0.12543882429599762,-1.0390443801879883,-0.6109256148338318,-0.6280503273010254,-0.5595513582229614,-0.3198047876358032,-0.43967804312705994,-0.42255330085754395,-0.5081770420074463,-0.3198047876358032,0.7076804637908936,1.0673003196716309,1.1186745166778564,0.878928005695343,1.0501755475997925,0.9303022623062134,1.101549744606018,0.416559636592865,0.19393783807754517,-0.2513057589530945,-0.028683962300419807,0.24531209468841553,1.5467933416366577,1.5296686887741089,1.0501755475997925,1.9577875137329102,1.307046890258789,-1.8439078330993652,-0.01155920885503292,-0.28555527329444885,-0.576676070690155,-0.3883037865161896,-1.3815394639968872,0.6734309196472168,1.3926706314086914,0.9474270343780518,-1.073293924331665,-1.2787909507751465,-1.1075434684753418,-1.3986642360687256,-1.5699118375778198,-1.3986642360687256,-1.3472900390625,-1.2959157228469849,-1.2616662979125977,-1.2787909507751465,-1.3130404949188232,-1.2616662979125977,-1.0219197273254395,-1.1417930126190186,-1.0561691522598267,-0.884921669960022,-1.0219197273254395,-0.9534206986427307,-1.0561691522598267,-0.9534206986427307,-0.9876701831817627,-0.9362959265708923,-0.9362959265708923,-1.0904186964035034,-1.1589176654815674,-1.1075434684753418,-1.004794955253601,-0.2513057589530945,-0.4910523295402527,-0.6109256148338318,-0.7821731567382812,-1.467163324356079,-1.2959157228469849,-1.3644148111343384,-1.2616662979125977,-1.535662293434143,-1.5699118375778198,-1.8952821493148804,-0.01155920885503292,-1.7240345478057861,-1.2445415258407593,-1.1075434684753418,-1.689785122871399,-1.1589176654815674,-1.5014127492904663,-0.8677968978881836,-0.9705454111099243,-0.2170562595129013,0.6220566630363464,-0.9362959265708923,0.10831406712532043,0.8275537490844727,0.10831406712532043,1.2042982578277588,1.0159260034561157,-0.16568198800086975,0.5364329218864441,0.46793389320373535,1.0159260034561157,1.0844250917434692,0.36518537998199463,0.7419299483299255,1.2385478019714355,-0.14855724573135376,-0.26843053102493286,-0.3369295299053192,-0.40542855858802795,-0.19993150234222412,-0.6451750993728638,-1.004794955253601,-1.3472900390625,-0.919171154499054,-1.0561691522598267,-0.7479236125946045,-0.2170562595129013,-0.42255330085754395,0.6049319505691528,-0.11430773138999939,-0.7307988405227661,-0.542426586151123,-0.542426586151123,-1.1417930126190186,-0.2170562595129013,-0.5595513582229614,-1.3986642360687256,-0.01155920885503292,-0.19993150234222412,0.7076804637908936,-0.2513057589530945,-0.43967804312705994,-0.9362959265708923,-1.5014127492904663,-1.7754088640213013,-0.42255330085754395,0.45080915093421936,0.03981505334377289,-0.5253018140792847,-1.227416753768921,-0.8335474133491516,-0.3540542721748352,-0.04580871760845184,-1.5527870655059814,-1.7754088640213013,-0.3369295299053192,0.7248051762580872,0.8104289770126343,0.022690298035740852,-0.9534206986427307,-0.6794245839118958,-0.2170562595129013,0.10831406712532043,-0.08005822449922562,-0.0971829816699028,-0.19993150234222412,0.07406456023454666,-0.2341810017824173,-0.4910523295402527,-1.2445415258407593,-1.9809058904647827,-2.1179039478302,-2.0494048595428467,-2.1179039478302,-2.1007792949676514,-2.01515531539917,-1.809658408164978,-0.7136741280555725,-0.4568028151988983,-0.30268001556396484],[-1.073293924331665,-1.1246682405471802,-0.6622998714447021,-2.1179039478302,0.34806060791015625,-1.1246682405471802,0.3823101222515106,0.36518537998199463,0.399434894323349,0.3823101222515106,0.6220566630363464,0.6049319505691528,0.48505866527557373,0.6220566630363464,0.6563062071800232,0.7248051762580872,0.9988012909889221,0.8104289770126343,0.46793389320373535,0.31381112337112427,0.10831406712532043,0.433684378862381,0.5193081498146057,0.6734309196472168,0.878928005695343,0.7076804637908936,0.8446784615516663,0.5706824064254761,0.9645517468452454,0.5878071784973145,0.45080915093421936,0.7076804637908936,0.5706824064254761,-0.19993150234222412,-0.30268001556396484,0.056939806789159775,0.5021833777427673,0.7933042049407959,-0.40542855858802795,-1.946656346321106,0.12543882429599762,-0.5081770420074463,0.34806060791015625,-0.6622998714447021,0.5364329218864441,-0.6451750993728638,0.31381112337112427,0.34806060791015625,-0.43967804312705994,0.5364329218864441,0.5878071784973145,0.8618032336235046,0.7590547204017639,0.6391814351081848,0.5706824064254761,0.6220566630363464,0.7590547204017639,0.6905556917190552,0.6049319505691528,0.6049319505691528,0.24531209468841553,-1.0904186964035034,-0.7479236125946045,-0.6794245839118958,-0.576676070690155,-0.5595513582229614,-0.6109256148338318,-0.42255330085754395,-0.8677968978881836,-0.2513057589530945,0.5021833777427673,1.2214230298995972,1.18717360496521,1.0844250917434692,1.255672574043274,1.1186745166778564,1.101549744606018,0.6563062071800232,0.33093586564064026,-0.19993150234222412,-0.30268001556396484,0.8618032336235046,1.2899221181869507,1.6324172019958496,1.1357992887496948,2.1632845401763916,1.563918113708496,-0.2341810017824173,-1.946656346321106,-0.9705454111099243,-0.2170562595129013,-0.6280503273010254,-1.3130404949188232,-0.884921669960022,-0.13143248856067657,0.9645517468452454,0.2795616090297699,-1.5185375213623047,-1.9809058904647827,-1.7754088640213013,-1.604161262512207,-1.5014127492904663,-1.415789008140564,-1.2787909507751465,-1.3472900390625,-1.3644148111343384,-1.3130404949188232,-1.0390443801879883,-1.1760424375534058,-0.9705454111099243,-1.0219197273254395,-1.2787909507751465,-1.1075434684753418,-1.073293924331665,-0.9876701831817627,-1.1075434684753418,-1.0390443801879883,-0.9534206986427307,-1.0219197273254395,-0.9534206986427307,-1.0561691522598267,-1.004794955253601,-0.2513057589530945,-0.028683962300419807,0.056939806789159775,-0.28555527329444885,0.005565545056015253,-0.7136741280555725,-1.878157377243042,-1.3472900390625,-1.3815394639968872,-1.3644148111343384,-1.878157377243042,-0.7479236125946045,0.1596883237361908,-1.8267830610275269,-1.4329137802124023,-0.9876701831817627,-2.1179039478302,-1.2616662979125977,-1.073293924331665,-1.5014127492904663,0.878928005695343,0.07406456023454666,0.19393783807754517,0.22818733751773834,0.31381112337112427,0.9645517468452454,0.6905556917190552,1.1186745166778564,0.8275537490844727,0.8446784615516663,-0.16568198800086975,0.5364329218864441,0.5706824064254761,0.33093586564064026,0.21106259524822235,1.0844250917434692,0.6049319505691528,-0.16568198800086975,-0.9876701831817627,-0.9362959265708923,-1.3130404949188232,-1.2616662979125977,-0.7479236125946045,-0.5938008427619934,-0.28555527329444885,-0.8335474133491516,-0.8677968978881836,-0.6965493559837341,-0.8335474133491516,-0.08005822449922562,0.10831406712532043,-0.06293346732854843,0.48505866527557373,-0.9705454111099243,-0.18280674517154694,0.5878071784973145,0.34806060791015625,-0.6794245839118958,0.45080915093421936,-0.2513057589530945,0.7761794924736023,1.2899221181869507,0.7076804637908936,-0.2513057589530945,-0.7136741280555725,-0.8164226412773132,-0.26843053102493286,-0.40542855858802795,0.10831406712532043,-0.028683962300419807,-0.16568198800086975,-0.8677968978881836,-1.3301652669906616,-0.14855724573135376,-0.7992978692054749,-1.9637811183929443,-1.4842880964279175,0.022690298035740852,0.5878071784973145,0.7933042049407959,-0.6280503273010254,0.005565545056015253,-0.7821731567382812,0.433684378862381,-0.13143248856067657,-0.18280674517154694,0.1596883237361908,0.10831406712532043,-0.04580871760845184,-0.2170562595129013,0.12543882429599762,-0.3711790442466736,-0.2341810017824173,-1.689785122871399,-2.0665297508239746,-2.1007792949676514,-1.998030662536621,-2.1179039478302,-1.4500385522842407,-0.4739275574684143,-0.4568028151988983,-0.2170562595129013],[-0.9534206986427307,-1.1246682405471802,-0.6109256148338318,-2.01515531539917,0.33093586564064026,-1.2787909507751465,0.6220566630363464,0.433684378862381,0.5706824064254761,0.7248051762580872,0.7419299483299255,0.6220566630363464,0.6563062071800232,0.8104289770126343,0.6220566630363464,0.5535576939582825,0.8104289770126343,0.3823101222515106,0.6563062071800232,0.913177490234375,0.9816765189170837,0.7590547204017639,0.8446784615516663,0.7076804637908936,0.7076804637908936,1.0501755475997925,0.2966863512992859,0.9474270343780518,0.48505866527557373,0.33093586564064026,0.7419299483299255,0.17681308090686798,0.9474270343780518,-0.4568028151988983,-0.5253018140792847,0.5706824064254761,-0.14855724573135376,0.5535576939582825,0.399434894323349,1.1357992887496948,0.8275537490844727,1.0159260034561157,0.7248051762580872,0.913177490234375,0.8446784615516663,0.878928005695343,0.9816765189170837,0.8275537490844727,1.1529240608215332,0.6220566630363464,0.6734309196472168,0.7419299483299255,0.6905556917190552,0.8446784615516663,0.8104289770126343,0.7076804637908936,0.7248051762580872,0.6905556917190552,0.5193081498146057,0.24531209468841553,0.2795616090297699,-1.227416753768921,-1.0390443801879883,-1.0561691522598267,-0.7992978692054749,-0.6965493559837341,-0.7479236125946045,-1.0390443801879883,-0.4910523295402527,-0.5938008427619934,0.7933042049407959,0.7248051762580872,1.307046890258789,1.2214230298995972,1.3584210872650146,1.4269200563430786,1.1186745166778564,0.7761794924736023,-0.06293346732854843,0.19393783807754517,-0.08005822449922562,0.2966863512992859,1.4954191446304321,1.6666666269302368,1.6152924299240112,2.0091617107391357,0.9816765189170837,1.1357992887496948,0.7761794924736023,-1.689785122871399,-0.542426586151123,-0.6622998714447021,-1.073293924331665,-1.1075434684753418,-0.5253018140792847,-0.028683962300419807,0.5193081498146057,-1.6384108066558838,-1.9124069213867188,-1.7925336360931396,-1.5870366096496582,-1.535662293434143,-1.535662293434143,-1.5014127492904663,-1.3815394639968872,-1.2959157228469849,-1.3130404949188232,-1.0219197273254395,-1.0904186964035034,-1.0390443801879883,-1.0390443801879883,-1.0561691522598267,-0.884921669960022,-0.9534206986427307,-0.919171154499054,-0.9020463824272156,-0.8335474133491516,-0.7650483846664429,-0.9362959265708923,-1.0219197273254395,-1.0219197273254395,-0.11430773138999939,-0.11430773138999939,-0.6109256148338318,-0.2170562595129013,-0.2513057589530945,-0.13143248856067657,-0.11430773138999939,-1.073293924331665,-1.535662293434143,-1.3986642360687256,-1.4500385522842407,-1.8267830610275269,-0.26843053102493286,-1.1931672096252441,-1.5527870655059814,-1.3130404949188232,-0.9705454111099243,-1.4500385522842407,-0.9020463824272156,-0.14855724573135376,-1.5014127492904663,-0.40542855858802795,1.3926706314086914,0.6905556917190552,0.6220566630363464,1.4611696004867554,0.19393783807754517,1.2214230298995972,1.255672574043274,0.913177490234375,0.1596883237361908,-0.919171154499054,0.1425635814666748,0.33093586564064026,-0.06293346732854843,-0.18280674517154694,0.2966863512992859,0.2624368667602539,0.7419299483299255,-0.5081770420074463,-0.40542855858802795,-1.0390443801879883,-0.6280503273010254,-0.9020463824272156,-1.604161262512207,-0.7307988405227661,-1.6212860345840454,-0.542426586151123,-0.576676070690155,-0.9705454111099243,-0.9705454111099243,0.1425635814666748,0.17681308090686798,-0.01155920885503292,0.9816765189170837,-0.576676070690155,-0.14855724573135376,0.5535576939582825,0.022690298035740852,-1.3644148111343384,-0.6109256148338318,0.21106259524822235,0.878928005695343,0.46793389320373535,-0.04580871760845184,0.056939806789159775,0.17681308090686798,-0.6280503273010254,-0.4568028151988983,0.433684378862381,0.8446784615516663,0.6905556917190552,-0.7479236125946045,-0.42255330085754395,-0.4910523295402527,-1.004794955253601,-1.7754088640213013,-1.8267830610275269,0.1425635814666748,0.45080915093421936,0.6049319505691528,-1.2787909507751465,-0.14855724573135376,-0.4910523295402527,0.433684378862381,0.48505866527557373,0.8104289770126343,0.48505866527557373,0.31381112337112427,0.36518537998199463,0.03981505334377289,0.17681308090686798,0.33093586564064026,0.8104289770126343,-0.16568198800086975,-1.5527870655059814,-1.467163324356079,-1.8610326051712036,-1.7754088640213013,-0.7136741280555725,-0.8164226412773132,-0.3369295299053192,-0.28555527329444885],[-0.9020463824272156,-0.8335474133491516,-0.16568198800086975,-1.946656346321106,0.433684378862381,-1.0904186964035034,0.7076804637908936,0.6563062071800232,0.7419299483299255,0.6734309196472168,0.8104289770126343,0.6220566630363464,0.7076804637908936,0.6905556917190552,0.7076804637908936,0.22818733751773834,0.2966863512992859,0.8104289770126343,0.433684378862381,0.6391814351081848,0.8104289770126343,0.7076804637908936,0.8446784615516663,0.5193081498146057,0.022690298035740852,0.1425635814666748,-0.6280503273010254,0.433684378862381,-0.04580871760845184,0.416559636592865,-1.998030662536621,-1.9124069213867188,0.7076804637908936,0.09118931740522385,-0.028683962300419807,-0.4739275574684143,-0.7821731567382812,0.8960527181625366,2.1461598873138428,1.5810428857803345,0.7248051762580872,0.8446784615516663,0.8618032336235046,0.7761794924736023,0.7590547204017639,0.8104289770126343,0.5878071784973145,1.0159260034561157,0.1425635814666748,0.7419299483299255,0.8104289770126343,0.9474270343780518,0.8275537490844727,0.913177490234375,0.8960527181625366,0.6734309196472168,0.7933042049407959,0.6905556917190552,0.46793389320373535,0.45080915093421936,0.1425635814666748,-1.7925336360931396,-1.3130404949188232,-1.0904186964035034,-1.0390443801879883,-1.1246682405471802,-0.7992978692054749,-0.30268001556396484,-0.919171154499054,-0.5938008427619934,-0.6965493559837341,0.2966863512992859,0.36518537998199463,0.8960527181625366,1.101549744606018,1.1186745166778564,1.2385478019714355,1.1529240608215332,0.10831406712532043,-0.3883037865161896,-0.19993150234222412,-0.5081770420074463,1.0673003196716309,1.6837913990020752,1.9920369386672974,1.8721636533737183,0.7590547204017639,1.563918113708496,1.3584210872650146,-0.9705454111099243,-1.227416753768921,-0.9362959265708923,-1.0561691522598267,-1.0561691522598267,-1.4329137802124023,-1.3301652669906616,0.056939806789159775,-1.1589176654815674,-1.8952821493148804,-1.878157377243042,-1.8952821493148804,-1.604161262512207,-1.415789008140564,-1.2959157228469849,-1.227416753768921,-1.2616662979125977,-1.0561691522598267,-1.004794955253601,-1.1417930126190186,-1.0390443801879883,-0.9534206986427307,-0.919171154499054,-1.004794955253601,-0.919171154499054,-0.8164226412773132,-0.8506721258163452,-0.9705454111099243,-0.919171154499054,-1.0390443801879883,-1.073293924331665,-0.542426586151123,-0.14855724573135376,0.17681308090686798,0.005565545056015253,0.1596883237361908,0.022690298035740852,-0.13143248856067657,-0.0971829816699028,-0.42255330085754395,-1.878157377243042,-1.8267830610275269,-1.8610326051712036,-2.1179039478302,0.6905556917190552,-0.08005822449922562,-0.04580871760845184,-1.3130404949188232,-0.5253018140792847,-0.0971829816699028,-1.2959157228469849,-0.42255330085754395,-0.0971829816699028,0.22818733751773834,1.3584210872650146,0.7248051762580872,1.2727973461151123,0.5535576939582825,0.9816765189170837,1.1357992887496948,0.6734309196472168,0.07406456023454666,0.12543882429599762,-0.2170562595129013,-0.3883037865161896,-0.01155920885503292,-0.2513057589530945,0.22818733751773834,-0.5253018140792847,0.399434894323349,0.10831406712532043,-0.3540542721748352,-0.19993150234222412,-0.4739275574684143,-0.5253018140792847,0.1596883237361908,-1.1246682405471802,-0.576676070690155,-0.11430773138999939,0.2966863512992859,-0.40542855858802795,-0.3711790442466736,-0.9876701831817627,0.10831406712532043,0.7761794924736023,-0.18280674517154694,-0.2341810017824173,-0.6109256148338318,1.1357992887496948,0.7590547204017639,1.4097954034805298,1.7009161710739136,0.8104289770126343,1.2042982578277588,1.2899221181869507,0.7419299483299255,0.45080915093421936,0.8104289770126343,0.31381112337112427,0.5878071784973145,-1.1075434684753418,0.8618032336235046,0.7419299483299255,0.10831406712532043,-0.8164226412773132,-0.6280503273010254,0.5878071784973145,-0.6622998714447021,-1.7925336360931396,-1.5870366096496582,0.34806060791015625,1.1357992887496948,0.6049319505691528,0.12543882429599762,-0.3540542721748352,0.416559636592865,0.7761794924736023,0.48505866527557373,0.6563062071800232,0.2966863512992859,0.416559636592865,0.2966863512992859,0.21106259524822235,0.8618032336235046,0.7761794924736023,0.7076804637908936,0.6049319505691528,0.7248051762580872,0.6563062071800232,0.5706824064254761,0.5021833777427673,-0.2170562595129013,-0.4568028151988983,-0.6109256148338318,-0.2513057589530945],[-0.7992978692054749,-1.0904186964035034,-0.576676070690155,-1.9124069213867188,0.7761794924736023,-1.1075434684753418,0.5706824064254761,0.5535576939582825,0.433684378862381,0.6563062071800232,0.5364329218864441,0.6049319505691528,0.5878071784973145,0.5021833777427673,0.6220566630363464,0.7419299483299255,0.6391814351081848,0.7933042049407959,0.7248051762580872,0.1425635814666748,0.2795616090297699,0.8618032336235046,0.7761794924736023,0.48505866527557373,0.17681308090686798,0.1596883237361908,-0.6451750993728638,0.8104289770126343,-0.2513057589530945,0.913177490234375,-1.0390443801879883,-2.1179039478302,0.8618032336235046,0.8446784615516663,0.8960527181625366,0.34806060791015625,0.48505866527557373,0.6905556917190552,2.0776607990264893,1.101549744606018,1.1357992887496948,0.48505866527557373,0.9816765189170837,0.19393783807754517,0.6734309196472168,0.48505866527557373,0.005565545056015253,-0.2341810017824173,0.6563062071800232,0.6220566630363464,0.7761794924736023,0.9303022623062134,0.8104289770126343,0.7076804637908936,0.7248051762580872,0.7761794924736023,0.7590547204017639,0.5878071784973145,0.6049319505691528,0.6220566630363464,0.2795616090297699,-1.6384108066558838,-1.467163324356079,-1.3986642360687256,-1.073293924331665,-1.227416753768921,-0.3369295299053192,-0.2170562595129013,-1.1760424375534058,-0.14855724573135376,-1.0561691522598267,-0.5253018140792847,-0.2170562595129013,0.33093586564064026,0.5706824064254761,0.913177490234375,1.1700488328933716,1.4611696004867554,1.255672574043274,0.9645517468452454,1.0501755475997925,0.24531209468841553,0.36518537998199463,1.3412963151931763,1.7522904872894287,1.6495418548583984,0.2624368667602539,1.4611696004867554,1.9235379695892334,0.6049319505691528,-1.758284091949463,-1.878157377243042,0.09118931740522385,-1.4329137802124023,-1.0561691522598267,-0.9534206986427307,-1.6555355787277222,-1.0561691522598267,-1.2616662979125977,-2.0836544036865234,-1.9809058904647827,-1.5014127492904663,-1.467163324356079,-1.3472900390625,-1.2616662979125977,-1.1246682405471802,-1.1075434684753418,-1.0390443801879883,-1.0390443801879883,-0.9705454111099243,-0.9362959265708923,-0.9705454111099243,-0.919171154499054,-0.919171154499054,-0.8677968978881836,-0.9705454111099243,-0.7821731567382812,-0.8506721258163452,-1.1075434684753418,-1.3130404949188232,-0.11430773138999939,-0.4910523295402527,-0.3369295299053192,-0.576676070690155,-0.11430773138999939,-0.3369295299053192,-0.3198047876358032,-0.2341810017824173,-0.2170562595129013,-1.9124069213867188,-1.8267830610275269,-1.7069098949432373,-0.3198047876358032,0.31381112337112427,-0.06293346732854843,-0.4568028151988983,-1.3472900390625,-0.01155920885503292,-0.42255330085754395,0.6220566630363464,-0.28555527329444885,0.36518537998199463,0.5021833777427673,1.18717360496521,0.48505866527557373,1.307046890258789,0.8275537490844727,0.46793389320373535,0.5706824064254761,0.8960527181625366,-0.26843053102493286,-0.5081770420074463,-0.6965493559837341,-0.06293346732854843,-0.2170562595129013,-0.3711790442466736,0.36518537998199463,-0.7821731567382812,-0.3198047876358032,-1.0561691522598267,-0.40542855858802795,-0.6794245839118958,0.6905556917190552,-0.18280674517154694,-0.19993150234222412,-0.9876701831817627,-1.1417930126190186,-0.30268001556396484,-0.06293346732854843,-0.5253018140792847,0.19393783807754517,-1.3644148111343384,-1.004794955253601,0.09118931740522385,1.1186745166778564,0.17681308090686798,0.3823101222515106,0.6220566630363464,1.6837913990020752,1.0844250917434692,1.2385478019714355,0.5193081498146057,0.5193081498146057,1.2727973461151123,2.0091617107391357,1.1357992887496948,0.6220566630363464,1.1529240608215332,0.48505866527557373,-0.3369295299053192,0.6220566630363464,0.9988012909889221,0.2966863512992859,-0.9362959265708923,-0.028683962300419807,0.34806060791015625,-1.2102919816970825,-1.6726603507995605,-1.4329137802124023,0.9645517468452454,0.7933042049407959,0.48505866527557373,0.1425635814666748,-0.028683962300419807,1.1186745166778564,0.7248051762580872,0.22818733751773834,0.005565545056015253,0.48505866527557373,0.34806060791015625,0.2966863512992859,0.2966863512992859,0.46793389320373535,1.0673003196716309,1.255672574043274,0.7590547204017639,1.0673003196716309,0.8618032336235046,0.7248051762580872,0.913177490234375,0.6563062071800232,-0.19993150234222412,0.21106259524822235,-0.08005822449922562],[-0.7136741280555725,-1.004794955253601,-0.42255330085754395,-1.6384108066558838,0.8104289770126343,-1.0219197273254395,0.6734309196472168,0.6220566630363464,0.6220566630363464,0.416559636592865,0.7761794924736023,0.5535576939582825,0.6220566630363464,0.46793389320373535,0.5878071784973145,0.3823101222515106,0.8104289770126343,0.7933042049407959,-0.14855724573135376,-0.3369295299053192,0.8446784615516663,0.6734309196472168,0.8446784615516663,0.6734309196472168,0.9816765189170837,0.6049319505691528,0.48505866527557373,0.7419299483299255,1.0673003196716309,0.7761794924736023,0.2624368667602539,0.8104289770126343,0.2966863512992859,-0.08005822449922562,0.8618032336235046,0.46793389320373535,0.48505866527557373,0.7761794924736023,1.444044828414917,1.0159260034561157,-0.14855724573135376,0.399434894323349,0.2624368667602539,-0.14855724573135376,0.5878071784973145,-0.2170562595129013,-0.7307988405227661,0.6734309196472168,-0.0971829816699028,0.878928005695343,0.8275537490844727,0.878928005695343,0.9303022623062134,0.8960527181625366,0.878928005695343,0.9303022623062134,0.8618032336235046,0.6905556917190552,0.8104289770126343,0.5878071784973145,0.399434894323349,-2.0665297508239746,-1.7754088640213013,-1.7411593198776245,-0.6965493559837341,0.399434894323349,-0.6622998714447021,-0.26843053102493286,-0.30268001556396484,0.2624368667602539,-0.0971829816699028,0.10831406712532043,-0.3883037865161896,-0.3540542721748352,0.07406456023454666,0.7419299483299255,0.6391814351081848,1.307046890258789,1.5981676578521729,1.444044828414917,1.2385478019714355,0.878928005695343,0.7076804637908936,1.1529240608215332,1.0673003196716309,1.2214230298995972,0.5021833777427673,0.7419299483299255,1.0844250917434692,1.1357992887496948,-0.06293346732854843,-1.3130404949188232,-0.2341810017824173,-1.1075434684753418,-1.3472900390625,-0.9705454111099243,-1.4500385522842407,-1.1075434684753418,-0.5081770420074463,-1.6555355787277222,-2.1179039478302,-1.5527870655059814,-1.467163324356079,-1.3472900390625,-1.1760424375534058,-1.0904186964035034,-1.1075434684753418,-1.0561691522598267,-1.004794955253601,-0.9705454111099243,-0.9705454111099243,-0.7479236125946045,-0.6794245839118958,-0.6622998714447021,-0.7821731567382812,-0.8506721258163452,-0.7136741280555725,-0.7821731567382812,-0.9705454111099243,-1.2445415258407593,0.056939806789159775,0.22818733751773834,0.12543882429599762,0.399434894323349,0.34806060791015625,0.1425635814666748,-0.2513057589530945,-0.4568028151988983,-0.16568198800086975,-1.998030662536621,-2.1179039478302,-1.4842880964279175,0.48505866527557373,0.6391814351081848,-0.43967804312705994,-0.7650483846664429,-0.04580871760845184,-0.5253018140792847,-0.3369295299053192,0.48505866527557373,0.46793389320373535,0.22818733751773834,0.7248051762580872,0.7761794924736023,0.5535576939582825,0.7761794924736023,0.7933042049407959,0.07406456023454666,0.34806060791015625,0.2795616090297699,-0.14855724573135376,-0.6280503273010254,-0.3540542721748352,-0.7992978692054749,-0.3711790442466736,-1.0390443801879883,-0.5938008427619934,0.03981505334377289,-1.0561691522598267,-1.5185375213623047,-0.8164226412773132,-0.01155920885503292,-0.7650483846664429,-0.2341810017824173,-0.5253018140792847,-0.884921669960022,-0.6794245839118958,-0.7821731567382812,0.5021833777427673,-0.6109256148338318,-0.3198047876358032,-0.4568028151988983,-0.3883037865161896,-0.4568028151988983,0.6734309196472168,0.5193081498146057,1.3412963151931763,1.2727973461151123,1.324171543121338,1.375545859336853,1.9920369386672974,1.7351657152175903,1.9577875137329102,1.563918113708496,1.8892884254455566,1.5296686887741089,1.718040943145752,1.1357992887496948,1.0159260034561157,-0.28555527329444885,0.6049319505691528,1.2727973461151123,0.6905556917190552,-0.16568198800086975,0.46793389320373535,0.5706824064254761,-0.19993150234222412,-1.6212860345840454,0.03981505334377289,0.8446784615516663,0.5878071784973145,0.399434894323349,0.3823101222515106,0.5193081498146057,0.8446784615516663,0.34806060791015625,-0.01155920885503292,0.1425635814666748,0.6563062071800232,0.33093586564064026,0.3823101222515106,0.9645517468452454,0.5193081498146057,0.5706824064254761,0.7761794924736023,1.375545859336853,0.9303022623062134,1.1700488328933716,1.0673003196716309,1.0673003196716309,0.33093586564064026,0.7590547204017639,0.913177490234375,0.5364329218864441],[-0.542426586151123,-0.7821731567382812,-0.43967804312705994,-1.9295316934585571,0.6905556917190552,-0.542426586151123,0.9816765189170837,1.0159260034561157,0.8104289770126343,0.7419299483299255,0.6563062071800232,0.878928005695343,0.7590547204017639,0.8104289770126343,0.6049319505691528,0.5706824064254761,1.2214230298995972,-1.2959157228469849,1.0501755475997925,0.5364329218864441,0.7933042049407959,0.913177490234375,1.1529240608215332,0.1425635814666748,-0.42255330085754395,0.9988012909889221,0.1425635814666748,0.7761794924736023,1.375545859336853,-0.4910523295402527,0.48505866527557373,0.878928005695343,-1.0219197273254395,-1.7411593198776245,0.8275537490844727,0.2795616090297699,0.24531209468841553,0.9816765189170837,-0.6280503273010254,-0.5081770420074463,0.6734309196472168,0.9303022623062134,0.7933042049407959,0.8275537490844727,0.8446784615516663,0.9303022623062134,0.8446784615516663,0.878928005695343,0.9816765189170837,0.878928005695343,0.8446784615516663,0.913177490234375,0.8275537490844727,0.8275537490844727,0.8446784615516663,0.8960527181625366,0.8104289770126343,0.878928005695343,0.6734309196472168,0.6391814351081848,0.5535576939582825,-2.032280206680298,-0.9876701831817627,-0.542426586151123,0.09118931740522385,0.2624368667602539,0.5535576939582825,0.09118931740522385,-1.2787909507751465,-0.5595513582229614,0.48505866527557373,0.7419299483299255,0.34806060791015625,-0.04580871760845184,-0.43967804312705994,-0.16568198800086975,0.8104289770126343,0.17681308090686798,1.1186745166778564,1.2042982578277588,1.4611696004867554,1.6666666269302368,1.375545859336853,0.8960527181625366,0.7933042049407959,1.255672574043274,1.718040943145752,1.1529240608215332,0.416559636592865,0.46793389320373535,1.2214230298995972,0.46793389320373535,-2.1179039478302,-1.1075434684753418,-1.467163324356079,-1.3130404949188232,-1.004794955253601,-1.8952821493148804,-1.7069098949432373,-1.878157377243042,-2.1179039478302,-1.8952821493148804,-1.5527870655059814,-1.415789008140564,-1.227416753768921,-1.1246682405471802,-0.9705454111099243,-1.004794955253601,-0.7650483846664429,-0.8164226412773132,-0.7992978692054749,-0.7136741280555725,-0.7650483846664429,-0.6794245839118958,-0.6451750993728638,-0.7479236125946045,-0.7650483846664429,-0.8506721258163452,-0.884921669960022,-1.4842880964279175,0.19393783807754517,0.22818733751773834,0.2795616090297699,0.5364329218864441,0.36518537998199463,0.6734309196472168,0.2624368667602539,0.1425635814666748,0.33093586564064026,-1.7925336360931396,-1.4842880964279175,0.5706824064254761,0.21106259524822235,0.7933042049407959,0.36518537998199463,-0.6451750993728638,-0.01155920885503292,0.24531209468841553,-0.3540542721748352,0.03981505334377289,0.6734309196472168,-0.28555527329444885,0.8275537490844727,0.5364329218864441,0.433684378862381,1.0159260034561157,0.09118931740522385,0.24531209468841553,-0.04580871760845184,0.6220566630363464,0.33093586564064026,-0.5938008427619934,-0.2513057589530945,0.6563062071800232,-1.2959157228469849,-1.2787909507751465,0.1596883237361908,-1.073293924331665,-0.8677968978881836,-1.0904186964035034,-0.6622998714447021,0.5878071784973145,-0.0971829816699028,-1.1760424375534058,-0.9876701831817627,0.005565545056015253,-0.9020463824272156,-0.7136741280555725,-0.6280503273010254,-0.3369295299053192,-0.3540542721748352,0.09118931740522385,0.8618032336235046,-0.7479236125946045,-0.6622998714447021,0.2966863512992859,-0.14855724573135376,0.6049319505691528,1.1700488328933716,1.5981676578521729,1.1186745166778564,1.4097954034805298,1.5981676578521729,1.786539912223816,1.3926706314086914,1.324171543121338,1.6495418548583984,1.1700488328933716,1.2042982578277588,0.24531209468841553,0.46793389320373535,0.7933042049407959,0.17681308090686798,-0.18280674517154694,0.5535576939582825,0.8275537490844727,-0.16568198800086975,-0.6965493559837341,1.0844250917434692,0.6391814351081848,-0.542426586151123,0.21106259524822235,0.8104289770126343,0.5021833777427673,0.433684378862381,-0.18280674517154694,-0.6622998714447021,-0.42255330085754395,0.3823101222515106,0.33093586564064026,0.12543882429599762,0.45080915093421936,0.5193081498146057,0.6049319505691528,0.8275537490844727,1.3584210872650146,1.1186745166778564,0.8446784615516663,0.9816765189170837,0.8104289770126343,0.5364329218864441,0.9474270343780518,0.46793389320373535,-0.919171154499054],[-0.6794245839118958,-0.7992978692054749,-0.5253018140792847,-1.5870366096496582,0.7248051762580872,-1.004794955253601,0.9474270343780518,0.9474270343780518,0.8618032336235046,0.8446784615516663,0.7933042049407959,0.8275537490844727,0.878928005695343,0.7419299483299255,0.48505866527557373,0.6734309196472168,0.7076804637908936,0.9645517468452454,0.10831406712532043,0.7590547204017639,0.24531209468841553,0.9303022623062134,0.8960527181625366,0.31381112337112427,0.9303022623062134,0.022690298035740852,-0.3198047876358032,0.9816765189170837,0.9816765189170837,-0.8335474133491516,0.5193081498146057,0.8446784615516663,-0.2513057589530945,-0.6622998714447021,0.8446784615516663,0.8446784615516663,0.6220566630363464,0.8104289770126343,-0.7307988405227661,-1.9637811183929443,0.7933042049407959,0.9988012909889221,0.9303022623062134,0.9645517468452454,0.913177490234375,0.9988012909889221,0.8275537490844727,0.913177490234375,0.399434894323349,0.5535576939582825,0.913177490234375,0.8960527181625366,0.8275537490844727,0.7761794924736023,0.8446784615516663,0.8446784615516663,0.913177490234375,0.6905556917190552,0.6905556917190552,0.5364329218864441,0.2624368667602539,-1.7925336360931396,-1.5870366096496582,-1.6726603507995605,-0.13143248856067657,0.8446784615516663,0.5878071784973145,0.005565545056015253,-1.3130404949188232,-0.028683962300419807,0.5878071784973145,-0.5081770420074463,-0.5938008427619934,-1.0390443801879883,-0.7650483846664429,-0.4739275574684143,0.005565545056015253,0.399434894323349,0.34806060791015625,0.46793389320373535,0.433684378862381,1.101549744606018,1.0844250917434692,1.2042982578277588,0.6563062071800232,1.375545859336853,0.9645517468452454,1.563918113708496,1.6837913990020752,-0.9534206986427307,1.255672574043274,1.2042982578277588,-0.7479236125946045,-1.3986642360687256,-0.7821731567382812,-1.0219197273254395,-1.0219197273254395,-1.3644148111343384,-0.8677968978881836,-1.9637811183929443,-1.8439078330993652,-1.878157377243042,-1.8267830610275269,-1.4329137802124023,-1.3130404949188232,-1.1417930126190186,-1.0561691522598267,-0.919171154499054,-0.8677968978881836,-0.8335474133491516,-0.7821731567382812,-0.7992978692054749,-0.542426586151123,-0.7307988405227661,-0.7479236125946045,-0.6965493559837341,-0.5938008427619934,-0.6109256148338318,-0.919171154499054,-1.5870366096496582,0.2966863512992859,0.36518537998199463,0.5021833777427673,0.5706824064254761,0.7076804637908936,0.6391814351081848,0.7590547204017639,-0.6965493559837341,-0.3540542721748352,-1.1246682405471802,-0.7992978692054749,1.324171543121338,1.8036646842956543,1.18717360496521,-0.18280674517154694,-0.7307988405227661,0.36518537998199463,-0.7136741280555725,-0.6109256148338318,0.005565545056015253,0.34806060791015625,0.19393783807754517,0.2624368667602539,0.07406456023454666,0.6220566630363464,0.8275537490844727,0.8618032336235046,0.2966863512992859,0.10831406712532043,0.7590547204017639,0.056939806789159775,0.399434894323349,-0.6794245839118958,-0.8506721258163452,-0.919171154499054,-0.04580871760845184,-0.16568198800086975,-0.6794245839118958,-0.13143248856067657,0.6734309196472168,0.36518537998199463,0.7761794924736023,0.9303022623062134,-0.16568198800086975,0.2795616090297699,-0.08005822449922562,0.33093586564064026,-0.26843053102493286,-0.8506721258163452,-0.06293346732854843,0.9816765189170837,-0.7650483846664429,0.24531209468841553,0.1425635814666748,-0.4910523295402527,-0.3711790442466736,1.1529240608215332,0.7248051762580872,1.1186745166778564,1.3412963151931763,1.2899221181869507,1.375545859336853,1.5467933416366577,1.9749122858047485,1.8207894563674927,1.837914228439331,1.2214230298995972,1.255672574043274,1.2385478019714355,0.45080915093421936,-0.5081770420074463,0.2624368667602539,-0.13143248856067657,-0.7307988405227661,0.22818733751773834,0.9474270343780518,-1.0561691522598267,0.1425635814666748,0.8960527181625366,-0.028683962300419807,-0.01155920885503292,0.5878071784973145,1.5296686887741089,1.0844250917434692,0.36518537998199463,-1.004794955253601,-0.8506721258163452,-0.7307988405227661,-0.14855724573135376,-0.3883037865161896,0.07406456023454666,0.5535576939582825,0.2966863512992859,0.8104289770126343,0.9988012909889221,1.101549744606018,1.0159260034561157,0.7590547204017639,0.9645517468452454,1.0159260034561157,1.2899221181869507,0.5364329218864441,0.31381112337112427,0.6734309196472168],[-0.7307988405227661,-0.6965493559837341,-0.5595513582229614,-1.809658408164978,0.6905556917190552,-0.9020463824272156,1.0501755475997925,1.0673003196716309,0.9816765189170837,1.0159260034561157,0.8960527181625366,1.0844250917434692,1.2214230298995972,0.8960527181625366,0.878928005695343,0.878928005695343,0.9645517468452454,0.878928005695343,0.6734309196472168,0.1596883237361908,1.1700488328933716,0.9474270343780518,1.101549744606018,0.9303022623062134,0.7933042049407959,0.5364329218864441,-0.6794245839118958,1.0159260034561157,0.8104289770126343,0.1596883237361908,0.8618032336235046,0.2624368667602539,0.9303022623062134,1.0501755475997925,0.8618032336235046,0.9816765189170837,0.2624368667602539,0.5878071784973145,0.8960527181625366,1.1529240608215332,0.9816765189170837,0.5706824064254761,0.913177490234375,0.10831406712532043,0.31381112337112427,-0.19993150234222412,-0.40542855858802795,0.6563062071800232,0.33093586564064026,0.33093586564064026,0.7933042049407959,0.8960527181625366,0.9474270343780518,0.7933042049407959,0.8104289770126343,0.7590547204017639,0.8104289770126343,1.1357992887496948,0.5193081498146057,-0.4568028151988983,-2.0665297508239746,-0.19993150234222412,-0.9705454111099243,-1.2959157228469849,0.09118931740522385,0.7590547204017639,0.36518537998199463,-0.13143248856067657,0.12543882429599762,0.5706824064254761,0.3823101222515106,0.21106259524822235,-0.3198047876358032,-0.19993150234222412,-0.06293346732854843,0.2795616090297699,0.1596883237361908,0.878928005695343,0.7076804637908936,0.5364329218864441,0.6734309196472168,0.8446784615516663,0.7761794924736023,1.1186745166778564,0.6220566630363464,1.0159260034561157,1.033050775527954,1.0673003196716309,1.4269200563430786,0.10831406712532043,1.6495418548583984,1.4269200563430786,0.2624368667602539,-1.946656346321106,-0.6965493559837341,-1.6384108066558838,-1.7411593198776245,-1.5699118375778198,-0.43967804312705994,-0.7992978692054749,-1.8267830610275269,-1.9295316934585571,-2.1179039478302,-1.5870366096496582,-1.2616662979125977,-1.2102919816970825,-1.1417930126190186,-1.0219197273254395,-0.9534206986427307,-0.9362959265708923,-0.5938008427619934,-0.6794245839118958,-0.7136741280555725,-0.7136741280555725,-0.5253018140792847,-0.7821731567382812,-0.7136741280555725,-0.6794245839118958,-0.7479236125946045,-1.4500385522842407,0.6391814351081848,0.433684378862381,0.33093586564064026,0.6563062071800232,-0.9876701831817627,-0.30268001556396484,0.5706824064254761,-0.7479236125946045,-1.604161262512207,-0.14855724573135376,0.056939806789159775,0.8275537490844727,0.8275537490844727,0.7419299483299255,0.19393783807754517,0.12543882429599762,0.36518537998199463,-0.542426586151123,-0.5938008427619934,-0.43967804312705994,0.005565545056015253,0.005565545056015253,0.416559636592865,0.19393783807754517,0.46793389320373535,0.12543882429599762,0.9303022623062134,-0.04580871760845184,0.31381112337112427,0.6220566630363464,-0.13143248856067657,0.056939806789159775,0.7933042049407959,0.878928005695343,0.22818733751773834,0.1596883237361908,0.9645517468452454,0.2966863512992859,-0.8506721258163452,0.1596883237361908,-0.04580871760845184,-0.3369295299053192,0.31381112337112427,0.8618032336235046,-0.43967804312705994,0.7248051762580872,0.6734309196472168,-0.3883037865161896,0.31381112337112427,0.09118931740522385,0.12543882429599762,-0.7136741280555725,-0.06293346732854843,1.0501755475997925,0.8960527181625366,0.6563062071800232,1.1529240608215332,1.4782943725585938,1.4269200563430786,1.3584210872650146,1.5810428857803345,1.7009161710739136,1.9920369386672974,1.6837913990020752,1.5810428857803345,1.8721636533737183,1.6324172019958496,1.2727973461151123,1.255672574043274,0.2966863512992859,-0.7136741280555725,0.31381112337112427,-0.3369295299053192,-0.8164226412773132,-0.16568198800086975,-0.5253018140792847,-0.3711790442466736,0.45080915093421936,-0.0971829816699028,0.6563062071800232,0.46793389320373535,1.0501755475997925,1.3584210872650146,1.563918113708496,1.3926706314086914,1.0159260034561157,-0.3883037865161896,-1.2616662979125977,-0.7992978692054749,-0.40542855858802795,-0.4568028151988983,0.056939806789159775,-0.30268001556396484,0.36518537998199463,0.8275537490844727,0.9474270343780518,0.9816765189170837,0.8104289770126343,0.878928005695343,1.101549744606018,0.7590547204017639,0.7076804637908936,0.9645517468452454,1.375545859336853],[-0.2341810017824173,-0.7992978692054749,-0.5938008427619934,-1.8610326051712036,0.7761794924736023,-0.6965493559837341,1.2727973461151123,1.2385478019714355,0.9474270343780518,0.9474270343780518,0.9816765189170837,1.0673003196716309,1.0159260034561157,0.8618032336235046,0.5706824064254761,0.913177490234375,0.8960527181625366,0.9988012909889221,0.8618032336235046,0.8618032336235046,1.0673003196716309,0.8104289770126343,0.913177490234375,0.31381112337112427,-0.3883037865161896,0.8104289770126343,1.0159260034561157,0.8104289770126343,0.913177490234375,0.9816765189170837,-0.8677968978881836,-1.6726603507995605,1.0501755475997925,0.8960527181625366,0.7590547204017639,0.48505866527557373,-0.14855724573135376,1.0844250917434692,1.255672574043274,1.4954191446304321,1.1529240608215332,0.3823101222515106,0.8275537490844727,0.45080915093421936,-0.2170562595129013,-0.2341810017824173,-0.8164226412773132,0.9645517468452454,0.24531209468841553,0.7419299483299255,0.9303022623062134,0.8446784615516663,0.7590547204017639,0.7590547204017639,0.7248051762580872,0.6905556917190552,0.21106259524822235,-0.3540542721748352,-1.4842880964279175,-2.1179039478302,-0.14855724573135376,0.9816765189170837,-0.11430773138999939,-1.2959157228469849,-1.3815394639968872,0.45080915093421936,0.1425635814666748,0.19393783807754517,-0.7650483846664429,-0.18280674517154694,-0.028683962300419807,0.3823101222515106,-0.26843053102493286,-0.08005822449922562,0.46793389320373535,0.12543882429599762,0.48505866527557373,0.31381112337112427,0.2795616090297699,0.6220566630363464,1.101549744606018,1.0501755475997925,0.9816765189170837,0.9988012909889221,1.0159260034561157,1.2899221181869507,0.31381112337112427,0.8446784615516663,1.2385478019714355,1.033050775527954,1.6495418548583984,1.6837913990020752,-0.5595513582229614,-1.8267830610275269,-0.3883037865161896,-0.8506721258163452,-1.5699118375778198,-1.1931672096252441,-0.5253018140792847,-1.535662293434143,-1.1417930126190186,-1.8610326051712036,-2.0665297508239746,-2.1179039478302,-1.689785122871399,-1.2787909507751465,-1.1417930126190186,-0.9705454111099243,-1.073293924331665,-0.9876701831817627,-0.7650483846664429,-0.6794245839118958,-0.5595513582229614,-0.5595513582229614,-0.7136741280555725,-0.576676070690155,-0.6280503273010254,-0.6109256148338318,-1.1246682405471802,-1.0390443801879883,-0.8506721258163452,-0.6109256148338318,-1.0904186964035034,0.6734309196472168,-0.5938008427619934,-1.9295316934585571,0.7419299483299255,-0.4910523295402527,-1.5527870655059814,-0.6451750993728638,0.7248051762580872,0.7076804637908936,1.1186745166778564,0.8275537490844727,0.24531209468841553,0.33093586564064026,0.5535576939582825,-0.3711790442466736,-0.4910523295402527,-0.9020463824272156,-0.4568028151988983,-0.30268001556396484,-0.2170562595129013,0.31381112337112427,-0.6622998714447021,0.3823101222515106,0.24531209468841553,-0.8677968978881836,-0.5253018140792847,-0.8335474133491516,-0.2170562595129013,0.19393783807754517,0.6220566630363464,0.36518537998199463,-0.576676070690155,0.12543882429599762,-0.4739275574684143,0.2966863512992859,-0.28555527329444885,-0.3711790442466736,0.2966863512992859,0.056939806789159775,0.33093586564064026,-0.28555527329444885,0.9988012909889221,-0.3540542721748352,0.6391814351081848,-0.4739275574684143,0.36518537998199463,-1.1417930126190186,0.10831406712532043,-0.6280503273010254,0.31381112337112427,0.07406456023454666,0.17681308090686798,0.9303022623062134,1.18717360496521,0.913177490234375,0.8275537490844727,1.7351657152175903,1.5125439167022705,1.3584210872650146,1.7351657152175903,1.7351657152175903,1.7694151401519775,1.837914228439331,1.7351657152175903,1.2899221181869507,1.255672574043274,0.7076804637908936,-0.40542855858802795,0.21106259524822235,-0.19993150234222412,-0.7307988405227661,-0.4739275574684143,-0.9020463824272156,-0.0971829816699028,0.005565545056015253,-0.0971829816699028,1.0673003196716309,0.9303022623062134,1.324171543121338,1.3926706314086914,1.5467933416366577,1.4269200563430786,1.4611696004867554,1.4611696004867554,0.9988012909889221,-0.04580871760845184,-1.0561691522598267,-1.1417930126190186,-0.4910523295402527,0.17681308090686798,0.31381112337112427,0.9474270343780518,0.6905556917190552,0.8275537490844727,0.7590547204017639,0.7248051762580872,0.6905556917190552,0.9303022623062134,0.7076804637908936,1.0501755475997925,1.1186745166778564],[-0.3540542721748352,-0.576676070690155,-0.576676070690155,-1.9809058904647827,1.0159260034561157,-0.7650483846664429,1.2385478019714355,1.2385478019714355,1.0159260034561157,1.2727973461151123,0.913177490234375,0.9645517468452454,0.913177490234375,0.9303022623062134,0.9303022623062134,0.7761794924736023,1.0159260034561157,1.033050775527954,0.9816765189170837,0.7933042049407959,0.07406456023454666,0.913177490234375,0.9816765189170837,0.1596883237361908,0.48505866527557373,1.0844250917434692,0.6734309196472168,1.0844250917434692,0.878928005695343,0.9816765189170837,-0.2341810017824173,-1.809658408164978,1.2385478019714355,-0.4568028151988983,0.2795616090297699,0.33093586564064026,0.19393783807754517,1.0673003196716309,0.3823101222515106,0.6391814351081848,0.5878071784973145,-0.542426586151123,0.6905556917190552,0.21106259524822235,0.8104289770126343,0.7419299483299255,1.033050775527954,0.9303022623062134,0.9816765189170837,0.8618032336235046,0.7419299483299255,0.6905556917190552,0.5706824064254761,0.09118931740522385,-0.919171154499054,-1.6384108066558838,-1.7411593198776245,-1.809658408164978,-2.1179039478302,-0.04580871760845184,0.9988012909889221,0.8104289770126343,1.1529240608215332,-0.18280674517154694,-1.1931672096252441,-0.0971829816699028,0.2795616090297699,0.5706824064254761,-0.42255330085754395,-0.9705454111099243,-0.6965493559837341,0.5021833777427673,0.3823101222515106,0.07406456023454666,-0.16568198800086975,0.17681308090686798,-0.576676070690155,0.07406456023454666,-0.06293346732854843,0.2624368667602539,0.5364329218864441,0.6563062071800232,0.913177490234375,1.2042982578277588,0.9303022623062134,0.5706824064254761,0.433684378862381,1.033050775527954,1.3584210872650146,1.2727973461151123,2.1975340843200684,1.563918113708496,-0.5595513582229614,-1.6726603507995605,-0.7479236125946045,-1.7240345478057861,-1.2787909507751465,-1.1246682405471802,-1.7240345478057861,-1.0904186964035034,-1.7069098949432373,-1.9637811183929443,-2.1179039478302,-2.1179039478302,-2.0836544036865234,-2.0665297508239746,-1.2102919816970825,-1.1246682405471802,-0.8506721258163452,-0.919171154499054,-0.7136741280555725,-0.7136741280555725,-0.6109256148338318,-0.4739275574684143,-0.6451750993728638,-0.5253018140792847,-0.6280503273010254,-0.6794245839118958,-0.8677968978881836,-0.4739275574684143,0.22818733751773834,-0.542426586151123,0.7419299483299255,0.5878071784973145,0.22818733751773834,0.6220566630363464,0.31381112337112427,-0.884921669960022,-0.7479236125946045,1.5296686887741089,0.9988012909889221,0.46793389320373535,0.7933042049407959,1.0673003196716309,0.07406456023454666,1.2214230298995972,0.7248051762580872,0.1425635814666748,0.17681308090686798,-0.5938008427619934,-0.2341810017824173,-0.6109256148338318,0.005565545056015253,0.022690298035740852,-0.4568028151988983,0.5021833777427673,0.12543882429599762,-0.5595513582229614,-0.6794245839118958,-0.3198047876358032,0.2795616090297699,0.12543882429599762,-0.01155920885503292,0.34806060791015625,-0.6794245839118958,0.6391814351081848,1.2214230298995972,1.101549744606018,-0.11430773138999939,-1.2445415258407593,0.5021833777427673,-0.4910523295402527,0.1425635814666748,0.056939806789159775,0.399434894323349,1.2899221181869507,-0.8335474133491516,0.5364329218864441,0.1596883237361908,-0.7650483846664429,0.6734309196472168,0.913177490234375,-0.01155920885503292,-0.4568028151988983,-0.16568198800086975,1.2042982578277588,0.7761794924736023,0.416559636592865,1.2899221181869507,2.0262866020202637,1.8207894563674927,1.6837913990020752,1.8036646842956543,1.8036646842956543,1.9235379695892334,1.906413197517395,2.0262866020202637,1.6324172019958496,1.5467933416366577,1.1357992887496948,0.9816765189170837,0.36518537998199463,-0.13143248856067657,0.17681308090686798,0.31381112337112427,0.9816765189170837,0.7419299483299255,0.9303022623062134,0.19393783807754517,1.0159260034561157,1.18717360496521,1.5981676578521729,1.5467933416366577,1.255672574043274,1.4097954034805298,1.4954191446304321,1.3926706314086914,1.4954191446304321,1.375545859336853,0.8618032336235046,-0.8506721258163452,-0.884921669960022,-0.3711790442466736,0.45080915093421936,0.46793389320373535,0.2966863512992859,0.3823101222515106,1.2385478019714355,0.8960527181625366,0.8960527181625366,0.2624368667602539,0.5021833777427673,1.2385478019714355,1.2214230298995972],[-0.16568198800086975,-0.3711790442466736,-0.6794245839118958,-2.0494048595428467,1.0159260034561157,-0.9534206986427307,1.101549744606018,0.7248051762580872,0.9988012909889221,1.0501755475997925,1.0501755475997925,0.9988012909889221,0.9303022623062134,1.033050775527954,1.1529240608215332,1.033050775527954,1.18717360496521,0.913177490234375,0.7933042049407959,0.21106259524822235,1.0844250917434692,1.1186745166778564,0.8960527181625366,1.0844250917434692,1.0673003196716309,0.9988012909889221,0.03981505334377289,1.255672574043274,0.6734309196472168,-0.2170562595129013,0.7248051762580872,0.433684378862381,0.8446784615516663,0.09118931740522385,-0.26843053102493286,0.6563062071800232,0.7076804637908936,1.101549744606018,0.6049319505691528,0.34806060791015625,1.033050775527954,0.9303022623062134,1.0673003196716309,0.9474270343780518,0.7933042049407959,1.1186745166778564,0.7076804637908936,0.7933042049407959,0.2966863512992859,-0.11430773138999939,-0.9876701831817627,-1.5185375213623047,-1.8439078330993652,-1.8952821493148804,-1.9637811183929443,-2.01515531539917,-2.1179039478302,-2.1179039478302,-0.6965493559837341,1.0844250917434692,0.6220566630363464,1.18717360496521,0.8618032336235046,-0.40542855858802795,-1.5185375213623047,-0.9020463824272156,-0.08005822449922562,0.8960527181625366,0.7590547204017639,-0.6965493559837341,-1.0219197273254395,-0.2513057589530945,0.056939806789159775,0.12543882429599762,-0.7136741280555725,-1.1931672096252441,-0.7821731567382812,-0.2341810017824173,0.34806060791015625,0.6563062071800232,0.1425635814666748,0.022690298035740852,0.5878071784973145,1.2214230298995972,1.1700488328933716,1.3584210872650146,0.878928005695343,1.1529240608215332,1.2214230298995972,1.4782943725585938,2.0776607990264893,1.8207894563674927,-1.3301652669906616,-1.5185375213623047,-0.9534206986427307,-1.1417930126190186,-0.028683962300419807,-1.5014127492904663,-1.9124069213867188,-1.3472900390625,-1.7925336360931396,-2.1179039478302,-1.5870366096496582,-0.9362959265708923,-0.5595513582229614,-0.576676070690155,-1.3472900390625,-1.689785122871399,-1.1075434684753418,-1.0219197273254395,-0.6280503273010254,-0.5253018140792847,-0.6451750993728638,-0.4910523295402527,-0.5253018140792847,-0.542426586151123,-0.42255330085754395,-0.5253018140792847,-0.9362959265708923,-0.01155920885503292,0.7590547204017639,-0.13143248856067657,0.6049319505691528,0.48505866527557373,-0.7650483846664429,-0.5253018140792847,0.1596883237361908,-0.5938008427619934,-1.1246682405471802,1.1357992887496948,0.2795616090297699,0.5364329218864441,1.324171543121338,1.837914228439331,0.5878071784973145,0.6391814351081848,-0.2513057589530945,0.48505866527557373,1.1700488328933716,-0.8677968978881836,-0.30268001556396484,-0.3883037865161896,0.1425635814666748,0.5364329218864441,-0.3369295299053192,-0.19993150234222412,0.21106259524822235,-0.9876701831817627,-0.6280503273010254,-0.2170562595129013,-0.8164226412773132,-0.3711790442466736,-0.5081770420074463,-0.884921669960022,-0.3369295299053192,-0.4910523295402527,-0.9876701831817627,-0.6109256148338318,0.33093586564064026,0.17681308090686798,0.5878071784973145,0.6734309196472168,1.2042982578277588,0.9303022623062134,0.9303022623062134,1.033050775527954,0.022690298035740852,-0.19993150234222412,0.45080915093421936,-0.3198047876358032,-0.2513057589530945,0.7933042049407959,0.7076804637908936,1.2727973461151123,-0.30268001556396484,0.9645517468452454,0.9645517468452454,1.6666666269302368,1.5125439167022705,1.2727973461151123,1.906413197517395,1.8721636533737183,1.6666666269302368,1.786539912223816,2.0091617107391357,1.8036646842956543,1.8550390005111694,1.6495418548583984,1.3584210872650146,1.324171543121338,0.8618032336235046,0.433684378862381,-0.4568028151988983,0.24531209468841553,1.1357992887496948,0.9645517468452454,1.101549744606018,0.9816765189170837,0.7076804637908936,0.9988012909889221,1.375545859336853,1.6837913990020752,1.6152924299240112,1.2385478019714355,1.4269200563430786,1.5981676578521729,1.786539912223816,1.5125439167022705,1.3412963151931763,1.375545859336853,1.101549744606018,-0.19993150234222412,-1.3986642360687256,-0.9362959265708923,-1.0219197273254395,-0.884921669960022,-0.13143248856067657,0.7761794924736023,0.8618032336235046,0.913177490234375,0.8618032336235046,0.878928005695343,1.0673003196716309,0.6391814351081848],[-0.3198047876358032,-0.16568198800086975,-0.6622998714447021,-2.0836544036865234,1.1186745166778564,-1.0561691522598267,1.2385478019714355,1.0159260034561157,0.913177490234375,1.2214230298995972,1.2899221181869507,1.0844250917434692,1.0159260034561157,1.0673003196716309,0.8275537490844727,1.033050775527954,0.878928005695343,1.0501755475997925,0.878928005695343,1.0844250917434692,1.1186745166778564,1.0501755475997925,0.8618032336235046,0.36518537998199463,0.2795616090297699,0.399434894323349,0.12543882429599762,0.9645517468452454,0.5364329218864441,-0.8506721258163452,1.1357992887496948,1.2042982578277588,0.7761794924736023,0.2966863512992859,0.21106259524822235,0.9645517468452454,0.878928005695343,1.307046890258789,1.255672574043274,0.8618032336235046,1.375545859336853,1.1357992887496948,0.6734309196472168,0.8618032336235046,0.45080915093421936,-0.2341810017824173,-0.7992978692054749,-1.3644148111343384,-1.6212860345840454,-1.878157377243042,-1.8610326051712036,-1.689785122871399,-1.5527870655059814,-1.0390443801879883,-1.073293924331665,-1.6212860345840454,-1.3815394639968872,-1.004794955253601,0.8275537490844727,0.9988012909889221,0.6905556917190552,0.7761794924736023,1.0159260034561157,0.6391814351081848,-1.4329137802124023,-1.5014127492904663,0.2795616090297699,0.45080915093421936,0.21106259524822235,-0.6794245839118958,-1.227416753768921,-1.5527870655059814,-0.4568028151988983,-0.0971829816699028,-0.30268001556396484,-0.18280674517154694,0.433684378862381,0.7076804637908936,-0.26843053102493286,0.09118931740522385,0.6905556917190552,0.45080915093421936,-0.3198047876358032,0.7076804637908936,1.6837913990020752,1.033050775527954,1.033050775527954,0.8960527181625366,1.5981676578521729,1.8721636533737183,2.1461598873138428,1.5810428857803345,-1.7925336360931396,-1.9124069213867188,-0.9020463824272156,-1.2102919816970825,-0.4568028151988983,-1.5527870655059814,-1.9809058904647827,-2.01515531539917,-1.5185375213623047,-1.7411593198776245,-1.6726603507995605,-0.26843053102493286,0.03981505334377289,-0.11430773138999939,0.399434894323349,0.03981505334377289,-0.7821731567382812,-1.1931672096252441,-0.5081770420074463,-0.5253018140792847,-0.5595513582229614,-0.5253018140792847,-0.42255330085754395,-0.5595513582229614,-0.6280503273010254,-0.6109256148338318,-0.542426586151123,0.7419299483299255,-0.5595513582229614,-0.4739275574684143,0.2795616090297699,0.5364329218864441,-0.2341810017824173,-0.11430773138999939,0.5021833777427673,-0.13143248856067657,-0.9705454111099243,1.255672574043274,0.6391814351081848,0.9303022623062134,1.1186745166778564,0.8960527181625366,1.444044828414917,1.6152924299240112,0.24531209468841553,0.5021833777427673,1.101549744606018,-0.01155920885503292,-0.3198047876358032,-0.0971829816699028,0.24531209468841553,0.36518537998199463,-0.4739275574684143,0.056939806789159775,-0.2513057589530945,-0.884921669960022,-0.6451750993728638,-1.4329137802124023,-0.542426586151123,-0.3369295299053192,0.17681308090686798,-0.6109256148338318,-0.3883037865161896,-1.2616662979125977,0.8618032336235046,0.8446784615516663,-0.28555527329444885,0.433684378862381,0.8275537490844727,0.2966863512992859,0.6563062071800232,1.1529240608215332,1.1700488328933716,1.5296686887741089,0.09118931740522385,1.18717360496521,0.9988012909889221,0.31381112337112427,0.7933042049407959,-0.43967804312705994,0.6049319505691528,0.7590547204017639,0.7590547204017639,1.375545859336853,0.5364329218864441,1.2042982578277588,2.094785451889038,1.9749122858047485,1.6837913990020752,1.2727973461151123,1.7351657152175903,2.0262866020202637,2.214658737182617,1.837914228439331,2.094785451889038,1.837914228439331,1.837914228439331,1.6666666269302368,1.2385478019714355,0.7419299483299255,0.005565545056015253,0.8275537490844727,0.9303022623062134,1.444044828414917,1.2727973461151123,1.307046890258789,1.1700488328933716,0.8446784615516663,0.8960527181625366,1.4269200563430786,1.307046890258789,1.5981676578521729,1.6324172019958496,1.5467933416366577,1.718040943145752,1.7694151401519775,1.9577875137329102,1.6495418548583984,2.094785451889038,1.375545859336853,0.5535576939582825,-0.6965493559837341,-0.6622998714447021,-0.8335474133491516,-0.9876701831817627,-0.5595513582229614,0.056939806789159775,0.2624368667602539,0.6220566630363464,0.9988012909889221,1.1700488328933716,1.033050775527954],[-0.5253018140792847,0.5535576939582825,-0.8335474133491516,-1.9809058904647827,1.2214230298995972,-0.7307988405227661,1.2727973461151123,1.2385478019714355,1.3584210872650146,1.2727973461151123,1.2214230298995972,1.1357992887496948,1.255672574043274,0.9303022623062134,0.7076804637908936,1.0673003196716309,1.1700488328933716,1.0673003196716309,1.101549744606018,0.5535576939582825,-0.5081770420074463,0.7933042049407959,1.1529240608215332,0.6563062071800232,0.3823101222515106,1.1357992887496948,0.6049319505691528,1.0844250917434692,1.1529240608215332,0.7419299483299255,1.1529240608215332,0.8618032336235046,0.878928005695343,1.0844250917434692,0.8618032336235046,1.0844250917434692,0.8446784615516663,0.6391814351081848,0.2795616090297699,-0.028683962300419807,-0.6451750993728638,-1.3815394639968872,-1.7240345478057861,-1.9124069213867188,-1.998030662536621,-1.9295316934585571,-2.0494048595428467,-1.9637811183929443,-1.8267830610275269,-0.6794245839118958,0.399434894323349,1.2727973461151123,1.2385478019714355,1.255672574043274,0.7590547204017639,0.8960527181625366,0.33093586564064026,0.005565545056015253,0.17681308090686798,-0.6280503273010254,-0.576676070690155,0.5706824064254761,0.8446784615516663,0.5878071784973145,-0.3711790442466736,-1.5014127492904663,0.005565545056015253,0.33093586564064026,0.416559636592865,-0.04580871760845184,-0.542426586151123,0.5021833777427673,-0.42255330085754395,-1.3301652669906616,-0.5595513582229614,0.21106259524822235,0.03981505334377289,0.22818733751773834,0.48505866527557373,0.022690298035740852,-0.5938008427619934,0.6734309196472168,0.03981505334377289,0.22818733751773834,0.913177490234375,1.101549744606018,1.0159260034561157,1.255672574043274,1.3412963151931763,1.4782943725585938,1.9235379695892334,1.7522904872894287,-0.3198047876358032,-1.8952821493148804,-0.884921669960022,0.2966863512992859,-1.3644148111343384,-0.576676070690155,-0.8677968978881836,-1.998030662536621,-1.809658408164978,-1.758284091949463,-1.4329137802124023,-0.5938008427619934,-0.16568198800086975,-0.06293346732854843,-1.2102919816970825,-0.7136741280555725,-0.9705454111099243,-0.9020463824272156,-0.6280503273010254,-0.542426586151123,-0.43967804312705994,-0.4739275574684143,-0.3540542721748352,-0.43967804312705994,-0.3369295299053192,-0.3540542721748352,-0.42255330085754395,0.9645517468452454,1.1357992887496948,0.6220566630363464,1.0501755475997925,0.17681308090686798,-0.6280503273010254,0.1596883237361908,-0.40542855858802795,0.2966863512992859,-0.8506721258163452,0.2624368667602539,0.9988012909889221,1.18717360496521,0.8275537490844727,1.1700488328933716,1.101549744606018,1.2899221181869507,1.0844250917434692,0.7076804637908936,1.6152924299240112,1.101549744606018,0.416559636592865,0.6734309196472168,0.5706824064254761,0.7761794924736023,-0.3883037865161896,-0.6109256148338318,0.913177490234375,0.03981505334377289,-1.2445415258407593,-2.01515531539917,0.21106259524822235,-0.7992978692054749,0.09118931740522385,-0.4739275574684143,-0.3540542721748352,-0.26843053102493286,-0.8506721258163452,-0.5938008427619934,-0.4568028151988983,-0.08005822449922562,0.6734309196472168,0.2624368667602539,1.1186745166778564,0.5193081498146057,1.1700488328933716,0.31381112337112427,1.0673003196716309,1.4269200563430786,-0.6965493559837341,-0.06293346732854843,0.9303022623062134,0.36518537998199463,0.7590547204017639,1.2214230298995972,1.5467933416366577,1.2899221181869507,1.7009161710739136,0.913177490234375,1.7522904872894287,1.6837913990020752,1.6666666269302368,1.7351657152175903,1.7351657152175903,1.906413197517395,1.9406627416610718,1.9749122858047485,1.9749122858047485,1.9920369386672974,1.8207894563674927,1.7009161710739136,1.4954191446304321,0.5021833777427673,-0.26843053102493286,0.45080915093421936,1.4269200563430786,1.4782943725585938,1.563918113708496,1.3926706314086914,1.2727973461151123,0.416559636592865,1.033050775527954,1.375545859336853,1.4611696004867554,1.4097954034805298,1.4097954034805298,1.3926706314086914,1.6324172019958496,1.375545859336853,1.9749122858047485,1.8892884254455566,1.8207894563674927,1.8036646842956543,1.7009161710739136,1.5125439167022705,0.5878071784973145,-0.4739275574684143,-0.6451750993728638,-0.08005822449922562,0.416559636592865,0.03981505334377289,-0.8506721258163452,-0.9020463824272156,-0.5253018140792847,-0.5253018140792847],[-0.4739275574684143,0.9645517468452454,-0.9362959265708923,-1.809658408164978,1.1700488328933716,-0.9020463824272156,1.324171543121338,1.2385478019714355,1.2385478019714355,1.2727973461151123,1.2214230298995972,1.324171543121338,1.101549744606018,1.0844250917434692,0.6391814351081848,1.7351657152175903,1.307046890258789,1.2042982578277588,1.3412963151931763,0.31381112337112427,1.0673003196716309,1.324171543121338,0.6905556917190552,1.18717360496521,0.9816765189170837,1.2042982578277588,1.0844250917434692,1.2214230298995972,1.0673003196716309,1.1186745166778564,1.0159260034561157,0.9303022623062134,0.913177490234375,0.6734309196472168,0.2795616090297699,-0.3883037865161896,-0.7650483846664429,-1.3986642360687256,-1.6384108066558838,-2.01515531539917,-1.998030662536621,-2.1179039478302,-1.946656346321106,-2.1179039478302,-2.1179039478302,-2.1179039478302,-1.7240345478057861,-1.4842880964279175,-0.6794245839118958,0.34806060791015625,0.9303022623062134,1.1186745166778564,1.255672574043274,1.563918113708496,0.9474270343780518,1.0673003196716309,1.0844250917434692,0.8618032336235046,1.0159260034561157,0.6734309196472168,-0.30268001556396484,-1.004794955253601,-0.40542855858802795,0.10831406712532043,-1.0904186964035034,-1.8952821493148804,-0.14855724573135376,0.31381112337112427,-0.0971829816699028,0.21106259524822235,0.09118931740522385,0.2795616090297699,0.6220566630363464,-0.26843053102493286,-0.42255330085754395,0.2966863512992859,-0.3711790442466736,0.6391814351081848,-0.6451750993728638,-0.5253018140792847,-0.2513057589530945,0.6905556917190552,0.8446784615516663,0.10831406712532043,-0.04580871760845184,0.8618032336235046,0.9816765189170837,0.22818733751773834,1.324171543121338,1.6666666269302368,1.5467933416366577,1.5125439167022705,-1.2102919816970825,-1.7411593198776245,-0.8335474133491516,0.416559636592865,0.24531209468841553,-0.5253018140792847,-0.7136741280555725,-1.7240345478057861,-1.604161262512207,-1.9637811183929443,-1.3472900390625,-0.9534206986427307,-1.4842880964279175,0.12543882429599762,-1.2616662979125977,-1.1075434684753418,-1.1075434684753418,-0.7479236125946045,-0.42255330085754395,-0.3711790442466736,-0.5253018140792847,-0.3711790442466736,-0.3711790442466736,-0.4910523295402527,-0.3883037865161896,-0.3369295299053192,-0.3883037865161896,1.2385478019714355,-0.576676070690155,0.22818733751773834,1.0501755475997925,0.6220566630363464,-0.6109256148338318,-0.3198047876358032,0.1596883237361908,0.433684378862381,0.03981505334377289,-0.028683962300419807,0.5706824064254761,0.7761794924736023,0.7933042049407959,0.6049319505691528,0.7761794924736023,0.7419299483299255,1.255672574043274,0.9303022623062134,1.375545859336853,1.786539912223816,0.5364329218864441,0.8275537490844727,0.36518537998199463,-0.08005822449922562,0.9816765189170837,0.46793389320373535,0.24531209468841553,-0.028683962300419807,-0.43967804312705994,-0.6965493559837341,-0.11430773138999939,-0.3540542721748352,0.7761794924736023,-0.26843053102493286,-1.3301652669906616,-1.5870366096496582,-1.0561691522598267,-0.9020463824272156,-0.6109256148338318,-0.3369295299053192,1.0844250917434692,1.1357992887496948,0.7590547204017639,0.8618032336235046,0.33093586564064026,0.12543882429599762,1.5125439167022705,0.7248051762580872,-0.40542855858802795,-0.5081770420074463,0.022690298035740852,0.6220566630363464,1.324171543121338,0.5706824064254761,1.2042982578277588,0.5878071784973145,0.9988012909889221,1.1357992887496948,1.5125439167022705,1.444044828414917,2.1461598873138428,1.837914228439331,1.7009161710739136,2.0605359077453613,1.9406627416610718,2.0262866020202637,2.0605359077453613,2.0262866020202637,2.094785451889038,1.7009161710739136,1.3412963151931763,0.22818733751773834,-0.6109256148338318,0.5364329218864441,1.307046890258789,1.6495418548583984,1.5467933416366577,1.3584210872650146,1.2727973461151123,0.9303022623062134,1.1529240608215332,1.2727973461151123,1.2214230298995972,1.5981676578521729,1.7694151401519775,1.444044828414917,1.718040943145752,1.7694151401519775,1.9749122858047485,2.0605359077453613,1.9235379695892334,1.906413197517395,1.906413197517395,1.7009161710739136,1.444044828414917,0.399434894323349,-0.5595513582229614,-0.5253018140792847,0.03981505334377289,0.33093586564064026,0.7419299483299255,0.6220566630363464,0.056939806789159775,-0.04580871760845184],[-0.3883037865161896,1.1700488328933716,-1.1417930126190186,-1.9637811183929443,1.3584210872650146,-0.7136741280555725,1.3926706314086914,1.307046890258789,1.255672574043274,1.324171543121338,1.2899221181869507,1.1529240608215332,1.1700488328933716,0.9816765189170837,0.8618032336235046,1.2385478019714355,1.4097954034805298,1.1186745166778564,1.0159260034561157,0.9988012909889221,1.033050775527954,0.6563062071800232,0.8275537490844727,0.9645517468452454,1.101549744606018,0.8446784615516663,0.8960527181625366,0.9474270343780518,1.0159260034561157,0.5706824064254761,-0.16568198800086975,-0.7650483846664429,-0.6280503273010254,-1.5185375213623047,-1.7240345478057861,-1.9809058904647827,-2.1179039478302,-1.998030662536621,-1.946656346321106,-2.032280206680298,-2.0494048595428467,-1.8439078330993652,-1.7754088640213013,-1.3130404949188232,-1.1931672096252441,-1.0219197273254395,-0.6965493559837341,0.22818733751773834,0.22818733751773834,0.9303022623062134,0.8446784615516663,0.7761794924736023,1.1529240608215332,1.255672574043274,1.4097954034805298,1.375545859336853,1.307046890258789,1.4954191446304321,0.913177490234375,0.6563062071800232,0.433684378862381,-0.14855724573135376,-1.1589176654815674,-0.7479236125946045,-0.5595513582229614,-2.01515531539917,-1.1931672096252441,-0.919171154499054,-1.2616662979125977,-0.9876701831817627,-0.04580871760845184,0.6563062071800232,0.2795616090297699,0.416559636592865,-1.467163324356079,-1.2445415258407593,0.6220566630363464,0.45080915093421936,0.6563062071800232,-0.04580871760845184,0.6220566630363464,0.6905556917190552,0.1425635814666748,0.09118931740522385,-0.2170562595129013,1.1357992887496948,0.5535576939582825,-0.6965493559837341,1.2727973461151123,1.255672574043274,1.307046890258789,1.2385478019714355,-0.8164226412773132,-1.535662293434143,-0.9020463824272156,1.2214230298995972,0.005565545056015253,-0.9362959265708923,-1.3472900390625,-1.4329137802124023,-1.6555355787277222,-1.7411593198776245,-1.3815394639968872,-0.6622998714447021,-1.4329137802124023,-0.3540542721748352,-1.5014127492904663,-0.7992978692054749,-0.6965493559837341,-0.5595513582229614,-0.4910523295402527,-0.43967804312705994,-0.3711790442466736,-0.30268001556396484,-0.30268001556396484,-0.16568198800086975,-0.2513057589530945,-0.542426586151123,-0.8164226412773132,1.1529240608215332,0.22818733751773834,-0.2513057589530945,0.8446784615516663,1.2727973461151123,0.31381112337112427,0.399434894323349,-0.14855724573135376,0.1596883237361908,0.6905556917190552,0.022690298035740852,0.6905556917190552,0.6734309196472168,0.878928005695343,0.21106259524822235,0.5021833777427673,1.2214230298995972,0.5535576939582825,1.2042982578277588,0.7248051762580872,1.837914228439331,1.1529240608215332,0.913177490234375,1.2042982578277588,0.17681308090686798,-0.3198047876358032,0.8275537490844727,0.416559636592865,0.5878071784973145,0.878928005695343,1.3412963151931763,1.033050775527954,0.5706824064254761,-0.6109256148338318,0.8446784615516663,1.444044828414917,-0.19993150234222412,0.46793389320373535,-0.6622998714447021,-1.0904186964035034,-1.4329137802124023,0.07406456023454666,0.6049319505691528,0.5535576939582825,0.6391814351081848,0.5021833777427673,0.8275537490844727,0.7076804637908936,0.21106259524822235,0.3823101222515106,-0.14855724573135376,0.9474270343780518,1.0673003196716309,0.33093586564064026,0.8618032336235046,1.563918113708496,0.7933042049407959,1.0844250917434692,1.5125439167022705,1.8721636533737183,1.6495418548583984,1.7009161710739136,1.307046890258789,1.8036646842956543,1.8721636533737183,1.9920369386672974,1.9920369386672974,2.0434112548828125,2.0605359077453613,1.8892884254455566,1.5296686887741089,1.3926706314086914,0.399434894323349,-0.04580871760845184,0.5535576939582825,1.444044828414917,1.5981676578521729,1.7522904872894287,0.9988012909889221,1.2385478019714355,0.9645517468452454,1.2899221181869507,1.4097954034805298,1.375545859336853,1.2727973461151123,1.1700488328933716,1.5467933416366577,1.4954191446304321,1.8207894563674927,1.8892884254455566,2.0605359077453613,1.9577875137329102,1.906413197517395,1.837914228439331,2.0262866020202637,1.6837913990020752,1.1700488328933716,0.6563062071800232,-0.4739275574684143,-0.6280503273010254,-0.2513057589530945,0.48505866527557373,0.8960527181625366,0.6905556917190552,0.2624368667602539],[-0.11430773138999939,1.2385478019714355,-1.6212860345840454,-1.6384108066558838,1.0673003196716309,-0.7307988405227661,1.2899221181869507,1.2214230298995972,1.375545859336853,1.307046890258789,1.2214230298995972,1.18717360496521,1.2899221181869507,0.9816765189170837,0.8618032336235046,0.9645517468452454,1.4269200563430786,1.307046890258789,1.2385478019714355,0.9474270343780518,1.1700488328933716,0.9816765189170837,0.7248051762580872,1.0673003196716309,0.7248051762580872,0.5535576939582825,0.056939806789159775,-0.6109256148338318,-1.1760424375534058,-1.6212860345840454,-1.7754088640213013,-1.998030662536621,-1.9295316934585571,-1.9295316934585571,-1.7925336360931396,-1.878157377243042,-1.689785122871399,-1.5527870655059814,-1.1760424375534058,-1.0219197273254395,-0.919171154499054,-0.884921669960022,-0.9705454111099243,-0.7650483846664429,-0.7479236125946045,-0.11430773138999939,0.36518537998199463,0.7076804637908936,1.0501755475997925,1.2727973461151123,1.255672574043274,1.2214230298995972,0.8960527181625366,1.2214230298995972,1.1357992887496948,1.6495418548583984,1.375545859336853,1.375545859336853,1.101549744606018,0.12543882429599762,0.6563062071800232,0.6049319505691528,-1.2616662979125977,-1.8267830610275269,-1.3301652669906616,-1.1589176654815674,-2.1007792949676514,-1.2616662979125977,-1.4329137802124023,-2.0836544036865234,-0.7307988405227661,0.005565545056015253,0.2795616090297699,-0.6965493559837341,-0.7650483846664429,-1.1589176654815674,-1.5870366096496582,0.12543882429599762,-0.2513057589530945,-0.2170562595129013,-0.6451750993728638,-0.2341810017824173,0.399434894323349,-0.16568198800086975,0.19393783807754517,0.9474270343780518,0.7933042049407959,-0.04580871760845184,1.1529240608215332,0.7590547204017639,0.7590547204017639,0.3823101222515106,-0.6109256148338318,-0.7479236125946045,1.255672574043274,1.7351657152175903,-0.3198047876358032,-1.0561691522598267,-1.8610326051712036,-1.467163324356079,-2.1179039478302,-1.9637811183929443,-1.5527870655059814,-0.4568028151988983,-1.1246682405471802,-0.9705454111099243,-0.7479236125946045,-0.5081770420074463,-0.4568028151988983,-0.5595513582229614,-0.28555527329444885,-0.3540542721748352,-0.2341810017824173,-0.2341810017824173,-0.18280674517154694,-0.3369295299053192,-0.2513057589530945,-0.2170562595129013,-0.6965493559837341,0.7933042049407959,0.6391814351081848,0.8446784615516663,1.1529240608215332,-0.7821731567382812,-0.7307988405227661,-0.2170562595129013,0.5364329218864441,0.2624368667602539,0.7076804637908936,0.9474270343780518,0.6734309196472168,1.0501755475997925,1.0159260034561157,0.48505866527557373,-0.2341810017824173,0.2624368667602539,0.878928005695343,1.444044828414917,0.8104289770126343,1.101549744606018,1.2042982578277588,1.4611696004867554,0.7419299483299255,0.5706824064254761,0.6734309196472168,0.6049319505691528,0.6734309196472168,1.0673003196716309,1.563918113708496,1.101549744606018,0.7590547204017639,1.6152924299240112,0.7076804637908936,0.07406456023454666,0.416559636592865,0.8446784615516663,-0.06293346732854843,-0.5253018140792847,0.2795616090297699,-0.028683962300419807,-0.28555527329444885,0.2795616090297699,1.255672574043274,0.7761794924736023,1.375545859336853,-0.14855724573135376,1.1357992887496948,0.022690298035740852,-0.5081770420074463,-0.028683962300419807,0.5193081498146057,0.6905556917190552,-0.028683962300419807,1.8892884254455566,0.6905556917190552,0.8960527181625366,1.563918113708496,1.7694151401519775,1.6666666269302368,1.9235379695892334,2.094785451889038,1.6666666269302368,1.6324172019958496,2.0262866020202637,2.1975340843200684,2.0091617107391357,1.9749122858047485,1.9749122858047485,1.9749122858047485,1.3926706314086914,1.2042982578277588,0.6563062071800232,-0.19993150234222412,0.7076804637908936,1.6152924299240112,1.7009161710739136,1.5296686887741089,1.1529240608215332,0.8446784615516663,0.5364329218864441,1.2899221181869507,1.2214230298995972,1.2727973461151123,1.033050775527954,1.4097954034805298,1.3584210872650146,1.324171543121338,1.444044828414917,2.0262866020202637,1.9235379695892334,2.0605359077453613,2.0262866020202637,1.8550390005111694,1.9920369386672974,1.8721636533737183,1.8721636533737183,1.6837913990020752,1.4782943725585938,0.5193081498146057,-0.7136741280555725,-0.3883037865161896,0.07406456023454666,0.878928005695343,0.9988012909889221],[-0.19993150234222412,1.1357992887496948,-1.6212860345840454,-1.3986642360687256,1.101549744606018,-0.6794245839118958,1.6666666269302368,1.4954191446304321,1.375545859336853,1.4097954034805298,1.4611696004867554,1.4782943725585938,1.444044828414917,1.2899221181869507,1.4611696004867554,0.8104289770126343,1.0673003196716309,0.7419299483299255,0.8960527181625366,0.6734309196472168,0.3823101222515106,-0.01155920885503292,-0.01155920885503292,-1.0390443801879883,-1.5185375213623047,-1.4842880964279175,-1.689785122871399,-1.878157377243042,-1.7925336360931396,-1.6555355787277222,-1.5527870655059814,-1.3986642360687256,-1.2445415258407593,-0.9876701831817627,-0.8335474133491516,-0.5081770420074463,-0.6622998714447021,-0.6794245839118958,-0.4739275574684143,-0.2513057589530945,-0.5081770420074463,-0.16568198800086975,-0.28555527329444885,0.1596883237361908,-0.3540542721748352,-0.3540542721748352,0.34806060791015625,0.9988012909889221,0.9988012909889221,1.1529240608215332,1.2214230298995972,1.2899221181869507,1.444044828414917,1.2214230298995972,1.375545859336853,1.18717360496521,1.2042982578277588,1.1529240608215332,1.2042982578277588,0.8618032336235046,0.2795616090297699,0.09118931740522385,-1.1931672096252441,-1.5185375213623047,-1.809658408164978,-1.1931672096252441,-1.9295316934585571,-1.9809058904647827,-1.7754088640213013,-1.689785122871399,-1.604161262512207,-1.758284091949463,-1.5699118375778198,-0.5938008427619934,-0.576676070690155,-0.11430773138999939,-0.28555527329444885,0.24531209468841553,0.399434894323349,0.9474270343780518,0.22818733751773834,0.3823101222515106,-0.884921669960022,-0.2513057589530945,-0.6451750993728638,1.0501755475997925,0.6563062071800232,0.07406456023454666,0.9816765189170837,0.6220566630363464,-0.04580871760845184,-0.01155920885503292,-0.9020463824272156,-1.946656346321106,1.718040943145752,0.2795616090297699,0.1596883237361908,-1.3130404949188232,-1.3815394639968872,-1.8439078330993652,-1.9637811183929443,-1.7754088640213013,-1.2959157228469849,-0.5253018140792847,-1.227416753768921,-0.542426586151123,-0.4739275574684143,-0.42255330085754395,-0.40542855858802795,-0.28555527329444885,-0.2170562595129013,-0.13143248856067657,-0.19993150234222412,-0.3540542721748352,-0.06293346732854843,-0.13143248856067657,-0.3711790442466736,-0.4739275574684143,-0.8677968978881836,1.255672574043274,-0.26843053102493286,-0.576676070690155,1.307046890258789,0.46793389320373535,-0.5081770420074463,0.5706824064254761,0.416559636592865,-0.08005822449922562,-0.08005822449922562,1.0159260034561157,0.22818733751773834,0.7761794924736023,0.9645517468452454,0.6220566630363464,0.7248051762580872,-0.06293346732854843,0.5535576939582825,1.4097954034805298,1.5981676578521729,0.5193081498146057,1.1186745166778564,1.9406627416610718,1.3584210872650146,1.033050775527954,0.7248051762580872,0.7076804637908936,1.18717360496521,1.2899221181869507,0.913177490234375,1.5125439167022705,0.3823101222515106,0.8618032336235046,1.18717360496521,0.9988012909889221,0.7761794924736023,-0.16568198800086975,0.7076804637908936,-0.18280674517154694,0.17681308090686798,-0.028683962300419807,0.09118931740522385,0.5535576939582825,1.0501755475997925,0.7248051762580872,1.444044828414917,1.3412963151931763,1.255672574043274,-0.26843053102493286,-0.06293346732854843,-0.5938008427619934,0.056939806789159775,-0.40542855858802795,0.5535576939582825,0.6905556917190552,-0.2513057589530945,0.5193081498146057,1.324171543121338,1.0673003196716309,1.7009161710739136,1.8036646842956543,2.094785451889038,1.906413197517395,1.8892884254455566,1.9235379695892334,2.0262866020202637,2.0091617107391357,2.111910343170166,2.0605359077453613,1.906413197517395,1.6324172019958496,1.307046890258789,0.8104289770126343,0.5706824064254761,0.7761794924736023,1.718040943145752,1.718040943145752,1.3412963151931763,1.0673003196716309,0.46793389320373535,0.2795616090297699,1.0501755475997925,0.8446784615516663,0.878928005695343,1.2214230298995972,1.2385478019714355,1.2727973461151123,1.1700488328933716,1.307046890258789,1.563918113708496,1.8550390005111694,1.8721636533737183,1.9406627416610718,1.9749122858047485,2.0605359077453613,1.9577875137329102,2.0605359077453613,2.111910343170166,1.7694151401519775,1.5467933416366577,1.033050775527954,0.8618032336235046,-0.26843053102493286,-0.08005822449922562,0.399434894323349],[-0.26843053102493286,0.9474270343780518,-1.9124069213867188,-0.8677968978881836,0.8104289770126343,-0.2341810017824173,1.563918113708496,1.5467933416366577,1.4954191446304321,1.4611696004867554,1.4954191446304321,1.444044828414917,1.444044828414917,1.4097954034805298,1.2727973461151123,1.1186745166778564,1.4097954034805298,1.0673003196716309,0.416559636592865,-0.919171154499054,-1.3130404949188232,-1.3986642360687256,-1.2445415258407593,-1.415789008140564,-1.5699118375778198,-1.1931672096252441,-0.8677968978881836,-0.8677968978881836,-0.7136741280555725,-0.30268001556396484,-0.28555527329444885,-0.18280674517154694,-0.13143248856067657,0.12543882429599762,0.2624368667602539,0.2966863512992859,0.5535576939582825,0.3823101222515106,0.399434894323349,0.2624368667602539,0.5535576939582825,0.5364329218864441,0.7419299483299255,0.33093586564064026,0.45080915093421936,-0.11430773138999939,-0.04580871760845184,1.101549744606018,1.2385478019714355,0.9303022623062134,0.6220566630363464,1.1529240608215332,1.5810428857803345,1.3926706314086914,1.5981676578521729,1.0159260034561157,1.18717360496521,0.8275537490844727,1.1700488328933716,0.6220566630363464,0.3823101222515106,0.056939806789159775,-1.1246682405471802,-1.689785122871399,-1.946656346321106,-1.5185375213623047,-1.689785122871399,-2.01515531539917,-1.4500385522842407,-1.1931672096252441,-0.6622998714447021,-0.3198047876358032,-0.5938008427619934,-1.3815394639968872,-1.3472900390625,-0.7307988405227661,-0.576676070690155,0.056939806789159775,-1.5527870655059814,-0.576676070690155,0.19393783807754517,0.5535576939582825,-0.9534206986427307,-0.4568028151988983,-0.2170562595129013,0.2624368667602539,0.399434894323349,-0.6622998714447021,0.21106259524822235,0.8104289770126343,0.8275537490844727,-1.2959157228469849,-1.0219197273254395,-2.0836544036865234,0.5021833777427673,0.5021833777427673,-0.14855724573135376,-1.4500385522842407,-2.0494048595428467,-1.7069098949432373,-1.998030662536621,-1.3472900390625,-1.2102919816970825,-0.5938008427619934,-0.4568028151988983,-0.42255330085754395,-0.2513057589530945,-0.42255330085754395,-0.2170562595129013,-0.3711790442466736,-0.3883037865161896,-0.30268001556396484,-0.19993150234222412,-0.13143248856067657,-0.04580871760845184,-0.3369295299053192,-0.2341810017824173,-0.3198047876358032,-0.19993150234222412,1.033050775527954,0.8104289770126343,0.8104289770126343,1.033050775527954,1.2385478019714355,1.2214230298995972,-0.11430773138999939,0.5878071784973145,-0.06293346732854843,0.12543882429599762,0.5878071784973145,0.2966863512992859,0.399434894323349,1.18717360496521,0.6220566630363464,0.7419299483299255,0.19393783807754517,1.0501755475997925,1.3926706314086914,1.9749122858047485,1.2899221181869507,1.2042982578277588,1.375545859336853,1.8036646842956543,1.2214230298995972,1.2727973461151123,1.2214230298995972,1.6324172019958496,1.1186745166778564,1.6666666269302368,1.6837913990020752,0.9303022623062134,1.4611696004867554,0.8618032336235046,0.8960527181625366,1.3584210872650146,1.2899221181869507,0.6220566630363464,0.36518537998199463,0.8275537490844727,0.2795616090297699,0.46793389320373535,-0.40542855858802795,1.3584210872650146,0.5706824064254761,0.6734309196472168,1.307046890258789,-0.19993150234222412,-0.11430773138999939,0.3823101222515106,-0.5253018140792847,-0.2341810017824173,-0.19993150234222412,0.878928005695343,1.375545859336853,0.34806060791015625,0.878928005695343,2.111910343170166,1.255672574043274,1.7694151401519775,1.9920369386672974,1.786539912223816,1.9406627416610718,1.9406627416610718,2.0605359077453613,1.9406627416610718,2.0776607990264893,2.0605359077453613,2.0776607990264893,1.9406627416610718,1.6324172019958496,1.375545859336853,0.5878071784973145,0.45080915093421936,0.6220566630363464,1.4954191446304321,1.6152924299240112,1.3926706314086914,0.7248051762580872,0.6049319505691528,0.19393783807754517,1.1357992887496948,0.48505866527557373,0.6391814351081848,0.8446784615516663,0.9988012909889221,1.255672574043274,1.101549744606018,1.2727973461151123,1.444044828414917,1.4611696004867554,1.718040943145752,1.8721636533737183,1.9406627416610718,1.9235379695892334,2.0262866020202637,2.0091617107391357,2.1461598873138428,1.8207894563674927,2.111910343170166,1.8036646842956543,1.1529240608215332,1.444044828414917,-0.30268001556396484,0.022690298035740852],[-0.26843053102493286,0.8104289770126343,-1.9124069213867188,-0.43967804312705994,0.8275537490844727,0.022690298035740852,1.5810428857803345,1.563918113708496,1.4611696004867554,1.4782943725585938,1.3926706314086914,1.2727973461151123,1.3412963151931763,1.2899221181869507,1.255672574043274,1.4954191446304321,1.255672574043274,0.9988012909889221,0.6905556917190552,1.0159260034561157,0.07406456023454666,-0.2513057589530945,-0.26843053102493286,0.19393783807754517,-0.0971829816699028,-0.14855724573135376,0.022690298035740852,0.36518537998199463,0.46793389320373535,0.5364329218864441,0.9645517468452454,1.0159260034561157,0.9303022623062134,0.878928005695343,0.878928005695343,1.1529240608215332,0.8446784615516663,0.913177490234375,0.913177490234375,0.7590547204017639,0.7590547204017639,0.34806060791015625,0.5878071784973145,0.878928005695343,1.0844250917434692,1.324171543121338,1.307046890258789,1.1186745166778564,1.5981676578521729,1.324171543121338,0.19393783807754517,0.45080915093421936,1.5467933416366577,1.375545859336853,1.7009161710739136,1.3926706314086914,0.9474270343780518,0.6391814351081848,1.2042982578277588,1.0159260034561157,-0.08005822449922562,0.22818733751773834,-0.7650483846664429,-1.8610326051712036,-1.9124069213867188,-2.0836544036865234,-1.6726603507995605,-1.9637811183929443,-1.7411593198776245,-1.5699118375778198,-1.1417930126190186,-0.4910523295402527,-0.576676070690155,-1.3986642360687256,-1.3301652669906616,-0.26843053102493286,-0.18280674517154694,-0.5938008427619934,-0.8335474133491516,-1.2959157228469849,-1.1246682405471802,-0.4910523295402527,-0.6109256148338318,-1.7925336360931396,-0.40542855858802795,0.17681308090686798,0.33093586564064026,-0.30268001556396484,-0.26843053102493286,-1.004794955253601,-0.11430773138999939,-1.8952821493148804,-1.1760424375534058,-1.467163324356079,0.33093586564064026,-0.0971829816699028,-1.073293924331665,-0.9020463824272156,-1.7411593198776245,-0.30268001556396484,-1.7069098949432373,-1.3815394639968872,-1.0390443801879883,-0.3883037865161896,-0.5938008427619934,-0.5081770420074463,-0.5081770420074463,-0.2170562595129013,-0.30268001556396484,-0.26843053102493286,-0.16568198800086975,-0.2513057589530945,-0.3711790442466736,-0.14855724573135376,-0.30268001556396484,0.33093586564064026,0.7076804637908936,0.7419299483299255,0.22818733751773834,1.1700488328933716,0.9303022623062134,1.1186745166778564,1.033050775527954,-0.3883037865161896,0.45080915093421936,-0.2170562595129013,0.399434894323349,0.12543882429599762,-0.2170562595129013,0.416559636592865,0.2795616090297699,0.9645517468452454,0.7590547204017639,0.7076804637908936,0.7248051762580872,0.6220566630363464,0.8446784615516663,1.101549744606018,1.3412963151931763,1.9920369386672974,1.18717360496521,0.7761794924736023,1.6495418548583984,1.6666666269302368,1.1186745166778564,1.0673003196716309,1.2727973461151123,1.375545859336853,1.5125439167022705,2.111910343170166,1.324171543121338,0.913177490234375,1.1529240608215332,0.913177490234375,0.6905556917190552,0.8618032336235046,0.19393783807754517,1.255672574043274,0.6563062071800232,1.324171543121338,-0.08005822449922562,-0.8506721258163452,1.1700488328933716,0.10831406712532043,0.5535576939582825,-0.3540542721748352,0.9303022623062134,-0.01155920885503292,-0.3711790442466736,-0.7650483846664429,-0.9534206986427307,-0.5938008427619934,0.6391814351081848,1.18717360496521,-0.2341810017824173,0.33093586564064026,0.6734309196472168,1.6324172019958496,1.2727973461151123,1.9235379695892334,1.9749122858047485,1.906413197517395,1.9749122858047485,2.111910343170166,1.9577875137329102,2.0776607990264893,2.0776607990264893,2.094785451889038,1.9749122858047485,1.6324172019958496,1.1186745166778564,0.21106259524822235,0.022690298035740852,0.7933042049407959,1.5467933416366577,1.4269200563430786,1.4097954034805298,0.31381112337112427,0.7590547204017639,0.33093586564064026,0.056939806789159775,0.056939806789159775,0.31381112337112427,0.022690298035740852,0.7761794924736023,1.1529240608215332,1.3584210872650146,0.9303022623062134,1.324171543121338,1.4782943725585938,1.6837913990020752,1.718040943145752,1.8036646842956543,2.0091617107391357,2.0262866020202637,1.9406627416610718,1.8550390005111694,1.9406627416610718,1.8721636533737183,1.8550390005111694,1.6324172019958496,1.5467933416366577,0.7076804637908936,-0.5081770420074463],[-0.3369295299053192,0.34806060791015625,-1.9124069213867188,0.09118931740522385,0.5193081498146057,0.5535576939582825,1.5810428857803345,1.5296686887741089,1.3926706314086914,1.2214230298995972,1.2214230298995972,1.18717360496521,1.18717360496521,1.2385478019714355,1.101549744606018,1.1357992887496948,1.1357992887496948,1.0673003196716309,1.0844250917434692,0.8618032336235046,0.8960527181625366,0.9816765189170837,1.033050775527954,1.1186745166778564,1.3584210872650146,1.2042982578277588,1.2727973461151123,1.307046890258789,1.3412963151931763,1.444044828414917,1.2899221181869507,1.1700488328933716,1.324171543121338,1.3926706314086914,1.1357992887496948,1.2385478019714355,1.1186745166778564,1.033050775527954,0.8275537490844727,0.8104289770126343,0.8446784615516663,0.21106259524822235,0.433684378862381,1.101549744606018,1.255672574043274,1.2727973461151123,1.5125439167022705,1.906413197517395,1.6837913990020752,1.6666666269302368,1.1357992887496948,0.399434894323349,0.5878071784973145,1.1700488328933716,1.3926706314086914,1.6152924299240112,1.6837913990020752,0.46793389320373535,0.9474270343780518,0.6905556917190552,-0.3198047876358032,-0.40542855858802795,-0.40542855858802795,-1.809658408164978,-1.689785122871399,-2.1179039478302,-1.9124069213867188,-1.946656346321106,-2.0665297508239746,-1.689785122871399,-1.9124069213867188,-1.7925336360931396,-0.8506721258163452,-0.06293346732854843,0.34806060791015625,-0.0971829816699028,-1.3301652669906616,-1.5699118375778198,-0.40542855858802795,-0.11430773138999939,-1.1075434684753418,-1.535662293434143,-1.3301652669906616,-1.3986642360687256,-1.073293924331665,-0.6622998714447021,0.17681308090686798,-0.6109256148338318,-0.3883037865161896,-0.8164226412773132,-1.2959157228469849,-1.8952821493148804,-0.6451750993728638,-1.8267830610275269,-0.5595513582229614,0.09118931740522385,-1.3815394639968872,-0.6280503273010254,-0.14855724573135376,-1.7925336360931396,-1.5870366096496582,-1.1417930126190186,-0.7992978692054749,-0.5938008427619934,-0.5253018140792847,-0.6109256148338318,-0.19993150234222412,-0.3198047876358032,-0.16568198800086975,-0.3711790442466736,-0.18280674517154694,-0.01155920885503292,0.31381112337112427,0.878928005695343,1.2042982578277588,0.8275537490844727,1.324171543121338,0.7933042049407959,0.19393783807754517,1.2727973461151123,-0.6280503273010254,-1.2787909507751465,0.5535576939582825,-0.19993150234222412,1.101549744606018,-0.2513057589530945,-0.01155920885503292,0.33093586564064026,-0.06293346732854843,0.6220566630363464,0.022690298035740852,0.7248051762580872,0.416559636592865,0.46793389320373535,0.8446784615516663,0.5878071784973145,0.33093586564064026,1.0673003196716309,1.1186745166778564,1.563918113708496,1.9920369386672974,0.8618032336235046,1.3926706314086914,1.4611696004867554,1.837914228439331,1.9406627416610718,1.4269200563430786,1.8721636533737183,1.4954191446304321,1.6837913990020752,1.6666666269302368,1.18717360496521,1.324171543121338,1.444044828414917,1.3412963151931763,0.8104289770126343,1.1700488328933716,0.1596883237361908,0.9474270343780518,0.416559636592865,0.7761794924736023,1.5810428857803345,1.6324172019958496,0.6905556917190552,0.9645517468452454,1.101549744606018,0.8618032336235046,0.7933042049407959,-0.2513057589530945,-0.7992978692054749,-1.7069098949432373,-0.4910523295402527,0.31381112337112427,1.563918113708496,1.718040943145752,0.022690298035740852,1.1186745166778564,1.0501755475997925,1.718040943145752,1.9406627416610718,2.0262866020202637,1.8550390005111694,2.0605359077453613,2.0605359077453613,2.094785451889038,2.129034996032715,2.0776607990264893,2.0434112548828125,1.9406627416610718,1.6666666269302368,1.0159260034561157,0.24531209468841553,0.7590547204017639,0.9816765189170837,1.1186745166778564,1.3926706314086914,1.1186745166778564,0.1596883237361908,-0.11430773138999939,0.03981505334377289,0.07406456023454666,-0.028683962300419807,0.17681308090686798,-0.13143248856067657,-0.2341810017824173,-0.2341810017824173,-0.2341810017824173,0.10831406712532043,1.0844250917434692,1.4954191446304321,1.375545859336853,1.5467933416366577,2.0434112548828125,1.8892884254455566,1.9577875137329102,1.9235379695892334,2.094785451889038,1.9406627416610718,1.4782943725585938,1.5125439167022705,2.1461598873138428,2.1632845401763916,1.8207894563674927,-0.7307988405227661],[-0.3883037865161896,0.2966863512992859,-2.0665297508239746,0.46793389320373535,0.24531209468841553,1.3412963151931763,1.5810428857803345,1.5296686887741089,1.6324172019958496,1.6495418548583984,1.6495418548583984,1.375545859336853,1.2727973461151123,1.3926706314086914,1.3584210872650146,1.2727973461151123,1.255672574043274,1.255672574043274,1.18717360496521,1.2899221181869507,1.3412963151931763,1.3412963151931763,1.3584210872650146,1.4782943725585938,1.5981676578521729,1.375545859336853,1.3584210872650146,1.3584210872650146,1.4097954034805298,1.4097954034805298,1.4097954034805298,1.255672574043274,1.307046890258789,1.2042982578277588,1.2385478019714355,1.2214230298995972,1.1357992887496948,0.878928005695343,0.6220566630363464,0.5021833777427673,0.19393783807754517,-0.26843053102493286,-0.3198047876358032,-0.04580871760845184,0.5193081498146057,1.1357992887496948,1.307046890258789,1.4611696004867554,1.375545859336853,1.7009161710739136,1.1529240608215332,0.022690298035740852,-0.08005822449922562,0.5364329218864441,0.9816765189170837,1.7694151401519775,1.7522904872894287,0.8275537490844727,0.5193081498146057,1.1700488328933716,0.7933042049407959,-0.0971829816699028,-1.3472900390625,-1.8439078330993652,-2.1007792949676514,-1.9809058904647827,-2.1179039478302,-2.1007792949676514,-2.1179039478302,-1.809658408164978,-1.415789008140564,-1.689785122871399,-0.2170562595129013,-0.2513057589530945,-0.5595513582229614,-1.3301652669906616,-1.5185375213623047,-1.8439078330993652,-1.8952821493148804,-1.2787909507751465,0.22818733751773834,0.09118931740522385,-1.6726603507995605,-0.6794245839118958,-0.42255330085754395,0.5878071784973145,0.36518537998199463,-0.5595513582229614,-0.8335474133491516,0.2966863512992859,0.17681308090686798,-0.01155920885503292,-1.5527870655059814,-1.2616662979125977,-0.5938008427619934,-0.3540542721748352,0.34806060791015625,-0.9534206986427307,-0.6451750993728638,-2.1007792949676514,-1.2445415258407593,-1.1589176654815674,-0.8164226412773132,-0.4910523295402527,-0.4568028151988983,-0.14855724573135376,-0.0971829816699028,-0.30268001556396484,-0.19993150234222412,0.1425635814666748,0.33093586564064026,1.1357992887496948,0.6734309196472168,1.0501755475997925,0.9474270343780518,1.1529240608215332,1.1357992887496948,0.9645517468452454,0.09118931740522385,0.9988012909889221,-0.2170562595129013,1.2727973461151123,0.913177490234375,0.5021833777427673,0.399434894323349,0.07406456023454666,0.33093586564064026,0.3823101222515106,0.6049319505691528,0.433684378862381,0.7419299483299255,0.48505866527557373,0.5706824064254761,0.5364329218864441,0.399434894323349,-0.028683962300419807,0.6391814351081848,0.6734309196472168,0.9988012909889221,1.2385478019714355,1.6666666269302368,1.6666666269302368,1.255672574043274,1.375545859336853,1.563918113708496,1.5467933416366577,1.563918113708496,1.6837913990020752,1.375545859336853,1.7522904872894287,1.8550390005111694,1.101549744606018,1.2899221181869507,1.2727973461151123,1.6666666269302368,0.7419299483299255,0.6391814351081848,1.5467933416366577,0.6734309196472168,0.5706824064254761,1.0159260034561157,1.2385478019714355,1.1357992887496948,1.0673003196716309,1.3926706314086914,1.3584210872650146,0.5193081498146057,0.9816765189170837,-1.809658408164978,-0.9705454111099243,-1.998030662536621,-0.6622998714447021,1.1186745166778564,0.9303022623062134,0.8275537490844727,0.9303022623062134,1.0844250917434692,1.375545859336853,1.6152924299240112,1.9577875137329102,1.9920369386672974,1.8721636533737183,1.8550390005111694,1.9749122858047485,2.0605359077453613,2.129034996032715,2.111910343170166,2.129034996032715,1.8721636533737183,1.5981676578521729,1.307046890258789,0.5878071784973145,0.5364329218864441,0.7761794924736023,1.101549744606018,1.307046890258789,0.6563062071800232,0.005565545056015253,0.6220566630363464,0.5878071784973145,0.5878071784973145,0.8275537490844727,0.19393783807754517,0.5021833777427673,0.34806060791015625,-0.13143248856067657,-0.28555527329444885,-0.3198047876358032,0.7076804637908936,0.5021833777427673,1.1186745166778564,1.2385478019714355,1.4782943725585938,1.8550390005111694,1.6837913990020752,1.7009161710739136,2.094785451889038,1.8721636533737183,1.324171543121338,2.0091617107391357,2.1804091930389404,2.1975340843200684,1.9920369386672974,-0.4739275574684143],[-0.08005822449922562,0.399434894323349,-1.5870366096496582,0.399434894323349,0.5706824064254761,0.9988012909889221,1.6324172019958496,1.7694151401519775,1.7694151401519775,1.5981676578521729,1.4269200563430786,1.718040943145752,1.4954191446304321,1.563918113708496,1.6152924299240112,1.6152924299240112,1.563918113708496,1.5810428857803345,1.5296686887741089,1.3584210872650146,1.324171543121338,1.4097954034805298,1.4269200563430786,1.4954191446304321,1.3584210872650146,1.324171543121338,1.2727973461151123,1.4097954034805298,1.4954191446304321,1.444044828414917,1.4611696004867554,1.5125439167022705,1.3412963151931763,1.2042982578277588,1.2727973461151123,1.0844250917434692,0.9303022623062134,0.7076804637908936,0.6905556917190552,0.7590547204017639,0.2966863512992859,0.6563062071800232,0.7933042049407959,0.21106259524822235,-0.8164226412773132,0.399434894323349,1.0159260034561157,1.5125439167022705,1.4097954034805298,1.5810428857803345,1.2042982578277588,0.9645517468452454,0.19393783807754517,0.2966863512992859,1.0159260034561157,1.3412963151931763,1.2214230298995972,1.324171543121338,-0.3883037865161896,0.8446784615516663,1.0844250917434692,1.2042982578277588,-0.9020463824272156,-1.073293924331665,-2.032280206680298,-1.998030662536621,-1.998030662536621,-2.0836544036865234,-2.0665297508239746,-1.4500385522842407,-0.9362959265708923,-0.7136741280555725,-0.9020463824272156,-0.4910523295402527,-1.227416753768921,-1.7925336360931396,-1.9295316934585571,-1.758284091949463,-0.2513057589530945,-1.004794955253601,-0.2513057589530945,0.022690298035740852,-0.7650483846664429,-1.809658408164978,0.1425635814666748,0.878928005695343,0.17681308090686798,0.07406456023454666,-1.2445415258407593,0.005565545056015253,1.101549744606018,1.18717360496521,-2.01515531539917,-0.6622998714447021,-0.40542855858802795,-0.9362959265708923,-0.4910523295402527,-1.6212860345840454,-2.0494048595428467,-1.689785122871399,-1.1417930126190186,-0.8164226412773132,-0.6280503273010254,-0.3540542721748352,-0.4910523295402527,-0.3198047876358032,0.1596883237361908,0.22818733751773834,0.399434894323349,0.9474270343780518,0.9474270343780518,1.033050775527954,1.4782943725585938,1.307046890258789,1.375545859336853,1.255672574043274,1.563918113708496,1.18717360496521,0.1425635814666748,1.5125439167022705,1.2214230298995972,0.09118931740522385,0.33093586564064026,0.5021833777427673,-0.14855724573135376,0.24531209468841553,0.10831406712532043,-0.28555527329444885,0.7590547204017639,0.005565545056015253,0.5021833777427673,0.9303022623062134,0.416559636592865,0.6220566630363464,0.6049319505691528,0.1425635814666748,0.7076804637908936,0.46793389320373535,1.1186745166778564,1.0159260034561157,1.307046890258789,0.878928005695343,1.18717360496521,1.1700488328933716,1.1529240608215332,1.3584210872650146,1.7694151401519775,1.6495418548583984,1.837914228439331,1.7351657152175903,1.5296686887741089,1.4954191446304321,1.2042982578277588,1.0159260034561157,1.2385478019714355,1.2214230298995972,1.18717360496521,0.8446784615516663,1.2899221181869507,0.36518537998199463,1.033050775527954,1.0673003196716309,0.7590547204017639,0.056939806789159775,0.7076804637908936,0.5364329218864441,-0.13143248856067657,-0.14855724573135376,-1.2102919816970825,-1.2787909507751465,-1.3644148111343384,-0.7479236125946045,0.9816765189170837,0.24531209468841553,0.8104289770126343,1.3412963151931763,0.9816765189170837,1.3412963151931763,1.786539912223816,1.9920369386672974,2.0091617107391357,1.9577875137329102,2.0262866020202637,2.129034996032715,2.1632845401763916,2.1632845401763916,2.094785451889038,2.1632845401763916,1.9235379695892334,1.444044828414917,1.0673003196716309,1.1700488328933716,0.2624368667602539,-0.13143248856067657,0.5021833777427673,0.6391814351081848,0.3823101222515106,0.6220566630363464,0.7933042049407959,0.9303022623062134,0.9816765189170837,0.8618032336235046,0.8275537490844727,0.6563062071800232,0.7076804637908936,0.6049319505691528,0.24531209468841553,0.12543882429599762,-0.40542855858802795,-0.5595513582229614,0.19393783807754517,1.3412963151931763,1.3412963151931763,1.5810428857803345,1.444044828414917,1.3926706314086914,1.9577875137329102,1.8207894563674927,1.7522904872894287,1.837914228439331,2.1804091930389404,2.0776607990264893,1.7522904872894287,0.19393783807754517],[-0.28555527329444885,-0.06293346732854843,-2.0836544036865234,0.056939806789159775,0.8960527181625366,0.7076804637908936,1.6666666269302368,1.563918113708496,1.5467933416366577,1.6324172019958496,1.8721636533737183,1.5125439167022705,1.8207894563674927,1.563918113708496,1.4954191446304321,1.6152924299240112,1.5467933416366577,1.3584210872650146,1.4782943725585938,1.6324172019958496,1.5467933416366577,1.5810428857803345,1.4269200563430786,1.4097954034805298,1.3412963151931763,1.5296686887741089,1.4782943725585938,1.5296686887741089,1.5467933416366577,1.4611696004867554,1.2214230298995972,1.4611696004867554,1.324171543121338,1.3412963151931763,1.2899221181869507,1.2385478019714355,0.7933042049407959,1.2214230298995972,1.2214230298995972,1.1700488328933716,1.255672574043274,0.9816765189170837,1.2385478019714355,1.375545859336853,0.34806060791015625,-1.0904186964035034,-0.04580871760845184,0.7590547204017639,1.18717360496521,1.4611696004867554,1.5981676578521729,1.3584210872650146,0.3823101222515106,0.005565545056015253,1.0501755475997925,1.4269200563430786,0.7590547204017639,1.2385478019714355,0.5878071784973145,0.5193081498146057,0.5364329218864441,1.0844250917434692,0.22818733751773834,-1.227416753768921,-1.946656346321106,-2.1179039478302,-2.1007792949676514,-2.1179039478302,-2.0836544036865234,-2.0665297508239746,-2.1179039478302,-1.758284091949463,-1.2616662979125977,-1.2787909507751465,-1.6726603507995605,-1.7240345478057861,-1.004794955253601,-0.30268001556396484,0.21106259524822235,0.6563062071800232,0.12543882429599762,0.19393783807754517,-0.9020463824272156,-1.9295316934585571,-0.8506721258163452,0.12543882429599762,0.433684378862381,0.03981505334377289,-0.6451750993728638,-0.26843053102493286,0.03981505334377289,1.0844250917434692,-2.1007792949676514,-0.9876701831817627,-0.576676070690155,-1.6555355787277222,-2.0494048595428467,-2.1179039478302,-1.9295316934585571,-1.4500385522842407,-0.7821731567382812,-0.7992978692054749,-0.5938008427619934,-0.43967804312705994,-0.4739275574684143,0.7761794924736023,0.416559636592865,1.2385478019714355,0.7933042049407959,0.913177490234375,0.8618032336235046,1.2214230298995972,1.4269200563430786,1.18717360496521,1.4097954034805298,1.5296686887741089,1.307046890258789,1.0501755475997925,-0.06293346732854843,1.18717360496521,-0.08005822449922562,1.7351657152175903,0.31381112337112427,0.3823101222515106,-0.11430773138999939,0.07406456023454666,-0.6280503273010254,-0.9020463824272156,0.45080915093421936,0.056939806789159775,-0.028683962300419807,0.8446784615516663,0.07406456023454666,0.10831406712532043,0.46793389320373535,0.31381112337112427,0.36518537998199463,0.07406456023454666,0.7248051762580872,0.399434894323349,0.8618032336235046,0.8618032336235046,1.2899221181869507,0.9988012909889221,1.3412963151931763,1.6837913990020752,1.7351657152175903,1.5810428857803345,1.375545859336853,1.2385478019714355,1.4611696004867554,1.7522904872894287,0.7933042049407959,1.307046890258789,1.5296686887741089,1.3584210872650146,1.307046890258789,-0.01155920885503292,0.6220566630363464,0.7248051762580872,1.4954191446304321,1.1357992887496948,0.2624368667602539,0.7419299483299255,0.03981505334377289,0.34806060791015625,0.10831406712532043,0.10831406712532043,-0.16568198800086975,0.022690298035740852,-1.004794955253601,-0.11430773138999939,0.5193081498146057,0.6905556917190552,1.0673003196716309,1.1357992887496948,0.9303022623062134,1.2042982578277588,1.8036646842956543,1.9577875137329102,2.0262866020202637,1.9920369386672974,2.129034996032715,2.1632845401763916,2.1461598873138428,2.129034996032715,2.094785451889038,2.0776607990264893,1.786539912223816,1.5125439167022705,0.9816765189170837,0.22818733751773834,-0.19993150234222412,-0.08005822449922562,0.31381112337112427,0.6563062071800232,0.9474270343780518,1.0159260034561157,0.878928005695343,1.033050775527954,1.1529240608215332,0.9303022623062134,0.8618032336235046,0.913177490234375,0.9988012909889221,1.1357992887496948,0.9303022623062134,0.6391814351081848,0.5706824064254761,0.09118931740522385,-0.6280503273010254,0.399434894323349,1.1186745166778564,1.307046890258789,1.2214230298995972,1.444044828414917,1.5810428857803345,1.8721636533737183,1.9577875137329102,1.563918113708496,2.0776607990264893,2.1632845401763916,0.45080915093421936,0.6220566630363464],[0.31381112337112427,-0.08005822449922562,-1.8952821493148804,-0.5595513582229614,0.8960527181625366,1.1529240608215332,1.6495418548583984,1.7009161710739136,1.6324172019958496,1.6666666269302368,1.5125439167022705,1.718040943145752,1.5296686887741089,1.7351657152175903,1.6666666269302368,1.5125439167022705,1.7351657152175903,1.4954191446304321,1.563918113708496,1.4782943725585938,1.5296686887741089,1.563918113708496,1.6495418548583984,1.4611696004867554,1.4611696004867554,1.6152924299240112,1.5125439167022705,1.3584210872650146,1.5467933416366577,1.5296686887741089,1.4954191446304321,1.444044828414917,1.4097954034805298,1.3926706314086914,1.444044828414917,1.101549744606018,1.255672574043274,1.1357992887496948,1.4097954034805298,1.307046890258789,1.6324172019958496,1.6495418548583984,1.5810428857803345,1.7522904872894287,1.1700488328933716,0.416559636592865,-0.28555527329444885,0.19393783807754517,1.0673003196716309,1.563918113708496,1.375545859336853,1.4269200563430786,0.6391814351081848,-0.19993150234222412,0.5364329218864441,1.2042982578277588,0.7419299483299255,0.9988012909889221,0.1425635814666748,0.03981505334377289,-0.8164226412773132,0.1425635814666748,-0.8164226412773132,-1.2616662979125977,-1.8267830610275269,-1.9637811183929443,-2.1007792949676514,-2.1179039478302,-2.1007792949676514,-2.1007792949676514,-1.8439078330993652,-1.946656346321106,-1.998030662536621,-2.0494048595428467,-2.0836544036865234,-1.689785122871399,-0.6965493559837341,-0.11430773138999939,-0.16568198800086975,0.21106259524822235,0.19393783807754517,-0.40542855858802795,-1.878157377243042,-1.4329137802124023,0.8275537490844727,0.399434894323349,0.33093586564064026,0.5021833777427673,0.433684378862381,-0.9705454111099243,-0.576676070690155,1.2214230298995972,-1.2787909507751465,-1.2787909507751465,-0.8677968978881836,-1.7754088640213013,-2.1179039478302,-1.998030662536621,-1.4500385522842407,-1.3986642360687256,-0.7479236125946045,-0.8164226412773132,-0.5253018140792847,0.5364329218864441,0.17681308090686798,1.1357992887496948,0.7761794924736023,1.1186745166778564,0.8960527181625366,0.9303022623062134,1.2042982578277588,1.1357992887496948,1.2899221181869507,1.4269200563430786,1.307046890258789,1.324171543121338,1.3926706314086914,1.2727973461151123,0.24531209468841553,1.906413197517395,1.324171543121338,0.9303022623062134,-0.028683962300419807,-1.0904186964035034,-0.4910523295402527,-0.06293346732854843,-0.576676070690155,-1.004794955253601,-0.30268001556396484,-0.06293346732854843,0.1596883237361908,0.6391814351081848,0.17681308090686798,0.22818733751773834,-0.06293346732854843,0.433684378862381,0.07406456023454666,-0.2170562595129013,0.33093586564064026,1.1186745166778564,1.9920369386672974,1.4954191446304321,1.2214230298995972,1.0159260034561157,1.1357992887496948,1.033050775527954,1.2899221181869507,1.2385478019714355,1.4782943725585938,1.7009161710739136,1.3926706314086914,1.324171543121338,0.9988012909889221,0.2966863512992859,1.4269200563430786,0.2795616090297699,0.5706824064254761,0.5706824064254761,1.0501755475997925,1.4269200563430786,0.9645517468452454,0.433684378862381,-0.4910523295402527,-0.3883037865161896,-0.3883037865161896,-0.4739275574684143,-0.3198047876358032,-1.809658408164978,-0.42255330085754395,0.24531209468841553,-0.7307988405227661,0.5878071784973145,0.2624368667602539,2.0434112548828125,0.878928005695343,1.101549744606018,1.8036646842956543,1.6324172019958496,1.6837913990020752,1.837914228439331,2.1804091930389404,2.129034996032715,2.1461598873138428,2.111910343170166,2.0776607990264893,2.1632845401763916,2.1461598873138428,2.094785451889038,1.6666666269302368,0.9645517468452454,0.36518537998199463,0.36518537998199463,0.36518537998199463,0.5706824064254761,0.9988012909889221,0.7248051762580872,1.0844250917434692,1.1186745166778564,1.2899221181869507,0.8275537490844727,1.1700488328933716,1.18717360496521,1.0673003196716309,1.0501755475997925,0.913177490234375,1.0159260034561157,0.9988012909889221,0.8275537490844727,0.8104289770126343,0.5535576939582825,0.5193081498146057,0.21106259524822235,-0.42255330085754395,0.22818733751773834,0.9816765189170837,1.3412963151931763,1.7009161710739136,1.8036646842956543,1.8721636533737183,1.7694151401519775,1.6666666269302368,1.255672574043274,1.18717360496521,1.375545859336853],[0.31381112337112427,-0.06293346732854843,-1.3301652669906616,-0.9705454111099243,0.6391814351081848,0.9303022623062134,1.718040943145752,1.6666666269302368,1.718040943145752,1.6666666269302368,1.7009161710739136,1.8036646842956543,1.786539912223816,1.563918113708496,1.4611696004867554,1.5810428857803345,1.5296686887741089,1.563918113708496,1.444044828414917,1.4954191446304321,1.4269200563430786,1.4782943725585938,1.563918113708496,1.5810428857803345,1.5296686887741089,1.563918113708496,1.5467933416366577,1.5810428857803345,1.5125439167022705,1.4954191446304321,1.4269200563430786,1.5296686887741089,1.4097954034805298,1.3926706314086914,1.0673003196716309,0.9474270343780518,0.7419299483299255,0.7933042049407959,1.3412963151931763,1.4782943725585938,1.2214230298995972,1.563918113708496,1.786539912223816,1.5810428857803345,1.5467933416366577,1.18717360496521,0.7419299483299255,0.6563062071800232,1.0844250917434692,1.4097954034805298,1.6666666269302368,1.4782943725585938,1.0159260034561157,-0.2170562595129013,0.7419299483299255,1.1529240608215332,0.9474270343780518,0.6563062071800232,0.8960527181625366,0.33093586564064026,-0.2513057589530945,-0.542426586151123,0.09118931740522385,-1.0561691522598267,-1.415789008140564,-1.946656346321106,-2.1007792949676514,-2.0836544036865234,-2.1179039478302,-2.1179039478302,-1.998030662536621,-1.7754088640213013,-2.01515531539917,-1.5014127492904663,-0.9705454111099243,-1.073293924331665,-0.6451750993728638,-1.6726603507995605,-0.42255330085754395,-0.42255330085754395,-0.08005822449922562,-1.7754088640213013,-2.1179039478302,-0.16568198800086975,0.878928005695343,1.0159260034561157,0.5193081498146057,0.36518537998199463,0.9303022623062134,-0.04580871760845184,-1.5870366096496582,-1.3644148111343384,0.1425635814666748,-0.08005822449922562,-1.535662293434143,-2.0494048595428467,-1.9809058904647827,-1.6212860345840454,-1.3644148111343384,-1.0904186964035034,-0.3369295299053192,0.24531209468841553,0.2966863512992859,0.8104289770126343,0.433684378862381,1.1186745166778564,0.9988012909889221,1.18717360496521,1.0673003196716309,1.2042982578277588,1.3584210872650146,1.4097954034805298,1.307046890258789,1.324171543121338,1.2727973461151123,1.2214230298995972,1.2727973461151123,1.1700488328933716,0.8618032336235046,0.09118931740522385,-0.11430773138999939,-0.8677968978881836,0.913177490234375,0.8104289770126343,-1.004794955253601,-0.42255330085754395,-0.3540542721748352,-0.9534206986427307,-0.8506721258163452,-0.04580871760845184,-0.2513057589530945,0.24531209468841553,0.2795616090297699,0.6391814351081848,0.5021833777427673,0.022690298035740852,0.1425635814666748,0.2966863512992859,0.8960527181625366,1.6324172019958496,1.375545859336853,1.906413197517395,1.1529240608215332,1.0159260034561157,1.0159260034561157,0.9474270343780518,1.0844250917434692,0.48505866527557373,1.1700488328933716,0.5535576939582825,1.0159260034561157,1.4097954034805298,0.7076804637908936,1.3584210872650146,0.6391814351081848,0.31381112337112427,1.0673003196716309,0.31381112337112427,0.6563062071800232,0.2624368667602539,0.03981505334377289,0.10831406712532043,0.34806060791015625,0.22818733751773834,-1.535662293434143,-1.3472900390625,-0.5081770420074463,-0.5081770420074463,-0.19993150234222412,0.5193081498146057,-1.073293924331665,0.7590547204017639,0.48505866527557373,0.8960527181625366,1.4954191446304321,1.255672574043274,1.5125439167022705,1.6495418548583984,1.6837913990020752,1.9749122858047485,1.9920369386672974,1.9577875137329102,2.094785451889038,2.094785451889038,2.1632845401763916,2.1461598873138428,2.1461598873138428,1.9406627416610718,1.5810428857803345,1.2042982578277588,0.8446784615516663,0.5193081498146057,0.5878071784973145,0.7076804637908936,0.878928005695343,1.2042982578277588,1.0501755475997925,1.0673003196716309,1.0159260034561157,1.0844250917434692,1.1186745166778564,1.0844250917434692,1.18717360496521,1.18717360496521,1.0501755475997925,0.9988012909889221,1.1357992887496948,1.033050775527954,1.033050775527954,0.8618032336235046,0.8446784615516663,0.5193081498146057,0.22818733751773834,-0.3369295299053192,0.33093586564064026,1.4269200563430786,1.4611696004867554,1.1357992887496948,1.375545859336853,1.6324172019958496,1.906413197517395,1.9920369386672974,1.307046890258789,1.4097954034805298],[0.7590547204017639,-0.42255330085754395,-1.535662293434143,-0.7307988405227661,-0.08005822449922562,0.9645517468452454,1.6495418548583984,1.7694151401519775,1.786539912223816,1.6495418548583984,1.7351657152175903,1.718040943145752,1.5981676578521729,1.6324172019958496,1.5467933416366577,1.5810428857803345,1.5125439167022705,1.5296686887741089,1.563918113708496,1.563918113708496,1.6324172019958496,1.5467933416366577,1.5125439167022705,1.444044828414917,1.6152924299240112,1.4954191446304321,1.4954191446304321,1.563918113708496,1.444044828414917,1.3412963151931763,1.2899221181869507,1.324171543121338,1.324171543121338,1.0673003196716309,0.913177490234375,0.6220566630363464,0.8618032336235046,0.878928005695343,1.2385478019714355,1.4611696004867554,1.6837913990020752,1.5467933416366577,1.6152924299240112,1.5296686887741089,1.3584210872650146,1.2385478019714355,0.9988012909889221,0.46793389320373535,0.913177490234375,1.1529240608215332,1.2214230298995972,1.5296686887741089,1.2214230298995972,0.8275537490844727,0.07406456023454666,0.6734309196472168,1.18717360496521,0.8275537490844727,0.6563062071800232,0.5706824064254761,0.5193081498146057,0.5706824064254761,0.8960527181625366,-0.01155920885503292,-1.1246682405471802,-1.689785122871399,-2.0836544036865234,-2.0836544036865234,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.1179039478302,-1.5014127492904663,-0.0971829816699028,-0.8164226412773132,-1.3472900390625,-1.004794955253601,-0.4739275574684143,-0.0971829816699028,-0.6794245839118958,-0.8335474133491516,-1.9637811183929443,-2.0836544036865234,-1.0561691522598267,0.9816765189170837,1.0501755475997925,0.9645517468452454,0.6049319505691528,0.8618032336235046,0.46793389320373535,-0.2513057589530945,0.6049319505691528,0.7933042049407959,-2.0836544036865234,-1.7925336360931396,-1.8267830610275269,-1.7754088640213013,-1.2445415258407593,-0.7136741280555725,-0.4739275574684143,0.45080915093421936,0.5878071784973145,0.5535576939582825,0.8104289770126343,0.913177490234375,1.033050775527954,1.2214230298995972,1.1700488328933716,1.1529240608215332,1.101549744606018,1.3412963151931763,1.4097954034805298,1.1700488328933716,1.4269200563430786,1.3926706314086914,1.4097954034805298,1.307046890258789,1.101549744606018,1.0501755475997925,0.3823101222515106,1.4611696004867554,-1.7069098949432373,0.2966863512992859,-0.26843053102493286,-0.4910523295402527,-0.3540542721748352,-1.0390443801879883,-0.6794245839118958,-0.3711790442466736,0.09118931740522385,0.9816765189170837,1.1700488328933716,0.1596883237361908,0.6563062071800232,0.34806060791015625,0.22818733751773834,0.5878071784973145,1.5296686887741089,0.7933042049407959,1.6324172019958496,1.5296686887741089,1.5467933416366577,1.2214230298995972,0.45080915093421936,0.7933042049407959,0.8275537490844727,0.5364329218864441,0.433684378862381,0.6905556917190552,0.9474270343780518,0.6734309196472168,0.7076804637908936,0.6905556917190552,0.10831406712532043,-0.04580871760845184,0.21106259524822235,0.48505866527557373,0.433684378862381,-0.04580871760845184,-0.7650483846664429,-0.5081770420074463,-0.4910523295402527,-0.18280674517154694,-0.6280503273010254,-1.998030662536621,-1.5185375213623047,-2.0836544036865234,-0.7307988405227661,0.9474270343780518,-0.4568028151988983,0.433684378862381,1.4097954034805298,1.324171543121338,1.1357992887496948,0.9474270343780518,1.4782943725585938,1.4611696004867554,1.4097954034805298,2.0091617107391357,1.786539912223816,2.0776607990264893,2.129034996032715,2.1461598873138428,2.094785451889038,2.094785451889038,2.0776607990264893,2.0776607990264893,2.0434112548828125,1.5981676578521729,0.8618032336235046,0.5021833777427673,0.6391814351081848,0.6905556917190552,0.7761794924736023,0.878928005695343,0.878928005695343,1.0844250917434692,0.9474270343780518,1.0673003196716309,0.9988012909889221,1.3584210872650146,1.324171543121338,1.324171543121338,1.0844250917434692,1.033050775527954,1.255672574043274,1.2385478019714355,1.1700488328933716,1.0844250917434692,1.101549744606018,0.8104289770126343,0.9645517468452454,0.5193081498146057,0.5364329218864441,0.19393783807754517,0.5706824064254761,1.0159260034561157,1.3412963151931763,1.0673003196716309,1.5467933416366577,1.8550390005111694,1.8550390005111694,1.4269200563430786,1.2899221181869507],[1.4611696004867554,1.375545859336853,1.324171543121338,0.7076804637908936,1.255672574043274,1.375545859336853,1.307046890258789,1.563918113708496,1.6324172019958496,1.8550390005111694,1.6837913990020752,1.563918113708496,1.3584210872650146,1.5981676578521729,1.2899221181869507,1.4269200563430786,1.4611696004867554,1.2214230298995972,1.6324172019958496,1.375545859336853,1.444044828414917,1.5125439167022705,1.1357992887496948,1.4611696004867554,1.375545859336853,1.2899221181869507,1.324171543121338,1.3412963151931763,1.2727973461151123,1.4097954034805298,1.375545859336853,0.9816765189170837,0.8104289770126343,0.7248051762580872,-0.13143248856067657,-0.26843053102493286,0.5021833777427673,0.46793389320373535,0.6905556917190552,0.6391814351081848,1.1529240608215332,1.18717360496521,1.5125439167022705,1.4611696004867554,1.4611696004867554,0.7248051762580872,0.7248051762580872,0.9474270343780518,1.1700488328933716,1.8550390005111694,1.3926706314086914,1.0673003196716309,1.0844250917434692,0.9645517468452454,0.5021833777427673,0.8618032336235046,1.1700488328933716,1.0673003196716309,0.7590547204017639,-0.11430773138999939,0.2624368667602539,0.17681308090686798,0.8104289770126343,0.7761794924736023,0.2795616090297699,-1.004794955253601,-1.5870366096496582,-2.0494048595428467,-2.032280206680298,-2.1179039478302,-2.1179039478302,-2.1179039478302,-1.6384108066558838,-1.535662293434143,-2.0494048595428467,-1.8610326051712036,-0.7821731567382812,-0.6109256148338318,-0.14855724573135376,-1.1589176654815674,-2.1007792949676514,-2.01515531539917,-2.0665297508239746,-2.0836544036865234,-1.3644148111343384,-0.3540542721748352,0.9474270343780518,0.6563062071800232,0.6905556917190552,-0.4910523295402527,-1.5014127492904663,-1.758284091949463,-2.0494048595428467,-1.3986642360687256,-0.7821731567382812,-0.3198047876358032,-0.2341810017824173,-0.0971829816699028,0.5878071784973145,0.5021833777427673,0.7590547204017639,0.9988012909889221,1.1186745166778564,1.101549744606018,1.1186745166778564,1.2042982578277588,1.255672574043274,1.2385478019714355,1.1357992887496948,1.1529240608215332,1.2214230298995972,1.4782943725585938,1.2042982578277588,1.444044828414917,1.5810428857803345,1.3412963151931763,1.307046890258789,1.1357992887496948,0.33093586564064026,1.786539912223816,-0.2170562595129013,-0.5938008427619934,0.03981505334377289,-0.4910523295402527,-0.4910523295402527,-0.26843053102493286,0.19393783807754517,0.33093586564064026,0.399434894323349,0.8960527181625366,0.7419299483299255,0.913177490234375,0.5706824064254761,0.6905556917190552,1.0844250917434692,0.6563062071800232,1.8036646842956543,0.6734309196472168,0.7076804637908936,0.5021833777427673,0.8960527181625366,1.4611696004867554,0.9988012909889221,0.8618032336235046,2.0776607990264893,1.2899221181869507,0.7933042049407959,0.2624368667602539,0.005565545056015253,0.5193081498146057,-0.04580871760845184,-0.26843053102493286,-0.06293346732854843,-0.19993150234222412,-0.26843053102493286,0.2966863512992859,-0.028683962300419807,-0.6280503273010254,-0.16568198800086975,-0.6451750993728638,-0.5253018140792847,-0.40542855858802795,-0.3369295299053192,0.36518537998199463,-0.6451750993728638,-1.809658408164978,-1.7069098949432373,-0.30268001556396484,0.36518537998199463,0.878928005695343,1.18717360496521,1.7522904872894287,1.3926706314086914,0.9303022623062134,1.0673003196716309,1.255672574043274,1.444044828414917,1.837914228439331,1.3926706314086914,2.0434112548828125,1.9749122858047485,2.111910343170166,2.094785451889038,2.0091617107391357,2.0605359077453613,2.1804091930389404,2.0434112548828125,1.906413197517395,1.2214230298995972,0.7419299483299255,0.7419299483299255,0.6391814351081848,0.8618032336235046,0.7248051762580872,1.0501755475997925,1.1700488328933716,1.1357992887496948,1.0501755475997925,1.0673003196716309,1.2214230298995972,1.1186745166778564,1.0844250917434692,1.2385478019714355,1.324171543121338,1.0844250917434692,1.1529240608215332,1.1529240608215332,1.2385478019714355,1.255672574043274,1.0844250917434692,1.2727973461151123,1.18717360496521,1.0844250917434692,0.8446784615516663,0.6734309196472168,0.5535576939582825,0.09118931740522385,1.2385478019714355,1.255672574043274,1.4782943725585938,1.786539912223816,1.307046890258789,1.0844250917434692,0.21106259524822235],[1.0159260034561157,1.4954191446304321,1.9749122858047485,1.375545859336853,1.6152924299240112,0.9303022623062134,1.8892884254455566,1.8036646842956543,2.111910343170166,1.8892884254455566,2.0605359077453613,2.111910343170166,2.0776607990264893,1.9920369386672974,1.8550390005111694,2.129034996032715,1.8550390005111694,1.8036646842956543,1.2385478019714355,1.8550390005111694,1.8550390005111694,1.5296686887741089,1.7351657152175903,1.5810428857803345,1.4269200563430786,1.18717360496521,1.4782943725585938,1.3412963151931763,1.4782943725585938,1.5125439167022705,1.2899221181869507,1.4097954034805298,1.2385478019714355,0.9303022623062134,-0.2170562595129013,-0.3540542721748352,-0.4568028151988983,-0.18280674517154694,0.2795616090297699,0.24531209468841553,0.45080915093421936,0.9303022623062134,1.307046890258789,1.5296686887741089,1.7009161710739136,1.0844250917434692,0.33093586564064026,0.6049319505691528,0.8275537490844727,1.3412963151931763,1.324171543121338,1.0844250917434692,0.878928005695343,0.46793389320373535,0.399434894323349,0.5364329218864441,1.3926706314086914,1.0844250917434692,0.9303022623062134,0.33093586564064026,0.48505866527557373,-0.2341810017824173,0.6220566630363464,0.7590547204017639,1.0501755475997925,-0.5081770420074463,-1.3472900390625,-1.4842880964279175,-1.7925336360931396,-1.8439078330993652,-2.0494048595428467,-2.1007792949676514,-1.7240345478057861,-2.032280206680298,-1.8267830610275269,-1.2102919816970825,-1.1760424375534058,-0.9534206986427307,-1.8267830610275269,-2.1179039478302,-2.1007792949676514,-2.1179039478302,-2.1179039478302,-2.0836544036865234,-1.998030662536621,-1.689785122871399,-0.0971829816699028,0.2966863512992859,0.913177490234375,0.022690298035740852,-1.4842880964279175,-1.9295316934585571,-1.689785122871399,-0.6965493559837341,-0.19993150234222412,0.03981505334377289,-0.01155920885503292,0.3823101222515106,0.433684378862381,0.7248051762580872,0.8275537490844727,0.878928005695343,1.0673003196716309,1.1700488328933716,1.101549744606018,1.2214230298995972,1.307046890258789,1.2042982578277588,1.1700488328933716,1.375545859336853,1.18717360496521,1.1529240608215332,1.3584210872650146,1.3412963151931763,1.1529240608215332,1.6495418548583984,1.5981676578521729,1.2727973461151123,0.9816765189170837,1.8721636533737183,0.2795616090297699,-1.3130404949188232,1.1357992887496948,0.07406456023454666,-0.3883037865161896,-1.3130404949188232,0.433684378862381,0.5535576939582825,-0.06293346732854843,0.8275537490844727,0.433684378862381,1.324171543121338,1.0844250917434692,1.0844250917434692,0.7933042049407959,1.5810428857803345,1.8207894563674927,0.8104289770126343,1.7522904872894287,0.46793389320373535,1.906413197517395,1.1700488328933716,0.8618032336235046,0.3823101222515106,1.1700488328933716,1.2214230298995972,0.8618032336235046,0.6734309196472168,0.6905556917190552,0.6220566630363464,-0.0971829816699028,0.056939806789159775,-0.8335474133491516,-0.8506721258163452,-0.43967804312705994,0.056939806789159775,0.09118931740522385,-0.028683962300419807,-0.6794245839118958,-0.919171154499054,-1.2959157228469849,0.09118931740522385,0.31381112337112427,0.8104289770126343,-1.7411593198776245,-1.3130404949188232,-0.2513057589530945,0.07406456023454666,-1.0561691522598267,1.101549744606018,0.9988012909889221,1.033050775527954,0.5021833777427673,1.786539912223816,1.563918113708496,1.7694151401519775,1.718040943145752,1.7522904872894287,1.4611696004867554,1.906413197517395,2.0776607990264893,1.9749122858047485,2.094785451889038,2.0776607990264893,1.9577875137329102,2.0776607990264893,2.0091617107391357,1.8892884254455566,1.2385478019714355,0.5193081498146057,0.5021833777427673,0.8275537490844727,0.5878071784973145,0.9303022623062134,1.1186745166778564,1.2727973461151123,1.2214230298995972,1.2214230298995972,1.1186745166778564,1.2385478019714355,1.255672574043274,1.3926706314086914,1.1700488328933716,1.1529240608215332,1.3584210872650146,1.375545859336853,1.3584210872650146,1.2385478019714355,1.3584210872650146,1.2899221181869507,1.0501755475997925,1.0844250917434692,1.0159260034561157,0.8275537490844727,0.913177490234375,0.8618032336235046,0.5878071784973145,0.46793389320373535,0.1596883237361908,1.2385478019714355,1.375545859336853,1.18717360496521,0.22818733751773834,-0.04580871760845184],[1.4611696004867554,1.375545859336853,1.718040943145752,1.4782943725585938,1.906413197517395,1.9577875137329102,2.1632845401763916,1.18717360496521,2.0434112548828125,1.4782943725585938,2.129034996032715,2.248908281326294,2.1461598873138428,2.248908281326294,2.1632845401763916,2.248908281326294,2.0434112548828125,2.214658737182617,1.4611696004867554,2.111910343170166,1.375545859336853,2.0776607990264893,2.0091617107391357,1.906413197517395,1.7351657152175903,1.18717360496521,1.5467933416366577,1.2042982578277588,1.4611696004867554,1.7522904872894287,1.6666666269302368,1.2214230298995972,1.4097954034805298,0.5535576939582825,0.21106259524822235,-0.028683962300419807,-0.3540542721748352,-0.14855724573135376,-0.11430773138999939,-0.11430773138999939,0.12543882429599762,0.5364329218864441,1.0501755475997925,1.307046890258789,1.6495418548583984,1.444044828414917,0.9816765189170837,0.19393783807754517,0.8446784615516663,0.9303022623062134,1.307046890258789,1.4097954034805298,0.8104289770126343,0.5193081498146057,0.45080915093421936,0.6905556917190552,1.1529240608215332,1.033050775527954,1.0673003196716309,0.6220566630363464,0.45080915093421936,0.07406456023454666,0.7933042049407959,1.0673003196716309,0.6391814351081848,0.5193081498146057,-0.8164226412773132,-1.3130404949188232,-1.5699118375778198,-1.3644148111343384,-2.1179039478302,-2.0836544036865234,-2.1179039478302,-1.689785122871399,-2.0836544036865234,-1.946656346321106,-1.3472900390625,-0.30268001556396484,-2.0836544036865234,-2.0836544036865234,-2.0665297508239746,-1.946656346321106,-0.4568028151988983,-0.6109256148338318,-2.1179039478302,-2.0665297508239746,-1.6384108066558838,0.10831406712532043,0.6905556917190552,-0.028683962300419807,-0.5253018140792847,-1.3130404949188232,-1.1075434684753418,-0.3369295299053192,-0.3198047876358032,0.24531209468841553,0.46793389320373535,0.45080915093421936,0.6905556917190552,0.7419299483299255,0.9303022623062134,1.033050775527954,0.8618032336235046,1.1186745166778564,1.0159260034561157,1.0501755475997925,0.9645517468452454,1.0159260034561157,1.18717360496521,1.1700488328933716,0.913177490234375,1.0501755475997925,1.2214230298995972,1.5467933416366577,1.2727973461151123,1.5981676578521729,1.4782943725585938,1.563918113708496,0.5878071784973145,1.5810428857803345,2.111910343170166,0.31381112337112427,0.022690298035740852,0.46793389320373535,-0.6965493559837341,-0.6622998714447021,0.416559636592865,1.0159260034561157,-0.5081770420074463,0.6220566630363464,0.8104289770126343,1.6837913990020752,0.5535576939582825,0.9988012909889221,1.5981676578521729,1.6152924299240112,1.4782943725585938,1.307046890258789,1.563918113708496,1.1357992887496948,1.6837913990020752,0.9988012909889221,0.6391814351081848,1.6152924299240112,1.2214230298995972,0.9645517468452454,1.0844250917434692,0.7933042049407959,0.34806060791015625,0.6220566630363464,0.5706824064254761,-0.06293346732854843,-0.5253018140792847,-0.6280503273010254,0.022690298035740852,-0.884921669960022,-0.06293346732854843,0.6391814351081848,-0.7992978692054749,-1.1589176654815674,-1.0390443801879883,-0.5081770420074463,-0.40542855858802795,0.5021833777427673,-1.3986642360687256,0.2795616090297699,-0.7479236125946045,-0.08005822449922562,0.17681308090686798,1.5125439167022705,1.563918113708496,0.7590547204017639,1.8721636533737183,1.1529240608215332,1.3584210872650146,1.18717360496521,1.6837913990020752,1.4097954034805298,1.8207894563674927,1.8892884254455566,1.906413197517395,2.1461598873138428,2.094785451889038,2.0091617107391357,2.0605359077453613,2.094785451889038,2.0776607990264893,1.8207894563674927,0.9988012909889221,0.5193081498146057,0.46793389320373535,0.7248051762580872,0.8960527181625366,1.0501755475997925,1.0159260034561157,1.2042982578277588,1.2214230298995972,1.2214230298995972,1.375545859336853,1.2214230298995972,1.2042982578277588,1.18717360496521,1.2042982578277588,1.101549744606018,1.0501755475997925,1.0501755475997925,0.9303022623062134,1.2727973461151123,1.2385478019714355,1.2899221181869507,1.2899221181869507,1.3584210872650146,1.1357992887496948,1.0159260034561157,1.0844250917434692,1.0159260034561157,1.2042982578277588,0.7419299483299255,0.056939806789159775,0.2795616090297699,1.2727973461151123,0.6220566630363464,0.9303022623062134,0.5021833777427673],[1.3926706314086914,1.444044828414917,1.375545859336853,1.5296686887741089,1.7009161710739136,1.7009161710739136,1.7694151401519775,1.9920369386672974,2.0605359077453613,1.9577875137329102,2.1461598873138428,1.9235379695892334,2.0091617107391357,2.094785451889038,2.0262866020202637,2.248908281326294,2.214658737182617,2.1461598873138428,2.111910343170166,2.0434112548828125,1.6152924299240112,1.837914228439331,1.5296686887741089,2.094785451889038,1.9406627416610718,1.7009161710739136,2.0605359077453613,1.2042982578277588,1.5467933416366577,1.5467933416366577,1.6495418548583984,1.3412963151931763,1.4954191446304321,0.9988012909889221,1.0844250917434692,0.9474270343780518,0.9303022623062134,0.7419299483299255,0.7419299483299255,0.7590547204017639,0.8446784615516663,0.24531209468841553,0.34806060791015625,1.0501755475997925,1.5296686887741089,1.307046890258789,1.0844250917434692,0.7761794924736023,0.1425635814666748,1.1186745166778564,1.1186745166778564,1.3584210872650146,0.8275537490844727,0.9645517468452454,0.7761794924736023,0.2966863512992859,1.0159260034561157,1.1186745166778564,1.2214230298995972,1.0159260034561157,0.2624368667602539,0.005565545056015253,0.9474270343780518,0.3823101222515106,-0.19993150234222412,0.056939806789159775,0.10831406712532043,-1.604161262512207,-1.3472900390625,-1.1931672096252441,-1.415789008140564,-2.1007792949676514,-2.0494048595428467,-2.0494048595428467,-2.1179039478302,-1.1760424375534058,-0.919171154499054,-1.809658408164978,-2.1179039478302,-2.0836544036865234,-1.7754088640213013,0.416559636592865,-0.01155920885503292,-1.7240345478057861,-1.6384108066558838,-1.9295316934585571,-1.5527870655059814,-1.6212860345840454,0.12543882429599762,0.2624368667602539,-0.6794245839118958,-1.0561691522598267,-0.884921669960022,-0.06293346732854843,0.1596883237361908,0.5021833777427673,0.31381112337112427,0.5364329218864441,0.6220566630363464,0.7248051762580872,0.5193081498146057,0.8960527181625366,0.913177490234375,1.375545859336853,1.0501755475997925,0.8618032336235046,0.48505866527557373,1.0673003196716309,0.6905556917190552,1.1186745166778564,1.0673003196716309,1.2727973461151123,1.033050775527954,1.563918113708496,1.444044828414917,1.6495418548583984,1.4097954034805298,1.6666666269302368,1.1186745166778564,1.3926706314086914,2.0091617107391357,1.786539912223816,-0.16568198800086975,0.1596883237361908,0.34806060791015625,0.34806060791015625,0.6049319505691528,0.7076804637908936,0.6734309196472168,1.563918113708496,1.033050775527954,1.8207894563674927,0.433684378862381,1.8036646842956543,1.324171543121338,1.906413197517395,1.0673003196716309,1.444044828414917,0.6220566630363464,1.2727973461151123,1.4269200563430786,1.4097954034805298,1.4954191446304321,1.375545859336853,1.4782943725585938,0.6049319505691528,0.3823101222515106,1.255672574043274,0.6391814351081848,0.6734309196472168,0.5364329218864441,0.45080915093421936,0.1425635814666748,0.6905556917190552,0.03981505334377289,0.913177490234375,0.8275537490844727,0.34806060791015625,-0.884921669960022,0.24531209468841553,-0.8677968978881836,0.48505866527557373,0.7076804637908936,0.24531209468841553,-0.7992978692054749,1.18717360496521,0.7248051762580872,0.6905556917190552,1.3584210872650146,0.8275537490844727,1.5810428857803345,2.248908281326294,1.4954191446304321,1.18717360496521,0.9645517468452454,1.4097954034805298,1.5296686887741089,1.837914228439331,1.786539912223816,1.9406627416610718,2.0262866020202637,1.9235379695892334,2.1632845401763916,2.0776607990264893,2.0776607990264893,2.094785451889038,2.0262866020202637,1.6666666269302368,0.5706824064254761,0.5021833777427673,0.6391814351081848,0.9303022623062134,0.8960527181625366,1.2385478019714355,1.0159260034561157,1.2385478019714355,1.033050775527954,1.2385478019714355,1.2385478019714355,1.101549744606018,1.307046890258789,1.0844250917434692,1.3584210872650146,1.375545859336853,1.4269200563430786,1.4269200563430786,1.6152924299240112,1.2214230298995972,1.324171543121338,1.0501755475997925,1.444044828414917,1.4269200563430786,1.255672574043274,1.324171543121338,0.9988012909889221,1.1186745166778564,1.0159260034561157,0.878928005695343,0.9303022623062134,0.7590547204017639,0.7761794924736023,0.6391814351081848,0.5706824064254761,0.7076804637908936],[1.324171543121338,1.5296686887741089,1.6152924299240112,1.6324172019958496,1.7351657152175903,1.718040943145752,1.7351657152175903,1.9920369386672974,2.0434112548828125,2.1461598873138428,2.1804091930389404,2.1632845401763916,2.248908281326294,2.1632845401763916,2.0776607990264893,2.248908281326294,2.1804091930389404,2.0434112548828125,2.1632845401763916,2.1632845401763916,1.8207894563674927,1.7522904872894287,1.4782943725585938,1.906413197517395,1.8892884254455566,1.8892884254455566,2.1975340843200684,1.7522904872894287,1.786539912223816,1.255672574043274,2.0262866020202637,1.8207894563674927,1.3926706314086914,1.3584210872650146,1.4954191446304321,1.4954191446304321,1.4097954034805298,1.4611696004867554,1.2214230298995972,1.324171543121338,1.101549744606018,0.8104289770126343,0.46793389320373535,0.6391814351081848,1.0501755475997925,1.0501755475997925,1.0673003196716309,0.878928005695343,0.5878071784973145,1.0673003196716309,0.9816765189170837,1.5125439167022705,1.1357992887496948,1.0673003196716309,0.6734309196472168,0.7076804637908936,0.9645517468452454,1.1357992887496948,1.0159260034561157,0.056939806789159775,-0.04580871760845184,-0.40542855858802795,0.34806060791015625,0.433684378862381,0.07406456023454666,-0.30268001556396484,0.46793389320373535,-0.4739275574684143,-0.884921669960022,-1.2787909507751465,-1.0219197273254395,-1.758284091949463,-2.1179039478302,-2.01515531539917,-2.1179039478302,-1.7925336360931396,-1.7069098949432373,-2.0665297508239746,-2.0665297508239746,-2.1179039478302,-0.42255330085754395,-0.04580871760845184,-1.9637811183929443,-1.6212860345840454,-0.40542855858802795,-1.4842880964279175,-0.7136741280555725,0.416559636592865,0.46793389320373535,0.433684378862381,-0.884921669960022,-1.1589176654815674,-0.7307988405227661,-0.43967804312705994,0.21106259524822235,0.5535576939582825,0.46793389320373535,0.5878071784973145,0.6563062071800232,0.9816765189170837,0.3823101222515106,1.0501755475997925,0.7076804637908936,1.1700488328933716,0.5021833777427673,1.101549744606018,0.9645517468452454,1.4097954034805298,1.033050775527954,1.2214230298995972,1.1357992887496948,1.2214230298995972,1.18717360496521,1.5467933416366577,1.4611696004867554,1.906413197517395,1.9577875137329102,1.5810428857803345,1.1529240608215332,1.6666666269302368,1.2385478019714355,2.248908281326294,0.8104289770126343,-0.9362959265708923,0.10831406712532043,0.9988012909889221,0.8960527181625366,1.2214230298995972,1.033050775527954,1.563918113708496,1.5467933416366577,1.6666666269302368,0.5535576939582825,1.6495418548583984,1.5467933416366577,1.18717360496521,0.5535576939582825,1.5810428857803345,1.6837913990020752,1.324171543121338,1.1186745166778564,0.8104289770126343,1.375545859336853,1.4954191446304321,1.6666666269302368,1.18717360496521,1.2042982578277588,1.5467933416366577,0.5706824064254761,0.005565545056015253,0.433684378862381,0.1425635814666748,0.33093586564064026,0.17681308090686798,-0.19993150234222412,-0.14855724573135376,0.9645517468452454,0.45080915093421936,-0.4568028151988983,-1.0390443801879883,0.8446784615516663,0.5021833777427673,0.416559636592865,0.8618032336235046,0.6391814351081848,1.1529240608215332,1.0159260034561157,0.34806060791015625,0.21106259524822235,1.1186745166778564,1.101549744606018,1.0501755475997925,1.6495418548583984,0.9988012909889221,1.5467933416366577,1.375545859336853,1.4097954034805298,1.8036646842956543,1.837914228439331,2.0091617107391357,1.9749122858047485,1.9577875137329102,2.111910343170166,1.9577875137329102,2.0262866020202637,2.129034996032715,2.0605359077453613,1.5296686887741089,0.7419299483299255,0.433684378862381,0.6734309196472168,0.9816765189170837,1.0844250917434692,1.18717360496521,0.9303022623062134,1.2727973461151123,1.2385478019714355,1.2214230298995972,1.0673003196716309,1.307046890258789,1.18717360496521,1.2899221181869507,1.2214230298995972,1.307046890258789,1.307046890258789,1.7009161710739136,1.2727973461151123,1.1186745166778564,1.2214230298995972,1.1700488328933716,1.2727973461151123,1.4269200563430786,1.5981676578521729,1.4097954034805298,1.3926706314086914,0.878928005695343,1.0844250917434692,1.1529240608215332,1.255672574043274,1.0844250917434692,1.0673003196716309,1.0501755475997925,1.1529240608215332,1.0159260034561157],[2.231783628463745,1.8892884254455566,1.1700488328933716,1.7694151401519775,1.4954191446304321,1.444044828414917,1.7522904872894287,1.837914228439331,1.9749122858047485,2.0091617107391357,2.0434112548828125,2.248908281326294,2.1804091930389404,2.231783628463745,2.0262866020202637,2.0091617107391357,2.111910343170166,1.9577875137329102,2.1461598873138428,2.0091617107391357,2.1461598873138428,2.1632845401763916,2.248908281326294,2.129034996032715,1.563918113708496,2.248908281326294,2.0091617107391357,1.8721636533737183,1.906413197517395,1.718040943145752,2.0605359077453613,1.7351657152175903,1.2899221181869507,1.2042982578277588,1.7522904872894287,1.9406627416610718,1.5981676578521729,1.7351657152175903,1.2899221181869507,1.6666666269302368,1.7694151401519775,1.3584210872650146,0.8618032336235046,0.6563062071800232,1.307046890258789,1.2214230298995972,1.0844250917434692,0.913177490234375,0.8446784615516663,1.0159260034561157,1.18717360496521,1.2385478019714355,1.2214230298995972,1.1186745166778564,0.6563062071800232,0.19393783807754517,1.307046890258789,0.7761794924736023,0.7933042049407959,0.5878071784973145,0.19393783807754517,-0.8677968978881836,0.6391814351081848,0.8618032336235046,0.5706824064254761,-0.40542855858802795,-0.16568198800086975,0.9474270343780518,-0.28555527329444885,-1.2616662979125977,-1.1075434684753418,-1.0904186964035034,-1.604161262512207,-1.0219197273254395,-1.535662293434143,-1.809658408164978,-2.1179039478302,-2.1179039478302,-2.0665297508239746,-1.227416753768921,-0.28555527329444885,-1.1417930126190186,-0.3369295299053192,-0.40542855858802795,0.09118931740522385,0.416559636592865,0.7419299483299255,-0.16568198800086975,0.34806060791015625,0.416559636592865,-0.9020463824272156,-1.1931672096252441,-0.28555527329444885,0.10831406712532043,0.22818733751773834,0.005565545056015253,0.6734309196472168,0.9303022623062134,0.913177490234375,1.444044828414917,1.0159260034561157,0.9303022623062134,0.9645517468452454,1.255672574043274,1.1700488328933716,1.2214230298995972,1.4611696004867554,1.3412963151931763,1.0501755475997925,1.307046890258789,1.2042982578277588,1.4954191446304321,1.375545859336853,1.786539912223816,1.5467933416366577,1.786539912223816,1.8036646842956543,1.837914228439331,1.3926706314086914,1.786539912223816,1.7009161710739136,0.9988012909889221,0.7248051762580872,-0.7650483846664429,0.5021833777427673,0.46793389320373535,0.5364329218864441,0.9645517468452454,0.913177490234375,1.1700488328933716,0.9988012909889221,1.7522904872894287,0.9816765189170837,1.307046890258789,1.0501755475997925,1.3412963151931763,1.2385478019714355,0.9474270343780518,1.3584210872650146,1.1186745166778564,0.9816765189170837,1.6666666269302368,1.255672574043274,1.4782943725585938,1.4269200563430786,1.1529240608215332,2.1461598873138428,1.0673003196716309,1.307046890258789,0.416559636592865,0.056939806789159775,0.9988012909889221,-0.11430773138999939,1.2727973461151123,0.09118931740522385,0.1425635814666748,1.2385478019714355,-0.01155920885503292,-0.7650483846664429,0.19393783807754517,1.307046890258789,0.5878071784973145,0.9303022623062134,0.03981505334377289,1.255672574043274,1.324171543121338,1.2042982578277588,1.0844250917434692,1.2899221181869507,1.6324172019958496,1.3926706314086914,1.3412963151931763,0.8618032336235046,1.5810428857803345,1.2899221181869507,1.4611696004867554,1.563918113708496,1.7009161710739136,1.9235379695892334,1.9406627416610718,2.0262866020202637,2.0091617107391357,2.0262866020202637,1.9577875137329102,1.906413197517395,1.9235379695892334,1.8550390005111694,1.5981676578521729,0.19393783807754517,0.36518537998199463,0.5193081498146057,0.7933042049407959,1.0501755475997925,1.0159260034561157,1.2042982578277588,1.2727973461151123,1.18717360496521,1.2899221181869507,1.3926706314086914,1.1700488328933716,1.2385478019714355,1.1700488328933716,1.3412963151931763,1.2385478019714355,1.2899221181869507,1.255672574043274,1.444044828414917,1.4611696004867554,1.3926706314086914,1.4782943725585938,1.2727973461151123,1.3584210872650146,1.4097954034805298,1.7694151401519775,1.5810428857803345,1.444044828414917,1.1529240608215332,1.2899221181869507,1.0844250917434692,1.255672574043274,1.375545859336853,1.1529240608215332,1.5296686887741089,1.375545859336853],[1.7009161710739136,1.8550390005111694,1.7009161710739136,1.9406627416610718,1.6495418548583984,2.231783628463745,1.9920369386672974,1.6666666269302368,1.9406627416610718,1.5296686887741089,2.0776607990264893,1.8892884254455566,2.111910343170166,1.9577875137329102,2.0262866020202637,2.0262866020202637,2.1975340843200684,2.248908281326294,1.8207894563674927,1.906413197517395,1.9920369386672974,1.7522904872894287,1.9749122858047485,2.129034996032715,2.0776607990264893,2.111910343170166,1.906413197517395,1.837914228439331,2.0605359077453613,1.6495418548583984,1.8036646842956543,1.2042982578277588,1.033050775527954,1.7009161710739136,1.6837913990020752,1.8207894563674927,1.7351657152175903,1.786539912223816,1.444044828414917,1.4954191446304321,1.8892884254455566,1.3584210872650146,1.324171543121338,0.9474270343780518,1.563918113708496,1.7351657152175903,1.444044828414917,1.2042982578277588,0.5364329218864441,0.6391814351081848,1.3584210872650146,1.5467933416366577,1.033050775527954,1.1529240608215332,0.7761794924736023,-0.2170562595129013,0.46793389320373535,0.7590547204017639,0.24531209468841553,0.5021833777427673,0.6563062071800232,-1.227416753768921,0.878928005695343,0.9816765189170837,0.399434894323349,0.3823101222515106,0.21106259524822235,0.8104289770126343,0.7761794924736023,-0.5081770420074463,-0.11430773138999939,-0.5253018140792847,-1.2787909507751465,-1.1075434684753418,-0.7650483846664429,-0.6280503273010254,-2.0836544036865234,-1.5014127492904663,-1.5870366096496582,-1.6384108066558838,-0.5938008427619934,-1.1417930126190186,-1.7240345478057861,0.056939806789159775,-0.18280674517154694,-0.4739275574684143,-1.8439078330993652,-1.6384108066558838,-1.1417930126190186,0.5535576939582825,-0.7136741280555725,-0.06293346732854843,-0.3369295299053192,0.056939806789159775,0.5364329218864441,0.416559636592865,0.913177490234375,0.8104289770126343,1.1357992887496948,1.0844250917434692,1.2727973461151123,1.1186745166778564,1.2727973461151123,1.2727973461151123,1.255672574043274,1.1529240608215332,1.5467933416366577,1.324171543121338,1.3926706314086914,1.2727973461151123,1.375545859336853,1.3412963151931763,1.6495418548583984,1.8036646842956543,1.6495418548583984,1.8036646842956543,1.786539912223816,1.7351657152175903,1.6666666269302368,1.5981676578521729,1.8892884254455566,0.7761794924736023,0.9303022623062134,0.19393783807754517,0.9474270343780518,0.8446784615516663,1.0844250917434692,0.9816765189170837,1.255672574043274,1.3926706314086914,1.307046890258789,1.2042982578277588,1.0501755475997925,1.3926706314086914,1.5467933416366577,1.1529240608215332,0.416559636592865,1.9749122858047485,1.4611696004867554,1.0501755475997925,2.0605359077453613,2.1632845401763916,0.9303022623062134,1.1186745166778564,1.2042982578277588,0.9474270343780518,0.3823101222515106,0.8960527181625366,0.5364329218864441,-0.542426586151123,-0.06293346732854843,1.101549744606018,0.5706824064254761,1.1357992887496948,0.2966863512992859,1.2727973461151123,1.9749122858047485,0.33093586564064026,-0.6965493559837341,1.255672574043274,0.1596883237361908,1.0673003196716309,0.17681308090686798,0.5878071784973145,1.033050775527954,1.6324172019958496,0.7590547204017639,1.101549744606018,1.2385478019714355,1.0844250917434692,1.307046890258789,1.1529240608215332,1.4269200563430786,1.5981676578521729,1.6666666269302368,1.4611696004867554,1.6324172019958496,1.7694151401519775,1.9235379695892334,1.8892884254455566,1.9749122858047485,1.9235379695892334,1.9920369386672974,1.9235379695892334,1.8550390005111694,1.8550390005111694,1.837914228439331,1.307046890258789,0.45080915093421936,0.433684378862381,0.8446784615516663,0.913177490234375,0.9303022623062134,0.9988012909889221,0.8960527181625366,1.255672574043274,1.307046890258789,1.1700488328933716,1.307046890258789,1.1529240608215332,1.255672574043274,1.255672574043274,1.2214230298995972,1.2385478019714355,1.375545859336853,1.1700488328933716,1.3584210872650146,1.4611696004867554,1.444044828414917,1.3926706314086914,1.4269200563430786,1.2899221181869507,1.4782943725585938,1.6495418548583984,1.718040943145752,1.5981676578521729,1.4782943725585938,0.9645517468452454,1.1357992887496948,1.2899221181869507,1.307046890258789,1.4097954034805298,1.3926706314086914,1.3926706314086914],[2.0091617107391357,1.7694151401519775,2.094785451889038,1.718040943145752,2.248908281326294,1.3926706314086914,1.6495418548583984,1.9235379695892334,2.0605359077453613,2.248908281326294,2.1632845401763916,2.0776607990264893,2.248908281326294,2.248908281326294,2.248908281326294,2.111910343170166,2.094785451889038,2.214658737182617,1.6666666269302368,1.8721636533737183,0.7590547204017639,1.5810428857803345,1.4097954034805298,1.3926706314086914,1.7522904872894287,2.0262866020202637,1.7694151401519775,2.1461598873138428,2.1804091930389404,1.4782943725585938,1.375545859336853,1.0159260034561157,1.255672574043274,1.7009161710739136,1.7522904872894287,1.6324172019958496,1.4782943725585938,1.4611696004867554,1.4611696004867554,1.2042982578277588,1.375545859336853,1.5810428857803345,1.5981676578521729,1.5296686887741089,1.5810428857803345,1.906413197517395,1.6152924299240112,0.913177490234375,0.7076804637908936,1.0501755475997925,0.6220566630363464,1.375545859336853,1.255672574043274,1.1529240608215332,0.433684378862381,0.31381112337112427,0.6905556917190552,1.2899221181869507,0.056939806789159775,-0.5081770420074463,0.1425635814666748,-0.6794245839118958,0.2966863512992859,0.433684378862381,0.24531209468841553,0.2795616090297699,-1.9809058904647827,-0.5081770420074463,1.2042982578277588,-0.3198047876358032,0.2624368667602539,-1.0390443801879883,-1.2445415258407593,-0.884921669960022,-1.415789008140564,-2.1179039478302,-2.0665297508239746,-2.1179039478302,-2.1007792949676514,-2.0665297508239746,-1.2102919816970825,-1.3644148111343384,-1.1246682405471802,-0.9362959265708923,-1.073293924331665,-1.6726603507995605,-1.9637811183929443,-2.1179039478302,-2.1179039478302,-0.42255330085754395,-0.0971829816699028,-0.3198047876358032,-0.19993150234222412,-0.2170562595129013,0.33093586564064026,0.46793389320373535,0.433684378862381,1.1529240608215332,1.2727973461151123,1.2042982578277588,1.4782943725585938,1.444044828414917,1.2727973461151123,1.4097954034805298,1.5467933416366577,1.4269200563430786,1.3584210872650146,1.3412963151931763,1.5125439167022705,1.444044828414917,1.4269200563430786,1.3584210872650146,1.5296686887741089,1.8207894563674927,1.8207894563674927,1.7522904872894287,2.129034996032715,1.837914228439331,1.8207894563674927,-1.4500385522842407,-1.8439078330993652,1.7522904872894287,0.1425635814666748,-0.3540542721748352,1.4097954034805298,0.7590547204017639,0.45080915093421936,0.46793389320373535,1.307046890258789,0.9303022623062134,1.2214230298995972,1.2385478019714355,0.8960527181625366,0.7761794924736023,0.9988012909889221,1.18717360496521,1.2899221181869507,1.786539912223816,1.444044828414917,1.4611696004867554,1.3926706314086914,1.307046890258789,1.255672574043274,0.8960527181625366,1.6495418548583984,0.913177490234375,0.9645517468452454,0.7590547204017639,0.8618032336235046,0.21106259524822235,0.1596883237361908,1.0501755475997925,0.6391814351081848,1.563918113708496,1.786539912223816,1.906413197517395,1.9406627416610718,-0.0971829816699028,-0.19993150234222412,0.9645517468452454,0.5535576939582825,1.033050775527954,0.8960527181625366,0.7248051762580872,1.307046890258789,1.101549744606018,1.2385478019714355,1.2214230298995972,1.0673003196716309,1.101549744606018,1.2042982578277588,1.6666666269302368,1.3584210872650146,1.2042982578277588,1.4782943725585938,1.7522904872894287,1.8721636533737183,1.7009161710739136,1.8892884254455566,1.8550390005111694,1.9749122858047485,1.906413197517395,2.111910343170166,1.9406627416610718,1.8892884254455566,1.6495418548583984,1.5981676578521729,1.255672574043274,0.12543882429599762,0.6049319505691528,0.6391814351081848,0.8618032336235046,1.1357992887496948,0.9645517468452454,1.255672574043274,1.444044828414917,1.4269200563430786,1.101549744606018,1.2727973461151123,1.2385478019714355,1.324171543121338,1.3584210872650146,1.307046890258789,1.18717360496521,1.1529240608215332,1.101549744606018,1.307046890258789,1.18717360496521,1.255672574043274,1.1357992887496948,1.5467933416366577,1.2042982578277588,1.444044828414917,1.4782943725585938,1.5981676578521729,1.6152924299240112,1.6837913990020752,1.5981676578521729,1.375545859336853,1.4611696004867554,1.2899221181869507,1.4097954034805298,1.3412963151931763,1.375545859336853],[2.0091617107391357,1.9406627416610718,1.8721636533737183,1.9235379695892334,1.7351657152175903,1.9749122858047485,2.0434112548828125,1.837914228439331,1.8721636533737183,2.248908281326294,2.094785451889038,2.1975340843200684,2.0091617107391357,2.248908281326294,2.0262866020202637,1.9577875137329102,1.9406627416610718,1.837914228439331,1.8207894563674927,1.2899221181869507,1.307046890258789,1.6495418548583984,1.5981676578521729,1.9749122858047485,2.214658737182617,1.718040943145752,1.5125439167022705,1.2727973461151123,0.46793389320373535,1.033050775527954,0.48505866527557373,0.8618032336235046,1.101549744606018,1.2899221181869507,1.718040943145752,1.3926706314086914,1.5125439167022705,1.2727973461151123,1.0159260034561157,0.913177490234375,1.1357992887496948,1.3926706314086914,1.6495418548583984,1.7694151401519775,1.7522904872894287,1.5296686887741089,1.6324172019958496,1.2385478019714355,1.0159260034561157,0.33093586564064026,0.7590547204017639,0.5193081498146057,0.5706824064254761,0.8960527181625366,1.0501755475997925,-0.3198047876358032,-0.7136741280555725,0.7076804637908936,0.6563062071800232,-0.6109256148338318,-0.7992978692054749,0.2795616090297699,-0.16568198800086975,0.33093586564064026,-0.04580871760845184,0.7076804637908936,-1.3644148111343384,-1.1417930126190186,0.7933042049407959,0.6734309196472168,0.6391814351081848,-1.004794955253601,-0.9705454111099243,-1.5527870655059814,-0.9362959265708923,-1.5185375213623047,-1.9124069213867188,-2.1007792949676514,-2.1007792949676514,-1.7925336360931396,-1.1931672096252441,-0.9705454111099243,-1.8439078330993652,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.1179039478302,-1.809658408164978,-0.919171154499054,0.33093586564064026,0.48505866527557373,-0.5253018140792847,-0.16568198800086975,0.03981505334377289,0.48505866527557373,0.6220566630363464,0.7933042049407959,1.18717360496521,1.255672574043274,1.3926706314086914,1.3584210872650146,1.18717360496521,1.2042982578277588,1.18717360496521,1.5467933416366577,1.307046890258789,1.444044828414917,1.4097954034805298,1.444044828414917,1.444044828414917,1.4269200563430786,1.5125439167022705,1.6495418548583984,1.8207894563674927,1.7694151401519775,1.837914228439331,1.8036646842956543,1.6152924299240112,1.9406627416610718,0.21106259524822235,-2.01515531539917,1.2899221181869507,0.19393783807754517,0.09118931740522385,1.375545859336853,-0.06293346732854843,0.19393783807754517,-0.01155920885503292,0.5021833777427673,0.5878071784973145,0.9645517468452454,0.9988012909889221,0.5535576939582825,0.22818733751773834,0.6734309196472168,1.5296686887741089,0.7076804637908936,0.9645517468452454,1.1186745166778564,1.033050775527954,0.8275537490844727,0.7590547204017639,0.7590547204017639,1.375545859336853,1.4954191446304321,1.7694151401519775,0.399434894323349,0.2795616090297699,0.9303022623062134,0.7761794924736023,1.906413197517395,0.19393783807754517,0.6220566630363464,1.2214230298995972,1.324171543121338,1.786539912223816,1.0673003196716309,1.255672574043274,-0.576676070690155,0.7761794924736023,1.101549744606018,1.255672574043274,0.5193081498146057,1.0673003196716309,1.375545859336853,1.5296686887741089,1.0501755475997925,1.6152924299240112,1.4611696004867554,1.6495418548583984,1.444044828414917,1.3584210872650146,1.7351657152175903,1.6152924299240112,1.8207894563674927,1.6152924299240112,1.8036646842956543,1.7351657152175903,1.7694151401519775,1.837914228439331,1.9577875137329102,2.0262866020202637,2.094785451889038,2.0262866020202637,1.8721636533737183,1.8036646842956543,1.786539912223816,0.9988012909889221,0.34806060791015625,0.5193081498146057,0.9988012909889221,1.033050775527954,1.0159260034561157,1.1357992887496948,1.3926706314086914,1.3412963151931763,1.18717360496521,1.1186745166778564,1.2899221181869507,1.2042982578277588,1.2042982578277588,1.0673003196716309,1.3584210872650146,1.3412963151931763,1.3412963151931763,1.4782943725585938,1.4269200563430786,1.307046890258789,1.2385478019714355,1.3412963151931763,1.2727973461151123,1.307046890258789,1.4611696004867554,1.5981676578521729,1.4269200563430786,1.7009161710739136,1.3926706314086914,1.9577875137329102,1.5296686887741089,1.0844250917434692,1.2727973461151123,1.255672574043274,1.324171543121338,1.4097954034805298],[1.8207894563674927,1.8550390005111694,1.786539912223816,1.9749122858047485,2.129034996032715,2.231783628463745,2.231783628463745,1.9577875137329102,2.231783628463745,2.129034996032715,2.248908281326294,2.094785451889038,2.231783628463745,2.1804091930389404,1.9920369386672974,2.214658737182617,2.129034996032715,2.0262866020202637,2.1975340843200684,1.5467933416366577,1.5125439167022705,0.6905556917190552,1.5467933416366577,1.4954191446304321,1.5296686887741089,2.1975340843200684,1.6837913990020752,1.4611696004867554,1.307046890258789,0.7419299483299255,0.022690298035740852,0.22818733751773834,0.03981505334377289,0.6049319505691528,1.2042982578277588,1.2042982578277588,1.18717360496521,1.5296686887741089,0.9474270343780518,0.6049319505691528,0.6391814351081848,1.1529240608215332,1.6152924299240112,1.6837913990020752,1.5810428857803345,1.5296686887741089,1.307046890258789,0.9303022623062134,0.878928005695343,0.9816765189170837,0.9474270343780518,0.9645517468452454,0.19393783807754517,-0.13143248856067657,0.8618032336235046,0.17681308090686798,0.3823101222515106,-0.18280674517154694,0.433684378862381,-0.3369295299053192,0.07406456023454666,0.45080915093421936,0.7590547204017639,-0.14855724573135376,-1.004794955253601,0.33093586564064026,0.33093586564064026,-0.26843053102493286,-1.1417930126190186,1.18717360496521,1.0159260034561157,-0.6794245839118958,-1.0219197273254395,-1.3472900390625,-1.604161262512207,-2.1179039478302,-2.1179039478302,-2.0836544036865234,-1.6212860345840454,-1.3130404949188232,-1.7411593198776245,-2.01515531539917,-2.1179039478302,-2.1007792949676514,-2.0665297508239746,-2.1179039478302,-1.5699118375778198,-0.8164226412773132,-0.3711790442466736,-1.1760424375534058,-2.1179039478302,-1.5014127492904663,0.5021833777427673,0.7761794924736023,0.8618032336235046,1.101549744606018,1.0159260034561157,1.0673003196716309,1.1529240608215332,1.0501755475997925,1.255672574043274,1.4269200563430786,1.3926706314086914,1.2899221181869507,1.3412963151931763,1.307046890258789,1.4269200563430786,1.375545859336853,1.4611696004867554,1.3584210872650146,1.5125439167022705,1.4954191446304321,1.4954191446304321,1.7694151401519775,1.8036646842956543,1.6837913990020752,2.0434112548828125,1.8207894563674927,1.906413197517395,1.5810428857803345,1.8207894563674927,2.129034996032715,1.1357992887496948,0.022690298035740852,0.6220566630363464,-0.028683962300419807,0.5535576939582825,-0.43967804312705994,-0.06293346732854843,0.913177490234375,0.9645517468452454,0.7590547204017639,1.033050775527954,0.6220566630363464,0.878928005695343,0.9816765189170837,0.5706824064254761,1.0844250917434692,1.1186745166778564,1.0159260034561157,1.1186745166778564,1.2899221181869507,0.9988012909889221,1.1357992887496948,1.444044828414917,0.9816765189170837,0.5193081498146057,0.6563062071800232,0.22818733751773834,1.3412963151931763,0.8104289770126343,1.2385478019714355,1.3926706314086914,1.8207894563674927,1.444044828414917,0.5193081498146057,1.3412963151931763,0.9816765189170837,0.5193081498146057,0.7419299483299255,0.9474270343780518,0.21106259524822235,0.8275537490844727,1.0844250917434692,1.0159260034561157,1.1186745166778564,1.1357992887496948,1.5467933416366577,1.3926706314086914,0.6049319505691528,1.18717360496521,1.5125439167022705,1.1529240608215332,1.3926706314086914,1.255672574043274,1.7351657152175903,1.4782943725585938,1.6837913990020752,1.6837913990020752,1.7351657152175903,1.9577875137329102,2.0091617107391357,2.0262866020202637,1.9577875137329102,1.9749122858047485,1.8721636533737183,1.6324172019958496,0.7590547204017639,0.45080915093421936,0.5364329218864441,0.8275537490844727,1.0673003196716309,1.1186745166778564,1.2385478019714355,1.3584210872650146,1.1700488328933716,1.18717360496521,1.1357992887496948,1.1357992887496948,1.324171543121338,1.4611696004867554,1.4269200563430786,1.4954191446304321,1.4611696004867554,1.3584210872650146,1.2214230298995972,1.2727973461151123,1.3584210872650146,1.4611696004867554,1.307046890258789,1.444044828414917,1.4097954034805298,1.4954191446304321,1.563918113708496,1.5125439167022705,1.6837913990020752,1.6666666269302368,1.6324172019958496,1.8207894563674927,1.563918113708496,1.1186745166778564,1.0844250917434692,1.5125439167022705,1.375545859336853],[1.7694151401519775,2.0091617107391357,1.9749122858047485,2.0605359077453613,1.8207894563674927,1.906413197517395,1.9749122858047485,2.0091617107391357,2.0091617107391357,2.0262866020202637,2.0605359077453613,2.094785451889038,2.248908281326294,2.214658737182617,2.248908281326294,2.248908281326294,2.248908281326294,2.248908281326294,2.0262866020202637,2.094785451889038,1.718040943145752,1.5467933416366577,1.8550390005111694,1.4269200563430786,1.563918113708496,1.8036646842956543,2.0434112548828125,1.4954191446304321,0.9645517468452454,-0.542426586151123,-0.8164226412773132,-0.542426586151123,-0.4739275574684143,0.3823101222515106,0.7933042049407959,1.1357992887496948,1.1186745166778564,1.2727973461151123,0.878928005695343,0.5535576939582825,0.6220566630363464,1.18717360496521,1.6495418548583984,1.8550390005111694,1.7694151401519775,1.5981676578521729,1.4097954034805298,1.2727973461151123,0.9816765189170837,0.5535576939582825,0.7761794924736023,0.7076804637908936,0.45080915093421936,0.6391814351081848,0.2624368667602539,1.0159260034561157,0.5535576939582825,0.19393783807754517,-0.4739275574684143,0.056939806789159775,-1.073293924331665,0.12543882429599762,0.36518537998199463,-0.028683962300419807,-0.08005822449922562,0.46793389320373535,0.399434894323349,0.7761794924736023,-0.9362959265708923,-0.19993150234222412,0.7590547204017639,-0.13143248856067657,-1.0390443801879883,-1.3815394639968872,-1.9637811183929443,-2.032280206680298,-2.0836544036865234,-2.1179039478302,-1.9637811183929443,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.1007792949676514,-2.0665297508239746,-1.1760424375534058,-1.5527870655059814,-0.542426586151123,-1.0390443801879883,-1.1246682405471802,-2.1007792949676514,-1.9809058904647827,-1.5014127492904663,0.7590547204017639,0.21106259524822235,0.5878071784973145,0.6563062071800232,0.8960527181625366,1.0159260034561157,1.307046890258789,1.255672574043274,1.3412963151931763,1.3584210872650146,1.2899221181869507,1.2214230298995972,1.5810428857803345,1.2214230298995972,1.375545859336853,1.3584210872650146,1.3926706314086914,1.324171543121338,1.563918113708496,1.4269200563430786,1.7009161710739136,1.7351657152175903,1.718040943145752,1.8036646842956543,1.8550390005111694,1.718040943145752,1.8036646842956543,1.8550390005111694,1.906413197517395,2.129034996032715,1.7694151401519775,1.0159260034561157,0.1596883237361908,0.5021833777427673,0.1425635814666748,0.03981505334377289,-0.5253018140792847,-0.28555527329444885,0.416559636592865,0.09118931740522385,0.6049319505691528,0.31381112337112427,0.24531209468841553,0.7761794924736023,1.5810428857803345,0.9303022623062134,0.5364329218864441,0.9988012909889221,0.8960527181625366,0.6734309196472168,0.8446784615516663,0.45080915093421936,0.913177490234375,1.0673003196716309,0.5706824064254761,1.0501755475997925,0.9645517468452454,0.36518537998199463,-0.3883037865161896,0.6220566630363464,0.8960527181625366,0.878928005695343,1.4097954034805298,1.324171543121338,1.6837913990020752,1.5467933416366577,0.7761794924736023,0.6391814351081848,0.6734309196472168,0.7248051762580872,1.5296686887741089,1.4954191446304321,0.9988012909889221,1.1700488328933716,1.6495418548583984,0.8960527181625366,0.9816765189170837,1.101549744606018,1.1186745166778564,1.375545859336853,1.1529240608215332,0.9988012909889221,1.307046890258789,1.3584210872650146,1.444044828414917,1.4782943725585938,1.6666666269302368,1.837914228439331,1.906413197517395,1.9920369386672974,2.094785451889038,2.0091617107391357,2.0262866020202637,1.8036646842956543,1.4097954034805298,0.6734309196472168,0.5021833777427673,0.8275537490844727,0.9816765189170837,0.8446784615516663,0.9303022623062134,1.0673003196716309,1.0673003196716309,1.2727973461151123,1.307046890258789,1.324171543121338,1.3412963151931763,1.255672574043274,1.1529240608215332,1.307046890258789,1.4611696004867554,1.2727973461151123,1.4954191446304321,1.3926706314086914,1.4782943725585938,1.2214230298995972,1.4782943725585938,1.3584210872650146,1.324171543121338,1.4954191446304321,1.444044828414917,1.444044828414917,1.4782943725585938,1.5467933416366577,1.8036646842956543,1.6666666269302368,1.8036646842956543,1.7009161710739136,1.0844250917434692,1.1529240608215332,1.1357992887496948,1.4269200563430786],[2.0605359077453613,1.8892884254455566,1.8207894563674927,1.9406627416610718,2.0434112548828125,2.111910343170166,1.8721636533737183,2.1632845401763916,2.094785451889038,2.214658737182617,2.248908281326294,2.248908281326294,2.129034996032715,2.1975340843200684,2.1804091930389404,2.094785451889038,2.1632845401763916,2.0605359077453613,1.837914228439331,1.7694151401519775,1.5810428857803345,1.7009161710739136,1.7009161710739136,1.9406627416610718,1.7694151401519775,1.8036646842956543,2.1461598873138428,0.8960527181625366,0.21106259524822235,-0.04580871760845184,0.2966863512992859,0.36518537998199463,0.3823101222515106,0.3823101222515106,0.33093586564064026,1.0673003196716309,1.2214230298995972,1.5810428857803345,1.2042982578277588,0.9988012909889221,0.5535576939582825,0.9645517468452454,1.6666666269302368,1.7694151401519775,1.8036646842956543,1.375545859336853,0.8960527181625366,1.18717360496521,1.3584210872650146,0.9816765189170837,0.8275537490844727,0.9474270343780518,0.9474270343780518,0.7076804637908936,-1.3815394639968872,0.9645517468452454,0.8104289770126343,0.5364329218864441,0.022690298035740852,-0.3369295299053192,-0.4568028151988983,0.1425635814666748,0.31381112337112427,0.5364329218864441,0.21106259524822235,0.6391814351081848,0.7933042049407959,0.8446784615516663,-0.16568198800086975,-0.7650483846664429,0.7761794924736023,-0.13143248856067657,-0.5595513582229614,-1.4329137802124023,-1.604161262512207,-1.878157377243042,-1.9809058904647827,-1.535662293434143,-2.01515531539917,-2.1007792949676514,-2.1179039478302,-2.0836544036865234,-2.1179039478302,-2.1007792949676514,-1.1589176654815674,-1.4842880964279175,-1.5014127492904663,-1.8267830610275269,-2.1179039478302,-2.1179039478302,-1.073293924331665,-0.7992978692054749,-1.9809058904647827,0.2795616090297699,-0.11430773138999939,0.5193081498146057,1.033050775527954,1.101549744606018,0.8275537490844727,1.101549744606018,1.1529240608215332,1.0844250917434692,1.4611696004867554,1.324171543121338,1.2899221181869507,1.3926706314086914,1.2899221181869507,1.18717360496521,1.101549744606018,1.444044828414917,1.4269200563430786,1.5467933416366577,1.6495418548583984,1.7522904872894287,1.6495418548583984,1.906413197517395,1.718040943145752,1.3926706314086914,2.248908281326294,-1.3986642360687256,0.46793389320373535,2.248908281326294,0.433684378862381,0.7419299483299255,0.45080915093421936,0.9816765189170837,0.7419299483299255,0.7933042049407959,0.5706824064254761,0.7419299483299255,0.005565545056015253,0.21106259524822235,0.5364329218864441,0.416559636592865,0.6905556917190552,0.8275537490844727,0.6563062071800232,0.8104289770126343,0.2966863512992859,0.6049319505691528,0.5021833777427673,0.6563062071800232,0.8446784615516663,0.6563062071800232,0.17681308090686798,0.1596883237361908,0.8960527181625366,0.9988012909889221,0.5364329218864441,0.5706824064254761,0.9816765189170837,0.6049319505691528,0.7419299483299255,1.324171543121338,0.913177490234375,1.1700488328933716,1.1529240608215332,1.1529240608215332,1.8207894563674927,0.8275537490844727,1.101549744606018,1.1700488328933716,1.3412963151931763,1.9406627416610718,1.4269200563430786,1.2899221181869507,1.7694151401519775,1.0844250917434692,1.1529240608215332,0.399434894323349,0.9645517468452454,0.7419299483299255,0.7933042049407959,1.1529240608215332,0.8960527181625366,1.1529240608215332,1.718040943145752,1.6324172019958496,1.8550390005111694,1.8036646842956543,1.8892884254455566,2.094785451889038,2.0091617107391357,2.0434112548828125,1.9749122858047485,1.7522904872894287,1.18717360496521,0.5364329218864441,0.31381112337112427,0.9303022623062134,1.1357992887496948,0.9303022623062134,1.2727973461151123,1.3412963151931763,1.255672574043274,1.3926706314086914,1.2385478019714355,1.3412963151931763,1.3584210872650146,1.4097954034805298,1.4611696004867554,1.375545859336853,1.307046890258789,1.1186745166778564,1.5125439167022705,1.5125439167022705,1.563918113708496,1.4097954034805298,1.5296686887741089,1.5125439167022705,1.4611696004867554,1.2042982578277588,1.5810428857803345,1.4611696004867554,1.4611696004867554,1.6324172019958496,1.5125439167022705,1.7694151401519775,1.9406627416610718,1.9406627416610718,1.6324172019958496,1.0844250917434692,1.1357992887496948,1.18717360496521],[1.7009161710739136,1.4269200563430786,2.094785451889038,2.0091617107391357,1.8550390005111694,1.9577875137329102,2.0605359077453613,1.9920369386672974,2.0776607990264893,2.111910343170166,2.0434112548828125,2.1632845401763916,2.1632845401763916,2.1975340843200684,2.094785451889038,2.1632845401763916,2.248908281326294,2.248908281326294,2.0434112548828125,1.9235379695892334,1.8550390005111694,1.444044828414917,2.231783628463745,2.0776607990264893,2.111910343170166,1.837914228439331,1.3412963151931763,0.5878071784973145,0.12543882429599762,0.8275537490844727,1.0501755475997925,0.8618032336235046,0.46793389320373535,0.19393783807754517,0.8104289770126343,0.9645517468452454,1.563918113708496,1.563918113708496,1.4097954034805298,1.0501755475997925,0.6734309196472168,1.3584210872650146,1.7694151401519775,2.0434112548828125,1.9235379695892334,1.718040943145752,1.1700488328933716,0.2966863512992859,0.7248051762580872,0.9303022623062134,1.101549744606018,0.46793389320373535,0.8104289770126343,0.10831406712532043,-1.1760424375534058,0.17681308090686798,0.6563062071800232,0.5193081498146057,0.03981505334377289,-0.3369295299053192,-1.0219197273254395,0.09118931740522385,0.21106259524822235,0.5364329218864441,0.416559636592865,0.24531209468841553,0.2624368667602539,0.2795616090297699,-0.30268001556396484,0.33093586564064026,0.7248051762580872,0.48505866527557373,-1.1931672096252441,-0.9876701831817627,-1.9637811183929443,-2.0836544036865234,-2.01515531539917,-2.01515531539917,-2.1179039478302,-2.0665297508239746,-2.1179039478302,-2.1007792949676514,-2.01515531539917,-2.0836544036865234,-1.3986642360687256,-1.7069098949432373,-1.1075434684753418,-2.1007792949676514,-1.9809058904647827,-1.6555355787277222,-2.1179039478302,-2.0665297508239746,-1.2102919816970825,-0.16568198800086975,-0.7479236125946045,-0.06293346732854843,0.6734309196472168,0.9988012909889221,1.033050775527954,0.8960527181625366,1.1357992887496948,1.307046890258789,1.2385478019714355,1.4097954034805298,1.444044828414917,1.255672574043274,1.4782943725585938,1.324171543121338,1.4097954034805298,1.4269200563430786,1.4954191446304321,1.7009161710739136,1.8550390005111694,1.5810428857803345,1.6495418548583984,1.9406627416610718,1.6152924299240112,1.563918113708496,1.7009161710739136,-1.1246682405471802,0.8960527181625366,1.6324172019958496,0.45080915093421936,0.3823101222515106,1.375545859336853,1.1186745166778564,0.878928005695343,0.022690298035740852,0.7419299483299255,0.7076804637908936,0.9474270343780518,0.8446784615516663,0.6563062071800232,0.1596883237361908,0.6049319505691528,1.033050775527954,0.34806060791015625,0.7419299483299255,0.913177490234375,0.5193081498146057,1.033050775527954,0.6220566630363464,1.4097954034805298,0.005565545056015253,-0.19993150234222412,-0.43967804312705994,0.33093586564064026,0.2624368667602539,0.8618032336235046,1.375545859336853,1.786539912223816,0.45080915093421936,1.101549744606018,0.8275537490844727,0.6391814351081848,1.375545859336853,1.4611696004867554,1.3926706314086914,1.033050775527954,1.0673003196716309,1.444044828414917,1.2214230298995972,1.033050775527954,1.7522904872894287,0.9816765189170837,0.9816765189170837,0.6734309196472168,0.9474270343780518,0.6734309196472168,0.416559636592865,0.7419299483299255,0.31381112337112427,0.5878071784973145,0.31381112337112427,0.7248051762580872,1.3412963151931763,1.5981676578521729,1.7694151401519775,1.6837913990020752,1.8892884254455566,1.9406627416610718,1.9749122858047485,2.0091617107391357,2.0262866020202637,2.0091617107391357,1.563918113708496,0.8275537490844727,0.34806060791015625,0.6049319505691528,0.6391814351081848,0.7761794924736023,1.2727973461151123,1.0159260034561157,1.3584210872650146,1.2214230298995972,1.4097954034805298,1.4097954034805298,1.375545859336853,1.444044828414917,1.18717360496521,1.3412963151931763,1.2214230298995972,1.3412963151931763,1.444044828414917,1.3412963151931763,1.2385478019714355,1.2042982578277588,1.3926706314086914,1.4097954034805298,1.6324172019958496,1.4097954034805298,1.307046890258789,1.7522904872894287,1.563918113708496,1.7009161710739136,1.3926706314086914,1.786539912223816,1.5810428857803345,1.7351657152175903,1.8207894563674927,1.9749122858047485,1.5125439167022705,1.033050775527954,1.1357992887496948],[1.7009161710739136,1.7522904872894287,2.129034996032715,2.0776607990264893,1.9920369386672974,2.248908281326294,2.1461598873138428,1.9749122858047485,2.1632845401763916,2.111910343170166,2.248908281326294,2.214658737182617,2.248908281326294,2.1632845401763916,2.248908281326294,2.214658737182617,2.1804091930389404,2.1632845401763916,2.0262866020202637,2.129034996032715,1.5810428857803345,1.6837913990020752,1.718040943145752,1.9406627416610718,1.9406627416610718,1.2899221181869507,1.5296686887741089,1.101549744606018,1.033050775527954,1.563918113708496,1.2042982578277588,1.4611696004867554,1.1186745166778564,1.1529240608215332,1.0159260034561157,1.101549744606018,1.4611696004867554,1.718040943145752,1.5981676578521729,1.324171543121338,1.0501755475997925,1.033050775527954,1.6152924299240112,2.0434112548828125,1.8892884254455566,2.0605359077453613,1.2899221181869507,0.6049319505691528,0.33093586564064026,0.3823101222515106,0.36518537998199463,0.7761794924736023,0.7590547204017639,0.1596883237361908,-0.9876701831817627,-1.7754088640213013,-0.5595513582229614,0.46793389320373535,0.5364329218864441,0.5193081498146057,-0.26843053102493286,0.2795616090297699,0.6391814351081848,0.8104289770126343,0.46793389320373535,-0.40542855858802795,0.21106259524822235,-0.3198047876358032,-0.13143248856067657,1.307046890258789,0.9988012909889221,0.2624368667602539,-0.542426586151123,-1.3815394639968872,-2.1179039478302,-2.0836544036865234,-2.1179039478302,-2.1007792949676514,-1.8952821493148804,-2.1007792949676514,-2.1007792949676514,-2.1007792949676514,-2.0836544036865234,-1.4500385522842407,-0.9876701831817627,-1.0219197273254395,-2.032280206680298,-1.689785122871399,-1.4329137802124023,-2.1179039478302,-2.1179039478302,-2.1179039478302,-0.8335474133491516,-0.6794245839118958,-1.946656346321106,-0.9876701831817627,0.2624368667602539,0.8618032336235046,0.8104289770126343,1.4097954034805298,1.2385478019714355,1.033050775527954,1.2214230298995972,1.444044828414917,1.3584210872650146,1.5125439167022705,1.2214230298995972,1.3926706314086914,1.3412963151931763,1.2727973461151123,1.2899221181869507,1.4954191446304321,1.5467933416366577,1.786539912223816,1.9235379695892334,2.094785451889038,1.6666666269302368,1.2042982578277588,1.9235379695892334,1.307046890258789,2.129034996032715,1.8207894563674927,0.07406456023454666,0.33093586564064026,0.5706824064254761,0.8446784615516663,0.5706824064254761,-0.2513057589530945,0.416559636592865,0.878928005695343,0.46793389320373535,0.7590547204017639,0.5706824064254761,-0.0971829816699028,0.24531209468841553,0.31381112337112427,0.9474270343780518,1.1529240608215332,0.5706824064254761,0.09118931740522385,0.8446784615516663,-0.11430773138999939,1.18717360496521,0.46793389320373535,0.17681308090686798,0.45080915093421936,0.056939806789159775,-0.11430773138999939,0.5364329218864441,0.2966863512992859,0.9988012909889221,0.2966863512992859,1.8892884254455566,1.4269200563430786,1.18717360496521,1.0673003196716309,2.129034996032715,1.2042982578277588,1.1700488328933716,0.21106259524822235,0.8446784615516663,0.1596883237361908,0.7933042049407959,0.45080915093421936,0.5535576939582825,1.2042982578277588,0.5364329218864441,0.8446784615516663,0.8104289770126343,0.2795616090297699,1.324171543121338,0.7590547204017639,0.6391814351081848,0.34806060791015625,1.324171543121338,1.307046890258789,1.6495418548583984,1.7522904872894287,1.6495418548583984,1.6495418548583984,1.9749122858047485,1.9406627416610718,2.0262866020202637,1.9577875137329102,1.786539912223816,1.3926706314086914,0.8446784615516663,0.33093586564064026,0.6220566630363464,0.7933042049407959,1.033050775527954,1.1357992887496948,1.3926706314086914,1.1357992887496948,1.1529240608215332,1.375545859336853,1.375545859336853,1.1529240608215332,1.307046890258789,1.2899221181869507,1.375545859336853,1.324171543121338,1.4097954034805298,1.3926706314086914,1.3412963151931763,1.718040943145752,1.324171543121338,1.4954191446304321,1.5125439167022705,1.5810428857803345,1.4611696004867554,1.4782943725585938,1.4097954034805298,1.4782943725585938,1.5467933416366577,1.5981676578521729,1.563918113708496,1.6324172019958496,1.5981676578521729,1.7351657152175903,1.9235379695892334,1.9749122858047485,1.4097954034805298,1.0673003196716309],[1.837914228439331,1.7694151401519775,1.9577875137329102,1.9577875137329102,2.0605359077453613,1.9749122858047485,2.111910343170166,1.8207894563674927,2.248908281326294,2.248908281326294,2.1975340843200684,2.248908281326294,2.214658737182617,2.0776607990264893,2.248908281326294,2.248908281326294,2.1461598873138428,2.1632845401763916,2.1461598873138428,2.111910343170166,2.129034996032715,2.248908281326294,1.7351657152175903,2.094785451889038,2.111910343170166,1.5810428857803345,0.8618032336235046,1.1700488328933716,0.9988012909889221,1.1700488328933716,1.9920369386672974,1.6666666269302368,1.4611696004867554,1.375545859336853,1.5810428857803345,1.4954191446304321,1.6495418548583984,1.6666666269302368,1.4269200563430786,1.4097954034805298,1.3412963151931763,1.837914228439331,2.0262866020202637,2.0434112548828125,1.9749122858047485,1.7009161710739136,1.375545859336853,1.1529240608215332,0.1596883237361908,0.48505866527557373,0.6563062071800232,0.46793389320373535,0.10831406712532043,-0.0971829816699028,-0.14855724573135376,-1.1246682405471802,-1.8267830610275269,0.022690298035740852,0.6391814351081848,0.19393783807754517,-0.6794245839118958,-0.19993150234222412,0.1425635814666748,-0.01155920885503292,-0.5938008427619934,-0.30268001556396484,1.0159260034561157,-0.0971829816699028,0.03981505334377289,0.6734309196472168,1.1700488328933716,0.17681308090686798,-0.3883037865161896,-1.3815394639968872,-2.1179039478302,-2.1007792949676514,-2.1179039478302,-2.1179039478302,-2.01515531539917,-1.9295316934585571,-2.1007792949676514,-2.1179039478302,-1.8267830610275269,-2.1179039478302,-0.6109256148338318,-1.073293924331665,-1.4842880964279175,-1.2445415258407593,-2.1179039478302,-2.0665297508239746,-2.1179039478302,-1.8952821493148804,-1.604161262512207,-0.9705454111099243,-1.7754088640213013,-1.467163324356079,-1.5870366096496582,-1.535662293434143,0.10831406712532043,0.9645517468452454,1.444044828414917,1.101549744606018,1.255672574043274,1.3412963151931763,1.2385478019714355,1.5296686887741089,1.4269200563430786,1.3412963151931763,1.4269200563430786,1.3412963151931763,1.3584210872650146,1.4782943725585938,1.6152924299240112,1.8036646842956543,1.786539912223816,1.9406627416610718,1.6152924299240112,0.7419299483299255,1.6324172019958496,2.094785451889038,1.18717360496521,1.6666666269302368,0.07406456023454666,0.6391814351081848,0.878928005695343,-0.2170562595129013,0.6563062071800232,0.433684378862381,0.9645517468452454,1.0159260034561157,0.8104289770126343,0.6391814351081848,1.3412963151931763,0.5535576939582825,0.6734309196472168,1.7009161710739136,1.1700488328933716,0.36518537998199463,0.8104289770126343,0.09118931740522385,0.2624368667602539,0.1596883237361908,0.6734309196472168,-0.28555527329444885,0.24531209468841553,0.7590547204017639,-0.2513057589530945,0.6563062071800232,0.6905556917190552,1.2214230298995972,0.9988012909889221,0.6391814351081848,1.2214230298995972,1.4097954034805298,1.1186745166778564,1.033050775527954,1.6666666269302368,0.12543882429599762,1.837914228439331,0.5193081498146057,0.6563062071800232,-0.576676070690155,1.033050775527954,0.6391814351081848,1.1700488328933716,1.1529240608215332,1.1529240608215332,0.22818733751773834,1.255672574043274,-0.04580871760845184,0.1425635814666748,0.6391814351081848,0.8104289770126343,1.101549744606018,1.255672574043274,1.255672574043274,1.7522904872894287,1.6152924299240112,1.375545859336853,1.324171543121338,1.7522904872894287,1.8721636533737183,1.906413197517395,1.7009161710739136,1.563918113708496,1.2042982578277588,0.8960527181625366,0.17681308090686798,0.5535576939582825,0.9988012909889221,1.18717360496521,1.0501755475997925,1.1357992887496948,1.2727973461151123,1.3584210872650146,1.3926706314086914,1.1529240608215332,1.2727973461151123,1.1186745166778564,1.324171543121338,1.2899221181869507,1.2385478019714355,1.4097954034805298,1.307046890258789,1.3412963151931763,1.444044828414917,1.4269200563430786,1.307046890258789,1.6324172019958496,1.4782943725585938,1.5296686887741089,1.6152924299240112,1.375545859336853,1.5467933416366577,1.6666666269302368,1.3584210872650146,1.6324172019958496,1.5467933416366577,1.5810428857803345,1.6495418548583984,1.8550390005111694,1.8550390005111694,1.906413197517395,1.3926706314086914],[1.9920369386672974,1.6495418548583984,1.9920369386672974,1.6837913990020752,1.9749122858047485,2.0776607990264893,1.7522904872894287,1.9920369386672974,2.129034996032715,2.1461598873138428,2.1975340843200684,2.0776607990264893,2.1975340843200684,1.9920369386672974,2.248908281326294,2.1975340843200684,2.094785451889038,2.1461598873138428,2.248908281326294,2.231783628463745,1.9920369386672974,1.6666666269302368,1.718040943145752,2.0605359077453613,1.1529240608215332,1.2899221181869507,0.6734309196472168,0.1596883237361908,0.6049319505691528,1.4611696004867554,1.5467933416366577,1.7694151401519775,1.5125439167022705,1.8892884254455566,1.5467933416366577,1.718040943145752,1.4097954034805298,1.6324172019958496,1.4954191446304321,1.4611696004867554,1.837914228439331,2.111910343170166,1.9749122858047485,1.9749122858047485,1.718040943145752,1.3584210872650146,1.18717360496521,1.0673003196716309,0.7248051762580872,0.33093586564064026,0.056939806789159775,0.9816765189170837,0.6220566630363464,-0.14855724573135376,0.1425635814666748,-0.2170562595129013,-0.7821731567382812,-0.8335474133491516,-0.13143248856067657,0.07406456023454666,-0.3198047876358032,-0.8164226412773132,-0.884921669960022,-1.7925336360931396,-0.40542855858802795,0.12543882429599762,1.2385478019714355,0.6391814351081848,0.9645517468452454,-0.16568198800086975,0.9645517468452454,-0.01155920885503292,-0.2170562595129013,-1.604161262512207,-1.8267830610275269,-2.0665297508239746,-2.1179039478302,-2.1007792949676514,-2.0665297508239746,-2.1007792949676514,-1.946656346321106,-2.1179039478302,-1.4329137802124023,0.03981505334377289,-1.8610326051712036,-1.0561691522598267,-0.43967804312705994,-1.998030662536621,-2.0665297508239746,-2.0836544036865234,-1.4500385522842407,-1.2445415258407593,-1.1417930126190186,-1.6726603507995605,-1.5870366096496582,-1.8610326051712036,-1.8610326051712036,-2.1179039478302,-0.4568028151988983,-0.6280503273010254,0.5364329218864441,1.0501755475997925,0.8618032336235046,1.2214230298995972,1.2385478019714355,1.4954191446304321,1.1186745166778564,1.4097954034805298,1.2727973461151123,1.4954191446304321,1.3584210872650146,1.5467933416366577,1.6495418548583984,1.7351657152175903,1.7009161710739136,2.0605359077453613,1.7009161710739136,1.0159260034561157,2.248908281326294,1.2214230298995972,1.7694151401519775,1.101549744606018,-0.06293346732854843,0.399434894323349,0.433684378862381,0.22818733751773834,0.8446784615516663,0.5364329218864441,0.33093586564064026,0.399434894323349,1.0844250917434692,1.2899221181869507,1.3412963151931763,0.878928005695343,0.6734309196472168,0.6734309196472168,1.8550390005111694,2.0605359077453613,1.5981676578521729,0.9988012909889221,0.2624368667602539,0.09118931740522385,1.033050775527954,-0.0971829816699028,0.31381112337112427,1.18717360496521,-0.13143248856067657,-0.7307988405227661,0.8275537490844727,0.878928005695343,1.324171543121338,1.0159260034561157,1.101549744606018,1.4269200563430786,0.8275537490844727,1.2214230298995972,0.09118931740522385,0.6049319505691528,0.9988012909889221,0.416559636592865,1.0501755475997925,-0.3540542721748352,-0.6794245839118958,0.6391814351081848,0.9988012909889221,1.4269200563430786,0.7419299483299255,1.3584210872650146,0.433684378862381,0.36518537998199463,-0.06293346732854843,-0.2170562595129013,0.19393783807754517,0.8104289770126343,1.5467933416366577,1.6837913990020752,1.9406627416610718,1.3926706314086914,1.3926706314086914,1.2385478019714355,1.6837913990020752,1.8207894563674927,1.8550390005111694,1.5296686887741089,1.1357992887496948,0.913177490234375,0.7590547204017639,0.6734309196472168,0.7590547204017639,0.9474270343780518,1.1529240608215332,1.2899221181869507,1.1357992887496948,1.255672574043274,1.255672574043274,1.1529240608215332,0.878928005695343,1.255672574043274,1.5810428857803345,1.2214230298995972,1.375545859336853,1.255672574043274,1.4611696004867554,1.4269200563430786,1.3412963151931763,1.5296686887741089,1.5467933416366577,1.3926706314086914,1.1529240608215332,1.3412963151931763,1.375545859336853,1.2899221181869507,1.5467933416366577,1.4782943725585938,1.4611696004867554,1.5810428857803345,1.5296686887741089,1.5125439167022705,1.6837913990020752,1.6152924299240112,1.6152924299240112,1.8207894563674927,2.0091617107391357,1.8207894563674927],[1.3412963151931763,1.7351657152175903,1.7694151401519775,2.214658737182617,1.8207894563674927,1.7351657152175903,1.9920369386672974,2.1804091930389404,2.231783628463745,1.9749122858047485,2.231783628463745,2.248908281326294,2.1461598873138428,2.1804091930389404,2.0776607990264893,2.111910343170166,2.248908281326294,2.231783628463745,2.1461598873138428,2.094785451889038,2.0091617107391357,1.837914228439331,2.094785451889038,1.7351657152175903,1.2899221181869507,1.2042982578277588,0.433684378862381,-0.919171154499054,0.9474270343780518,1.3584210872650146,1.6837913990020752,1.5296686887741089,1.6495418548583984,1.5810428857803345,1.7522904872894287,1.718040943145752,1.5296686887741089,1.5981676578521729,1.718040943145752,1.5810428857803345,1.9920369386672974,1.9406627416610718,1.9406627416610718,1.7522904872894287,1.4611696004867554,1.1357992887496948,1.2214230298995972,0.6734309196472168,0.7419299483299255,0.2966863512992859,0.9645517468452454,0.9988012909889221,0.2795616090297699,0.913177490234375,0.19393783807754517,0.10831406712532043,-0.43967804312705994,-0.6622998714447021,-0.5081770420074463,0.1596883237361908,0.31381112337112427,-0.6280503273010254,-0.9876701831817627,-1.1760424375534058,0.36518537998199463,0.5193081498146057,0.9645517468452454,1.0159260034561157,0.8446784615516663,0.22818733751773834,-0.5253018140792847,0.6220566630363464,-0.8164226412773132,-1.8952821493148804,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.1007792949676514,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.1179039478302,-2.0494048595428467,0.12543882429599762,-0.884921669960022,-0.9876701831817627,-2.1179039478302,-2.0665297508239746,-1.878157377243042,-1.3472900390625,-0.7992978692054749,-1.0904186964035034,-0.7821731567382812,-1.2616662979125977,-1.6555355787277222,-2.1179039478302,-2.1007792949676514,-0.7650483846664429,-1.1246682405471802,-0.06293346732854843,0.7076804637908936,1.307046890258789,1.1357992887496948,1.1186745166778564,1.1357992887496948,0.9816765189170837,1.5296686887741089,1.2899221181869507,1.2727973461151123,1.375545859336853,1.5467933416366577,1.4097954034805298,1.4954191446304321,1.6666666269302368,1.8207894563674927,1.7522904872894287,1.718040943145752,0.8960527181625366,-1.604161262512207,1.906413197517395,1.2042982578277588,0.09118931740522385,-0.16568198800086975,0.5535576939582825,0.5706824064254761,1.0159260034561157,0.33093586564064026,0.1596883237361908,1.6152924299240112,1.255672574043274,0.9988012909889221,0.3823101222515106,1.0159260034561157,1.0159260034561157,0.6905556917190552,1.1700488328933716,0.7419299483299255,1.101549744606018,1.1529240608215332,0.9816765189170837,0.34806060791015625,0.416559636592865,0.5535576939582825,1.5981676578521729,0.9474270343780518,0.5364329218864441,0.45080915093421936,0.1425635814666748,0.9816765189170837,0.5193081498146057,1.0501755475997925,0.21106259524822235,0.3823101222515106,0.46793389320373535,0.5193081498146057,1.2385478019714355,1.4611696004867554,1.0844250917434692,0.1596883237361908,1.1186745166778564,0.21106259524822235,0.24531209468841553,0.5535576939582825,0.9816765189170837,1.101549744606018,1.0159260034561157,0.2966863512992859,-1.0904186964035034,-0.7136741280555725,0.6563062071800232,1.0844250917434692,1.1357992887496948,1.5125439167022705,1.444044828414917,1.5296686887741089,1.4611696004867554,1.444044828414917,1.0673003196716309,1.4782943725585938,1.718040943145752,1.6495418548583984,1.6324172019958496,1.7009161710739136,1.444044828414917,1.101549744606018,0.5021833777427673,0.6734309196472168,0.8104289770126343,0.7590547204017639,0.7761794924736023,0.9645517468452454,1.1186745166778564,0.9988012909889221,1.1186745166778564,1.2214230298995972,1.2727973461151123,1.2727973461151123,1.375545859336853,1.255672574043274,1.4954191446304321,1.4611696004867554,1.444044828414917,1.324171543121338,1.5125439167022705,1.5467933416366577,1.444044828414917,1.5467933416366577,1.6837913990020752,1.5125439167022705,1.4954191446304321,1.5296686887741089,1.563918113708496,1.5810428857803345,1.563918113708496,1.6152924299240112,1.6324172019958496,1.375545859336853,1.4269200563430786,1.7351657152175903,1.8036646842956543,1.906413197517395,1.837914228439331,1.8892884254455566],[1.8892884254455566,1.906413197517395,1.9920369386672974,1.8721636533737183,1.8207894563674927,1.7522904872894287,2.0776607990264893,2.0605359077453613,1.9749122858047485,2.214658737182617,2.1975340843200684,2.0434112548828125,2.248908281326294,2.1632845401763916,2.1632845401763916,2.248908281326294,2.0091617107391357,2.1804091930389404,2.231783628463745,2.0091617107391357,1.9749122858047485,2.248908281326294,1.7351657152175903,1.3926706314086914,0.8618032336235046,0.8446784615516663,0.005565545056015253,0.5706824064254761,1.1357992887496948,1.3412963151931763,1.4097954034805298,1.5467933416366577,1.4954191446304321,1.4782943725585938,1.444044828414917,1.718040943145752,1.6324172019958496,1.4954191446304321,1.375545859336853,1.5981676578521729,1.906413197517395,1.5467933416366577,1.9406627416610718,1.8550390005111694,1.3926706314086914,1.375545859336853,1.0159260034561157,0.6049319505691528,0.8618032336235046,0.5706824064254761,0.34806060791015625,1.0501755475997925,0.6049319505691528,0.34806060791015625,-0.26843053102493286,-0.3369295299053192,0.056939806789159775,-1.1760424375534058,-0.919171154499054,-0.0971829816699028,-0.26843053102493286,-0.43967804312705994,-0.7479236125946045,-0.6451750993728638,-0.5253018140792847,0.6734309196472168,0.6220566630363464,-0.2341810017824173,0.8275537490844727,0.8275537490844727,-0.6109256148338318,0.7248051762580872,-1.3301652669906616,-1.4842880964279175,-2.0836544036865234,-2.1179039478302,-2.0836544036865234,-2.01515531539917,-1.7240345478057861,-2.1179039478302,-1.878157377243042,-1.7240345478057861,-0.7992978692054749,-2.032280206680298,-1.878157377243042,-1.8439078330993652,-2.0836544036865234,-2.1179039478302,-2.1179039478302,-0.4739275574684143,-1.3986642360687256,-0.4739275574684143,-1.7240345478057861,-1.415789008140564,-1.3130404949188232,-1.5870366096496582,-2.0836544036865234,-2.0665297508239746,-1.0561691522598267,-1.5699118375778198,-0.7136741280555725,0.7248051762580872,1.1529240608215332,0.913177490234375,1.1700488328933716,1.324171543121338,1.0673003196716309,1.3584210872650146,1.2385478019714355,1.4269200563430786,1.4611696004867554,1.324171543121338,1.5467933416366577,1.6324172019958496,1.7351657152175903,1.5810428857803345,1.6152924299240112,1.9577875137329102,2.1632845401763916,1.9749122858047485,1.0159260034561157,1.2899221181869507,-0.7479236125946045,0.19393783807754517,0.5878071784973145,0.8446784615516663,1.0501755475997925,0.5878071784973145,1.2899221181869507,1.375545859336853,0.8104289770126343,0.9645517468452454,0.5535576939582825,0.433684378862381,0.7419299483299255,0.5021833777427673,1.18717360496521,1.2042982578277588,0.878928005695343,0.7590547204017639,0.5193081498146057,0.48505866527557373,0.9816765189170837,0.22818733751773834,0.9988012909889221,0.6905556917190552,0.8275537490844727,0.9988012909889221,0.9645517468452454,0.6391814351081848,0.1425635814666748,0.2795616090297699,0.17681308090686798,-0.13143248856067657,0.022690298035740852,0.8275537490844727,1.1700488328933716,1.255672574043274,1.1186745166778564,1.375545859336853,0.2966863512992859,1.7351657152175903,0.10831406712532043,0.5878071784973145,0.878928005695343,0.9816765189170837,0.5706824064254761,0.8104289770126343,1.6666666269302368,-0.4568028151988983,-0.43967804312705994,0.7419299483299255,1.5296686887741089,1.307046890258789,1.6324172019958496,1.6837913990020752,1.6495418548583984,1.4269200563430786,1.444044828414917,1.5296686887741089,1.6837913990020752,1.6324172019958496,1.7009161710739136,1.4782943725585938,1.324171543121338,1.1357992887496948,1.0673003196716309,0.5706824064254761,0.7933042049407959,0.913177490234375,1.1357992887496948,1.18717360496521,1.1357992887496948,1.4269200563430786,1.4097954034805298,1.1357992887496948,1.307046890258789,1.2727973461151123,1.2214230298995972,1.4782943725585938,1.4269200563430786,1.4611696004867554,1.3584210872650146,1.4269200563430786,1.3926706314086914,1.5125439167022705,1.375545859336853,1.3926706314086914,1.5296686887741089,1.6324172019958496,1.5296686887741089,1.5296686887741089,1.6495418548583984,1.6837913990020752,1.5125439167022705,1.6495418548583984,1.4782943725585938,1.6666666269302368,1.718040943145752,1.5296686887741089,1.4611696004867554,1.6837913990020752,1.906413197517395,1.8721636533737183],[2.0434112548828125,1.837914228439331,2.0434112548828125,1.7351657152175903,2.214658737182617,1.9577875137329102,1.786539912223816,1.6495418548583984,2.0776607990264893,1.9749122858047485,2.231783628463745,2.1804091930389404,2.248908281326294,2.214658737182617,2.129034996032715,2.1975340843200684,2.1461598873138428,2.094785451889038,2.248908281326294,2.1461598873138428,2.1632845401763916,1.9235379695892334,1.8721636533737183,1.1700488328933716,1.0501755475997925,0.1596883237361908,0.07406456023454666,0.48505866527557373,0.7248051762580872,1.0501755475997925,1.444044828414917,1.4782943725585938,1.4611696004867554,1.0159260034561157,1.3412963151931763,1.4097954034805298,1.0501755475997925,1.0844250917434692,0.9988012909889221,1.0159260034561157,1.444044828414917,1.6324172019958496,1.786539912223816,1.7522904872894287,1.563918113708496,1.1529240608215332,0.9303022623062134,0.3823101222515106,-0.3198047876358032,0.7933042049407959,0.9474270343780518,-0.3883037865161896,0.2795616090297699,0.6563062071800232,0.399434894323349,-0.13143248856067657,-1.1589176654815674,-1.3472900390625,-0.884921669960022,-0.3883037865161896,0.6734309196472168,0.48505866527557373,0.24531209468841553,-0.28555527329444885,-0.4739275574684143,0.5878071784973145,0.8104289770126343,0.2966863512992859,0.8618032336235046,0.33093586564064026,-0.3540542721748352,0.5535576939582825,0.056939806789159775,-0.919171154499054,-1.2616662979125977,-2.01515531539917,-2.1007792949676514,-1.8267830610275269,-2.0665297508239746,-2.01515531539917,-1.7240345478057861,-2.1179039478302,-1.6555355787277222,-1.5185375213623047,-0.7821731567382812,-2.1179039478302,-1.9637811183929443,-2.1007792949676514,-0.6965493559837341,-0.8335474133491516,0.24531209468841553,-1.8267830610275269,-0.9020463824272156,-0.0971829816699028,-0.14855724573135376,-2.1179039478302,-2.1007792949676514,-1.8610326051712036,-0.43967804312705994,-0.8164226412773132,-1.1075434684753418,-0.0971829816699028,-0.2341810017824173,0.9988012909889221,1.0844250917434692,1.2214230298995972,1.18717360496521,1.2727973461151123,1.375545859336853,1.4097954034805298,1.3926706314086914,1.324171543121338,1.4782943725585938,1.5981676578521729,1.8721636533737183,1.5981676578521729,1.8892884254455566,2.214658737182617,2.0091617107391357,-0.5938008427619934,0.48505866527557373,0.7076804637908936,-0.43967804312705994,0.10831406712532043,0.5364329218864441,0.9988012909889221,0.6391814351081848,1.3584210872650146,0.7419299483299255,0.8275537490844727,0.6563062071800232,1.3926706314086914,1.307046890258789,0.6734309196472168,0.7076804637908936,0.34806060791015625,1.444044828414917,1.2385478019714355,1.0844250917434692,0.7248051762580872,0.9988012909889221,0.5706824064254761,0.5878071784973145,1.1700488328933716,1.3584210872650146,0.7419299483299255,1.2214230298995972,1.033050775527954,0.878928005695343,0.21106259524822235,1.0844250917434692,0.10831406712532043,0.5535576939582825,-0.7307988405227661,0.9988012909889221,-0.28555527329444885,1.2385478019714355,0.7076804637908936,0.7590547204017639,1.6324172019958496,1.033050775527954,-0.3883037865161896,-0.11430773138999939,1.5467933416366577,0.6734309196472168,0.7590547204017639,0.6905556917190552,0.7248051762580872,1.1186745166778564,0.7761794924736023,0.31381112337112427,1.307046890258789,1.5125439167022705,1.5467933416366577,1.5981676578521729,1.5810428857803345,1.6666666269302368,1.5296686887741089,1.3584210872650146,1.4782943725585938,1.5981676578521729,1.7009161710739136,1.3412963151931763,1.5467933416366577,1.3412963151931763,1.18717360496521,0.6220566630363464,0.878928005695343,0.878928005695343,0.7076804637908936,0.9816765189170837,1.2214230298995972,1.2385478019714355,1.255672574043274,1.375545859336853,1.2214230298995972,1.5810428857803345,1.5467933416366577,1.2727973461151123,1.2385478019714355,1.3584210872650146,1.5296686887741089,1.4782943725585938,1.786539912223816,1.6495418548583984,1.375545859336853,1.6837913990020752,1.5296686887741089,1.4611696004867554,1.5125439167022705,1.6666666269302368,1.6324172019958496,1.4954191446304321,1.5810428857803345,1.6666666269302368,1.6666666269302368,1.7522904872894287,1.7351657152175903,1.6837913990020752,1.6495418548583984,1.563918113708496,1.786539912223816,1.906413197517395,1.9920369386672974],[2.248908281326294,1.906413197517395,2.248908281326294,1.8207894563674927,2.0262866020202637,1.6666666269302368,1.6666666269302368,1.837914228439331,2.0605359077453613,1.9406627416610718,2.111910343170166,2.0776607990264893,2.1632845401763916,2.0434112548828125,2.111910343170166,1.9406627416610718,2.0605359077453613,2.0262866020202637,2.1804091930389404,2.0262866020202637,2.129034996032715,2.231783628463745,1.786539912223816,1.837914228439331,0.36518537998199463,-1.2787909507751465,0.5364329218864441,0.31381112337112427,-0.26843053102493286,0.416559636592865,1.1529240608215332,1.033050775527954,1.4097954034805298,0.5535576939582825,0.8446784615516663,1.255672574043274,1.2727973461151123,1.18717360496521,0.8618032336235046,0.7248051762580872,1.1529240608215332,1.4097954034805298,1.8721636533737183,1.563918113708496,1.5467933416366577,1.5810428857803345,1.1357992887496948,-0.06293346732854843,-0.42255330085754395,0.5193081498146057,1.0159260034561157,-0.4910523295402527,-0.576676070690155,-0.7136741280555725,0.3823101222515106,-0.3369295299053192,-0.8677968978881836,-1.1075434684753418,-1.073293924331665,-0.9705454111099243,-0.3540542721748352,0.2795616090297699,0.022690298035740852,0.24531209468841553,-0.14855724573135376,-0.11430773138999939,0.8446784615516663,0.34806060791015625,0.8446784615516663,0.5193081498146057,-0.43967804312705994,0.6220566630363464,0.31381112337112427,-0.13143248856067657,-0.6280503273010254,-0.9705454111099243,-1.7240345478057861,-1.2616662979125977,-1.8952821493148804,-2.1179039478302,-2.01515531539917,-1.9124069213867188,-1.6384108066558838,-1.6212860345840454,-1.4329137802124023,-2.0665297508239746,-1.9124069213867188,-0.5081770420074463,-0.01155920885503292,-0.542426586151123,-1.227416753768921,-1.7069098949432373,-0.884921669960022,-0.8164226412773132,-1.9295316934585571,-2.0836544036865234,-2.1179039478302,-1.3815394639968872,-1.1589176654815674,-0.6280503273010254,-0.9534206986427307,-0.42255330085754395,-1.6726603507995605,0.7590547204017639,0.7761794924736023,1.2385478019714355,1.2385478019714355,1.2214230298995972,1.4097954034805298,1.2214230298995972,1.3412963151931763,1.255672574043274,1.307046890258789,1.5810428857803345,1.5467933416366577,1.7694151401519775,1.4782943725585938,2.129034996032715,2.248908281326294,1.0159260034561157,-0.3883037865161896,1.9577875137329102,0.12543882429599762,0.36518537998199463,1.6152924299240112,1.255672574043274,0.6563062071800232,1.2899221181869507,1.6495418548583984,1.1357992887496948,1.718040943145752,0.9988012909889221,1.101549744606018,0.6049319505691528,0.7248051762580872,1.4097954034805298,0.7933042049407959,0.8960527181625366,0.7933042049407959,0.913177490234375,0.2966863512992859,1.0844250917434692,0.6220566630363464,1.375545859336853,1.18717360496521,0.48505866527557373,0.9474270343780518,0.6391814351081848,1.1700488328933716,1.6152924299240112,0.6220566630363464,0.913177490234375,0.9645517468452454,1.375545859336853,1.375545859336853,0.005565545056015253,0.46793389320373535,-0.5595513582229614,-0.6280503273010254,-0.40542855858802795,-0.5253018140792847,0.7933042049407959,0.21106259524822235,0.399434894323349,0.878928005695343,0.5535576939582825,1.0501755475997925,0.913177490234375,0.6734309196472168,0.878928005695343,1.2385478019714355,1.4097954034805298,1.8550390005111694,1.6495418548583984,1.5125439167022705,1.7522904872894287,1.5810428857803345,1.3584210872650146,1.1700488328933716,1.6495418548583984,1.4611696004867554,1.5467933416366577,1.563918113708496,1.4954191446304321,1.3412963151931763,1.1700488328933716,1.0501755475997925,0.7076804637908936,0.6905556917190552,0.7248051762580872,1.0501755475997925,1.2385478019714355,1.324171543121338,1.2899221181869507,1.3412963151931763,1.3412963151931763,1.3412963151931763,1.3584210872650146,1.375545859336853,1.5125439167022705,1.4782943725585938,1.324171543121338,1.5810428857803345,1.5981676578521729,1.5981676578521729,1.4269200563430786,1.375545859336853,1.5296686887741089,1.7522904872894287,1.324171543121338,1.5467933416366577,1.5125439167022705,1.4954191446304321,1.4954191446304321,1.6837913990020752,1.837914228439331,1.5125439167022705,1.5125439167022705,1.6495418548583984,1.5296686887741089,1.563918113708496,1.9406627416610718,1.6324172019958496,1.8721636533737183],[1.8036646842956543,1.8721636533737183,2.129034996032715,1.8207894563674927,1.786539912223816,1.8892884254455566,1.9235379695892334,2.0434112548828125,2.231783628463745,2.0776607990264893,2.0091617107391357,2.248908281326294,2.248908281326294,2.1804091930389404,2.1632845401763916,2.0605359077453613,2.248908281326294,2.1632845401763916,2.1632845401763916,2.248908281326294,2.248908281326294,1.906413197517395,1.7009161710739136,0.878928005695343,-0.7821731567382812,0.31381112337112427,1.2214230298995972,0.6049319505691528,0.12543882429599762,-0.3198047876358032,0.6563062071800232,1.0673003196716309,1.0501755475997925,0.7761794924736023,0.7590547204017639,1.2899221181869507,1.255672574043274,0.9474270343780518,1.0844250917434692,0.6563062071800232,1.1357992887496948,1.8036646842956543,1.5810428857803345,1.2899221181869507,1.4269200563430786,1.307046890258789,1.1529240608215332,0.45080915093421936,0.5021833777427673,0.399434894323349,0.9303022623062134,0.5535576939582825,-0.0971829816699028,-0.11430773138999939,0.9474270343780518,0.45080915093421936,0.1425635814666748,-0.2513057589530945,-0.542426586151123,-0.4568028151988983,-0.28555527329444885,0.12543882429599762,0.09118931740522385,0.7076804637908936,0.24531209468841553,0.1596883237361908,0.10831406712532043,0.22818733751773834,0.5193081498146057,0.8618032336235046,0.5021833777427673,0.9988012909889221,0.5364329218864441,0.19393783807754517,-0.542426586151123,0.2966863512992859,0.2795616090297699,-0.4568028151988983,-1.1760424375534058,-0.9705454111099243,-1.5699118375778198,-0.6622998714447021,-1.9124069213867188,-1.878157377243042,-1.6212860345840454,-2.01515531539917,-2.1179039478302,-0.7992978692054749,-0.06293346732854843,-0.6965493559837341,-1.227416753768921,-1.6555355787277222,-2.0836544036865234,-1.7240345478057861,-2.1179039478302,-2.0494048595428467,-0.8335474133491516,0.24531209468841553,-0.08005822449922562,-1.0219197273254395,-0.30268001556396484,-0.9705454111099243,-1.4329137802124023,0.48505866527557373,1.101549744606018,0.6734309196472168,1.2385478019714355,1.4269200563430786,1.2214230298995972,1.4269200563430786,1.307046890258789,1.5467933416366577,1.3584210872650146,1.4611696004867554,1.5981676578521729,1.375545859336853,1.444044828414917,0.5021833777427673,2.248908281326294,1.563918113708496,1.1357992887496948,1.2385478019714355,-0.08005822449922562,0.6049319505691528,1.8036646842956543,1.1357992887496948,0.8618032336235046,0.3823101222515106,1.5810428857803345,0.6563062071800232,1.4954191446304321,0.2624368667602539,1.18717360496521,0.9988012909889221,1.2214230298995972,0.45080915093421936,0.33093586564064026,0.3823101222515106,0.7933042049407959,0.6563062071800232,0.5364329218864441,1.255672574043274,0.399434894323349,1.2899221181869507,0.6220566630363464,0.5706824064254761,0.1596883237361908,0.3823101222515106,0.8960527181625366,1.1186745166778564,1.2899221181869507,1.4269200563430786,0.7076804637908936,1.375545859336853,1.255672574043274,-0.3540542721748352,0.6734309196472168,0.5535576939582825,0.005565545056015253,-0.42255330085754395,0.12543882429599762,0.5193081498146057,0.6220566630363464,0.2624368667602539,1.4782943725585938,1.0844250917434692,1.101549744606018,1.2042982578277588,1.4782943725585938,0.9645517468452454,1.3926706314086914,1.6495418548583984,1.4954191446304321,1.307046890258789,1.307046890258789,1.18717360496521,1.3926706314086914,1.4097954034805298,1.307046890258789,1.4611696004867554,1.4269200563430786,1.307046890258789,1.4954191446304321,1.2727973461151123,1.2214230298995972,1.1357992887496948,1.101549744606018,0.878928005695343,0.9988012909889221,1.033050775527954,1.1700488328933716,1.0501755475997925,1.255672574043274,1.3584210872650146,1.0844250917434692,1.2385478019714355,1.4782943725585938,1.3584210872650146,1.4611696004867554,1.6152924299240112,1.444044828414917,1.563918113708496,1.6837913990020752,1.3412963151931763,1.4782943725585938,1.6837913990020752,1.5467933416366577,1.4269200563430786,1.5981676578521729,1.6152924299240112,1.444044828414917,1.3584210872650146,1.6837913990020752,1.6324172019958496,1.6837913990020752,1.6666666269302368,1.6837913990020752,1.718040943145752,1.8036646842956543,1.6324172019958496,1.6495418548583984,1.5981676578521729,1.6666666269302368,1.8036646842956543],[2.0605359077453613,2.0605359077453613,1.9235379695892334,2.248908281326294,2.248908281326294,2.0091617107391357,1.8892884254455566,1.7009161710739136,1.8721636533737183,1.9920369386672974,2.1461598873138428,2.248908281326294,2.111910343170166,2.1632845401763916,2.1461598873138428,2.129034996032715,1.9406627416610718,2.231783628463745,2.248908281326294,2.0434112548828125,2.214658737182617,1.8892884254455566,0.46793389320373535,0.17681308090686798,0.6049319505691528,0.9474270343780518,1.2727973461151123,1.3412963151931763,1.1700488328933716,0.6734309196472168,0.8960527181625366,1.2214230298995972,1.324171543121338,0.7590547204017639,0.5193081498146057,0.7419299483299255,1.307046890258789,1.4782943725585938,1.1529240608215332,1.2899221181869507,1.0673003196716309,1.6837913990020752,1.4954191446304321,1.375545859336853,1.444044828414917,1.3584210872650146,1.0501755475997925,1.101549744606018,0.5878071784973145,0.17681308090686798,0.2966863512992859,0.8275537490844727,-0.13143248856067657,0.5193081498146057,0.24531209468841553,1.033050775527954,0.878928005695343,0.2966863512992859,0.5706824064254761,0.6905556917190552,0.416559636592865,0.48505866527557373,-0.11430773138999939,0.24531209468841553,0.913177490234375,0.6563062071800232,0.22818733751773834,-1.3301652669906616,0.6734309196472168,0.33093586564064026,0.6734309196472168,0.7933042049407959,0.6220566630363464,0.6391814351081848,-0.6622998714447021,1.1700488328933716,0.913177490234375,0.5193081498146057,0.36518537998199463,0.46793389320373535,0.1596883237361908,-0.18280674517154694,-1.5185375213623047,-1.1760424375534058,-1.1760424375534058,-1.2787909507751465,-1.6726603507995605,-1.878157377243042,-1.4842880964279175,-1.4500385522842407,-0.9020463824272156,-1.809658408164978,-2.0836544036865234,0.19393783807754517,-1.6726603507995605,-1.0904186964035034,-0.8506721258163452,0.31381112337112427,-1.1075434684753418,-0.18280674517154694,-0.028683962300419807,-0.5595513582229614,-0.3711790442466736,-0.6280503273010254,0.416559636592865,0.8275537490844727,0.9474270343780518,1.0844250917434692,1.2214230298995972,1.3584210872650146,1.4269200563430786,1.2385478019714355,1.5467933416366577,1.375545859336853,1.3584210872650146,1.3412963151931763,1.1700488328933716,0.399434894323349,0.19393783807754517,2.248908281326294,2.0434112548828125,1.2385478019714355,0.36518537998199463,0.8960527181625366,1.3412963151931763,0.878928005695343,0.36518537998199463,1.033050775527954,0.6049319505691528,1.6495418548583984,0.9303022623062134,1.5810428857803345,1.5467933416366577,0.8618032336235046,1.2214230298995972,1.4097954034805298,1.033050775527954,1.6837913990020752,1.563918113708496,0.8104289770126343,0.913177490234375,1.1186745166778564,0.9816765189170837,0.7590547204017639,-0.0971829816699028,0.6563062071800232,0.6905556917190552,0.6391814351081848,1.0673003196716309,1.033050775527954,0.9816765189170837,1.2042982578277588,0.9988012909889221,0.5878071784973145,1.0159260034561157,1.0501755475997925,0.7761794924736023,-0.3540542721748352,0.03981505334377289,0.5878071784973145,0.34806060791015625,-0.6622998714447021,1.0159260034561157,0.8104289770126343,1.101549744606018,1.101549744606018,0.9988012909889221,1.3926706314086914,1.18717360496521,1.3412963151931763,1.5296686887741089,1.563918113708496,1.7522904872894287,1.18717360496521,1.0159260034561157,0.5193081498146057,0.7933042049407959,1.1357992887496948,1.324171543121338,1.5296686887741089,1.5125439167022705,1.444044828414917,1.0844250917434692,1.2042982578277588,1.2042982578277588,1.4611696004867554,1.2727973461151123,1.307046890258789,0.7076804637908936,1.0673003196716309,1.2042982578277588,1.255672574043274,1.1700488328933716,1.4097954034805298,1.2727973461151123,1.5467933416366577,1.3926706314086914,1.3926706314086914,1.4097954034805298,1.5125439167022705,1.2727973461151123,1.5810428857803345,1.5981676578521729,1.444044828414917,1.5810428857803345,1.6495418548583984,1.6495418548583984,1.5125439167022705,1.6837913990020752,1.6495418548583984,1.5125439167022705,1.4782943725585938,1.5467933416366577,1.7522904872894287,1.6324172019958496,1.563918113708496,1.5981676578521729,1.7522904872894287,1.786539912223816,1.8550390005111694,1.6666666269302368,1.8550390005111694,1.7351657152175903,1.5810428857803345],[1.8550390005111694,1.9577875137329102,2.1975340843200684,2.1975340843200684,1.6837913990020752,2.111910343170166,1.9577875137329102,1.9406627416610718,2.111910343170166,2.214658737182617,2.1975340843200684,2.129034996032715,2.231783628463745,2.1975340843200684,1.9577875137329102,2.1461598873138428,2.214658737182617,2.1975340843200684,2.1461598873138428,2.231783628463745,1.9235379695892334,1.4611696004867554,1.7351657152175903,0.48505866527557373,0.6563062071800232,0.8275537490844727,1.2214230298995972,1.4611696004867554,1.3926706314086914,1.0501755475997925,1.4782943725585938,1.5810428857803345,1.2042982578277588,0.9988012909889221,0.34806060791015625,0.7248051762580872,1.2214230298995972,1.7009161710739136,1.4954191446304321,1.3584210872650146,1.563918113708496,1.6495418548583984,1.444044828414917,1.307046890258789,1.7522904872894287,1.444044828414917,0.6049319505691528,1.033050775527954,0.5535576939582825,0.6220566630363464,0.07406456023454666,0.416559636592865,0.2624368667602539,0.22818733751773834,0.6734309196472168,0.5193081498146057,0.5706824064254761,-0.19993150234222412,0.2966863512992859,0.8104289770126343,0.399434894323349,0.7933042049407959,-0.0971829816699028,0.31381112337112427,0.6391814351081848,0.9303022623062134,0.33093586564064026,0.03981505334377289,0.9303022623062134,0.5878071784973145,0.7248051762580872,0.7761794924736023,0.7761794924736023,1.1357992887496948,-0.7992978692054749,1.101549744606018,0.5364329218864441,0.2966863512992859,-0.3369295299053192,0.45080915093421936,-0.4568028151988983,-0.08005822449922562,-1.1246682405471802,-0.9020463824272156,-1.467163324356079,-0.7992978692054749,-0.3540542721748352,-1.073293924331665,-1.7069098949432373,-1.4500385522842407,-1.5527870655059814,-0.5595513582229614,-2.0494048595428467,-1.073293924331665,0.34806060791015625,-0.0971829816699028,0.416559636592865,0.5193081498146057,-0.5595513582229614,-0.6622998714447021,-0.5938008427619934,-0.576676070690155,-0.2513057589530945,-0.40542855858802795,0.07406456023454666,0.9816765189170837,0.9645517468452454,0.7590547204017639,1.2727973461151123,1.1186745166778564,1.2214230298995972,1.2899221181869507,1.3926706314086914,1.1529240608215332,1.3926706314086914,1.5981676578521729,1.3926706314086914,1.18717360496521,0.8104289770126343,0.45080915093421936,1.2899221181869507,0.5364329218864441,0.31381112337112427,0.5364329218864441,1.2727973461151123,0.8960527181625366,0.5193081498146057,1.0673003196716309,1.3926706314086914,1.0501755475997925,1.5296686887741089,1.2042982578277588,1.307046890258789,1.0673003196716309,1.4954191446304321,1.5125439167022705,1.6495418548583984,1.1357992887496948,0.7761794924736023,0.6049319505691528,1.5467933416366577,1.444044828414917,0.34806060791015625,1.3926706314086914,1.2042982578277588,1.3584210872650146,0.6734309196472168,1.1529240608215332,1.0501755475997925,1.4097954034805298,1.5125439167022705,1.0844250917434692,0.33093586564064026,0.6905556917190552,0.5021833777427673,0.24531209468841553,0.5535576939582825,-0.2513057589530945,1.101549744606018,-0.11430773138999939,0.5021833777427673,1.6495418548583984,-1.0561691522598267,1.8721636533737183,1.2899221181869507,0.913177490234375,1.6495418548583984,1.1700488328933716,1.563918113708496,1.5981676578521729,1.5981676578521729,1.6324172019958496,1.375545859336853,1.4097954034805298,0.7419299483299255,0.9816765189170837,1.1700488328933716,1.2385478019714355,1.18717360496521,1.5125439167022705,1.1529240608215332,1.324171543121338,1.1186745166778564,1.1700488328933716,1.4269200563430786,1.2385478019714355,1.3584210872650146,0.7248051762580872,0.7419299483299255,0.9645517468452454,1.18717360496521,1.101549744606018,1.2899221181869507,1.3584210872650146,1.307046890258789,1.2899221181869507,1.4954191446304321,1.3584210872650146,1.5467933416366577,1.3926706314086914,1.5296686887741089,1.5810428857803345,1.6152924299240112,1.6495418548583984,1.444044828414917,1.4611696004867554,1.5467933416366577,1.4611696004867554,1.4954191446304321,1.8036646842956543,1.1529240608215332,1.5981676578521729,1.7009161710739136,1.444044828414917,1.7009161710739136,1.8550390005111694,1.5981676578521729,1.6324172019958496,1.5467933416366577,1.7694151401519775,1.6152924299240112,1.7694151401519775,1.7351657152175903,1.718040943145752],[2.111910343170166,1.8721636533737183,1.9920369386672974,2.0091617107391357,2.0434112548828125,1.9235379695892334,2.0605359077453613,2.214658737182617,2.0776607990264893,2.231783628463745,1.9749122858047485,2.248908281326294,2.0091617107391357,2.0776607990264893,2.1804091930389404,2.0091617107391357,2.248908281326294,2.231783628463745,2.1461598873138428,2.248908281326294,1.9235379695892334,1.6495418548583984,1.4269200563430786,0.33093586564064026,0.45080915093421936,0.6049319505691528,1.307046890258789,1.8892884254455566,1.6837913990020752,1.5125439167022705,1.324171543121338,1.4269200563430786,1.2899221181869507,0.9645517468452454,0.416559636592865,0.5706824064254761,1.0844250917434692,1.6837913990020752,1.8207894563674927,1.8721636533737183,1.4954191446304321,1.1357992887496948,1.4782943725585938,1.444044828414917,1.9406627416610718,0.8618032336235046,0.34806060791015625,1.1186745166778564,0.913177490234375,0.9988012909889221,-0.06293346732854843,0.2966863512992859,0.24531209468841553,-0.18280674517154694,0.433684378862381,0.7076804637908936,0.34806060791015625,-0.9534206986427307,0.1425635814666748,-0.18280674517154694,0.5706824064254761,0.7248051762580872,0.34806060791015625,0.2624368667602539,0.5878071784973145,0.5364329218864441,0.8275537490844727,1.101549744606018,1.1700488328933716,0.7076804637908936,0.8446784615516663,0.433684378862381,0.9474270343780518,0.8275537490844727,-0.04580871760845184,0.6391814351081848,0.24531209468841553,0.21106259524822235,-0.3369295299053192,0.17681308090686798,-1.1075434684753418,0.10831406712532043,-1.1931672096252441,-1.5870366096496582,-0.8677968978881836,-0.30268001556396484,-0.26843053102493286,-1.5699118375778198,-2.0665297508239746,-1.9637811183929443,-1.8610326051712036,-0.576676070690155,-0.2170562595129013,-0.4739275574684143,-0.7479236125946045,-0.2341810017824173,-0.2513057589530945,0.36518537998199463,-0.9020463824272156,-1.2959157228469849,-0.5253018140792847,0.1425635814666748,-0.6451750993728638,-0.11430773138999939,-1.758284091949463,0.19393783807754517,0.5878071784973145,0.8275537490844727,1.444044828414917,1.033050775527954,1.2214230298995972,1.2727973461151123,1.3926706314086914,1.4782943725585938,1.307046890258789,1.3584210872650146,1.444044828414917,1.5125439167022705,0.7419299483299255,0.17681308090686798,0.33093586564064026,-0.2170562595129013,0.34806060791015625,0.19393783807754517,1.2042982578277588,0.31381112337112427,-0.2170562595129013,1.5810428857803345,1.4782943725585938,1.1357992887496948,1.7009161710739136,1.6324172019958496,1.8036646842956543,1.375545859336853,1.4269200563430786,1.1529240608215332,1.3926706314086914,1.2385478019714355,2.111910343170166,0.8275537490844727,0.9474270343780518,0.9303022623062134,1.0501755475997925,0.33093586564064026,1.4097954034805298,0.7419299483299255,0.7761794924736023,1.2727973461151123,1.255672574043274,1.9577875137329102,1.18717360496521,0.7590547204017639,1.4782943725585938,1.1357992887496948,0.9645517468452454,1.718040943145752,0.5021833777427673,0.8104289770126343,0.9645517468452454,1.101549744606018,-0.0971829816699028,0.10831406712532043,-0.3369295299053192,1.444044828414917,1.3412963151931763,0.8960527181625366,1.1357992887496948,1.1186745166778564,1.0159260034561157,1.4954191446304321,1.5296686887741089,1.4097954034805298,1.4954191446304321,1.4269200563430786,0.7419299483299255,1.5467933416366577,1.3412963151931763,1.2727973461151123,1.1700488328933716,0.913177490234375,1.0673003196716309,1.444044828414917,1.255672574043274,1.307046890258789,1.4097954034805298,1.3412963151931763,1.2727973461151123,1.2214230298995972,1.2214230298995972,1.0501755475997925,1.0673003196716309,1.0501755475997925,1.18717360496521,1.2214230298995972,1.18717360496521,1.2727973461151123,1.3926706314086914,1.2385478019714355,1.5296686887741089,1.307046890258789,1.5296686887741089,1.4954191446304321,1.4954191446304321,1.6152924299240112,1.5296686887741089,1.5467933416366577,1.6666666269302368,1.6837913990020752,1.6837913990020752,1.6837913990020752,1.5810428857803345,1.563918113708496,1.6495418548583984,1.6666666269302368,1.4782943725585938,1.5810428857803345,1.7522904872894287,1.5296686887741089,1.6666666269302368,1.6837913990020752,1.8721636533737183,1.7694151401519775,1.6837913990020752,1.7522904872894287],[1.8550390005111694,1.7522904872894287,1.9920369386672974,2.248908281326294,2.0091617107391357,2.1461598873138428,2.214658737182617,2.1632845401763916,1.9577875137329102,1.9920369386672974,2.1975340843200684,1.8892884254455566,1.9749122858047485,2.0776607990264893,2.248908281326294,2.1461598873138428,1.9749122858047485,2.248908281326294,2.094785451889038,2.0605359077453613,1.4269200563430786,1.4269200563430786,1.307046890258789,-0.4910523295402527,-0.0971829816699028,1.1529240608215332,1.7009161710739136,1.8892884254455566,1.6837913990020752,1.3584210872650146,1.4611696004867554,1.6495418548583984,1.718040943145752,1.1700488328933716,0.6563062071800232,0.9816765189170837,1.101549744606018,1.786539912223816,1.9920369386672974,1.718040943145752,1.5810428857803345,1.5981676578521729,1.5981676578521729,1.324171543121338,0.9816765189170837,1.2042982578277588,0.7076804637908936,0.21106259524822235,1.2899221181869507,1.033050775527954,0.5535576939582825,-0.30268001556396484,-0.8164226412773132,0.6734309196472168,0.33093586564064026,0.022690298035740852,0.12543882429599762,-0.3198047876358032,-0.11430773138999939,-0.9705454111099243,0.45080915093421936,0.399434894323349,0.22818733751773834,-0.7136741280555725,-0.028683962300419807,0.07406456023454666,0.7248051762580872,0.7076804637908936,0.913177490234375,0.6220566630363464,0.45080915093421936,-0.19993150234222412,0.7761794924736023,0.2624368667602539,0.31381112337112427,0.1425635814666748,-0.4568028151988983,-0.6965493559837341,-0.7479236125946045,-0.884921669960022,-0.9020463824272156,-0.6965493559837341,-1.1075434684753418,-1.073293924331665,-1.227416753768921,-0.3198047876358032,-0.7136741280555725,-1.7240345478057861,-1.6726603507995605,-1.998030662536621,0.2624368667602539,0.5193081498146057,0.9645517468452454,0.913177490234375,0.3823101222515106,-0.0971829816699028,-0.028683962300419807,-0.9534206986427307,-1.0390443801879883,-0.4739275574684143,-0.7136741280555725,-0.04580871760845184,-0.3711790442466736,-0.08005822449922562,-0.5938008427619934,0.1596883237361908,0.8618032336235046,-0.43967804312705994,1.1186745166778564,1.0673003196716309,1.18717360496521,1.4269200563430786,1.375545859336853,1.18717360496521,1.4611696004867554,1.324171543121338,1.3584210872650146,1.4954191446304321,1.2899221181869507,1.0501755475997925,-0.01155920885503292,0.46793389320373535,0.48505866527557373,0.9645517468452454,0.6563062071800232,0.6391814351081848,0.913177490234375,1.5125439167022705,1.8721636533737183,1.6666666269302368,1.5810428857803345,1.5296686887741089,1.6324172019958496,1.563918113708496,1.3584210872650146,1.2899221181869507,1.2899221181869507,1.4097954034805298,1.9749122858047485,1.7351657152175903,1.6495418548583984,0.24531209468841553,1.5125439167022705,1.718040943145752,0.913177490234375,0.9988012909889221,1.307046890258789,0.31381112337112427,0.7933042049407959,0.48505866527557373,0.6734309196472168,1.2727973461151123,0.8446784615516663,1.255672574043274,1.0673003196716309,0.03981505334377289,0.5193081498146057,0.5535576939582825,0.6049319505691528,1.1700488328933716,1.324171543121338,0.056939806789159775,1.2214230298995972,1.18717360496521,0.9303022623062134,1.18717360496521,0.878928005695343,0.7933042049407959,1.307046890258789,1.4269200563430786,1.4954191446304321,1.8207894563674927,1.5296686887741089,0.31381112337112427,0.7419299483299255,0.9474270343780518,1.324171543121338,1.1529240608215332,1.375545859336853,0.7761794924736023,1.0159260034561157,1.033050775527954,1.1700488328933716,1.2899221181869507,1.2899221181869507,1.3412963151931763,1.3926706314086914,1.033050775527954,1.18717360496521,1.1357992887496948,1.307046890258789,1.2727973461151123,1.255672574043274,1.2727973461151123,1.444044828414917,1.444044828414917,1.5125439167022705,1.3412963151931763,1.7694151401519775,1.4611696004867554,1.375545859336853,1.5296686887741089,1.4954191446304321,1.5296686887741089,1.5981676578521729,1.5810428857803345,1.6495418548583984,1.7694151401519775,1.6666666269302368,1.6666666269302368,1.6495418548583984,1.5810428857803345,1.4782943725585938,1.5810428857803345,1.5810428857803345,1.6666666269302368,1.7009161710739136,1.4782943725585938,1.8892884254455566,1.718040943145752,1.8207894563674927,1.718040943145752,1.7694151401519775,1.786539912223816],[1.563918113708496,2.248908281326294,2.248908281326294,1.9235379695892334,2.0434112548828125,1.8721636533737183,1.9577875137329102,1.9235379695892334,2.111910343170166,1.9577875137329102,2.0605359077453613,2.0434112548828125,2.0605359077453613,2.1804091930389404,2.0262866020202637,1.8892884254455566,2.1461598873138428,1.8721636533737183,2.248908281326294,2.111910343170166,2.1804091930389404,1.8550390005111694,0.10831406712532043,0.7248051762580872,1.101549744606018,0.913177490234375,1.4097954034805298,1.6837913990020752,1.5467933416366577,1.5810428857803345,1.563918113708496,1.6666666269302368,1.6837913990020752,1.1357992887496948,1.5296686887741089,1.1700488328933716,1.3926706314086914,1.9577875137329102,2.0262866020202637,1.9749122858047485,1.563918113708496,1.4954191446304321,1.444044828414917,1.3584210872650146,1.255672574043274,1.0673003196716309,0.7419299483299255,0.6391814351081848,0.9816765189170837,1.3412963151931763,0.9816765189170837,0.9474270343780518,-0.7650483846664429,-0.6451750993728638,0.12543882429599762,-0.06293346732854843,-1.1417930126190186,0.12543882429599762,0.09118931740522385,0.2624368667602539,0.416559636592865,0.21106259524822235,0.1425635814666748,-0.919171154499054,-0.8677968978881836,0.24531209468841553,0.9303022623062134,0.8446784615516663,0.9303022623062134,0.6905556917190552,0.5021833777427673,-0.3198047876358032,0.8446784615516663,-0.04580871760845184,-0.11430773138999939,-0.3711790442466736,-0.8335474133491516,-1.004794955253601,-0.576676070690155,-1.3472900390625,-0.42255330085754395,-0.9705454111099243,-1.1246682405471802,-0.4910523295402527,-0.6109256148338318,-0.6622998714447021,-1.3815394639968872,-2.1179039478302,-2.1007792949676514,-2.1007792949676514,0.24531209468841553,0.48505866527557373,0.7590547204017639,0.9645517468452454,0.6220566630363464,-0.2170562595129013,0.7076804637908936,0.07406456023454666,-0.19993150234222412,-1.3644148111343384,-0.7650483846664429,-0.14855724573135376,-0.4910523295402527,-1.0904186964035034,-0.6280503273010254,-0.2170562595129013,0.5364329218864441,-0.16568198800086975,1.0673003196716309,1.2385478019714355,1.2899221181869507,1.0673003196716309,1.4782943725585938,1.3584210872650146,1.3926706314086914,1.3584210872650146,1.3926706314086914,1.2899221181869507,1.5296686887741089,0.9303022623062134,0.2795616090297699,0.36518537998199463,0.6049319505691528,0.913177490234375,0.6391814351081848,0.1596883237361908,1.2385478019714355,1.1529240608215332,1.375545859336853,1.8207894563674927,1.3584210872650146,1.1357992887496948,1.18717360496521,0.9816765189170837,1.8207894563674927,1.3584210872650146,1.0673003196716309,1.4097954034805298,1.444044828414917,1.9406627416610718,1.375545859336853,1.255672574043274,1.0159260034561157,0.24531209468841553,1.4611696004867554,0.7419299483299255,0.7076804637908936,0.8104289770126343,1.2385478019714355,1.7009161710739136,1.2214230298995972,0.8618032336235046,0.022690298035740852,0.6905556917190552,1.1700488328933716,0.005565545056015253,0.48505866527557373,0.878928005695343,0.2966863512992859,0.31381112337112427,0.416559636592865,1.6495418548583984,0.09118931740522385,1.1357992887496948,0.9645517468452454,1.1357992887496948,0.5535576939582825,0.2966863512992859,0.878928005695343,1.6324172019958496,1.6495418548583984,1.3926706314086914,1.3926706314086914,0.7076804637908936,0.45080915093421936,0.8446784615516663,0.913177490234375,1.2385478019714355,1.1186745166778564,1.0159260034561157,0.878928005695343,1.307046890258789,1.2042982578277588,1.0673003196716309,1.2385478019714355,1.3412963151931763,1.4782943725585938,1.18717360496521,1.2899221181869507,1.2214230298995972,1.0673003196716309,0.9645517468452454,1.2385478019714355,1.0844250917434692,1.3412963151931763,1.4097954034805298,1.5296686887741089,1.5125439167022705,1.6666666269302368,1.6666666269302368,1.375545859336853,1.8036646842956543,1.7522904872894287,1.8036646842956543,1.5981676578521729,1.5296686887741089,1.6495418548583984,1.7351657152175903,1.324171543121338,1.837914228439331,1.5810428857803345,1.6152924299240112,1.6837913990020752,1.6666666269302368,1.5810428857803345,1.5125439167022705,1.7351657152175903,1.6666666269302368,1.5981676578521729,1.5296686887741089,1.6152924299240112,1.6666666269302368,1.7009161710739136,1.837914228439331],[1.906413197517395,1.9577875137329102,1.9920369386672974,2.248908281326294,2.248908281326294,2.1461598873138428,1.8207894563674927,2.0434112548828125,1.8207894563674927,2.1804091930389404,2.248908281326294,2.0605359077453613,2.1632845401763916,2.094785451889038,2.248908281326294,1.718040943145752,2.1461598873138428,2.248908281326294,2.129034996032715,2.0091617107391357,1.4782943725585938,1.1357992887496948,0.34806060791015625,0.5364329218864441,1.18717360496521,0.8618032336235046,0.9816765189170837,0.7076804637908936,1.18717360496521,1.2899221181869507,1.0844250917434692,1.2042982578277588,1.4097954034805298,1.3926706314086914,1.7009161710739136,1.0673003196716309,0.8275537490844727,1.4269200563430786,1.837914228439331,1.7522904872894287,1.5810428857803345,0.7761794924736023,1.1357992887496948,1.0159260034561157,1.2727973461151123,1.0501755475997925,0.5706824064254761,0.7419299483299255,1.0844250917434692,0.7761794924736023,0.913177490234375,-0.08005822449922562,-0.14855724573135376,0.5193081498146057,-0.6965493559837341,-0.40542855858802795,-0.8506721258163452,-0.3540542721748352,-0.7650483846664429,0.5878071784973145,0.45080915093421936,0.8618032336235046,0.399434894323349,0.12543882429599762,-0.3540542721748352,0.45080915093421936,0.8104289770126343,0.9303022623062134,0.9645517468452454,0.8960527181625366,0.399434894323349,-0.26843053102493286,0.31381112337112427,-0.2170562595129013,-0.5253018140792847,-0.16568198800086975,-0.7821731567382812,-0.9876701831817627,-0.7650483846664429,-1.1417930126190186,-0.8164226412773132,-1.0390443801879883,-0.576676070690155,-1.004794955253601,-0.14855724573135376,-0.6794245839118958,-1.467163324356079,-1.9295316934585571,-1.9809058904647827,-1.5185375213623047,0.5021833777427673,0.6905556917190552,0.7761794924736023,-0.0971829816699028,0.8960527181625366,-0.04580871760845184,1.2042982578277588,1.2899221181869507,0.17681308090686798,-1.4329137802124023,-0.884921669960022,-1.8439078330993652,-1.3301652669906616,0.022690298035740852,-0.6280503273010254,-1.1246682405471802,0.6049319505691528,0.005565545056015253,0.5706824064254761,1.033050775527954,1.324171543121338,1.3926706314086914,1.2899221181869507,1.4097954034805298,1.18717360496521,1.3926706314086914,1.255672574043274,1.4269200563430786,1.4782943725585938,1.375545859336853,0.8446784615516663,-0.0971829816699028,0.9988012909889221,0.2966863512992859,-0.01155920885503292,0.10831406712532043,1.1700488328933716,1.4611696004867554,1.6152924299240112,1.5125439167022705,1.4954191446304321,1.2899221181869507,1.4097954034805298,1.255672574043274,1.307046890258789,1.2385478019714355,2.0091617107391357,1.375545859336853,0.878928005695343,0.9645517468452454,1.6495418548583984,1.7694151401519775,1.4097954034805298,0.9474270343780518,1.1186745166778564,1.324171543121338,0.9988012909889221,1.101549744606018,1.7009161710739136,1.2727973461151123,1.1186745166778564,1.5296686887741089,1.4269200563430786,0.03981505334377289,1.1529240608215332,-0.18280674517154694,0.9303022623062134,0.1425635814666748,0.6563062071800232,-0.2513057589530945,0.056939806789159775,0.6220566630363464,0.7933042049407959,0.6905556917190552,1.0844250917434692,0.878928005695343,1.2899221181869507,0.9303022623062134,1.2042982578277588,1.5125439167022705,1.8892884254455566,1.444044828414917,1.4782943725585938,-0.30268001556396484,0.3823101222515106,1.0844250917434692,1.18717360496521,1.18717360496521,0.6391814351081848,0.9474270343780518,1.1186745166778564,0.9645517468452454,1.18717360496521,1.1357992887496948,1.324171543121338,1.4954191446304321,1.2899221181869507,1.4954191446304321,1.2385478019714355,1.0844250917434692,1.0501755475997925,1.0501755475997925,0.9474270343780518,1.0501755475997925,1.2899221181869507,1.324171543121338,1.5810428857803345,1.4954191446304321,1.3926706314086914,1.5467933416366577,1.4097954034805298,1.4611696004867554,1.6666666269302368,1.5810428857803345,1.5810428857803345,1.5810428857803345,1.5810428857803345,1.5467933416366577,1.563918113708496,1.6495418548583984,1.718040943145752,1.563918113708496,1.5810428857803345,1.5467933416366577,1.3926706314086914,1.6324172019958496,1.6324172019958496,1.6324172019958496,1.8036646842956543,1.906413197517395,1.8036646842956543,1.837914228439331,1.718040943145752,1.6837913990020752],[2.1632845401763916,1.5296686887741089,2.0605359077453613,2.094785451889038,2.111910343170166,1.8892884254455566,2.111910343170166,1.8721636533737183,1.8892884254455566,2.0434112548828125,2.1975340843200684,2.248908281326294,1.9749122858047485,2.0262866020202637,2.248908281326294,2.1461598873138428,2.248908281326294,2.0776607990264893,2.1461598873138428,1.8550390005111694,1.2899221181869507,1.3412963151931763,0.8275537490844727,1.101549744606018,0.9816765189170837,1.1186745166778564,0.7933042049407959,0.46793389320373535,0.7248051762580872,0.913177490234375,1.324171543121338,1.3584210872650146,1.2727973461151123,1.2214230298995972,1.6324172019958496,1.101549744606018,1.0501755475997925,1.1700488328933716,1.307046890258789,1.3926706314086914,1.5296686887741089,1.18717360496521,0.7933042049407959,0.5706824064254761,0.5193081498146057,0.7076804637908936,0.9988012909889221,0.8618032336235046,1.0501755475997925,0.6220566630363464,0.17681308090686798,-0.06293346732854843,-0.06293346732854843,0.5364329218864441,0.433684378862381,-1.0390443801879883,-0.7479236125946045,-0.42255330085754395,0.2795616090297699,0.17681308090686798,-0.4910523295402527,0.36518537998199463,0.6905556917190552,0.9303022623062134,0.6220566630363464,1.0501755475997925,0.7590547204017639,0.5535576939582825,0.9474270343780518,0.6220566630363464,-0.04580871760845184,-0.04580871760845184,-0.06293346732854843,-0.11430773138999939,-0.2513057589530945,0.03981505334377289,-0.6622998714447021,-1.0219197273254395,-0.5253018140792847,-1.2445415258407593,-1.0904186964035034,-0.19993150234222412,0.005565545056015253,-0.542426586151123,0.1596883237361908,-1.004794955253601,-1.809658408164978,-2.0494048595428467,-1.8439078330993652,-0.4739275574684143,-0.04580871760845184,0.8446784615516663,0.5706824064254761,0.056939806789159775,1.0501755475997925,0.17681308090686798,-0.028683962300419807,0.7761794924736023,-0.19993150234222412,-0.18280674517154694,-2.1179039478302,-1.9295316934585571,-1.6555355787277222,-0.30268001556396484,-0.6109256148338318,-0.8506721258163452,-0.5253018140792847,0.7419299483299255,0.9645517468452454,1.0501755475997925,1.1700488328933716,1.2042982578277588,1.255672574043274,1.324171543121338,1.444044828414917,1.2214230298995972,1.3584210872650146,1.1529240608215332,1.375545859336853,1.1700488328933716,0.8618032336235046,0.5364329218864441,0.6391814351081848,0.46793389320373535,0.10831406712532043,0.878928005695343,0.8960527181625366,0.913177490234375,1.8550390005111694,1.786539912223816,1.6324172019958496,1.718040943145752,0.878928005695343,1.5296686887741089,1.18717360496521,1.5981676578521729,1.6495418548583984,0.6563062071800232,1.2385478019714355,0.5878071784973145,1.6666666269302368,1.786539912223816,0.7248051762580872,1.0673003196716309,0.6391814351081848,0.7076804637908936,1.324171543121338,0.48505866527557373,0.9988012909889221,1.8207894563674927,0.7419299483299255,0.09118931740522385,1.101549744606018,0.5878071784973145,0.913177490234375,0.22818733751773834,0.1596883237361908,0.878928005695343,-0.2513057589530945,0.6905556917190552,0.6049319505691528,0.005565545056015253,1.2727973461151123,1.2385478019714355,1.1357992887496948,0.7761794924736023,0.5021833777427673,1.1357992887496948,1.4269200563430786,1.6495418548583984,1.9406627416610718,1.563918113708496,1.0673003196716309,0.31381112337112427,1.3926706314086914,1.033050775527954,1.2899221181869507,0.7933042049407959,0.9816765189170837,1.3412963151931763,0.9645517468452454,1.2214230298995972,1.563918113708496,1.2899221181869507,1.4097954034805298,1.5810428857803345,1.3926706314086914,1.3412963151931763,1.324171543121338,1.101549744606018,1.18717360496521,0.878928005695343,1.3412963151931763,1.2899221181869507,1.307046890258789,1.375545859336853,1.324171543121338,1.255672574043274,1.4611696004867554,1.4954191446304321,1.5296686887741089,1.4269200563430786,1.5125439167022705,1.718040943145752,1.4782943725585938,1.444044828414917,1.563918113708496,1.444044828414917,1.7522904872894287,1.563918113708496,1.8036646842956543,1.837914228439331,1.6495418548583984,1.6324172019958496,1.5296686887741089,1.563918113708496,1.5810428857803345,1.5125439167022705,1.5467933416366577,1.8207894563674927,1.718040943145752,1.9406627416610718,1.8721636533737183,1.5810428857803345],[1.9577875137329102,2.0776607990264893,1.8892884254455566,2.1632845401763916,2.0776607990264893,2.094785451889038,2.1804091930389404,2.1632845401763916,2.1461598873138428,1.9920369386672974,2.1804091930389404,1.9235379695892334,2.111910343170166,1.837914228439331,1.7694151401519775,1.9406627416610718,1.9749122858047485,1.8892884254455566,2.0776607990264893,1.8550390005111694,1.8207894563674927,0.17681308090686798,0.6734309196472168,0.7590547204017639,0.8960527181625366,0.7248051762580872,0.8104289770126343,0.8275537490844727,0.5706824064254761,0.12543882429599762,0.2795616090297699,0.6049319505691528,0.5193081498146057,1.2042982578277588,1.4269200563430786,1.3412963151931763,1.1529240608215332,0.6905556917190552,0.6049319505691528,0.7761794924736023,0.7933042049407959,0.6220566630363464,1.2385478019714355,0.34806060791015625,-0.4910523295402527,0.8960527181625366,1.307046890258789,1.3584210872650146,1.307046890258789,0.5193081498146057,0.399434894323349,0.913177490234375,0.8446784615516663,1.0159260034561157,-0.2170562595129013,1.3926706314086914,0.46793389320373535,0.6049319505691528,-0.6280503273010254,-0.5081770420074463,-1.2616662979125977,-0.576676070690155,0.2624368667602539,0.46793389320373535,1.0673003196716309,0.9988012909889221,0.9816765189170837,0.5535576939582825,-0.01155920885503292,0.1596883237361908,0.10831406712532043,0.36518537998199463,0.2966863512992859,0.03981505334377289,0.07406456023454666,0.5364329218864441,-0.3369295299053192,-0.028683962300419807,-0.26843053102493286,0.24531209468841553,0.24531209468841553,-0.4910523295402527,-0.9020463824272156,-0.6965493559837341,-0.9534206986427307,-1.998030662536621,-2.1179039478302,-1.467163324356079,-0.6794245839118958,-0.16568198800086975,0.22818733751773834,0.1596883237361908,0.913177490234375,0.8104289770126343,-0.3711790442466736,0.03981505334377289,-0.04580871760845184,-1.1931672096252441,-0.26843053102493286,0.056939806789159775,-1.0561691522598267,-2.0836544036865234,-1.7925336360931396,-1.878157377243042,0.056939806789159775,-0.5253018140792847,-0.5081770420074463,0.46793389320373535,0.5021833777427673,0.8960527181625366,0.9645517468452454,1.2214230298995972,1.307046890258789,1.3412963151931763,1.18717360496521,1.2899221181869507,1.375545859336853,1.375545859336853,1.2385478019714355,1.324171543121338,0.48505866527557373,-0.11430773138999939,-0.30268001556396484,-0.028683962300419807,0.24531209468841553,0.2624368667602539,1.033050775527954,1.444044828414917,1.837914228439331,1.0844250917434692,1.9577875137329102,1.3926706314086914,1.324171543121338,0.6049319505691528,0.8446784615516663,0.8446784615516663,0.8104289770126343,0.6220566630363464,1.3926706314086914,0.9645517468452454,1.2727973461151123,1.2042982578277588,-0.08005822449922562,0.6220566630363464,0.913177490234375,-0.2170562595129013,1.1700488328933716,0.6049319505691528,0.878928005695343,1.2214230298995972,1.2385478019714355,0.5706824064254761,0.36518537998199463,0.8618032336235046,0.34806060791015625,0.22818733751773834,0.5021833777427673,0.5021833777427673,0.1596883237361908,0.8618032336235046,0.913177490234375,0.31381112337112427,1.2727973461151123,1.0501755475997925,1.2214230298995972,1.2385478019714355,1.375545859336853,1.0159260034561157,1.6152924299240112,1.718040943145752,1.5467933416366577,1.2214230298995972,1.3926706314086914,0.056939806789159775,0.913177490234375,1.2899221181869507,1.375545859336853,1.255672574043274,1.0673003196716309,0.8618032336235046,1.0844250917434692,1.307046890258789,1.2042982578277588,1.1700488328933716,1.6495418548583984,1.3926706314086914,1.3584210872650146,1.4097954034805298,1.3412963151931763,1.2899221181869507,1.255672574043274,1.18717360496521,1.4097954034805298,1.2042982578277588,1.2214230298995972,1.4097954034805298,1.5125439167022705,1.375545859336853,1.4782943725585938,1.563918113708496,1.4782943725585938,1.5981676578521729,1.5981676578521729,1.7351657152175903,1.563918113708496,1.7009161710739136,1.5467933416366577,1.5125439167022705,1.6152924299240112,1.6666666269302368,1.7351657152175903,1.7009161710739136,1.7522904872894287,1.9406627416610718,1.786539912223816,1.7009161710739136,1.6152924299240112,1.375545859336853,1.563918113708496,1.786539912223816,1.7694151401519775,1.7009161710739136,1.906413197517395,1.7009161710739136],[2.129034996032715,1.5467933416366577,2.0776607990264893,1.906413197517395,2.248908281326294,1.8721636533737183,2.129034996032715,2.129034996032715,2.129034996032715,2.1804091930389404,2.248908281326294,2.231783628463745,2.1632845401763916,2.231783628463745,2.1461598873138428,2.111910343170166,1.9406627416610718,2.214658737182617,2.1975340843200684,1.9577875137329102,0.5364329218864441,0.056939806789159775,0.056939806789159775,0.022690298035740852,0.878928005695343,0.8960527181625366,1.0844250917434692,0.7419299483299255,0.6049319505691528,0.34806060791015625,0.03981505334377289,0.45080915093421936,0.03981505334377289,1.2899221181869507,1.101549744606018,1.2042982578277588,1.255672574043274,0.7933042049407959,0.3823101222515106,0.6563062071800232,0.7761794924736023,0.5878071784973145,0.6734309196472168,0.48505866527557373,-0.3369295299053192,-0.4739275574684143,-0.4739275574684143,0.5193081498146057,1.033050775527954,0.46793389320373535,0.1425635814666748,0.48505866527557373,1.0673003196716309,0.5021833777427673,-0.7136741280555725,1.18717360496521,0.5021833777427673,0.6391814351081848,0.5021833777427673,0.09118931740522385,-1.0390443801879883,-1.1075434684753418,0.005565545056015253,0.36518537998199463,0.9474270343780518,1.1529240608215332,0.45080915093421936,0.7933042049407959,0.2624368667602539,0.2795616090297699,0.2795616090297699,0.6734309196472168,0.6049319505691528,0.5706824064254761,0.416559636592865,0.19393783807754517,-0.13143248856067657,-0.11430773138999939,0.19393783807754517,1.0501755475997925,0.8275537490844727,-0.08005822449922562,-1.535662293434143,-1.2616662979125977,-1.1075434684753418,-2.1179039478302,-1.4500385522842407,-0.3198047876358032,-1.2959157228469849,0.022690298035740852,-0.919171154499054,0.36518537998199463,1.1357992887496948,0.09118931740522385,0.17681308090686798,0.022690298035740852,-1.5185375213623047,-1.2616662979125977,-0.7479236125946045,0.33093586564064026,0.7590547204017639,-2.0665297508239746,-1.9637811183929443,-1.8439078330993652,0.03981505334377289,-0.5081770420074463,-0.8335474133491516,0.21106259524822235,1.033050775527954,0.7248051762580872,1.101549744606018,1.2385478019714355,1.2385478019714355,1.2385478019714355,1.4611696004867554,1.324171543121338,1.18717360496521,1.4782943725585938,1.255672574043274,1.5810428857803345,1.18717360496521,0.17681308090686798,0.19393783807754517,0.8104289770126343,1.4954191446304321,0.8960527181625366,0.913177490234375,1.1529240608215332,1.4954191446304321,1.837914228439331,1.0844250917434692,0.5535576939582825,1.375545859336853,0.07406456023454666,0.8104289770126343,1.324171543121338,1.101549744606018,1.3926706314086914,0.46793389320373535,0.5364329218864441,1.5125439167022705,1.1357992887496948,0.33093586564064026,2.094785451889038,1.0501755475997925,0.9988012909889221,1.0844250917434692,0.7761794924736023,0.6391814351081848,0.8275537490844727,1.1357992887496948,0.5193081498146057,0.21106259524822235,0.5535576939582825,0.7248051762580872,1.1357992887496948,1.2042982578277588,0.9645517468452454,0.416559636592865,1.101549744606018,0.5193081498146057,0.6049319505691528,0.7419299483299255,1.2899221181869507,1.3926706314086914,1.255672574043274,1.375545859336853,1.563918113708496,1.4269200563430786,1.7009161710739136,1.444044828414917,1.5296686887741089,0.21106259524822235,1.3412963151931763,1.563918113708496,1.718040943145752,1.5296686887741089,0.8618032336235046,0.7933042049407959,1.2385478019714355,1.0673003196716309,1.3584210872650146,1.4782943725585938,1.2214230298995972,1.4269200563430786,1.3926706314086914,1.4269200563430786,1.307046890258789,1.324171543121338,1.3584210872650146,1.1700488328933716,1.2385478019714355,0.9816765189170837,1.0159260034561157,1.3584210872650146,1.2727973461151123,1.375545859336853,1.5125439167022705,1.18717360496521,1.4782943725585938,1.5981676578521729,1.5467933416366577,1.5467933416366577,1.8036646842956543,1.7009161710739136,1.5981676578521729,1.5981676578521729,1.6837913990020752,1.7694151401519775,1.6495418548583984,1.906413197517395,1.8036646842956543,1.9235379695892334,1.9406627416610718,1.906413197517395,1.9406627416610718,1.563918113708496,1.6837913990020752,1.4954191446304321,1.837914228439331,1.7351657152175903,1.8207894563674927,1.563918113708496,1.6495418548583984],[2.0091617107391357,2.1461598873138428,2.0434112548828125,2.0091617107391357,2.1804091930389404,1.9920369386672974,2.231783628463745,2.248908281326294,1.9235379695892334,2.0605359077453613,2.248908281326294,1.8892884254455566,2.094785451889038,2.248908281326294,2.0434112548828125,1.8550390005111694,2.248908281326294,2.0434112548828125,2.248908281326294,1.4097954034805298,0.5706824064254761,-0.3198047876358032,0.45080915093421936,0.6563062071800232,1.1700488328933716,1.1357992887496948,1.1186745166778564,1.3412963151931763,1.3926706314086914,0.9645517468452454,0.46793389320373535,-0.11430773138999939,0.1425635814666748,1.033050775527954,1.0844250917434692,1.5467933416366577,1.255672574043274,0.7933042049407959,0.9816765189170837,0.48505866527557373,0.12543882429599762,0.31381112337112427,-0.2170562595129013,0.10831406712532043,1.1700488328933716,0.8618032336235046,0.34806060791015625,-0.16568198800086975,0.7761794924736023,0.2966863512992859,0.24531209468841553,0.005565545056015253,-0.8506721258163452,-0.8164226412773132,-0.8677968978881836,0.48505866527557373,0.09118931740522385,-0.08005822449922562,0.2795616090297699,0.9645517468452454,0.33093586564064026,-0.06293346732854843,0.2795616090297699,0.9474270343780518,0.45080915093421936,0.7419299483299255,0.6734309196472168,0.22818733751773834,-0.30268001556396484,0.2966863512992859,0.7248051762580872,0.6905556917190552,0.9303022623062134,0.7761794924736023,0.7248051762580872,0.6049319505691528,0.7076804637908936,0.5706824064254761,1.324171543121338,1.5125439167022705,1.2727973461151123,0.5021833777427673,-0.8335474133491516,-0.8335474133491516,-1.1589176654815674,0.7076804637908936,1.033050775527954,-1.1075434684753418,-1.7240345478057861,-0.6109256148338318,-0.19993150234222412,0.6220566630363464,0.7933042049407959,0.022690298035740852,-0.4739275574684143,-1.3644148111343384,-1.0904186964035034,-1.7754088640213013,-0.9020463824272156,0.6563062071800232,0.5535576939582825,-1.6212860345840454,-2.01515531539917,-2.0836544036865234,-0.919171154499054,-0.6794245839118958,-0.11430773138999939,0.1596883237361908,0.3823101222515106,0.7076804637908936,0.8275537490844727,1.255672574043274,1.2214230298995972,1.2385478019714355,1.3926706314086914,1.3412963151931763,1.3412963151931763,1.2385478019714355,1.3412963151931763,1.5810428857803345,1.0501755475997925,0.19393783807754517,1.2385478019714355,0.399434894323349,1.1529240608215332,0.8618032336235046,0.6563062071800232,1.375545859336853,1.7351657152175903,1.837914228439331,1.375545859336853,1.2214230298995972,0.31381112337112427,0.6734309196472168,1.1186745166778564,-0.06293346732854843,-0.06293346732854843,1.2385478019714355,0.5193081498146057,0.878928005695343,0.6563062071800232,0.7248051762580872,0.7076804637908936,1.5125439167022705,0.6563062071800232,0.878928005695343,-0.9705454111099243,1.0673003196716309,0.33093586564064026,1.0844250917434692,0.12543882429599762,1.1186745166778564,1.2899221181869507,1.1529240608215332,0.913177490234375,1.3584210872650146,0.913177490234375,0.21106259524822235,-0.40542855858802795,0.7761794924736023,0.5878071784973145,0.913177490234375,0.9474270343780518,1.1700488328933716,1.2727973461151123,1.1700488328933716,1.4097954034805298,1.4954191446304321,1.6495418548583984,1.6324172019958496,1.8550390005111694,1.3584210872650146,0.7248051762580872,1.3412963151931763,1.7009161710739136,1.18717360496521,1.18717360496521,1.033050775527954,1.2214230298995972,1.033050775527954,1.101549744606018,1.0501755475997925,1.0501755475997925,1.4097954034805298,1.3926706314086914,1.4097954034805298,1.6495418548583984,1.563918113708496,1.563918113708496,1.4611696004867554,1.324171543121338,1.1186745166778564,1.444044828414917,1.0844250917434692,1.101549744606018,1.324171543121338,1.3926706314086914,1.5467933416366577,1.5467933416366577,1.5125439167022705,1.4611696004867554,1.4269200563430786,1.6152924299240112,1.5981676578521729,1.5467933416366577,1.5467933416366577,1.6324172019958496,1.5125439167022705,1.7694151401519775,1.7694151401519775,1.8036646842956543,1.8207894563674927,1.9577875137329102,1.9749122858047485,1.7694151401519775,1.9920369386672974,1.9749122858047485,1.7694151401519775,1.5467933416366577,1.375545859336853,1.4954191446304321,1.5981676578521729,1.786539912223816,1.6152924299240112],[2.111910343170166,1.8036646842956543,1.6837913990020752,1.8892884254455566,1.718040943145752,2.1804091930389404,2.1975340843200684,2.1461598873138428,1.9920369386672974,2.1461598873138428,2.1461598873138428,2.0605359077453613,2.248908281326294,2.0091617107391357,1.9406627416610718,2.0776607990264893,1.8036646842956543,1.7351657152175903,2.0605359077453613,0.9988012909889221,0.09118931740522385,0.33093586564064026,1.0159260034561157,1.2727973461151123,1.375545859336853,1.563918113708496,1.5296686887741089,1.6324172019958496,1.6324172019958496,1.1529240608215332,0.24531209468841553,0.48505866527557373,0.7419299483299255,1.1700488328933716,0.9816765189170837,1.563918113708496,1.7009161710739136,1.6666666269302368,1.3584210872650146,1.2385478019714355,1.2385478019714355,0.8960527181625366,0.8618032336235046,0.48505866527557373,0.7933042049407959,0.5706824064254761,0.9303022623062134,0.34806060791015625,0.6220566630363464,-0.08005822449922562,-0.04580871760845184,0.19393783807754517,-0.3540542721748352,0.12543882429599762,-0.3711790442466736,0.5021833777427673,0.17681308090686798,-0.11430773138999939,0.24531209468841553,0.9474270343780518,1.0844250917434692,0.7419299483299255,0.8960527181625366,0.7761794924736023,0.7933042049407959,0.6391814351081848,0.6563062071800232,0.6734309196472168,0.17681308090686798,0.22818733751773834,0.433684378862381,0.7590547204017639,0.6905556917190552,0.8618032336235046,0.7933042049407959,0.6734309196472168,0.48505866527557373,0.7076804637908936,1.2727973461151123,1.4611696004867554,1.307046890258789,0.9645517468452454,0.399434894323349,-0.14855724573135376,-0.40542855858802795,-0.8506721258163452,0.399434894323349,-0.16568198800086975,-0.576676070690155,0.19393783807754517,-0.3198047876358032,0.46793389320373535,0.9645517468452454,0.5364329218864441,-0.7307988405227661,-2.0665297508239746,-1.878157377243042,-2.0494048595428467,-1.3986642360687256,-0.30268001556396484,0.12543882429599762,0.21106259524822235,-1.9124069213867188,-2.01515531539917,-1.4842880964279175,-1.1589176654815674,-0.4568028151988983,-0.3711790442466736,0.1596883237361908,0.46793389320373535,1.1186745166778564,1.1357992887496948,1.18717360496521,1.2385478019714355,1.2042982578277588,1.101549744606018,1.2899221181869507,1.324171543121338,1.375545859336853,1.4269200563430786,1.0844250917434692,0.6220566630363464,0.6905556917190552,0.8960527181625366,1.1357992887496948,1.4269200563430786,0.8275537490844727,1.375545859336853,1.4782943725585938,0.9988012909889221,1.2899221181869507,1.5810428857803345,0.8960527181625366,1.4097954034805298,0.9474270343780518,0.7419299483299255,0.12543882429599762,1.2727973461151123,0.878928005695343,1.2385478019714355,1.444044828414917,0.7076804637908936,1.324171543121338,0.5706824064254761,-0.18280674517154694,0.2966863512992859,1.033050775527954,-1.0904186964035034,-0.3711790442466736,-0.6622998714447021,1.2042982578277588,1.101549744606018,0.6220566630363464,0.5706824064254761,1.1529240608215332,0.913177490234375,0.8960527181625366,0.45080915093421936,0.913177490234375,0.5878071784973145,0.2966863512992859,1.1529240608215332,0.8618032336235046,1.3412963151931763,1.5810428857803345,1.2042982578277588,1.8207894563674927,1.563918113708496,1.4782943725585938,1.3412963151931763,1.8036646842956543,0.7248051762580872,1.5467933416366577,1.2385478019714355,1.1357992887496948,1.307046890258789,0.7590547204017639,1.0159260034561157,1.2042982578277588,1.2899221181869507,1.324171543121338,1.3926706314086914,1.3412963151931763,1.3926706314086914,1.307046890258789,1.5125439167022705,1.4782943725585938,1.3926706314086914,1.2385478019714355,1.3584210872650146,1.2042982578277588,1.1186745166778564,0.8104289770126343,0.8960527181625366,1.2727973461151123,1.3584210872650146,1.3926706314086914,1.307046890258789,1.4097954034805298,1.4611696004867554,1.5125439167022705,1.6324172019958496,1.5125439167022705,1.6666666269302368,1.5981676578521729,1.5467933416366577,1.7009161710739136,1.6837913990020752,1.5981676578521729,1.6666666269302368,1.906413197517395,1.7522904872894287,1.7351657152175903,1.6837913990020752,1.906413197517395,1.786539912223816,1.7522904872894287,1.9235379695892334,1.8892884254455566,1.5125439167022705,1.4269200563430786,1.444044828414917,1.5467933416366577,1.6837913990020752],[2.231783628463745,2.248908281326294,1.837914228439331,1.8550390005111694,2.1975340843200684,2.0091617107391357,2.1975340843200684,2.1804091930389404,2.1461598873138428,2.111910343170166,2.0434112548828125,2.0605359077453613,2.0605359077453613,2.111910343170166,2.0776607990264893,2.214658737182617,2.248908281326294,1.4954191446304321,1.7694151401519775,0.022690298035740852,0.19393783807754517,1.5296686887741089,1.18717360496521,1.0844250917434692,1.2727973461151123,1.6152924299240112,1.563918113708496,1.7522904872894287,1.2385478019714355,1.2727973461151123,0.8618032336235046,1.0844250917434692,0.9816765189170837,1.0844250917434692,1.4954191446304321,1.837914228439331,1.6837913990020752,1.375545859336853,1.5296686887741089,1.324171543121338,1.0844250917434692,1.2385478019714355,0.5364329218864441,0.7590547204017639,0.45080915093421936,0.21106259524822235,0.6391814351081848,0.48505866527557373,0.5535576939582825,0.33093586564064026,-0.06293346732854843,-0.3369295299053192,-0.19993150234222412,-0.3883037865161896,-1.004794955253601,0.9645517468452454,0.7076804637908936,0.9816765189170837,0.6734309196472168,0.9816765189170837,0.7933042049407959,0.8275537490844727,1.255672574043274,0.5535576939582825,0.399434894323349,0.6734309196472168,0.5193081498146057,0.19393783807754517,0.399434894323349,0.6734309196472168,0.878928005695343,1.033050775527954,1.1529240608215332,1.2214230298995972,0.9816765189170837,0.9816765189170837,1.2899221181869507,1.255672574043274,1.6495418548583984,1.6666666269302368,1.7522904872894287,1.2385478019714355,1.0844250917434692,0.5364329218864441,0.433684378862381,0.056939806789159775,-0.7992978692054749,-0.6622998714447021,0.005565545056015253,1.4954191446304321,0.005565545056015253,0.7590547204017639,0.6905556917190552,0.1425635814666748,-1.809658408164978,-1.0561691522598267,-2.032280206680298,-2.1007792949676514,-1.689785122871399,-1.5527870655059814,-0.8164226412773132,-0.16568198800086975,-1.073293924331665,-1.998030662536621,-2.0836544036865234,-1.3301652669906616,-1.604161262512207,-0.26843053102493286,0.24531209468841553,0.36518537998199463,0.8960527181625366,1.1357992887496948,1.3412963151931763,1.3926706314086914,1.324171543121338,1.2385478019714355,1.4097954034805298,1.3926706314086914,1.375545859336853,1.3412963151931763,1.1700488328933716,0.46793389320373535,1.0159260034561157,1.2385478019714355,0.8104289770126343,1.1529240608215332,0.8275537490844727,1.8207894563674927,1.6495418548583984,1.5467933416366577,1.5981676578521729,1.2385478019714355,0.913177490234375,1.0673003196716309,1.1186745166778564,1.1357992887496948,0.5878071784973145,1.1186745166778564,0.33093586564064026,0.6905556917190552,0.2795616090297699,1.1529240608215332,0.1596883237361908,0.10831406712532043,0.6220566630363464,0.19393783807754517,0.17681308090686798,-0.8677968978881836,-0.6794245839118958,0.7761794924736023,1.1700488328933716,0.09118931740522385,0.31381112337112427,0.2624368667602539,0.48505866527557373,0.5193081498146057,0.6905556917190552,0.12543882429599762,0.48505866527557373,0.3823101222515106,0.7933042049407959,1.1186745166778564,1.0159260034561157,1.307046890258789,1.1186745166778564,1.5467933416366577,1.5981676578521729,1.6666666269302368,1.6152924299240112,2.0434112548828125,2.1632845401763916,1.3926706314086914,1.4954191446304321,1.307046890258789,1.5810428857803345,1.1700488328933716,1.1186745166778564,1.0159260034561157,0.9303022623062134,1.0673003196716309,1.101549744606018,1.18717360496521,1.3584210872650146,1.5125439167022705,1.4269200563430786,1.4269200563430786,1.5125439167022705,1.5810428857803345,1.4782943725585938,1.4782943725585938,1.324171543121338,1.18717360496521,1.2385478019714355,1.2214230298995972,1.1186745166778564,1.255672574043274,1.444044828414917,1.5810428857803345,1.5810428857803345,1.5296686887741089,1.4269200563430786,1.5296686887741089,1.4097954034805298,1.4611696004867554,1.5810428857803345,1.7009161710739136,1.5981676578521729,1.6495418548583984,1.718040943145752,1.6837913990020752,1.6666666269302368,1.7694151401519775,1.7694151401519775,1.8721636533737183,1.8892884254455566,1.8207894563674927,1.8721636533737183,1.9749122858047485,2.1804091930389404,1.718040943145752,1.444044828414917,1.375545859336853,1.4782943725585938,1.7522904872894287],[2.0776607990264893,1.8721636533737183,1.9577875137329102,1.9235379695892334,1.8550390005111694,1.9749122858047485,2.248908281326294,2.0605359077453613,1.9749122858047485,2.1632845401763916,2.248908281326294,2.214658737182617,2.1975340843200684,2.0262866020202637,2.0091617107391357,1.6152924299240112,2.214658737182617,1.9577875137329102,1.0844250917434692,1.18717360496521,0.7933042049407959,1.101549744606018,0.9474270343780518,0.9816765189170837,0.8104289770126343,0.8618032336235046,1.2727973461151123,1.0501755475997925,1.5125439167022705,1.18717360496521,1.0501755475997925,1.0673003196716309,1.324171543121338,1.1700488328933716,1.0673003196716309,1.6324172019958496,1.5467933416366577,1.3926706314086914,1.307046890258789,1.1529240608215332,0.9816765189170837,1.324171543121338,0.5535576939582825,0.2624368667602539,0.17681308090686798,0.8960527181625366,0.6391814351081848,0.8960527181625366,0.7590547204017639,0.7419299483299255,-0.01155920885503292,-0.13143248856067657,-0.7992978692054749,0.6391814351081848,-1.0904186964035034,0.9474270343780518,1.1529240608215332,0.7248051762580872,0.5021833777427673,0.5364329218864441,0.5706824064254761,1.101549744606018,1.0673003196716309,1.1700488328933716,0.21106259524822235,0.2624368667602539,0.6905556917190552,0.3823101222515106,0.6220566630363464,0.6220566630363464,0.8275537490844727,1.0159260034561157,1.1529240608215332,1.307046890258789,1.2042982578277588,1.0673003196716309,1.2727973461151123,1.3584210872650146,1.6666666269302368,1.8892884254455566,1.5981676578521729,1.6837913990020752,1.324171543121338,1.0673003196716309,0.913177490234375,0.7761794924736023,0.8275537490844727,0.3823101222515106,-0.18280674517154694,-0.18280674517154694,1.563918113708496,0.5364329218864441,0.9303022623062134,0.17681308090686798,-2.1007792949676514,-1.4842880964279175,-1.9809058904647827,-2.0494048595428467,-2.1179039478302,-2.1179039478302,-1.3130404949188232,-1.7411593198776245,-0.30268001556396484,-2.0665297508239746,-1.9124069213867188,-1.9124069213867188,-1.5185375213623047,-1.7411593198776245,0.03981505334377289,0.19393783807754517,0.45080915093421936,0.878928005695343,1.033050775527954,1.0844250917434692,1.375545859336853,1.2042982578277588,1.2727973461151123,1.2385478019714355,1.3926706314086914,1.1700488328933716,0.7761794924736023,0.022690298035740852,0.46793389320373535,0.6563062071800232,0.33093586564064026,-0.30268001556396484,0.9303022623062134,1.3926706314086914,1.324171543121338,1.6666666269302368,1.4782943725585938,0.8618032336235046,1.375545859336853,1.4097954034805298,1.4269200563430786,1.2042982578277588,1.4269200563430786,0.8446784615516663,1.8721636533737183,0.9474270343780518,0.8446784615516663,0.8960527181625366,0.022690298035740852,-0.30268001556396484,-1.2959157228469849,-0.3540542721748352,-0.9020463824272156,-0.43967804312705994,-1.1075434684753418,-0.6451750993728638,-0.576676070690155,0.24531209468841553,0.2795616090297699,0.48505866527557373,0.7076804637908936,0.5193081498146057,0.7761794924736023,0.399434894323349,0.10831406712532043,-1.073293924331665,0.433684378862381,0.17681308090686798,1.0673003196716309,1.0844250917434692,1.444044828414917,1.444044828414917,1.786539912223816,1.7694151401519775,1.7009161710739136,1.7351657152175903,1.7351657152175903,1.5467933416366577,2.094785451889038,1.6666666269302368,0.9645517468452454,0.9303022623062134,0.7076804637908936,1.0159260034561157,0.9645517468452454,1.307046890258789,0.9816765189170837,1.3584210872650146,1.4954191446304321,1.1529240608215332,1.4782943725585938,1.5296686887741089,1.4954191446304321,1.563918113708496,1.6324172019958496,1.4611696004867554,1.101549744606018,1.2727973461151123,1.101549744606018,1.0673003196716309,1.18717360496521,1.3412963151931763,1.5125439167022705,1.3926706314086914,1.563918113708496,1.6666666269302368,1.5981676578521729,1.7694151401519775,1.718040943145752,1.8036646842956543,1.718040943145752,1.7694151401519775,1.7009161710739136,1.6324172019958496,1.6495418548583984,1.6666666269302368,1.6495418548583984,1.6837913990020752,1.7522904872894287,1.6666666269302368,1.8207894563674927,1.8036646842956543,1.9406627416610718,1.9749122858047485,2.0776607990264893,2.0091617107391357,1.906413197517395,1.375545859336853,1.375545859336853,1.3584210872650146],[1.7351657152175903,2.1461598873138428,1.9235379695892334,1.9235379695892334,2.094785451889038,2.248908281326294,1.9749122858047485,2.248908281326294,2.248908281326294,2.0262866020202637,2.0262866020202637,2.248908281326294,2.1804091930389404,1.8207894563674927,2.248908281326294,1.837914228439331,2.0434112548828125,1.9920369386672974,0.6049319505691528,1.033050775527954,0.6563062071800232,0.9988012909889221,0.3823101222515106,-0.08005822449922562,0.17681308090686798,0.31381112337112427,0.9816765189170837,0.9988012909889221,1.2385478019714355,1.0844250917434692,1.0673003196716309,0.8446784615516663,0.7933042049407959,0.17681308090686798,1.0159260034561157,1.1186745166778564,1.2385478019714355,1.0844250917434692,1.101549744606018,1.18717360496521,1.5296686887741089,0.6905556917190552,0.7761794924736023,-0.06293346732854843,-0.26843053102493286,0.6391814351081848,0.022690298035740852,0.6220566630363464,0.8618032336235046,1.0501755475997925,0.2966863512992859,0.7248051762580872,-0.028683962300419807,0.5021833777427673,-1.3130404949188232,0.10831406712532043,0.19393783807754517,0.8104289770126343,0.9645517468452454,0.6905556917190552,0.6220566630363464,0.8104289770126343,0.8446784615516663,1.1186745166778564,-0.16568198800086975,-0.2341810017824173,0.5193081498146057,0.7761794924736023,0.48505866527557373,0.6905556917190552,1.0844250917434692,1.1700488328933716,1.3926706314086914,1.4097954034805298,1.4782943725585938,1.5810428857803345,1.563918113708496,1.5981676578521729,1.906413197517395,1.8207894563674927,1.786539912223816,1.5810428857803345,1.5467933416366577,1.6152924299240112,1.3926706314086914,1.4097954034805298,1.3926706314086914,1.2214230298995972,1.307046890258789,1.18717360496521,0.878928005695343,0.7076804637908936,0.3823101222515106,0.6391814351081848,-2.01515531539917,-2.1007792949676514,-2.1007792949676514,-2.1007792949676514,-2.0494048595428467,-2.032280206680298,-2.01515531539917,-1.8439078330993652,-0.2341810017824173,-2.1179039478302,-2.032280206680298,-2.0494048595428467,-1.9295316934585571,-2.1007792949676514,-0.7479236125946045,0.056939806789159775,-0.3369295299053192,0.5878071784973145,1.1357992887496948,1.4097954034805298,1.4269200563430786,1.0501755475997925,1.2385478019714355,1.6324172019958496,1.2042982578277588,1.563918113708496,0.8960527181625366,0.03981505334377289,1.324171543121338,0.7419299483299255,-0.19993150234222412,-0.3369295299053192,0.022690298035740852,1.5296686887741089,1.9406627416610718,1.6837913990020752,1.563918113708496,1.7522904872894287,1.4269200563430786,1.255672574043274,1.6666666269302368,0.9303022623062134,0.5706824064254761,0.1596883237361908,-0.26843053102493286,0.5878071784973145,1.1700488328933716,0.6049319505691528,0.5021833777427673,-0.3883037865161896,0.8446784615516663,-0.884921669960022,-0.6451750993728638,-0.5253018140792847,-1.1246682405471802,-0.5253018140792847,0.19393783807754517,-0.3711790442466736,-0.0971829816699028,1.1357992887496948,-0.13143248856067657,0.22818733751773834,0.12543882429599762,0.7933042049407959,0.399434894323349,-0.5253018140792847,-0.6965493559837341,-0.4739275574684143,-0.26843053102493286,0.7248051762580872,0.8618032336235046,1.3926706314086914,1.444044828414917,1.6837913990020752,1.7009161710739136,1.8892884254455566,1.6152924299240112,1.9920369386672974,1.5981676578521729,1.6495418548583984,1.3412963151931763,1.18717360496521,0.9474270343780518,1.1700488328933716,1.375545859336853,1.2899221181869507,1.255672574043274,1.324171543121338,1.3926706314086914,1.324171543121338,1.6324172019958496,1.5467933416366577,1.3412963151931763,1.4954191446304321,1.375545859336853,1.444044828414917,1.324171543121338,1.1529240608215332,1.033050775527954,1.1186745166778564,1.1357992887496948,1.0673003196716309,1.3584210872650146,1.375545859336853,1.6324172019958496,1.444044828414917,1.7009161710739136,1.7694151401519775,1.5981676578521729,1.6837913990020752,1.837914228439331,1.6324172019958496,1.6324172019958496,1.718040943145752,1.6324172019958496,1.6837913990020752,1.8036646842956543,1.7522904872894287,1.8036646842956543,1.718040943145752,1.786539912223816,1.8892884254455566,1.718040943145752,1.8036646842956543,1.8892884254455566,1.906413197517395,1.8550390005111694,1.9406627416610718,1.5467933416366577,1.6666666269302368],[1.906413197517395,1.8550390005111694,1.7522904872894287,2.0434112548828125,2.0605359077453613,2.0262866020202637,2.214658737182617,2.094785451889038,2.248908281326294,2.248908281326294,2.111910343170166,2.094785451889038,2.1461598873138428,2.111910343170166,2.0776607990264893,2.0262866020202637,1.8036646842956543,1.324171543121338,1.1357992887496948,0.36518537998199463,0.9303022623062134,1.3412963151931763,1.1529240608215332,1.307046890258789,1.101549744606018,0.6905556917190552,0.07406456023454666,0.9645517468452454,0.9816765189170837,0.8275537490844727,1.0159260034561157,0.8104289770126343,0.21106259524822235,0.22818733751773834,0.2624368667602539,0.07406456023454666,0.022690298035740852,0.48505866527557373,0.3823101222515106,0.48505866527557373,0.03981505334377289,-0.3883037865161896,0.9474270343780518,1.2899221181869507,0.7933042049407959,0.878928005695343,0.5706824064254761,0.6905556917190552,0.8104289770126343,0.8446784615516663,0.6391814351081848,1.2385478019714355,0.8446784615516663,0.36518537998199463,-0.7821731567382812,-0.5938008427619934,0.21106259524822235,0.6220566630363464,0.3823101222515106,0.8618032336235046,0.9988012909889221,0.8275537490844727,0.7590547204017639,0.7419299483299255,0.878928005695343,0.022690298035740852,-0.06293346732854843,0.399434894323349,0.7590547204017639,1.1186745166778564,0.9303022623062134,1.1700488328933716,1.2214230298995972,1.324171543121338,1.4097954034805298,1.5467933416366577,1.6152924299240112,1.7351657152175903,1.7351657152175903,1.837914228439331,1.8550390005111694,1.837914228439331,2.0776607990264893,1.718040943145752,1.7694151401519775,1.7351657152175903,1.6666666269302368,1.718040943145752,1.5296686887741089,1.6837913990020752,1.4782943725585938,1.5296686887741089,1.101549744606018,0.8104289770126343,-0.3540542721748352,-2.0665297508239746,-2.1179039478302,-2.1007792949676514,-2.1007792949676514,-2.0836544036865234,-1.998030662536621,-1.4842880964279175,-0.7307988405227661,-1.1589176654815674,-2.1179039478302,-2.1007792949676514,-2.1179039478302,-2.0836544036865234,-0.7992978692054749,0.2966863512992859,-0.14855724573135376,0.5535576939582825,0.9816765189170837,1.4611696004867554,1.3926706314086914,1.4611696004867554,1.4269200563430786,1.4269200563430786,1.324171543121338,1.1357992887496948,1.2042982578277588,-0.08005822449922562,-0.28555527329444885,-0.18280674517154694,-0.30268001556396484,-0.3198047876358032,-0.4739275574684143,0.7933042049407959,1.3926706314086914,1.375545859336853,1.9577875137329102,1.9235379695892334,0.9474270343780518,1.1529240608215332,1.1700488328933716,1.4611696004867554,1.2727973461151123,1.0673003196716309,1.1700488328933716,0.5706824064254761,0.5878071784973145,0.48505866527557373,0.8104289770126343,0.7419299483299255,1.2727973461151123,0.6220566630363464,0.8104289770126343,-1.9809058904647827,-0.542426586151123,0.17681308090686798,-0.18280674517154694,-0.01155920885503292,-0.9362959265708923,-0.7136741280555725,-0.3198047876358032,-0.4910523295402527,-1.2787909507751465,0.3823101222515106,0.5193081498146057,-0.3883037865161896,0.5878071784973145,0.12543882429599762,-0.11430773138999939,-0.13143248856067657,0.8618032336235046,1.1529240608215332,1.7522904872894287,1.8036646842956543,1.9577875137329102,1.8721636533737183,2.0091617107391357,1.9235379695892334,1.718040943145752,1.7694151401519775,1.4269200563430786,0.6563062071800232,0.7761794924736023,0.9816765189170837,1.2214230298995972,1.3584210872650146,1.4611696004867554,1.0844250917434692,1.255672574043274,1.6324172019958496,1.3412963151931763,1.5125439167022705,1.4611696004867554,1.4954191446304321,1.4782943725585938,1.444044828414917,1.4269200563430786,1.324171543121338,1.101549744606018,1.2042982578277588,1.18717360496521,1.18717360496521,1.3412963151931763,1.444044828414917,1.5467933416366577,1.6495418548583984,1.5125439167022705,1.6666666269302368,1.5810428857803345,1.7522904872894287,1.6324172019958496,1.4954191446304321,1.6666666269302368,1.3584210872650146,1.5296686887741089,1.837914228439331,1.6837913990020752,1.563918113708496,1.786539912223816,1.6837913990020752,1.9235379695892334,1.8550390005111694,1.7009161710739136,2.0091617107391357,1.9406627416610718,1.9920369386672974,1.8207894563674927,2.0262866020202637,1.906413197517395,1.307046890258789],[1.6152924299240112,1.6837913990020752,2.1975340843200684,1.837914228439331,1.9920369386672974,2.214658737182617,1.8721636533737183,2.094785451889038,2.129034996032715,2.214658737182617,1.9920369386672974,2.129034996032715,2.0262866020202637,2.248908281326294,2.248908281326294,2.248908281326294,2.248908281326294,1.563918113708496,0.45080915093421936,0.2624368667602539,0.5535576939582825,1.1700488328933716,1.101549744606018,1.0501755475997925,1.0673003196716309,0.7590547204017639,0.19393783807754517,-0.11430773138999939,0.8446784615516663,0.9303022623062134,0.9816765189170837,1.0159260034561157,0.7248051762580872,0.913177490234375,0.7590547204017639,0.6905556917190552,0.8446784615516663,0.7590547204017639,0.6391814351081848,0.33093586564064026,0.7590547204017639,-0.542426586151123,-0.028683962300419807,0.9645517468452454,0.22818733751773834,0.8618032336235046,1.1529240608215332,1.1357992887496948,0.8618032336235046,0.33093586564064026,0.9816765189170837,1.2727973461151123,1.0844250917434692,0.2966863512992859,-0.43967804312705994,-0.6451750993728638,-0.08005822449922562,0.5193081498146057,0.7761794924736023,1.255672574043274,0.9988012909889221,0.9474270343780518,0.7419299483299255,0.8618032336235046,0.7419299483299255,0.6049319505691528,0.46793389320373535,0.7761794924736023,0.8960527181625366,1.0159260034561157,1.2042982578277588,1.255672574043274,1.3412963151931763,1.444044828414917,1.5296686887741089,1.6837913990020752,1.7522904872894287,1.9235379695892334,1.5981676578521729,1.9920369386672974,1.8207894563674927,1.837914228439331,1.7522904872894287,1.9577875137329102,1.6837913990020752,1.8550390005111694,1.7522904872894287,1.5467933416366577,1.7694151401519775,1.5467933416366577,1.7694151401519775,1.18717360496521,1.1357992887496948,1.0844250917434692,0.34806060791015625,-2.1007792949676514,-2.1007792949676514,-2.1007792949676514,-2.1179039478302,-2.1179039478302,-1.7240345478057861,-1.2787909507751465,-0.884921669960022,-0.5253018140792847,-2.1007792949676514,-2.0665297508239746,-2.01515531539917,-1.9295316934585571,-1.1931672096252441,-0.6622998714447021,0.19393783807754517,0.7248051762580872,1.3412963151931763,1.1700488328933716,1.4782943725585938,1.375545859336853,1.4782943725585938,1.4782943725585938,1.3926706314086914,1.307046890258789,1.2042982578277588,1.3584210872650146,0.22818733751773834,-0.8506721258163452,-0.2170562595129013,0.07406456023454666,-0.7992978692054749,0.17681308090686798,0.5706824064254761,1.2899221181869507,1.7351657152175903,1.2899221181869507,0.9816765189170837,1.6152924299240112,1.718040943145752,0.6734309196472168,0.5706824064254761,1.0501755475997925,0.7761794924736023,0.399434894323349,0.31381112337112427,1.18717360496521,1.1357992887496948,-0.3883037865161896,0.22818733751773834,0.36518537998199463,1.2385478019714355,0.8104289770126343,-0.4739275574684143,-1.1931672096252441,-1.8610326051712036,-1.689785122871399,-0.43967804312705994,-0.6451750993728638,-1.1589176654815674,-0.6965493559837341,-1.073293924331665,-0.2170562595129013,0.31381112337112427,-0.7307988405227661,-0.028683962300419807,-0.7650483846664429,0.09118931740522385,-0.3711790442466736,1.1700488328933716,0.8446784615516663,1.4954191446304321,1.6495418548583984,2.1632845401763916,2.129034996032715,2.0434112548828125,1.9920369386672974,1.7009161710739136,1.2042982578277588,0.8618032336235046,1.0159260034561157,1.0159260034561157,1.101549744606018,1.4097954034805298,1.2214230298995972,1.5296686887741089,1.324171543121338,1.5981676578521729,1.4269200563430786,1.5296686887741089,1.563918113708496,1.3926706314086914,1.563918113708496,1.5981676578521729,1.4954191446304321,1.2042982578277588,1.2899221181869507,1.2385478019714355,0.7933042049407959,0.913177490234375,1.1186745166778564,1.4269200563430786,1.5467933416366577,1.4611696004867554,1.5296686887741089,1.6666666269302368,1.4954191446304321,1.6324172019958496,1.6324172019958496,1.7522904872894287,1.8207894563674927,1.718040943145752,1.5981676578521729,1.7522904872894287,1.7351657152175903,1.6837913990020752,1.8036646842956543,1.8036646842956543,1.8036646842956543,1.6837913990020752,1.7522904872894287,1.837914228439331,1.9920369386672974,1.8550390005111694,1.8550390005111694,2.111910343170166,2.129034996032715,2.129034996032715,1.8721636533737183],[2.0091617107391357,1.5125439167022705,1.6495418548583984,2.214658737182617,2.0605359077453613,2.0262866020202637,2.1461598873138428,2.1975340843200684,2.214658737182617,2.248908281326294,2.129034996032715,2.0262866020202637,1.8721636533737183,2.111910343170166,1.9235379695892334,2.0776607990264893,1.6324172019958496,0.31381112337112427,-0.6451750993728638,-0.6451750993728638,-0.18280674517154694,1.18717360496521,1.1186745166778564,1.375545859336853,1.375545859336853,0.9816765189170837,0.48505866527557373,-0.3540542721748352,-0.06293346732854843,-0.6622998714447021,0.46793389320373535,1.0673003196716309,0.9474270343780518,1.2214230298995972,1.0159260034561157,0.9988012909889221,0.21106259524822235,0.9988012909889221,0.8960527181625366,-0.06293346732854843,0.416559636592865,-1.2787909507751465,-0.6965493559837341,-0.08005822449922562,0.6220566630363464,0.6563062071800232,0.2624368667602539,1.2042982578277588,1.18717360496521,0.09118931740522385,0.7933042049407959,0.8618032336235046,0.8960527181625366,0.5535576939582825,-0.26843053102493286,-0.4910523295402527,-0.6965493559837341,0.5021833777427673,1.0844250917434692,1.1700488328933716,1.2214230298995972,0.8446784615516663,0.8104289770126343,0.5878071784973145,0.7076804637908936,0.6049319505691528,0.878928005695343,0.8618032336235046,0.913177490234375,1.2385478019714355,1.2899221181869507,1.18717360496521,1.375545859336853,1.563918113708496,1.6152924299240112,1.6152924299240112,1.7522904872894287,1.7694151401519775,1.6837913990020752,1.837914228439331,2.0434112548828125,1.9577875137329102,1.9235379695892334,1.6152924299240112,1.7351657152175903,1.6495418548583984,1.7351657152175903,1.5125439167022705,1.444044828414917,1.7009161710739136,1.5296686887741089,1.4782943725585938,1.4097954034805298,1.4269200563430786,0.5878071784973145,-2.1179039478302,-2.0494048595428467,-2.0665297508239746,-1.9809058904647827,-2.1007792949676514,-2.1179039478302,-1.7240345478057861,-0.6109256148338318,-0.2513057589530945,-1.878157377243042,-2.1179039478302,-2.032280206680298,-1.8267830610275269,-1.5870366096496582,-1.5014127492904663,0.2795616090297699,0.9645517468452454,1.2727973461151123,1.5296686887741089,1.5296686887741089,1.6666666269302368,1.563918113708496,1.1529240608215332,1.2899221181869507,1.324171543121338,0.6734309196472168,1.7522904872894287,-0.2513057589530945,-1.2959157228469849,-0.7479236125946045,0.2624368667602539,-0.3540542721748352,0.17681308090686798,1.375545859336853,1.033050775527954,1.6324172019958496,1.101549744606018,1.718040943145752,1.563918113708496,1.5296686887741089,1.1700488328933716,1.0673003196716309,0.8618032336235046,0.7761794924736023,1.2727973461151123,1.5810428857803345,1.4097954034805298,1.4954191446304321,1.9749122858047485,1.2214230298995972,-0.2341810017824173,1.1700488328933716,1.4097954034805298,0.9645517468452454,-1.3130404949188232,-0.6965493559837341,-0.6280503273010254,-0.2341810017824173,-1.1760424375534058,-1.3815394639968872,-0.9534206986427307,-1.004794955253601,-0.8677968978881836,0.34806060791015625,0.005565545056015253,-0.2170562595129013,-0.028683962300419807,0.6049319505691528,0.2966863512992859,0.6734309196472168,1.563918113708496,1.5467933416366577,1.718040943145752,2.0091617107391357,2.0262866020202637,1.9406627416610718,1.5467933416366577,1.786539912223816,1.2042982578277588,0.7248051762580872,0.7590547204017639,1.0844250917434692,1.1186745166778564,1.1529240608215332,1.2727973461151123,1.2727973461151123,1.307046890258789,1.2899221181869507,1.4954191446304321,1.7694151401519775,1.5296686887741089,1.4782943725585938,1.4269200563430786,1.6837913990020752,1.4782943725585938,1.4269200563430786,1.307046890258789,0.9988012909889221,1.255672574043274,1.1529240608215332,1.18717360496521,1.324171543121338,1.255672574043274,1.2727973461151123,1.444044828414917,1.718040943145752,1.6324172019958496,1.4954191446304321,1.8207894563674927,1.7522904872894287,1.906413197517395,1.6666666269302368,1.8721636533737183,1.786539912223816,1.6495418548583984,1.8207894563674927,1.6837913990020752,1.9406627416610718,1.837914228439331,1.8721636533737183,1.7694151401519775,1.7522904872894287,1.7694151401519775,2.0262866020202637,1.9577875137329102,2.094785451889038,2.0091617107391357,1.8721636533737183,2.094785451889038],[1.8207894563674927,1.4269200563430786,1.5125439167022705,1.786539912223816,2.094785451889038,2.1461598873138428,1.9406627416610718,2.0776607990264893,1.9406627416610718,1.9577875137329102,2.248908281326294,2.129034996032715,2.1975340843200684,2.1461598873138428,2.0605359077453613,2.0091617107391357,1.4097954034805298,0.36518537998199463,0.2966863512992859,0.5021833777427673,0.022690298035740852,0.7590547204017639,0.7248051762580872,0.8104289770126343,1.0501755475997925,0.9816765189170837,0.9474270343780518,-0.3540542721748352,-1.3644148111343384,-1.3644148111343384,0.10831406712532043,0.5364329218864441,0.9816765189170837,0.9303022623062134,0.17681308090686798,0.1596883237361908,-0.7307988405227661,0.416559636592865,0.9645517468452454,0.9303022623062134,0.34806060791015625,-0.16568198800086975,-0.6109256148338318,0.5535576939582825,0.9474270343780518,1.4269200563430786,0.433684378862381,1.2042982578277588,0.22818733751773834,0.24531209468841553,0.8618032336235046,0.31381112337112427,0.3823101222515106,0.6391814351081848,0.005565545056015253,-0.5595513582229614,-0.7479236125946045,0.33093586564064026,0.6391814351081848,0.9816765189170837,0.8960527181625366,1.0673003196716309,0.6220566630363464,0.8960527181625366,0.9474270343780518,0.2624368667602539,0.8275537490844727,1.0501755475997925,1.307046890258789,1.2899221181869507,1.324171543121338,1.5981676578521729,1.375545859336853,1.3412963151931763,1.4782943725585938,1.6837913990020752,1.5125439167022705,1.6837913990020752,1.9406627416610718,1.9406627416610718,1.8207894563674927,1.8036646842956543,1.906413197517395,1.718040943145752,1.8892884254455566,1.6666666269302368,1.7694151401519775,1.718040943145752,1.7694151401519775,1.375545859336853,1.563918113708496,1.4954191446304321,1.5467933416366577,1.718040943145752,1.0501755475997925,-1.689785122871399,-2.0665297508239746,-2.0665297508239746,-0.8677968978881836,-2.1179039478302,-2.1179039478302,-2.0494048595428467,-1.5185375213623047,-1.6212860345840454,-0.7821731567382812,-1.6384108066558838,-1.7240345478057861,-1.8610326051712036,-0.9876701831817627,-0.42255330085754395,0.33093586564064026,0.9474270343780518,1.2385478019714355,1.375545859336853,1.5981676578521729,1.4097954034805298,1.9920369386672974,1.7351657152175903,1.4782943725585938,1.5810428857803345,2.248908281326294,1.6837913990020752,-0.18280674517154694,-0.576676070690155,-0.6280503273010254,0.24531209468841553,-0.9705454111099243,0.9474270343780518,1.8892884254455566,1.255672574043274,1.7522904872894287,1.563918113708496,1.7522904872894287,1.6666666269302368,1.563918113708496,1.1186745166778564,1.4097954034805298,1.3412963151931763,0.45080915093421936,1.375545859336853,0.5878071784973145,1.033050775527954,0.34806060791015625,1.1529240608215332,1.0501755475997925,0.913177490234375,1.255672574043274,-1.1760424375534058,0.6220566630363464,-0.01155920885503292,-0.884921669960022,-0.7307988405227661,0.005565545056015253,0.12543882429599762,-1.1417930126190186,-0.8506721258163452,-1.5014127492904663,-1.1075434684753418,-0.4568028151988983,0.433684378862381,-0.919171154499054,-0.884921669960022,-0.2170562595129013,0.7076804637908936,1.0673003196716309,0.6563062071800232,1.0501755475997925,1.5981676578521729,2.0605359077453613,2.129034996032715,1.718040943145752,1.8721636533737183,1.6666666269302368,1.444044828414917,1.2214230298995972,1.033050775527954,1.1700488328933716,0.9474270343780518,1.1700488328933716,1.0501755475997925,1.2727973461151123,1.2042982578277588,1.1700488328933716,1.4269200563430786,1.5125439167022705,1.4269200563430786,1.5981676578521729,1.375545859336853,1.563918113708496,1.3926706314086914,1.5810428857803345,1.2042982578277588,1.1186745166778564,1.2214230298995972,1.0501755475997925,1.2042982578277588,1.2042982578277588,1.4611696004867554,1.6837913990020752,1.718040943145752,1.7351657152175903,1.7694151401519775,1.6324172019958496,1.7351657152175903,1.718040943145752,1.786539912223816,1.8550390005111694,1.6324172019958496,1.6837913990020752,1.8721636533737183,1.6324172019958496,1.5981676578521729,1.9577875137329102,1.9749122858047485,1.718040943145752,1.7694151401519775,1.8036646842956543,1.6666666269302368,1.7694151401519775,1.786539912223816,2.111910343170166,1.9406627416610718,1.9749122858047485,2.111910343170166],[1.5810428857803345,1.3926706314086914,1.7694151401519775,1.9406627416610718,2.1461598873138428,2.1461598873138428,2.1632845401763916,2.1804091930389404,2.1461598873138428,2.248908281326294,2.248908281326294,2.0605359077453613,1.9920369386672974,1.9406627416610718,1.8721636533737183,1.3412963151931763,0.9303022623062134,0.12543882429599762,0.2966863512992859,-0.43967804312705994,-0.3883037865161896,0.48505866527557373,0.21106259524822235,-0.4739275574684143,0.46793389320373535,0.5021833777427673,0.5878071784973145,0.12543882429599762,-0.8677968978881836,-1.2616662979125977,-0.542426586151123,-0.40542855858802795,0.21106259524822235,0.5364329218864441,0.8446784615516663,0.6049319505691528,-1.2959157228469849,-0.7479236125946045,-0.08005822449922562,0.5878071784973145,1.1186745166778564,0.5364329218864441,-0.542426586151123,0.9645517468452454,0.7933042049407959,0.9816765189170837,0.6049319505691528,0.9988012909889221,0.1425635814666748,-0.01155920885503292,0.5193081498146057,0.8618032336235046,0.21106259524822235,0.5878071784973145,0.48505866527557373,0.09118931740522385,0.10831406712532043,0.36518537998199463,0.9303022623062134,0.9988012909889221,0.9303022623062134,0.7933042049407959,0.7761794924736023,0.5364329218864441,0.6391814351081848,0.416559636592865,1.1700488328933716,0.9474270343780518,1.255672574043274,1.2727973461151123,1.2899221181869507,1.4611696004867554,1.3412963151931763,1.5296686887741089,1.5125439167022705,1.5467933416366577,1.5981676578521729,1.7522904872894287,1.7351657152175903,1.7694151401519775,1.9920369386672974,1.7694151401519775,1.7694151401519775,1.9235379695892334,1.8550390005111694,1.8892884254455566,1.8207894563674927,1.6152924299240112,1.7694151401519775,1.8036646842956543,1.4611696004867554,1.6837913990020752,1.6152924299240112,1.6495418548583984,1.2727973461151123,-0.3540542721748352,-2.1007792949676514,-1.3986642360687256,-0.4739275574684143,-2.1179039478302,-2.1179039478302,-2.01515531539917,-1.8267830610275269,-1.6726603507995605,-0.16568198800086975,-0.576676070690155,-0.7307988405227661,-0.6280503273010254,-0.18280674517154694,0.416559636592865,0.8446784615516663,1.101549744606018,1.2727973461151123,1.3584210872650146,1.5810428857803345,1.6324172019958496,1.5125439167022705,1.6837913990020752,1.7009161710739136,1.101549744606018,2.1804091930389404,1.3584210872650146,-0.7136741280555725,-0.3369295299053192,-0.8335474133491516,0.22818733751773834,-1.0561691522598267,1.2214230298995972,0.878928005695343,1.5125439167022705,1.255672574043274,1.5981676578521729,1.4269200563430786,1.2214230298995972,1.3926706314086914,1.2042982578277588,1.2042982578277588,1.5467933416366577,1.2042982578277588,0.9474270343780518,1.3584210872650146,0.6734309196472168,1.1357992887496948,0.9645517468452454,1.0501755475997925,1.0844250917434692,2.1461598873138428,1.8207894563674927,-0.28555527329444885,1.033050775527954,0.03981505334377289,0.17681308090686798,-1.5527870655059814,-0.9876701831817627,-0.16568198800086975,-0.7307988405227661,-1.415789008140564,-1.8952821493148804,-1.2787909507751465,-0.3369295299053192,-0.4739275574684143,-0.7136741280555725,0.1425635814666748,0.7933042049407959,1.0501755475997925,1.6152924299240112,1.375545859336853,1.3412963151931763,1.786539912223816,2.0776607990264893,2.094785451889038,1.9577875137329102,1.4954191446304321,0.9303022623062134,1.0673003196716309,0.8446784615516663,1.0159260034561157,1.1700488328933716,1.18717360496521,1.1529240608215332,1.0673003196716309,1.4611696004867554,1.307046890258789,1.375545859336853,1.375545859336853,1.3412963151931763,1.2214230298995972,1.6495418548583984,1.4611696004867554,1.5981676578521729,1.5467933416366577,1.3584210872650146,1.324171543121338,1.2214230298995972,1.033050775527954,1.18717360496521,1.6152924299240112,1.4097954034805298,1.5296686887741089,1.5467933416366577,1.4611696004867554,1.5125439167022705,1.6837913990020752,1.5467933416366577,1.6324172019958496,1.7694151401519775,1.8207894563674927,1.8036646842956543,1.8892884254455566,1.718040943145752,1.6837913990020752,1.6495418548583984,1.5125439167022705,1.7351657152175903,1.7522904872894287,1.8550390005111694,1.6666666269302368,1.8550390005111694,1.8207894563674927,1.8721636533737183,1.9235379695892334,1.837914228439331,2.0434112548828125,2.129034996032715],[1.1186745166778564,1.4097954034805298,1.5981676578521729,1.8036646842956543,1.6152924299240112,1.906413197517395,2.0605359077453613,2.111910343170166,2.1632845401763916,2.214658737182617,2.094785451889038,2.214658737182617,2.1632845401763916,1.7694151401519775,1.4097954034805298,0.6563062071800232,-0.5081770420074463,-0.7992978692054749,-0.5253018140792847,0.10831406712532043,0.03981505334377289,0.17681308090686798,-0.7821731567382812,-0.5081770420074463,-0.42255330085754395,-0.04580871760845184,-0.5938008427619934,-0.8506721258163452,0.2795616090297699,-0.3369295299053192,-0.28555527329444885,-0.7307988405227661,0.17681308090686798,-0.43967804312705994,-0.6280503273010254,-0.3369295299053192,-1.004794955253601,-1.9295316934585571,-1.1589176654815674,-1.1760424375534058,-0.30268001556396484,0.46793389320373535,0.433684378862381,-0.7821731567382812,-0.0971829816699028,0.6905556917190552,0.6734309196472168,0.19393783807754517,0.7933042049407959,0.878928005695343,0.2966863512992859,0.9816765189170837,0.6563062071800232,0.5021833777427673,0.9303022623062134,0.5193081498146057,0.6391814351081848,1.1700488328933716,1.18717360496521,0.8446784615516663,0.6734309196472168,0.7590547204017639,0.913177490234375,0.19393783807754517,0.2795616090297699,0.8104289770126343,0.878928005695343,1.1700488328933716,1.2727973461151123,1.5125439167022705,1.5125439167022705,1.5981676578521729,1.6666666269302368,1.444044828414917,1.563918113708496,1.6666666269302368,1.5810428857803345,1.906413197517395,1.9577875137329102,1.8036646842956543,1.7694151401519775,1.906413197517395,1.906413197517395,1.7694151401519775,1.7009161710739136,1.8550390005111694,1.7522904872894287,1.6837913990020752,1.8550390005111694,1.906413197517395,1.5467933416366577,1.7009161710739136,1.8721636533737183,1.4954191446304321,1.0673003196716309,0.8446784615516663,-2.0494048595428467,-0.9534206986427307,-0.6451750993728638,-2.0836544036865234,-2.0494048595428467,-2.032280206680298,-2.1179039478302,-1.8952821493148804,-0.2513057589530945,-0.26843053102493286,0.17681308090686798,0.416559636592865,0.7076804637908936,0.5021833777427673,1.1529240608215332,1.3412963151931763,1.4954191446304321,1.5125439167022705,1.5981676578521729,1.7522904872894287,1.255672574043274,1.4954191446304321,1.4269200563430786,2.1804091930389404,1.6152924299240112,1.5810428857803345,-1.3130404949188232,-0.2170562595129013,-0.6451750993728638,-0.06293346732854843,-0.7136741280555725,1.1357992887496948,1.1529240608215332,1.255672574043274,1.375545859336853,1.8892884254455566,1.5467933416366577,1.8550390005111694,1.8207894563674927,1.033050775527954,1.0159260034561157,1.375545859336853,1.7522904872894287,1.7351657152175903,0.8618032336235046,0.12543882429599762,1.0844250917434692,1.375545859336853,0.7076804637908936,0.7419299483299255,1.2214230298995972,0.399434894323349,1.0501755475997925,1.5810428857803345,0.2795616090297699,1.307046890258789,-1.3472900390625,-0.3711790442466736,-0.8506721258163452,-1.467163324356079,-1.535662293434143,-1.1417930126190186,-1.3986642360687256,-1.227416753768921,-0.0971829816699028,-0.884921669960022,-0.6965493559837341,0.36518537998199463,0.6734309196472168,0.8104289770126343,1.3926706314086914,1.4611696004867554,1.9749122858047485,1.8550390005111694,2.111910343170166,1.6666666269302368,1.8036646842956543,1.5981676578521729,1.101549744606018,0.9988012909889221,1.1529240608215332,1.1529240608215332,1.3926706314086914,1.307046890258789,1.2899221181869507,1.375545859336853,1.375545859336853,1.4782943725585938,1.6152924299240112,1.5810428857803345,1.2899221181869507,1.444044828414917,1.563918113708496,1.4954191446304321,1.5125439167022705,1.444044828414917,1.307046890258789,0.9303022623062134,1.1700488328933716,1.2385478019714355,1.375545859336853,1.1700488328933716,1.6324172019958496,1.4269200563430786,1.6495418548583984,1.786539912223816,1.6324172019958496,1.6837913990020752,1.8550390005111694,1.5810428857803345,1.8036646842956543,1.7522904872894287,1.6324172019958496,1.786539912223816,1.7009161710739136,1.6495418548583984,1.7009161710739136,1.786539912223816,1.7009161710739136,1.9749122858047485,1.786539912223816,1.7522904872894287,1.837914228439331,1.8892884254455566,1.8036646842956543,1.9406627416610718,2.0434112548828125,2.0434112548828125],[1.0844250917434692,1.1357992887496948,1.255672574043274,1.3412963151931763,1.8892884254455566,2.0091617107391357,1.7694151401519775,2.0776607990264893,2.1804091930389404,2.0776607990264893,1.8036646842956543,2.248908281326294,2.0605359077453613,1.837914228439331,1.2385478019714355,0.005565545056015253,-0.40542855858802795,-0.7307988405227661,-1.1075434684753418,-0.26843053102493286,0.433684378862381,0.6049319505691528,0.5535576939582825,0.6049319505691528,0.416559636592865,-0.6794245839118958,-0.7307988405227661,-0.3883037865161896,0.7933042049407959,0.399434894323349,0.07406456023454666,-0.4568028151988983,-0.26843053102493286,-1.7069098949432373,-1.689785122871399,-0.7136741280555725,-0.028683962300419807,-1.4329137802124023,-1.4329137802124023,-1.2102919816970825,0.005565545056015253,1.0673003196716309,0.9303022623062134,0.2966863512992859,0.056939806789159775,-0.6622998714447021,0.9645517468452454,1.0159260034561157,0.6391814351081848,0.8446784615516663,0.8104289770126343,0.7933042049407959,0.8104289770126343,0.8275537490844727,0.6220566630363464,0.878928005695343,1.2042982578277588,1.101549744606018,1.0673003196716309,0.6905556917190552,0.056939806789159775,0.3823101222515106,0.8960527181625366,0.22818733751773834,0.24531209468841553,1.0501755475997925,1.1700488328933716,1.2214230298995972,1.3584210872650146,1.6152924299240112,1.5810428857803345,1.4954191446304321,1.4954191446304321,1.5810428857803345,1.5981676578521729,1.5981676578521729,1.7694151401519775,1.7351657152175903,1.9577875137329102,1.8721636533737183,1.8892884254455566,1.718040943145752,1.9235379695892334,1.7351657152175903,1.8036646842956543,1.718040943145752,1.7522904872894287,1.7351657152175903,1.9406627416610718,1.9577875137329102,1.5296686887741089,1.786539912223816,1.563918113708496,1.7009161710739136,1.4954191446304321,1.0501755475997925,-2.0494048595428467,-1.467163324356079,-0.9876701831817627,-2.0836544036865234,-2.1179039478302,-1.073293924331665,-2.032280206680298,-2.0494048595428467,-1.5870366096496582,0.1596883237361908,0.17681308090686798,0.5535576939582825,1.1529240608215332,1.0159260034561157,1.3926706314086914,1.324171543121338,1.5125439167022705,1.6666666269302368,1.5981676578521729,1.6324172019958496,1.444044828414917,1.5296686887741089,1.6666666269302368,2.129034996032715,1.9235379695892334,1.5296686887741089,-1.6212860345840454,-1.5014127492904663,-0.6280503273010254,-0.30268001556396484,-0.2170562595129013,1.2214230298995972,1.8207894563674927,1.101549744606018,1.6666666269302368,1.2899221181869507,1.786539912223816,1.8892884254455566,1.6666666269302368,1.4097954034805298,1.9920369386672974,1.3926706314086914,1.0844250917434692,1.3412963151931763,0.17681308090686798,1.5296686887741089,0.6734309196472168,-0.5595513582229614,0.2624368667602539,1.0501755475997925,0.005565545056015253,-0.18280674517154694,0.022690298035740852,-0.11430773138999939,0.7419299483299255,0.12543882429599762,-0.6280503273010254,-0.5081770420074463,-1.3472900390625,0.056939806789159775,-1.2787909507751465,-1.2102919816970825,-1.004794955253601,-0.9534206986427307,-1.3644148111343384,-0.3198047876358032,-1.004794955253601,-0.9020463824272156,1.0159260034561157,0.7761794924736023,0.9988012909889221,0.9474270343780518,1.7009161710739136,1.9577875137329102,1.9749122858047485,1.7694151401519775,1.6837913990020752,1.4269200563430786,1.3584210872650146,0.9816765189170837,1.18717360496521,1.1700488328933716,1.1357992887496948,1.2214230298995972,1.375545859336853,1.3584210872650146,1.375545859336853,1.5810428857803345,1.4269200563430786,1.563918113708496,1.5810428857803345,1.444044828414917,1.5125439167022705,1.4954191446304321,1.5981676578521729,1.307046890258789,1.2385478019714355,1.0844250917434692,1.1357992887496948,1.1700488328933716,1.3926706314086914,1.324171543121338,1.4097954034805298,1.7694151401519775,1.7522904872894287,1.6837913990020752,1.8207894563674927,1.6324172019958496,1.7351657152175903,1.6837913990020752,1.6495418548583984,1.6837913990020752,1.5296686887741089,1.6152924299240112,1.6495418548583984,1.6324172019958496,1.8550390005111694,1.786539912223816,1.6495418548583984,1.7694151401519775,1.8550390005111694,1.7522904872894287,1.7351657152175903,1.8550390005111694,1.8036646842956543,2.0262866020202637,1.9406627416610718,2.094785451889038],[1.324171543121338,1.2727973461151123,1.307046890258789,1.4611696004867554,1.4611696004867554,1.906413197517395,1.8721636533737183,1.8207894563674927,1.906413197517395,2.0262866020202637,1.906413197517395,2.0605359077453613,1.7522904872894287,1.324171543121338,0.399434894323349,-0.3711790442466736,-0.3711790442466736,0.022690298035740852,-0.19993150234222412,-0.7650483846664429,-0.3198047876358032,0.46793389320373535,0.7933042049407959,1.2385478019714355,0.6220566630363464,0.5706824064254761,0.07406456023454666,0.399434894323349,0.5535576939582825,0.5193081498146057,0.8104289770126343,-0.6965493559837341,-1.5185375213623047,-1.9637811183929443,-1.5699118375778198,0.2966863512992859,0.6563062071800232,1.2899221181869507,0.5193081498146057,0.33093586564064026,1.5467933416366577,1.3412963151931763,1.2214230298995972,1.18717360496521,0.7419299483299255,0.7076804637908936,-0.42255330085754395,0.399434894323349,-0.7136741280555725,0.1425635814666748,0.36518537998199463,0.48505866527557373,0.8275537490844727,0.416559636592865,0.5193081498146057,1.0673003196716309,1.1700488328933716,1.2214230298995972,0.8618032336235046,0.7933042049407959,0.399434894323349,0.36518537998199463,0.46793389320373535,0.7933042049407959,0.9645517468452454,1.0159260034561157,1.1357992887496948,1.5125439167022705,1.444044828414917,1.4954191446304321,1.6324172019958496,1.5467933416366577,1.6837913990020752,1.6495418548583984,1.5125439167022705,1.7522904872894287,1.8207894563674927,1.718040943145752,1.9235379695892334,1.8207894563674927,1.5810428857803345,1.6495418548583984,1.6666666269302368,1.7694151401519775,1.8550390005111694,1.837914228439331,1.7522904872894287,1.8207894563674927,1.786539912223816,1.9577875137329102,1.5810428857803345,1.7522904872894287,1.9406627416610718,1.6666666269302368,1.837914228439331,1.3412963151931763,-1.3301652669906616,-2.01515531539917,-2.1179039478302,-2.1179039478302,-1.9124069213867188,-1.5014127492904663,-2.0665297508239746,-2.032280206680298,-2.1179039478302,-0.18280674517154694,0.5364329218864441,1.033050775527954,1.0673003196716309,1.255672574043274,1.4097954034805298,1.3926706314086914,1.563918113708496,1.563918113708496,1.6152924299240112,1.5467933416366577,1.8550390005111694,1.6324172019958496,2.1632845401763916,2.248908281326294,1.307046890258789,0.48505866527557373,-1.5185375213623047,-1.5870366096496582,-0.13143248856067657,-1.1760424375534058,-1.2102919816970825,0.6734309196472168,0.7933042049407959,1.0673003196716309,1.444044828414917,1.1529240608215332,1.255672574043274,1.2899221181869507,0.9303022623062134,1.2385478019714355,1.4097954034805298,1.18717360496521,0.7248051762580872,0.19393783807754517,-0.4910523295402527,0.31381112337112427,0.022690298035740852,-0.5253018140792847,-0.30268001556396484,0.6734309196472168,0.17681308090686798,0.07406456023454666,-0.9705454111099243,0.21106259524822235,0.6220566630363464,0.1425635814666748,-0.01155920885503292,-0.028683962300419807,0.6905556917190552,-0.3883037865161896,-1.0904186964035034,-1.3986642360687256,-1.3815394639968872,-1.6212860345840454,-1.535662293434143,-1.2787909507751465,-0.9534206986427307,-0.8335474133491516,0.5535576939582825,-0.6622998714447021,0.5021833777427673,1.0501755475997925,0.9988012909889221,1.7351657152175903,1.9235379695892334,1.5296686887741089,1.5810428857803345,0.8446784615516663,-0.40542855858802795,1.375545859336853,1.2727973461151123,1.4611696004867554,1.1186745166778564,1.307046890258789,1.3584210872650146,1.255672574043274,1.4269200563430786,1.444044828414917,1.375545859336853,1.5810428857803345,1.444044828414917,1.6666666269302368,1.6324172019958496,1.6324172019958496,1.786539912223816,1.5296686887741089,1.4097954034805298,1.255672574043274,1.2899221181869507,1.2042982578277588,1.4269200563430786,1.7694151401519775,1.444044828414917,1.7009161710739136,1.8036646842956543,1.8207894563674927,1.9235379695892334,1.6837913990020752,1.8036646842956543,1.8721636533737183,1.7522904872894287,1.837914228439331,1.786539912223816,1.9749122858047485,1.837914228439331,1.7694151401519775,1.8207894563674927,1.7694151401519775,1.7351657152175903,1.9235379695892334,1.9235379695892334,1.6837913990020752,1.9235379695892334,1.5125439167022705,1.8550390005111694,2.0776607990264893,1.9235379695892334,1.9577875137329102],[1.375545859336853,1.0501755475997925,1.0501755475997925,1.2899221181869507,1.2042982578277588,1.6837913990020752,1.3926706314086914,1.9577875137329102,2.214658737182617,1.9577875137329102,1.9920369386672974,1.9235379695892334,1.786539912223816,1.5981676578521729,0.45080915093421936,0.19393783807754517,-0.5081770420074463,0.19393783807754517,0.5021833777427673,0.1596883237361908,-0.8506721258163452,-0.6451750993728638,0.7419299483299255,0.5706824064254761,1.1700488328933716,0.7076804637908936,0.7761794924736023,0.33093586564064026,-0.11430773138999939,0.5193081498146057,0.913177490234375,0.9645517468452454,0.6734309196472168,-1.8439078330993652,-1.8439078330993652,-1.1931672096252441,1.0159260034561157,1.5296686887741089,1.0501755475997925,1.3584210872650146,1.9235379695892334,1.444044828414917,0.9988012909889221,0.8960527181625366,0.9816765189170837,1.18717360496521,0.7419299483299255,-0.542426586151123,-0.2513057589530945,0.34806060791015625,0.8446784615516663,0.7761794924736023,1.0501755475997925,0.6905556917190552,0.6734309196472168,1.0844250917434692,1.1357992887496948,1.2727973461151123,0.9645517468452454,0.9474270343780518,0.5706824064254761,0.399434894323349,0.48505866527557373,0.7761794924736023,0.9474270343780518,1.033050775527954,1.307046890258789,1.3412963151931763,1.255672574043274,1.307046890258789,1.4782943725585938,1.718040943145752,1.7694151401519775,1.8550390005111694,1.7522904872894287,1.906413197517395,1.8550390005111694,1.8207894563674927,1.6495418548583984,1.7351657152175903,1.7009161710739136,1.837914228439331,1.7009161710739136,1.8892884254455566,1.837914228439331,2.0091617107391357,1.9577875137329102,1.9406627416610718,1.8207894563674927,1.9577875137329102,1.906413197517395,1.837914228439331,1.8550390005111694,1.906413197517395,1.6495418548583984,1.563918113708496,0.7248051762580872,-1.535662293434143,-2.1179039478302,-2.0665297508239746,-2.0494048595428467,-2.1007792949676514,-2.0494048595428467,-2.1179039478302,-2.0665297508239746,-0.04580871760845184,0.5706824064254761,1.2899221181869507,1.1700488328933716,1.324171543121338,1.4269200563430786,1.4954191446304321,1.5296686887741089,1.5810428857803345,1.5981676578521729,1.5810428857803345,1.4954191446304321,2.248908281326294,2.248908281326294,2.0605359077453613,1.444044828414917,0.056939806789159775,-1.3986642360687256,-1.8610326051712036,-0.6794245839118958,-1.1589176654815674,-0.6794245839118958,-0.13143248856067657,0.005565545056015253,0.8104289770126343,0.36518537998199463,0.5021833777427673,0.9474270343780518,0.9303022623062134,0.433684378862381,0.9303022623062134,1.0501755475997925,-0.01155920885503292,-0.8506721258163452,-1.0219197273254395,-1.0904186964035034,0.6563062071800232,0.5193081498146057,-0.576676070690155,0.5535576939582825,-0.9534206986427307,0.46793389320373535,0.7248051762580872,-0.2341810017824173,-0.3711790442466736,-0.2170562595129013,-0.6794245839118958,0.07406456023454666,0.09118931740522385,0.2966863512992859,-1.2787909507751465,-0.5595513582229614,-0.4910523295402527,-0.18280674517154694,-0.06293346732854843,-1.4329137802124023,-1.1075434684753418,-0.9534206986427307,-1.8610326051712036,-0.6794245839118958,-0.14855724573135376,0.33093586564064026,0.8275537490844727,0.878928005695343,1.6324172019958496,1.906413197517395,1.563918113708496,1.2899221181869507,0.6905556917190552,-0.3540542721748352,0.6905556917190552,1.4269200563430786,1.1357992887496948,1.2042982578277588,1.2385478019714355,1.2899221181869507,1.5296686887741089,1.4097954034805298,1.2385478019714355,1.5296686887741089,1.3584210872650146,1.4954191446304321,1.4269200563430786,1.6495418548583984,1.6837913990020752,1.5810428857803345,1.4269200563430786,1.0844250917434692,1.18717360496521,1.3926706314086914,1.5981676578521729,1.4954191446304321,1.786539912223816,1.8036646842956543,1.6666666269302368,1.7009161710739136,1.6324172019958496,1.5125439167022705,1.8207894563674927,1.7009161710739136,1.9406627416610718,1.8721636533737183,1.7009161710739136,1.786539912223816,1.7522904872894287,1.5467933416366577,1.8036646842956543,1.7009161710739136,1.6324172019958496,1.4954191446304321,1.8721636533737183,2.094785451889038,1.718040943145752,1.7694151401519775,1.7351657152175903,1.8892884254455566,2.0262866020202637,2.0434112548828125,1.6666666269302368],[1.033050775527954,1.101549744606018,1.1186745166778564,1.1357992887496948,0.9474270343780518,1.2214230298995972,1.4097954034805298,1.837914228439331,1.8036646842956543,1.786539912223816,2.0091617107391357,1.786539912223816,1.786539912223816,0.6905556917190552,0.34806060791015625,-0.14855724573135376,-1.0390443801879883,-0.06293346732854843,0.5021833777427673,0.9816765189170837,0.48505866527557373,-0.30268001556396484,0.2624368667602539,0.2795616090297699,-0.42255330085754395,-0.5253018140792847,-0.30268001556396484,-0.2341810017824173,0.2624368667602539,0.31381112337112427,0.6905556917190552,0.8960527181625366,0.5364329218864441,-0.7650483846664429,-0.7821731567382812,1.0159260034561157,1.2385478019714355,1.4097954034805298,0.913177490234375,2.248908281326294,1.9749122858047485,1.9577875137329102,1.0159260034561157,0.9303022623062134,0.1596883237361908,1.2385478019714355,1.324171543121338,0.6734309196472168,0.7419299483299255,0.7076804637908936,0.8618032336235046,0.5364329218864441,0.7419299483299255,1.1357992887496948,0.8960527181625366,1.4097954034805298,0.7761794924736023,0.8960527181625366,0.5364329218864441,0.8446784615516663,0.6220566630363464,0.433684378862381,0.7419299483299255,1.033050775527954,0.8446784615516663,1.0501755475997925,1.2214230298995972,1.4611696004867554,1.6152924299240112,1.5810428857803345,1.5467933416366577,1.5467933416366577,1.444044828414917,1.4097954034805298,1.6495418548583984,1.786539912223816,1.8721636533737183,1.7522904872894287,1.906413197517395,1.8892884254455566,1.786539912223816,1.9406627416610718,1.8892884254455566,1.9235379695892334,1.8721636533737183,2.0091617107391357,1.837914228439331,1.8721636533737183,1.906413197517395,1.837914228439331,1.8036646842956543,1.7351657152175903,1.9406627416610718,2.0605359077453613,1.786539912223816,1.6666666269302368,1.255672574043274,-0.2170562595129013,-2.01515531539917,-2.0494048595428467,-1.998030662536621,-1.998030662536621,-2.1007792949676514,-2.1179039478302,-1.604161262512207,0.07406456023454666,0.7590547204017639,1.0844250917434692,1.1700488328933716,1.4269200563430786,1.5296686887741089,1.6666666269302368,1.6666666269302368,1.3412963151931763,1.7351657152175903,1.7009161710739136,1.786539912223816,2.0434112548828125,1.8036646842956543,2.0091617107391357,1.1186745166778564,-0.5081770420074463,-1.3986642360687256,-1.8610326051712036,-1.073293924331665,-1.3644148111343384,-1.2959157228469849,-1.3815394639968872,-1.0904186964035034,0.03981505334377289,0.09118931740522385,-0.13143248856067657,-0.0971829816699028,-0.3369295299053192,-0.13143248856067657,-0.2170562595129013,-0.3711790442466736,-0.6794245839118958,-0.884921669960022,-1.3130404949188232,-0.8335474133491516,1.4097954034805298,1.2042982578277588,-0.028683962300419807,0.22818733751773834,-0.9534206986427307,0.6049319505691528,0.6563062071800232,-0.08005822449922562,0.9303022623062134,0.5878071784973145,0.5535576939582825,-0.01155920885503292,-1.1589176654815674,-0.4739275574684143,0.5021833777427673,-1.0561691522598267,-1.2102919816970825,0.07406456023454666,0.45080915093421936,-0.919171154499054,-0.5253018140792847,0.31381112337112427,-0.28555527329444885,-0.6451750993728638,-0.9705454111099243,-0.5595513582229614,-0.18280674517154694,0.913177490234375,1.2899221181869507,1.6152924299240112,1.2899221181869507,1.101549744606018,0.09118931740522385,-0.01155920885503292,1.4269200563430786,1.4782943725585938,1.7522904872894287,0.8960527181625366,1.1700488328933716,1.4782943725585938,1.4269200563430786,1.4097954034805298,1.444044828414917,1.3412963151931763,1.444044828414917,1.4611696004867554,1.444044828414917,1.563918113708496,1.6152924299240112,1.1529240608215332,1.0844250917434692,1.1529240608215332,1.3412963151931763,1.3412963151931763,1.5810428857803345,1.4097954034805298,1.255672574043274,1.4269200563430786,1.7522904872894287,1.8550390005111694,1.9920369386672974,1.8550390005111694,1.9235379695892334,1.8207894563674927,1.7009161710739136,1.8036646842956543,1.906413197517395,1.8036646842956543,1.906413197517395,1.7522904872894287,1.5467933416366577,1.8721636533737183,1.718040943145752,1.7694151401519775,1.8207894563674927,1.8207894563674927,1.7351657152175903,1.7351657152175903,1.8036646842956543,1.837914228439331,1.7694151401519775,1.6837913990020752,1.8036646842956543],[1.1700488328933716,1.2727973461151123,1.18717360496521,1.1186745166778564,1.0844250917434692,1.3926706314086914,1.5981676578521729,1.5810428857803345,1.8550390005111694,1.5981676578521729,1.906413197517395,2.0262866020202637,0.913177490234375,0.7590547204017639,-0.2170562595129013,0.022690298035740852,-0.6109256148338318,-0.028683962300419807,0.3823101222515106,1.0844250917434692,1.033050775527954,0.8104289770126343,0.34806060791015625,0.5535576939582825,0.5878071784973145,-0.5595513582229614,-1.2445415258407593,-0.7650483846664429,-0.0971829816699028,0.056939806789159775,0.31381112337112427,-0.4739275574684143,0.433684378862381,-0.2170562595129013,0.433684378862381,1.1700488328933716,1.4611696004867554,1.718040943145752,1.8892884254455566,1.9406627416610718,1.837914228439331,1.6837913990020752,0.9474270343780518,1.18717360496521,1.0501755475997925,1.0844250917434692,1.2385478019714355,1.1700488328933716,0.8275537490844727,0.9474270343780518,1.033050775527954,0.913177490234375,0.5193081498146057,0.8618032336235046,1.0159260034561157,0.8446784615516663,0.46793389320373535,0.913177490234375,0.7248051762580872,0.1596883237361908,0.6905556917190552,0.5193081498146057,0.8275537490844727,1.0501755475997925,1.2042982578277588,1.0501755475997925,1.4954191446304321,1.4611696004867554,1.3926706314086914,1.5810428857803345,1.4782943725585938,1.5810428857803345,1.4611696004867554,1.718040943145752,1.6666666269302368,1.9235379695892334,1.8892884254455566,1.7522904872894287,1.5467933416366577,1.7351657152175903,1.718040943145752,1.6837913990020752,1.9235379695892334,1.906413197517395,1.9577875137329102,2.0262866020202637,1.9235379695892334,1.906413197517395,2.0091617107391357,1.8207894563674927,1.9406627416610718,1.906413197517395,2.0091617107391357,1.8721636533737183,1.718040943145752,1.8892884254455566,1.5296686887741089,1.0501755475997925,-1.3130404949188232,-2.1179039478302,-2.0836544036865234,-0.8677968978881836,-0.919171154499054,-2.01515531539917,-1.8267830610275269,0.2624368667602539,0.5193081498146057,1.033050775527954,1.324171543121338,1.3926706314086914,1.5467933416366577,1.5467933416366577,1.6324172019958496,1.4782943725585938,1.6152924299240112,1.9920369386672974,2.0262866020202637,2.0434112548828125,1.7351657152175903,1.1357992887496948,-0.028683962300419807,-0.7479236125946045,-1.809658408164978,-2.0494048595428467,-0.9876701831817627,-1.1931672096252441,-0.7650483846664429,-0.7479236125946045,-0.19993150234222412,-0.06293346732854843,0.12543882429599762,0.34806060791015625,0.5021833777427673,0.33093586564064026,0.2966863512992859,-0.6794245839118958,-0.28555527329444885,-0.576676070690155,0.21106259524822235,0.34806060791015625,-1.878157377243042,-0.3369295299053192,0.8960527181625366,-1.1589176654815674,0.3823101222515106,1.8550390005111694,1.1700488328933716,1.5467933416366577,-0.4568028151988983,0.6220566630363464,0.005565545056015253,-0.43967804312705994,-0.19993150234222412,-0.9876701831817627,-0.8677968978881836,0.07406456023454666,1.4097954034805298,-0.9362959265708923,-0.576676070690155,0.7076804637908936,0.07406456023454666,-0.4739275574684143,0.21106259524822235,-0.06293346732854843,-0.7307988405227661,0.36518537998199463,-1.5185375213623047,-1.073293924331665,1.033050775527954,1.4782943725585938,1.6666666269302368,1.4611696004867554,1.6324172019958496,0.34806060791015625,0.2795616090297699,1.2214230298995972,1.7009161710739136,1.4782943725585938,1.4782943725585938,1.2214230298995972,1.444044828414917,1.3584210872650146,1.1700488328933716,1.5296686887741089,1.4269200563430786,1.324171543121338,1.4097954034805298,1.6152924299240112,1.5467933416366577,1.563918113708496,1.3584210872650146,1.444044828414917,1.5125439167022705,1.444044828414917,1.3412963151931763,1.5810428857803345,1.2214230298995972,1.5125439167022705,1.6837913990020752,1.786539912223816,1.7351657152175903,1.786539912223816,1.6666666269302368,1.7351657152175903,1.837914228439331,1.8036646842956543,1.8892884254455566,1.9235379695892334,1.7522904872894287,1.6324172019958496,1.6324172019958496,1.8721636533737183,1.7009161710739136,1.6495418548583984,1.8207894563674927,1.6666666269302368,1.718040943145752,1.563918113708496,1.718040943145752,1.5296686887741089,1.5810428857803345,1.8036646842956543,1.8207894563674927,1.8721636533737183],[1.1357992887496948,1.1529240608215332,1.1186745166778564,0.9645517468452454,0.878928005695343,1.0673003196716309,1.4954191446304321,1.307046890258789,1.6152924299240112,1.6324172019958496,1.8892884254455566,1.5981676578521729,1.6666666269302368,0.3823101222515106,-0.4910523295402527,0.2624368667602539,0.399434894323349,-0.6622998714447021,-0.884921669960022,0.5878071784973145,1.2727973461151123,0.878928005695343,-0.01155920885503292,0.056939806789159775,1.0501755475997925,-0.6109256148338318,-1.9295316934585571,-1.5699118375778198,-1.1075434684753418,-0.3540542721748352,-0.9020463824272156,0.8960527181625366,0.5193081498146057,-0.4910523295402527,-1.3644148111343384,0.913177490234375,1.8550390005111694,1.255672574043274,1.1529240608215332,0.9303022623062134,1.5981676578521729,1.0844250917434692,1.1700488328933716,1.3412963151931763,1.5810428857803345,1.2899221181869507,1.2385478019714355,1.0844250917434692,1.3412963151931763,1.101549744606018,1.1357992887496948,0.8446784615516663,0.6905556917190552,1.0501755475997925,0.7419299483299255,0.5706824064254761,0.416559636592865,0.878928005695343,0.7933042049407959,0.48505866527557373,-0.06293346732854843,0.7761794924736023,1.0159260034561157,0.8104289770126343,1.033050775527954,1.3926706314086914,1.3584210872650146,1.444044828414917,1.4097954034805298,1.563918113708496,1.7009161710739136,1.444044828414917,1.5981676578521729,1.6666666269302368,1.6837913990020752,1.8550390005111694,1.786539912223816,1.9235379695892334,1.9577875137329102,1.8550390005111694,1.7351657152175903,1.9577875137329102,1.8207894563674927,1.906413197517395,2.111910343170166,1.9406627416610718,1.8550390005111694,1.906413197517395,1.8892884254455566,1.837914228439331,1.9406627416610718,2.094785451889038,1.906413197517395,1.9920369386672974,1.9235379695892334,1.7522904872894287,1.9749122858047485,1.1186745166778564,-0.04580871760845184,-0.40542855858802795,-1.3644148111343384,-2.1179039478302,-1.5014127492904663,-2.1007792949676514,-1.2445415258407593,0.399434894323349,0.7248051762580872,1.0673003196716309,1.2385478019714355,1.4954191446304321,1.7522904872894287,1.6324172019958496,1.5125439167022705,1.7694151401519775,1.786539912223816,2.0605359077453613,2.1804091930389404,1.9749122858047485,1.6495418548583984,0.913177490234375,-0.18280674517154694,-0.9705454111099243,-1.8267830610275269,-2.0665297508239746,-0.884921669960022,-1.2102919816970825,0.2795616090297699,-0.9020463824272156,0.005565545056015253,0.433684378862381,0.21106259524822235,0.056939806789159775,-0.04580871760845184,0.19393783807754517,0.19393783807754517,-0.01155920885503292,0.6563062071800232,-0.11430773138999939,0.2795616090297699,0.022690298035740852,0.22818733751773834,0.7419299483299255,0.416559636592865,-0.2341810017824173,0.6734309196472168,1.3926706314086914,-0.3883037865161896,1.324171543121338,0.6563062071800232,0.5878071784973145,0.8618032336235046,-0.26843053102493286,-1.1246682405471802,-0.6109256148338318,0.6734309196472168,0.6905556917190552,-1.4329137802124023,1.2385478019714355,0.3823101222515106,-1.4329137802124023,0.07406456023454666,0.3823101222515106,-0.04580871760845184,0.36518537998199463,-0.16568198800086975,-1.0561691522598267,-1.0390443801879883,-1.6555355787277222,0.46793389320373535,1.2385478019714355,1.4097954034805298,1.0501755475997925,1.307046890258789,0.2795616090297699,0.2795616090297699,1.2385478019714355,1.786539912223816,1.8550390005111694,1.4269200563430786,1.5810428857803345,1.307046890258789,1.5125439167022705,1.4269200563430786,1.4269200563430786,1.444044828414917,1.5981676578521729,1.5296686887741089,1.5981676578521729,1.6495418548583984,1.5296686887741089,1.4611696004867554,1.5296686887741089,1.324171543121338,1.4611696004867554,1.6495418548583984,1.4782943725585938,1.18717360496521,1.4954191446304321,1.6324172019958496,1.6837913990020752,1.718040943145752,1.8721636533737183,1.8550390005111694,1.7522904872894287,1.718040943145752,1.7694151401519775,1.8207894563674927,1.906413197517395,2.0776607990264893,1.906413197517395,2.0434112548828125,1.718040943145752,1.5467933416366577,1.837914228439331,1.7694151401519775,1.718040943145752,1.8550390005111694,1.9235379695892334,1.8550390005111694,1.8892884254455566,1.8036646842956543,1.906413197517395,1.837914228439331,1.9235379695892334],[1.5981676578521729,1.101549744606018,0.7761794924736023,1.0844250917434692,0.878928005695343,0.7419299483299255,1.0501755475997925,1.3584210872650146,1.255672574043274,1.5467933416366577,1.6837913990020752,1.5810428857803345,1.0673003196716309,-0.26843053102493286,-0.6109256148338318,0.399434894323349,0.8618032336235046,0.7419299483299255,0.5364329218864441,0.03981505334377289,0.8618032336235046,1.1186745166778564,0.46793389320373535,-0.5253018140792847,0.5878071784973145,-0.5253018140792847,-0.3369295299053192,-0.7650483846664429,-0.43967804312705994,0.6563062071800232,-0.3711790442466736,-0.7821731567382812,-0.19993150234222412,-1.4500385522842407,-0.7992978692054749,0.6049319505691528,1.4611696004867554,1.3584210872650146,1.0501755475997925,1.5125439167022705,1.4097954034805298,1.4782943725585938,1.9577875137329102,1.6324172019958496,1.307046890258789,1.18717360496521,1.101549744606018,0.9645517468452454,1.101549744606018,0.913177490234375,0.8446784615516663,1.0501755475997925,0.5193081498146057,0.33093586564064026,0.5535576939582825,0.6391814351081848,0.399434894323349,0.6049319505691528,0.6734309196472168,0.45080915093421936,0.45080915093421936,0.8446784615516663,0.9303022623062134,0.9816765189170837,1.2899221181869507,1.255672574043274,1.255672574043274,1.3584210872650146,1.375545859336853,1.6324172019958496,1.5810428857803345,1.6837913990020752,1.6666666269302368,1.9235379695892334,1.7009161710739136,1.718040943145752,1.8892884254455566,1.718040943145752,1.7351657152175903,1.8207894563674927,1.9920369386672974,1.906413197517395,1.837914228439331,1.9749122858047485,2.0776607990264893,1.906413197517395,1.906413197517395,1.9749122858047485,1.906413197517395,2.0776607990264893,2.111910343170166,1.8892884254455566,2.1804091930389404,2.1975340843200684,1.9749122858047485,1.906413197517395,1.8892884254455566,1.4782943725585938,1.255672574043274,-1.0561691522598267,-1.415789008140564,-1.809658408164978,-1.9295316934585571,-1.998030662536621,-1.878157377243042,0.2795616090297699,0.8446784615516663,1.2899221181869507,1.5467933416366577,1.5125439167022705,1.837914228439331,1.5467933416366577,1.6152924299240112,1.8036646842956543,2.248908281326294,2.248908281326294,2.129034996032715,2.094785451889038,1.4097954034805298,0.34806060791015625,-0.5253018140792847,-1.1246682405471802,-1.467163324356079,-1.8610326051712036,-1.2959157228469849,-1.3986642360687256,0.5535576939582825,-0.5253018140792847,0.12543882429599762,0.09118931740522385,0.48505866527557373,0.36518537998199463,0.8104289770126343,-0.6451750993728638,-0.40542855858802795,0.21106259524822235,0.45080915093421936,1.1357992887496948,0.8618032336235046,0.2624368667602539,1.3412963151931763,-0.08005822449922562,1.1186745166778564,0.09118931740522385,-0.26843053102493286,1.307046890258789,0.10831406712532043,-0.16568198800086975,0.3823101222515106,0.5535576939582825,-0.5253018140792847,0.21106259524822235,0.3823101222515106,-0.5595513582229614,0.022690298035740852,0.8104289770126343,1.563918113708496,-1.1246682405471802,-0.18280674517154694,0.36518537998199463,0.6049319505691528,0.12543882429599762,0.433684378862381,-0.14855724573135376,-0.6965493559837341,-1.1760424375534058,-1.535662293434143,-1.0904186964035034,-0.43967804312705994,-0.2513057589530945,0.5193081498146057,1.18717360496521,0.8104289770126343,0.416559636592865,0.07406456023454666,1.1357992887496948,1.6837913990020752,1.7694151401519775,1.7694151401519775,1.2899221181869507,1.2042982578277588,1.3584210872650146,1.2899221181869507,1.5125439167022705,1.4611696004867554,1.307046890258789,1.4782943725585938,1.6837913990020752,1.375545859336853,1.6152924299240112,1.5125439167022705,1.3584210872650146,1.3584210872650146,1.255672574043274,1.4097954034805298,1.375545859336853,1.3926706314086914,1.5981676578521729,1.6837913990020752,1.6152924299240112,1.786539912223816,1.7351657152175903,1.7522904872894287,1.7009161710739136,1.9920369386672974,1.8721636533737183,1.837914228439331,1.9235379695892334,1.837914228439331,1.8036646842956543,1.8892884254455566,1.7009161710739136,1.7522904872894287,1.8550390005111694,1.7522904872894287,1.906413197517395,1.8036646842956543,1.8036646842956543,1.4954191446304321,1.5467933416366577,1.8550390005111694,1.718040943145752,1.6495418548583984,1.786539912223816],[1.4269200563430786,1.1529240608215332,1.101549744606018,0.8618032336235046,0.878928005695343,0.9645517468452454,1.033050775527954,1.0159260034561157,0.9645517468452454,1.1529240608215332,1.0673003196716309,0.7590547204017639,0.7248051762580872,0.7419299483299255,0.10831406712532043,-0.0971829816699028,0.3823101222515106,1.18717360496521,1.1529240608215332,0.7761794924736023,0.6563062071800232,0.8960527181625366,0.9816765189170837,0.5706824064254761,-0.08005822449922562,0.45080915093421936,0.022690298035740852,-1.3815394639968872,-1.2616662979125977,-0.6622998714447021,-0.6451750993728638,-2.1179039478302,-2.1179039478302,-1.6384108066558838,-0.3198047876358032,-0.6451750993728638,0.913177490234375,0.9645517468452454,1.1357992887496948,1.4097954034805298,1.6324172019958496,1.563918113708496,1.6666666269302368,1.0844250917434692,1.3412963151931763,1.2385478019714355,1.0501755475997925,-0.11430773138999939,0.5193081498146057,0.7933042049407959,0.48505866527557373,0.24531209468841553,0.2795616090297699,0.5193081498146057,0.46793389320373535,0.6734309196472168,0.8960527181625366,1.1186745166778564,0.7590547204017639,0.22818733751773834,0.6220566630363464,0.8618032336235046,1.2214230298995972,1.1357992887496948,1.2385478019714355,1.4611696004867554,1.5810428857803345,1.5296686887741089,1.4782943725585938,1.6666666269302368,1.6666666269302368,1.7009161710739136,1.786539912223816,1.7522904872894287,1.8550390005111694,1.7694151401519775,1.837914228439331,1.906413197517395,1.7694151401519775,1.906413197517395,2.0091617107391357,1.8207894563674927,1.786539912223816,1.9577875137329102,2.129034996032715,1.7694151401519775,1.7351657152175903,1.9749122858047485,2.1461598873138428,1.8207894563674927,2.111910343170166,2.1632845401763916,1.9749122858047485,2.0434112548828125,1.906413197517395,1.7522904872894287,1.9235379695892334,1.6324172019958496,1.6837913990020752,0.5706824064254761,-1.535662293434143,-1.5699118375778198,-1.3130404949188232,-1.604161262512207,-0.0971829816699028,0.6220566630363464,1.375545859336853,1.1700488328933716,1.7009161710739136,1.7694151401519775,1.9406627416610718,1.6324172019958496,1.9749122858047485,2.111910343170166,2.1804091930389404,2.1632845401763916,2.248908281326294,2.0262866020202637,0.8618032336235046,0.005565545056015253,-0.9020463824272156,-0.919171154499054,-1.1417930126190186,-1.7240345478057861,-1.467163324356079,-0.4568028151988983,0.7761794924736023,-0.01155920885503292,0.433684378862381,0.5878071784973145,0.9988012909889221,0.45080915093421936,-0.18280674517154694,-0.4910523295402527,-0.18280674517154694,0.8960527181625366,0.2624368667602539,0.7419299483299255,0.9474270343780518,-0.2341810017824173,0.1425635814666748,0.1425635814666748,0.10831406712532043,-1.3472900390625,0.03981505334377289,-1.1246682405471802,-0.2341810017824173,-0.5938008427619934,0.005565545056015253,-0.7479236125946045,1.101549744606018,0.03981505334377289,-0.14855724573135376,0.7248051762580872,-0.0971829816699028,0.056939806789159775,0.9645517468452454,0.6905556917190552,-0.6794245839118958,1.0501755475997925,0.433684378862381,-0.3711790442466736,0.09118931740522385,0.1425635814666748,-0.08005822449922562,-1.073293924331665,-1.2616662979125977,0.022690298035740852,-0.26843053102493286,0.31381112337112427,0.46793389320373535,1.2727973461151123,1.324171543121338,0.7419299483299255,-0.01155920885503292,0.7076804637908936,1.7522904872894287,1.9920369386672974,2.1461598873138428,1.7522904872894287,1.2042982578277588,1.2727973461151123,1.3584210872650146,1.3412963151931763,1.444044828414917,1.563918113708496,1.444044828414917,1.6152924299240112,1.6666666269302368,1.4954191446304321,1.4611696004867554,1.3412963151931763,1.4782943725585938,1.6152924299240112,1.563918113708496,1.3584210872650146,1.2727973461151123,1.375545859336853,1.718040943145752,1.8550390005111694,1.7694151401519775,1.8721636533737183,1.9920369386672974,1.9235379695892334,1.7522904872894287,1.786539912223816,1.7522904872894287,1.786539912223816,1.7694151401519775,1.7009161710739136,1.906413197517395,1.7522904872894287,1.906413197517395,1.7694151401519775,1.7522904872894287,1.786539912223816,2.0434112548828125,1.8550390005111694,1.9749122858047485,1.8550390005111694,1.9749122858047485,1.8721636533737183,2.0091617107391357,1.8550390005111694],[1.837914228439331,1.4611696004867554,1.2214230298995972,1.0159260034561157,0.913177490234375,0.5535576939582825,0.5193081498146057,0.9645517468452454,0.7761794924736023,1.033050775527954,1.18717360496521,1.1529240608215332,0.9645517468452454,1.0159260034561157,0.7590547204017639,-0.6622998714447021,-0.8506721258163452,0.433684378862381,1.101549744606018,0.8960527181625366,0.433684378862381,0.7933042049407959,0.9645517468452454,0.8104289770126343,0.8618032336235046,0.6391814351081848,0.10831406712532043,-0.3540542721748352,0.2795616090297699,-1.467163324356079,-1.8439078330993652,-2.1179039478302,-2.1179039478302,-1.3986642360687256,0.31381112337112427,-0.7307988405227661,-0.4739275574684143,0.7076804637908936,1.375545859336853,1.8550390005111694,2.248908281326294,2.129034996032715,0.8960527181625366,0.7590547204017639,0.5878071784973145,0.9303022623062134,0.24531209468841553,-0.13143248856067657,0.09118931740522385,0.3823101222515106,0.5706824064254761,0.5021833777427673,0.7248051762580872,0.8104289770126343,1.033050775527954,1.563918113708496,1.5296686887741089,1.4097954034805298,0.399434894323349,0.6391814351081848,0.8960527181625366,1.101549744606018,1.18717360496521,1.375545859336853,1.4097954034805298,1.3584210872650146,1.6495418548583984,1.837914228439331,1.5981676578521729,1.563918113708496,1.7351657152175903,1.6324172019958496,1.8207894563674927,1.6495418548583984,1.9406627416610718,1.9406627416610718,1.8550390005111694,1.8207894563674927,1.906413197517395,1.8550390005111694,1.9749122858047485,1.7694151401519775,1.8721636533737183,2.0776607990264893,1.9749122858047485,1.9406627416610718,1.906413197517395,2.0605359077453613,1.9406627416610718,1.8207894563674927,1.8892884254455566,1.9749122858047485,1.9577875137329102,2.111910343170166,1.9577875137329102,1.9920369386672974,2.111910343170166,1.9749122858047485,1.8721636533737183,1.6324172019958496,1.563918113708496,1.4269200563430786,1.6495418548583984,1.2899221181869507,1.5981676578521729,1.444044828414917,1.7694151401519775,1.837914228439331,1.7351657152175903,1.8550390005111694,1.9920369386672974,2.111910343170166,2.0605359077453613,2.1804091930389404,2.1975340843200684,2.0776607990264893,1.837914228439331,1.2214230298995972,0.09118931740522385,-0.4568028151988983,-1.0390443801879883,-0.9534206986427307,-1.1246682405471802,-1.2616662979125977,-1.1075434684753418,0.07406456023454666,-0.542426586151123,0.48505866527557373,1.3412963151931763,0.7933042049407959,1.2042982578277588,1.0844250917434692,0.17681308090686798,0.8960527181625366,0.913177490234375,1.1700488328933716,1.5296686887741089,0.6734309196472168,1.0673003196716309,0.8960527181625366,1.2727973461151123,0.6220566630363464,0.7248051762580872,0.2795616090297699,1.4269200563430786,0.5364329218864441,0.8960527181625366,0.2795616090297699,0.31381112337112427,0.7761794924736023,1.2385478019714355,1.1357992887496948,-0.19993150234222412,1.2899221181869507,0.433684378862381,-0.3369295299053192,0.5878071784973145,0.6563062071800232,1.0844250917434692,-0.18280674517154694,0.19393783807754517,0.8618032336235046,0.8618032336235046,1.033050775527954,0.46793389320373535,0.056939806789159775,-0.9705454111099243,1.5125439167022705,-1.2445415258407593,-0.5595513582229614,-0.3369295299053192,1.033050775527954,1.0844250917434692,0.21106259524822235,-0.43967804312705994,0.8960527181625366,1.5467933416366577,2.0776607990264893,1.9235379695892334,1.906413197517395,1.6152924299240112,1.3584210872650146,1.4269200563430786,1.563918113708496,1.4782943725585938,1.4954191446304321,1.563918113708496,1.4611696004867554,1.5981676578521729,1.5810428857803345,1.5467933416366577,1.4954191446304321,1.5981676578521729,1.4954191446304321,1.6324172019958496,1.5125439167022705,1.444044828414917,1.2727973461151123,1.4097954034805298,1.6495418548583984,1.906413197517395,1.8036646842956543,1.906413197517395,1.9406627416610718,1.786539912223816,1.8207894563674927,1.7694151401519775,1.5467933416366577,1.837914228439331,1.8036646842956543,2.111910343170166,1.8207894563674927,1.9920369386672974,1.906413197517395,1.9235379695892334,1.7351657152175903,1.5296686887741089,1.6666666269302368,1.8036646842956543,1.786539912223816,1.8036646842956543,1.9577875137329102,1.8721636533737183,1.9749122858047485],[1.906413197517395,1.4611696004867554,1.5810428857803345,1.1700488328933716,0.7933042049407959,0.7419299483299255,0.8275537490844727,0.6905556917190552,0.6734309196472168,0.8104289770126343,0.8275537490844727,1.2899221181869507,0.7933042049407959,0.1596883237361908,0.9816765189170837,0.8446784615516663,0.46793389320373535,0.8446784615516663,1.3926706314086914,1.1700488328933716,0.6049319505691528,-0.5253018140792847,-0.6280503273010254,-0.6794245839118958,0.10831406712532043,0.6391814351081848,0.10831406712532043,-0.6622998714447021,-1.2616662979125977,-1.5185375213623047,-1.9809058904647827,-1.7240345478057861,-0.7479236125946045,-0.576676070690155,1.255672574043274,1.1357992887496948,0.8618032336235046,1.101549744606018,1.3584210872650146,1.8550390005111694,1.5296686887741089,1.1700488328933716,0.8618032336235046,1.1186745166778564,0.6563062071800232,0.6563062071800232,0.433684378862381,-0.3540542721748352,0.056939806789159775,0.5021833777427673,1.0159260034561157,1.5296686887741089,1.3584210872650146,1.7009161710739136,1.5810428857803345,1.4782943725585938,1.307046890258789,1.1700488328933716,0.8275537490844727,0.6391814351081848,0.7761794924736023,1.0673003196716309,1.4611696004867554,1.375545859336853,1.4782943725585938,1.5296686887741089,1.6666666269302368,1.7694151401519775,1.7351657152175903,1.8207894563674927,1.8892884254455566,1.786539912223816,1.8207894563674927,1.837914228439331,1.718040943145752,1.563918113708496,1.8550390005111694,1.8207894563674927,1.9406627416610718,1.9749122858047485,1.8892884254455566,2.0091617107391357,1.906413197517395,1.7009161710739136,1.9235379695892334,2.0605359077453613,1.9406627416610718,1.9406627416610718,2.0091617107391357,1.9577875137329102,1.9406627416610718,2.0776607990264893,2.1804091930389404,2.1975340843200684,2.129034996032715,2.0091617107391357,2.0262866020202637,1.9920369386672974,1.8892884254455566,2.0434112548828125,1.7009161710739136,1.4097954034805298,1.6666666269302368,1.7694151401519775,2.1975340843200684,2.094785451889038,1.7522904872894287,2.1804091930389404,2.231783628463745,2.111910343170166,1.9235379695892334,1.718040943145752,2.214658737182617,2.129034996032715,2.0605359077453613,1.8036646842956543,1.4782943725585938,0.6905556917190552,-0.2341810017824173,-0.6109256148338318,-0.5938008427619934,-0.6109256148338318,-0.7307988405227661,-1.0219197273254395,-1.1075434684753418,-0.26843053102493286,-0.7821731567382812,0.12543882429599762,0.8960527181625366,0.399434894323349,0.8446784615516663,0.022690298035740852,-0.04580871760845184,0.9988012909889221,1.1700488328933716,1.1529240608215332,1.563918113708496,1.0159260034561157,0.07406456023454666,1.18717360496521,1.2727973461151123,0.9645517468452454,0.399434894323349,-0.2170562595129013,-0.919171154499054,1.101549744606018,1.324171543121338,0.8104289770126343,-0.08005822449922562,1.2042982578277588,0.5193081498146057,-0.04580871760845184,0.34806060791015625,-0.2170562595129013,0.1425635814666748,-0.5081770420074463,-0.2513057589530945,0.6563062071800232,0.5706824064254761,0.6905556917190552,1.3584210872650146,1.1357992887496948,0.5193081498146057,1.5810428857803345,0.6391814351081848,0.03981505334377289,-1.1417930126190186,0.24531209468841553,-0.7479236125946045,0.17681308090686798,-0.2341810017824173,0.6905556917190552,0.8275537490844727,0.2966863512992859,-0.04580871760845184,0.913177490234375,1.6837913990020752,1.9920369386672974,1.7522904872894287,1.375545859336853,1.2385478019714355,1.1529240608215332,1.2214230298995972,1.3926706314086914,1.4097954034805298,1.5296686887741089,1.2385478019714355,1.5810428857803345,1.5467933416366577,1.5467933416366577,1.5981676578521729,1.563918113708496,1.5125439167022705,1.5810428857803345,1.4954191446304321,1.5467933416366577,1.3412963151931763,1.375545859336853,1.2899221181869507,1.8036646842956543,1.6837913990020752,1.7522904872894287,1.8892884254455566,1.9235379695892334,1.9235379695892334,1.837914228439331,1.8036646842956543,1.9406627416610718,2.0434112548828125,2.1975340843200684,1.786539912223816,1.8036646842956543,1.837914228439331,1.8892884254455566,1.8721636533737183,1.6152924299240112,1.7694151401519775,1.9235379695892334,1.7522904872894287,1.5125439167022705,1.6152924299240112,1.8207894563674927,1.906413197517395,1.9235379695892334],[2.129034996032715,1.786539912223816,1.444044828414917,0.913177490234375,1.101549744606018,0.7248051762580872,0.7419299483299255,0.7933042049407959,0.7419299483299255,0.7076804637908936,0.7761794924736023,0.5535576939582825,0.34806060791015625,0.9645517468452454,1.1186745166778564,1.3584210872650146,1.375545859336853,1.4611696004867554,1.6666666269302368,1.5296686887741089,0.7076804637908936,-0.9020463824272156,-1.6384108066558838,-1.0904186964035034,-0.2513057589530945,0.2795616090297699,0.2624368667602539,0.5706824064254761,-1.4500385522842407,-1.2787909507751465,-1.5014127492904663,-0.7136741280555725,0.10831406712532043,-0.2170562595129013,0.5364329218864441,1.255672574043274,1.4097954034805298,1.7694151401519775,1.2727973461151123,1.7009161710739136,1.786539912223816,1.9235379695892334,1.0159260034561157,1.2214230298995972,0.2966863512992859,0.36518537998199463,0.6563062071800232,0.46793389320373535,0.33093586564064026,0.6563062071800232,1.4611696004867554,1.718040943145752,1.6666666269302368,1.6837913990020752,1.786539912223816,1.6495418548583984,1.101549744606018,1.0844250917434692,0.6563062071800232,0.8104289770126343,0.878928005695343,1.18717360496521,1.2899221181869507,1.4782943725585938,1.324171543121338,1.6837913990020752,1.4954191446304321,1.5981676578521729,1.8207894563674927,1.9235379695892334,1.563918113708496,1.4782943725585938,1.6837913990020752,1.906413197517395,1.6666666269302368,1.8892884254455566,1.7694151401519775,1.837914228439331,1.906413197517395,1.837914228439331,1.8036646842956543,1.8207894563674927,1.8036646842956543,1.9920369386672974,2.129034996032715,1.786539912223816,2.0262866020202637,2.111910343170166,2.111910343170166,1.9406627416610718,1.9749122858047485,2.0605359077453613,2.111910343170166,2.0262866020202637,2.0434112548828125,1.8207894563674927,2.094785451889038,2.1804091930389404,1.7694151401519775,1.718040943145752,1.8892884254455566,1.718040943145752,2.248908281326294,1.8550390005111694,1.718040943145752,2.0434112548828125,2.248908281326294,1.8550390005111694,2.094785451889038,2.1461598873138428,2.248908281326294,2.1632845401763916,2.0776607990264893,2.129034996032715,2.129034996032715,1.6666666269302368,0.9303022623062134,0.31381112337112427,0.09118931740522385,-0.576676070690155,-0.2513057589530945,-0.2341810017824173,-0.5595513582229614,-0.7821731567382812,-1.535662293434143,-0.40542855858802795,-0.6965493559837341,0.31381112337112427,0.399434894323349,0.913177490234375,0.6905556917190552,0.9303022623062134,-0.28555527329444885,-0.14855724573135376,0.8960527181625366,0.9988012909889221,1.2727973461151123,1.1529240608215332,0.913177490234375,1.324171543121338,1.5125439167022705,1.5467933416366577,1.4269200563430786,-0.5595513582229614,1.1529240608215332,0.19393783807754517,-1.073293924331665,1.033050775527954,0.33093586564064026,-0.8335474133491516,0.33093586564064026,0.10831406712532043,0.36518537998199463,1.255672574043274,0.7076804637908936,-1.1760424375534058,0.5706824064254761,0.9303022623062134,1.18717360496521,-0.11430773138999939,1.0501755475997925,0.399434894323349,1.1700488328933716,1.4782943725585938,1.101549744606018,-0.3369295299053192,-1.5527870655059814,-0.11430773138999939,-0.8677968978881836,0.3823101222515106,-0.3198047876358032,0.24531209468841553,0.7761794924736023,-0.6280503273010254,-0.08005822449922562,1.0844250917434692,1.718040943145752,1.5810428857803345,1.4097954034805298,0.8446784615516663,-0.2341810017824173,0.8618032336235046,1.3412963151931763,1.444044828414917,1.5125439167022705,1.3412963151931763,1.7351657152175903,1.6495418548583984,1.444044828414917,1.3926706314086914,1.4782943725585938,1.4611696004867554,1.5467933416366577,1.5467933416366577,1.6495418548583984,1.4611696004867554,1.2727973461151123,1.5125439167022705,1.786539912223816,1.7694151401519775,1.8892884254455566,1.718040943145752,1.718040943145752,1.7694151401519775,1.9406627416610718,1.9920369386672974,2.094785451889038,1.7351657152175903,1.8207894563674927,1.7522904872894287,1.9406627416610718,1.9406627416610718,1.6495418548583984,1.786539912223816,1.7694151401519775,1.7351657152175903,1.6152924299240112,1.563918113708496,1.5981676578521729,1.7009161710739136,1.563918113708496,2.0605359077453613,2.0091617107391357,1.8207894563674927],[2.248908281326294,2.248908281326294,2.129034996032715,1.3926706314086914,1.033050775527954,0.7248051762580872,0.8104289770126343,0.433684378862381,0.9474270343780518,0.45080915093421936,0.1425635814666748,0.2966863512992859,0.24531209468841553,-0.0971829816699028,1.0844250917434692,1.307046890258789,1.2214230298995972,1.6324172019958496,1.7522904872894287,1.255672574043274,0.7761794924736023,-0.542426586151123,-1.7069098949432373,-1.6384108066558838,-0.3198047876358032,-0.3540542721748352,0.21106259524822235,0.433684378862381,-0.8677968978881836,-2.032280206680298,-1.5527870655059814,0.6734309196472168,1.4097954034805298,1.2727973461151123,0.399434894323349,0.5878071784973145,1.2385478019714355,1.837914228439331,1.4097954034805298,1.3584210872650146,1.7522904872894287,1.8550390005111694,0.8618032336235046,0.8446784615516663,0.6905556917190552,0.5878071784973145,0.2966863512992859,0.5364329218864441,0.6563062071800232,1.033050775527954,1.4611696004867554,1.786539912223816,1.837914228439331,1.786539912223816,1.563918113708496,1.5981676578521729,1.2727973461151123,1.1186745166778564,0.5706824064254761,0.8618032336235046,1.0844250917434692,1.4097954034805298,1.5981676578521729,1.444044828414917,1.4782943725585938,1.5296686887741089,1.5296686887741089,1.6324172019958496,1.5125439167022705,1.7009161710739136,1.6666666269302368,1.6666666269302368,1.8892884254455566,1.9406627416610718,1.8036646842956543,1.718040943145752,1.8207894563674927,1.8036646842956543,1.8036646842956543,2.094785451889038,1.8892884254455566,2.0091617107391357,1.9920369386672974,2.0434112548828125,1.9577875137329102,1.837914228439331,2.0262866020202637,2.0434112548828125,1.9749122858047485,1.906413197517395,2.094785451889038,2.0776607990264893,2.248908281326294,2.1804091930389404,1.9406627416610718,1.9577875137329102,1.9577875137329102,1.8036646842956543,1.837914228439331,1.9406627416610718,2.231783628463745,2.1461598873138428,2.1461598873138428,1.9577875137329102,2.0434112548828125,2.0605359077453613,1.8721636533737183,2.248908281326294,2.1975340843200684,2.0776607990264893,2.0776607990264893,2.1632845401763916,2.0434112548828125,2.248908281326294,1.906413197517395,1.255672574043274,0.7248051762580872,0.22818733751773834,-0.43967804312705994,-0.13143248856067657,-0.01155920885503292,-0.04580871760845184,0.03981505334377289,-0.6280503273010254,-1.1417930126190186,-0.11430773138999939,-0.6109256148338318,-0.04580871760845184,0.45080915093421936,0.1596883237361908,0.913177490234375,0.8446784615516663,-0.08005822449922562,-0.3883037865161896,-0.4568028151988983,0.1596883237361908,0.9645517468452454,0.7076804637908936,1.4611696004867554,1.444044828414917,0.416559636592865,1.2899221181869507,0.7419299483299255,0.913177490234375,0.9645517468452454,1.1357992887496948,0.7076804637908936,0.6905556917190552,1.324171543121338,0.8104289770126343,-0.4739275574684143,0.17681308090686798,0.8446784615516663,0.5535576939582825,1.375545859336853,-1.5699118375778198,0.022690298035740852,-0.2513057589530945,-0.19993150234222412,0.7933042049407959,1.0501755475997925,1.8036646842956543,0.6563062071800232,1.5125439167022705,1.18717360496521,0.5021833777427673,-0.9362959265708923,-0.11430773138999939,-1.2787909507751465,0.7076804637908936,0.3823101222515106,-0.0971829816699028,0.8275537490844727,0.45080915093421936,0.2966863512992859,1.18717360496521,1.4782943725585938,1.4097954034805298,0.5878071784973145,-0.11430773138999939,-1.2616662979125977,0.45080915093421936,1.1529240608215332,1.2042982578277588,1.4954191446304321,1.6495418548583984,1.4611696004867554,1.375545859336853,1.5467933416366577,1.4611696004867554,1.6324172019958496,1.5467933416366577,1.5467933416366577,1.3926706314086914,1.6324172019958496,1.5125439167022705,1.255672574043274,1.4782943725585938,1.6666666269302368,1.563918113708496,1.718040943145752,1.8550390005111694,1.8550390005111694,1.7351657152175903,1.7694151401519775,1.7694151401519775,1.8721636533737183,1.9406627416610718,1.8207894563674927,2.214658737182617,1.8721636533737183,1.8892884254455566,1.906413197517395,1.9577875137329102,1.8550390005111694,1.5296686887741089,1.5296686887741089,1.6666666269302368,1.6495418548583984,1.4954191446304321,1.8207894563674927,1.7522904872894287,1.8721636533737183,1.8036646842956543],[2.248908281326294,2.231783628463745,2.0776607990264893,1.6324172019958496,1.3412963151931763,0.8960527181625366,0.7419299483299255,0.5878071784973145,0.21106259524822235,-0.01155920885503292,0.399434894323349,0.2966863512992859,-0.01155920885503292,0.33093586564064026,0.9645517468452454,0.8960527181625366,0.45080915093421936,0.8275537490844727,1.6152924299240112,1.2899221181869507,0.9303022623062134,-0.0971829816699028,-1.0390443801879883,-1.3986642360687256,-0.8506721258163452,-0.9362959265708923,0.5364329218864441,-0.6451750993728638,-0.7992978692054749,-1.467163324356079,-0.5253018140792847,0.8960527181625366,0.6563062071800232,1.2214230298995972,-0.2513057589530945,0.7933042049407959,1.1529240608215332,2.1461598873138428,1.1700488328933716,1.3926706314086914,1.563918113708496,1.837914228439331,0.6563062071800232,0.5706824064254761,0.6905556917190552,0.6049319505691528,0.34806060791015625,1.3926706314086914,0.8446784615516663,1.2042982578277588,1.718040943145752,1.7009161710739136,1.9577875137329102,1.718040943145752,1.8207894563674927,1.7009161710739136,1.307046890258789,0.9816765189170837,0.5706824064254761,0.7933042049407959,1.1186745166778564,1.2042982578277588,1.3412963151931763,1.6666666269302368,1.563918113708496,1.5467933416366577,1.718040943145752,1.6152924299240112,1.6666666269302368,1.7009161710739136,2.0262866020202637,1.8207894563674927,2.0776607990264893,1.7694151401519775,1.8036646842956543,1.906413197517395,1.7522904872894287,1.9406627416610718,2.0434112548828125,1.9235379695892334,1.7694151401519775,1.8721636533737183,1.9577875137329102,1.9749122858047485,2.0605359077453613,2.111910343170166,2.094785451889038,2.0605359077453613,2.0605359077453613,1.906413197517395,1.837914228439331,1.9235379695892334,2.0776607990264893,2.129034996032715,1.8036646842956543,2.248908281326294,2.248908281326294,2.214658737182617,1.9749122858047485,2.0262866020202637,2.0434112548828125,2.214658737182617,1.9577875137329102,2.248908281326294,2.1461598873138428,2.094785451889038,1.906413197517395,2.0091617107391357,1.9749122858047485,1.9920369386672974,2.1632845401763916,2.1975340843200684,2.1632845401763916,2.0776607990264893,1.5467933416366577,0.8446784615516663,0.5021833777427673,-0.028683962300419807,-0.30268001556396484,-0.0971829816699028,0.36518537998199463,0.433684378862381,0.19393783807754517,0.31381112337112427,-0.6280503273010254,-0.5938008427619934,-0.08005822449922562,-0.576676070690155,-0.2341810017824173,-0.04580871760845184,0.433684378862381,0.1425635814666748,0.03981505334377289,0.1425635814666748,0.3823101222515106,-0.4739275574684143,-0.7992978692054749,-0.5081770420074463,0.36518537998199463,0.7933042049407959,0.8275537490844727,0.8618032336235046,1.0159260034561157,-0.43967804312705994,0.878928005695343,0.5364329218864441,1.0673003196716309,0.5878071784973145,0.46793389320373535,0.6220566630363464,0.36518537998199463,0.7076804637908936,-0.01155920885503292,0.005565545056015253,0.2966863512992859,-0.08005822449922562,-0.0971829816699028,0.878928005695343,0.19393783807754517,1.0844250917434692,0.6563062071800232,0.7590547204017639,1.444044828414917,0.7419299483299255,0.7590547204017639,0.31381112337112427,-0.9876701831817627,-0.4910523295402527,-1.1931672096252441,0.5021833777427673,-0.7650483846664429,-0.14855724573135376,0.7761794924736023,-0.2341810017824173,-0.5938008427619934,0.7076804637908936,1.3584210872650146,1.1700488328933716,-0.3540542721748352,-0.7992978692054749,-1.4842880964279175,-0.6280503273010254,0.8275537490844727,1.3584210872650146,1.7009161710739136,1.5296686887741089,1.5810428857803345,1.4611696004867554,1.4097954034805298,1.4782943725585938,1.4269200563430786,1.4611696004867554,1.7351657152175903,1.4611696004867554,1.786539912223816,1.4782943725585938,1.3412963151931763,1.3412963151931763,1.5125439167022705,1.9235379695892334,1.7522904872894287,1.7522904872894287,1.7694151401519775,1.8036646842956543,1.9749122858047485,1.9406627416610718,1.8036646842956543,1.906413197517395,1.786539912223816,2.0091617107391357,1.837914228439331,1.837914228439331,1.837914228439331,1.837914228439331,1.6324172019958496,1.5981676578521729,1.786539912223816,1.7694151401519775,1.7522904872894287,1.7009161710739136,1.718040943145752,1.8207894563674927,1.8550390005111694,1.7522904872894287],[2.0776607990264893,2.1632845401763916,1.9577875137329102,2.1461598873138428,2.094785451889038,1.3584210872650146,0.913177490234375,0.7590547204017639,0.2966863512992859,0.36518537998199463,-0.04580871760845184,0.36518537998199463,0.7590547204017639,0.8618032336235046,-0.3198047876358032,-0.3883037865161896,-0.3369295299053192,0.005565545056015253,0.6391814351081848,1.0673003196716309,1.0501755475997925,0.056939806789159775,-0.6280503273010254,-0.08005822449922562,0.19393783807754517,0.33093586564064026,-0.2170562595129013,0.8104289770126343,0.6220566630363464,-0.2170562595129013,-0.5081770420074463,0.056939806789159775,0.45080915093421936,-0.43967804312705994,1.2727973461151123,1.0673003196716309,1.5810428857803345,1.4097954034805298,1.6152924299240112,1.6495418548583984,1.7694151401519775,1.0501755475997925,0.46793389320373535,0.6905556917190552,0.8104289770126343,0.8104289770126343,0.8618032336235046,1.2385478019714355,1.0673003196716309,1.2214230298995972,1.7694151401519775,1.7694151401519775,1.7522904872894287,1.718040943145752,1.563918113708496,1.5467933416366577,1.324171543121338,0.8446784615516663,0.416559636592865,0.7590547204017639,1.1700488328933716,1.307046890258789,1.3926706314086914,1.4954191446304321,1.4954191446304321,1.5981676578521729,1.7009161710739136,1.7009161710739136,1.6837913990020752,1.7522904872894287,1.786539912223816,1.786539912223816,1.718040943145752,1.8207894563674927,1.9235379695892334,1.9749122858047485,1.8550390005111694,1.8036646842956543,1.7694151401519775,1.786539912223816,1.8207894563674927,1.9235379695892334,2.0091617107391357,1.9920369386672974,2.1975340843200684,2.1461598873138428,1.837914228439331,1.563918113708496,2.0434112548828125,1.9406627416610718,1.9920369386672974,2.129034996032715,2.0434112548828125,1.9920369386672974,2.0091617107391357,1.8721636533737183,1.9577875137329102,2.094785451889038,1.9406627416610718,1.9749122858047485,1.9920369386672974,1.7522904872894287,2.0776607990264893,1.906413197517395,2.1632845401763916,2.0776607990264893,2.129034996032715,2.1804091930389404,2.248908281326294,2.231783628463745,2.0434112548828125,2.248908281326294,2.0434112548828125,1.786539912223816,1.0159260034561157,0.2624368667602539,-0.11430773138999939,0.022690298035740852,0.21106259524822235,0.2966863512992859,0.24531209468841553,0.45080915093421936,0.416559636592865,0.22818733751773834,-0.3198047876358032,-0.7307988405227661,0.2795616090297699,-0.04580871760845184,-0.28555527329444885,-0.30268001556396484,-1.5185375213623047,0.31381112337112427,0.1425635814666748,0.5021833777427673,-0.13143248856067657,-0.01155920885503292,-0.2170562595129013,-0.3369295299053192,-0.8506721258163452,-1.0219197273254395,-1.4329137802124023,0.6391814351081848,0.6220566630363464,1.5810428857803345,0.5878071784973145,1.5296686887741089,1.7522904872894287,1.0844250917434692,0.10831406712532043,0.5364329218864441,0.1596883237361908,0.5364329218864441,0.8618032336235046,-0.5938008427619934,0.6049319505691528,0.2624368667602539,-0.08005822449922562,0.03981505334377289,-0.028683962300419807,0.6905556917190552,0.10831406712532043,1.4269200563430786,0.6220566630363464,0.8275537490844727,1.1357992887496948,0.6734309196472168,-0.5253018140792847,-0.6451750993728638,-1.0561691522598267,1.1529240608215332,-0.8164226412773132,-1.0219197273254395,0.6734309196472168,0.433684378862381,0.10831406712532043,0.5021833777427673,0.9474270343780518,0.33093586564064026,-0.6622998714447021,-1.3301652669906616,-1.6555355787277222,-1.8267830610275269,0.005565545056015253,1.2385478019714355,1.444044828414917,1.3412963151931763,1.5125439167022705,1.3412963151931763,1.563918113708496,1.563918113708496,1.6152924299240112,1.563918113708496,1.4097954034805298,1.563918113708496,1.4097954034805298,1.5296686887741089,1.255672574043274,1.4954191446304321,1.5125439167022705,1.4954191446304321,1.718040943145752,1.9406627416610718,1.8892884254455566,1.906413197517395,1.837914228439331,1.7522904872894287,1.9235379695892334,1.9406627416610718,1.9235379695892334,1.8892884254455566,1.9577875137329102,1.8550390005111694,1.8721636533737183,1.6495418548583984,2.0434112548828125,1.6666666269302368,1.8721636533737183,1.6152924299240112,1.7522904872894287,1.9749122858047485,1.7351657152175903,1.9749122858047485,1.9235379695892334,2.0605359077453613],[2.1804091930389404,2.1461598873138428,2.214658737182617,2.214658737182617,1.7351657152175903,1.6837913990020752,1.7009161710739136,0.9303022623062134,0.9988012909889221,0.5021833777427673,-0.01155920885503292,0.7933042049407959,1.18717360496521,1.1529240608215332,0.9816765189170837,0.7419299483299255,0.22818733751773834,0.2624368667602539,-0.14855724573135376,0.6220566630363464,1.18717360496521,0.9474270343780518,0.6563062071800232,1.1700488328933716,0.1596883237361908,0.399434894323349,0.7076804637908936,0.5364329218864441,0.48505866527557373,0.09118931740522385,-0.6622998714447021,0.416559636592865,-0.2170562595129013,-0.7307988405227661,1.3584210872650146,1.3412963151931763,1.6837913990020752,1.8892884254455566,1.6666666269302368,1.324171543121338,1.324171543121338,0.8960527181625366,0.24531209468841553,0.8618032336235046,0.9474270343780518,1.3412963151931763,1.5467933416366577,1.5467933416366577,1.3926706314086914,1.1700488328933716,1.2214230298995972,1.2385478019714355,1.6837913990020752,1.6837913990020752,1.6837913990020752,1.5810428857803345,1.307046890258789,0.399434894323349,0.7933042049407959,0.8104289770126343,1.2214230298995972,1.2042982578277588,1.4097954034805298,1.5467933416366577,1.6666666269302368,1.4269200563430786,1.7351657152175903,1.5981676578521729,1.7522904872894287,1.786539912223816,1.563918113708496,1.8207894563674927,1.8892884254455566,1.9577875137329102,1.6152924299240112,1.7522904872894287,2.0776607990264893,1.906413197517395,1.9577875137329102,1.7694151401519775,1.718040943145752,2.1804091930389404,2.0605359077453613,1.8721636533737183,2.0776607990264893,1.9749122858047485,2.0262866020202637,2.214658737182617,1.9577875137329102,2.0605359077453613,2.248908281326294,2.248908281326294,2.0776607990264893,2.094785451889038,2.0262866020202637,2.248908281326294,2.1975340843200684,2.1461598873138428,2.0434112548828125,1.9749122858047485,2.248908281326294,2.0434112548828125,2.1804091930389404,1.9577875137329102,2.111910343170166,2.0262866020202637,1.9749122858047485,2.094785451889038,2.1461598873138428,2.1975340843200684,2.214658737182617,2.0605359077453613,1.5810428857803345,1.307046890258789,0.5535576939582825,0.31381112337112427,0.022690298035740852,-0.028683962300419807,0.34806060791015625,0.46793389320373535,0.46793389320373535,0.6391814351081848,0.5706824064254761,0.31381112337112427,0.022690298035740852,0.17681308090686798,0.5535576939582825,0.3823101222515106,0.33093586564064026,-0.919171154499054,-1.1760424375534058,-0.5253018140792847,0.03981505334377289,0.45080915093421936,0.33093586564064026,0.8618032336235046,-0.5938008427619934,0.6905556917190552,-0.3198047876358032,-0.43967804312705994,-0.40542855858802795,0.21106259524822235,-0.6280503273010254,0.399434894323349,0.9303022623062134,0.913177490234375,0.2624368667602539,1.2042982578277588,1.0501755475997925,0.21106259524822235,0.416559636592865,0.7248051762580872,1.375545859336853,-0.19993150234222412,-0.28555527329444885,-0.2170562595129013,-0.08005822449922562,0.1596883237361908,-0.2170562595129013,1.0673003196716309,1.255672574043274,1.1186745166778564,1.2385478019714355,0.8618032336235046,0.9303022623062134,-0.40542855858802795,-0.8335474133491516,-0.6280503273010254,-0.9362959265708923,0.33093586564064026,-0.6794245839118958,-0.2170562595129013,0.5364329218864441,0.5878071784973145,-0.14855724573135376,0.07406456023454666,0.399434894323349,-0.16568198800086975,-1.4329137802124023,-1.8267830610275269,-2.0494048595428467,-1.8267830610275269,-1.5699118375778198,1.18717360496521,1.2214230298995972,1.3412963151931763,1.307046890258789,1.718040943145752,1.5981676578521729,1.4097954034805298,1.4269200563430786,1.563918113708496,1.5125439167022705,1.6495418548583984,1.324171543121338,1.4782943725585938,1.3584210872650146,1.3926706314086914,1.5981676578521729,1.5981676578521729,1.6495418548583984,1.7351657152175903,1.906413197517395,1.7351657152175903,1.9235379695892334,2.0434112548828125,2.0434112548828125,1.9235379695892334,1.7694151401519775,1.8892884254455566,1.9406627416610718,1.9749122858047485,1.8721636533737183,1.906413197517395,1.9235379695892334,1.8892884254455566,1.9749122858047485,1.7522904872894287,1.563918113708496,1.7694151401519775,1.8892884254455566,1.7009161710739136,1.6495418548583984,1.8036646842956543],[2.248908281326294,2.248908281326294,2.0605359077453613,2.1975340843200684,2.094785451889038,2.094785451889038,1.3926706314086914,1.4782943725585938,0.878928005695343,0.5021833777427673,0.6049319505691528,0.8104289770126343,1.2899221181869507,1.2385478019714355,1.2899221181869507,0.6905556917190552,0.8446784615516663,1.4269200563430786,1.255672574043274,1.0673003196716309,1.0673003196716309,0.9816765189170837,1.18717360496521,0.7761794924736023,0.7419299483299255,0.34806060791015625,-1.2959157228469849,-0.6622998714447021,-1.073293924331665,-1.604161262512207,-1.8610326051712036,-1.004794955253601,-1.4500385522842407,0.21106259524822235,0.878928005695343,1.255672574043274,1.4782943725585938,1.6495418548583984,1.4611696004867554,1.2214230298995972,0.005565545056015253,-0.30268001556396484,0.8960527181625366,0.7933042049407959,0.913177490234375,1.4269200563430786,1.5296686887741089,1.4269200563430786,1.9406627416610718,2.0262866020202637,2.0262866020202637,1.9406627416610718,1.6837913990020752,1.6837913990020752,1.7009161710739136,1.2214230298995972,0.416559636592865,0.5193081498146057,0.7933042049407959,1.0159260034561157,1.1186745166778564,1.2727973461151123,1.324171543121338,1.6152924299240112,1.6324172019958496,1.6666666269302368,1.6837913990020752,1.6324172019958496,1.6324172019958496,1.6495418548583984,1.5467933416366577,1.7694151401519775,1.6837913990020752,1.8892884254455566,1.9406627416610718,1.8207894563674927,1.8892884254455566,1.9749122858047485,1.9577875137329102,1.9406627416610718,2.0776607990264893,1.9749122858047485,1.8892884254455566,2.0776607990264893,1.9235379695892334,2.129034996032715,2.0776607990264893,1.7522904872894287,2.1975340843200684,2.1804091930389404,2.0434112548828125,2.1804091930389404,2.0434112548828125,1.9920369386672974,1.9920369386672974,2.214658737182617,2.231783628463745,2.1804091930389404,2.248908281326294,2.0434112548828125,2.094785451889038,2.1975340843200684,2.129034996032715,2.0262866020202637,2.0091617107391357,1.7694151401519775,2.1804091930389404,2.1804091930389404,2.0262866020202637,2.1975340843200684,2.231783628463745,1.9920369386672974,1.2214230298995972,0.7933042049407959,0.5535576939582825,0.2795616090297699,0.2795616090297699,0.2966863512992859,0.5535576939582825,0.6563062071800232,0.5878071784973145,0.5364329218864441,0.416559636592865,0.46793389320373535,-0.028683962300419807,-0.0971829816699028,0.03981505334377289,0.022690298035740852,-1.2102919816970825,-1.0219197273254395,-0.9362959265708923,-0.7479236125946045,0.5535576939582825,0.19393783807754517,0.21106259524822235,0.17681308090686798,0.416559636592865,1.3412963151931763,0.17681308090686798,1.3584210872650146,1.2385478019714355,-0.4910523295402527,-0.542426586151123,-0.9534206986427307,-1.1075434684753418,-1.1246682405471802,0.10831406712532043,-0.13143248856067657,0.21106259524822235,0.9303022623062134,0.9303022623062134,0.21106259524822235,0.9474270343780518,1.3412963151931763,1.1700488328933716,-0.06293346732854843,0.5193081498146057,0.6563062071800232,1.3412963151931763,1.0673003196716309,0.24531209468841553,0.31381112337112427,1.2727973461151123,1.0673003196716309,0.31381112337112427,0.9474270343780518,-0.2170562595129013,-1.073293924331665,-1.535662293434143,0.03981505334377289,0.7248051762580872,-0.8164226412773132,-0.16568198800086975,-0.9362959265708923,0.03981505334377289,-1.3644148111343384,-1.1931672096252441,-1.467163324356079,-1.9124069213867188,-2.01515531539917,-2.0836544036865234,-1.8439078330993652,-1.4500385522842407,1.6152924299240112,1.2727973461151123,1.5810428857803345,1.4782943725585938,1.3584210872650146,1.4954191446304321,1.563918113708496,1.5296686887741089,1.563918113708496,1.5981676578521729,1.444044828414917,1.4954191446304321,1.3926706314086914,1.2899221181869507,1.2214230298995972,1.5810428857803345,1.4269200563430786,1.9235379695892334,1.7522904872894287,1.8207894563674927,1.906413197517395,1.8721636533737183,1.8892884254455566,2.0434112548828125,2.0434112548828125,1.7522904872894287,1.7522904872894287,1.718040943145752,1.9749122858047485,1.5810428857803345,1.8721636533737183,1.9577875137329102,1.9406627416610718,1.837914228439331,1.5467933416366577,1.563918113708496,1.5125439167022705,1.718040943145752,1.906413197517395,1.7694151401519775,1.8721636533737183],[2.1461598873138428,2.248908281326294,2.248908281326294,2.1461598873138428,2.094785451889038,2.231783628463745,1.6837913990020752,1.5981676578521729,1.2214230298995972,0.46793389320373535,0.5021833777427673,0.7933042049407959,1.0844250917434692,1.307046890258789,1.1529240608215332,0.6391814351081848,0.9303022623062134,1.255672574043274,1.1529240608215332,1.2727973461151123,1.033050775527954,0.9816765189170837,1.0159260034561157,1.324171543121338,1.1186745166778564,0.7933042049407959,-1.6726603507995605,-1.9637811183929443,-1.6726603507995605,-1.7925336360931396,-1.9809058904647827,-1.1246682405471802,-1.5870366096496582,1.18717360496521,1.2727973461151123,1.5467933416366577,1.375545859336853,1.6495418548583984,1.6324172019958496,1.307046890258789,0.6049319505691528,0.12543882429599762,0.9988012909889221,1.101549744606018,1.3412963151931763,1.307046890258789,1.4782943725585938,1.8207894563674927,1.9235379695892334,1.9577875137329102,2.0091617107391357,1.9235379695892334,1.786539912223816,1.5296686887741089,1.7009161710739136,1.2214230298995972,-0.14855724573135376,0.31381112337112427,0.9988012909889221,1.101549744606018,1.1186745166778564,1.2042982578277588,1.307046890258789,1.5981676578521729,1.5810428857803345,1.7009161710739136,1.7009161710739136,1.6837913990020752,1.7351657152175903,1.6495418548583984,1.7009161710739136,1.906413197517395,1.7522904872894287,1.8207894563674927,1.7351657152175903,1.8550390005111694,2.0434112548828125,1.9920369386672974,1.9406627416610718,1.9577875137329102,1.9577875137329102,1.9577875137329102,1.7522904872894287,2.1461598873138428,2.1804091930389404,2.0776607990264893,2.0262866020202637,2.129034996032715,1.9577875137329102,2.0605359077453613,2.0605359077453613,2.231783628463745,1.9577875137329102,1.906413197517395,2.214658737182617,1.8721636533737183,2.1461598873138428,2.0776607990264893,2.1804091930389404,1.9749122858047485,2.0776607990264893,1.9749122858047485,1.9920369386672974,2.0262866020202637,2.248908281326294,2.248908281326294,2.1975340843200684,2.1632845401763916,2.0776607990264893,2.129034996032715,2.1461598873138428,1.4954191446304321,1.307046890258789,0.6905556917190552,0.2624368667602539,0.2966863512992859,0.6563062071800232,0.433684378862381,0.7076804637908936,0.6049319505691528,0.3823101222515106,0.5364329218864441,0.34806060791015625,0.5535576939582825,0.6220566630363464,-0.0971829816699028,1.101549744606018,-0.4739275574684143,-0.5253018140792847,-0.028683962300419807,-0.2341810017824173,-0.18280674517154694,0.022690298035740852,-0.26843053102493286,-0.06293346732854843,-0.6109256148338318,-0.2513057589530945,0.5364329218864441,0.45080915093421936,-0.08005822449922562,1.0844250917434692,0.1425635814666748,0.33093586564064026,-1.3815394639968872,0.9303022623062134,-1.6212860345840454,-1.535662293434143,-0.01155920885503292,0.2624368667602539,-0.26843053102493286,0.7248051762580872,1.6837913990020752,0.9474270343780518,-0.028683962300419807,0.33093586564064026,1.1357992887496948,0.3823101222515106,-0.06293346732854843,-0.2513057589530945,1.1357992887496948,1.2899221181869507,0.2624368667602539,0.9303022623062134,0.399434894323349,0.5021833777427673,1.2214230298995972,-0.40542855858802795,-1.3472900390625,-1.1931672096252441,-0.4568028151988983,0.399434894323349,0.22818733751773834,-0.40542855858802795,-1.7411593198776245,-0.5938008427619934,-0.6451750993728638,-1.2959157228469849,-1.4842880964279175,-1.8610326051712036,-2.032280206680298,-2.0494048595428467,-1.9295316934585571,0.5364329218864441,1.6324172019958496,2.214658737182617,1.0844250917434692,1.5810428857803345,1.4611696004867554,1.563918113708496,1.4782943725585938,1.5125439167022705,1.4269200563430786,1.5125439167022705,1.6152924299240112,1.5467933416366577,1.4954191446304321,1.2727973461151123,1.4782943725585938,1.4097954034805298,1.6495418548583984,1.786539912223816,1.8207894563674927,1.837914228439331,1.8036646842956543,2.0434112548828125,1.8550390005111694,1.906413197517395,1.718040943145752,1.837914228439331,1.8550390005111694,1.7522904872894287,1.837914228439331,1.906413197517395,2.111910343170166,2.1804091930389404,1.9235379695892334,1.7351657152175903,1.8036646842956543,1.8550390005111694,1.8207894563674927,1.786539912223816,1.8721636533737183,1.837914228439331,1.8207894563674927],[2.214658737182617,2.111910343170166,2.1461598873138428,2.1804091930389404,2.248908281326294,1.9577875137329102,2.111910343170166,1.718040943145752,1.033050775527954,0.07406456023454666,0.005565545056015253,0.22818733751773834,1.1529240608215332,0.9816765189170837,0.7761794924736023,0.9303022623062134,1.2899221181869507,1.101549744606018,0.7590547204017639,0.878928005695343,1.1700488328933716,1.0159260034561157,1.033050775527954,1.6152924299240112,1.1529240608215332,1.2042982578277588,-0.3711790442466736,-2.1007792949676514,-1.7925336360931396,-1.535662293434143,-1.2616662979125977,0.21106259524822235,0.6220566630363464,1.18717360496521,1.4611696004867554,1.324171543121338,1.2042982578277588,1.563918113708496,1.6324172019958496,1.375545859336853,0.9645517468452454,0.8104289770126343,1.307046890258789,1.307046890258789,1.6324172019958496,1.5125439167022705,1.3926706314086914,1.7522904872894287,1.8036646842956543,1.8036646842956543,1.4954191446304321,1.5467933416366577,1.5467933416366577,1.4954191446304321,1.5981676578521729,1.4954191446304321,0.2624368667602539,0.24531209468841553,0.6905556917190552,1.0673003196716309,0.9816765189170837,1.1186745166778564,1.324171543121338,1.4954191446304321,1.375545859336853,1.7351657152175903,1.7694151401519775,1.7009161710739136,1.7522904872894287,1.7009161710739136,1.9235379695892334,1.6666666269302368,1.8207894563674927,1.9749122858047485,2.0262866020202637,1.8721636533737183,1.8892884254455566,2.0091617107391357,2.1975340843200684,1.9406627416610718,1.837914228439331,2.0262866020202637,2.1804091930389404,1.9577875137329102,1.9920369386672974,2.248908281326294,1.9577875137329102,1.8892884254455566,2.0605359077453613,2.111910343170166,2.1804091930389404,2.111910343170166,2.214658737182617,2.0776607990264893,2.0605359077453613,2.1804091930389404,2.0434112548828125,2.129034996032715,1.9235379695892334,2.248908281326294,1.9235379695892334,2.1632845401763916,2.1975340843200684,2.1461598873138428,2.129034996032715,2.129034996032715,2.1975340843200684,2.248908281326294,2.248908281326294,2.1804091930389404,1.563918113708496,1.375545859336853,0.8275537490844727,0.433684378862381,0.34806060791015625,0.5193081498146057,0.6563062071800232,0.7933042049407959,0.5364329218864441,0.7248051762580872,1.0159260034561157,0.7933042049407959,0.7419299483299255,0.6049319505691528,0.5535576939582825,0.5364329218864441,0.6563062071800232,-0.13143248856067657,0.21106259524822235,-0.028683962300419807,0.416559636592865,0.34806060791015625,0.5878071784973145,0.07406456023454666,-0.2170562595129013,0.09118931740522385,0.22818733751773834,-0.6965493559837341,-0.6451750993728638,0.21106259524822235,0.056939806789159775,0.878928005695343,0.913177490234375,0.07406456023454666,-0.542426586151123,1.6152924299240112,0.17681308090686798,-0.7479236125946045,-0.542426586151123,0.22818733751773834,0.399434894323349,0.3823101222515106,0.6391814351081848,0.6905556917190552,0.31381112337112427,0.8618032336235046,1.0501755475997925,-0.9705454111099243,-0.6622998714447021,1.18717360496521,0.6734309196472168,1.837914228439331,1.4611696004867554,1.375545859336853,-0.40542855858802795,-0.08005822449922562,-0.9020463824272156,-0.7479236125946045,-1.3472900390625,-0.3198047876358032,-0.3883037865161896,0.022690298035740852,-0.30268001556396484,-1.2445415258407593,-0.919171154499054,0.5193081498146057,-1.2445415258407593,-1.9637811183929443,-2.032280206680298,-2.1179039478302,-1.998030662536621,-1.3644148111343384,1.4097954034805298,1.837914228439331,1.9577875137329102,1.3412963151931763,1.3926706314086914,1.0159260034561157,1.3926706314086914,1.563918113708496,1.4611696004867554,1.5810428857803345,1.6495418548583984,1.4782943725585938,1.5467933416366577,1.5810428857803345,1.4611696004867554,1.2042982578277588,1.5467933416366577,1.6666666269302368,1.7522904872894287,1.8207894563674927,1.8721636533737183,1.8036646842956543,1.8892884254455566,1.9577875137329102,1.8892884254455566,1.9920369386672974,1.8892884254455566,1.8550390005111694,1.837914228439331,1.8036646842956543,1.8892884254455566,1.8721636533737183,1.8550390005111694,1.9920369386672974,1.8207894563674927,1.7522904872894287,1.6324172019958496,1.4954191446304321,1.5125439167022705,1.837914228439331,1.8207894563674927,1.8550390005111694],[2.1632845401763916,2.094785451889038,2.094785451889038,2.094785451889038,2.214658737182617,2.129034996032715,2.1632845401763916,1.9406627416610718,0.9645517468452454,0.24531209468841553,0.7419299483299255,0.7419299483299255,0.6049319505691528,-0.19993150234222412,0.5706824064254761,1.1700488328933716,1.3926706314086914,0.8618032336235046,1.0673003196716309,1.3584210872650146,1.1700488328933716,1.3584210872650146,1.5467933416366577,1.5981676578521729,0.6391814351081848,1.5125439167022705,-0.04580871760845184,-1.8952821493148804,-1.415789008140564,-1.6555355787277222,-0.2341810017824173,0.7761794924736023,0.9816765189170837,1.033050775527954,1.5810428857803345,1.3412963151931763,1.4782943725585938,1.4269200563430786,1.7351657152175903,1.5296686887741089,0.913177490234375,0.8960527181625366,1.5296686887741089,1.18717360496521,1.6495418548583984,1.444044828414917,1.6837913990020752,1.8207894563674927,1.906413197517395,1.8036646842956543,1.7694151401519775,1.5981676578521729,1.4097954034805298,1.6837913990020752,1.5296686887741089,1.1529240608215332,0.09118931740522385,0.416559636592865,0.7419299483299255,1.0844250917434692,1.0501755475997925,1.444044828414917,1.3926706314086914,1.5810428857803345,1.7009161710739136,1.4782943725585938,1.2727973461151123,1.4954191446304321,1.6837913990020752,1.7694151401519775,1.7522904872894287,1.8721636533737183,1.837914228439331,1.9235379695892334,1.7522904872894287,1.9749122858047485,1.8721636533737183,1.718040943145752,1.8550390005111694,2.129034996032715,2.111910343170166,2.0091617107391357,1.9920369386672974,2.1804091930389404,2.0091617107391357,2.129034996032715,2.094785451889038,2.129034996032715,1.8721636533737183,2.0434112548828125,2.111910343170166,2.0434112548828125,2.0434112548828125,2.0091617107391357,1.837914228439331,2.0434112548828125,1.9406627416610718,1.8550390005111694,2.1804091930389404,1.8892884254455566,2.129034996032715,1.8550390005111694,1.9235379695892334,2.0434112548828125,1.7351657152175903,2.0776607990264893,2.1804091930389404,2.111910343170166,1.8550390005111694,1.7351657152175903,1.5296686887741089,1.18717360496521,0.7590547204017639,0.433684378862381,0.34806060791015625,0.6049319505691528,0.7933042049407959,0.878928005695343,0.9474270343780518,0.8618032336235046,0.913177490234375,0.913177490234375,0.8275537490844727,0.6734309196472168,0.3823101222515106,1.5467933416366577,-0.19993150234222412,-0.7479236125946045,0.2966863512992859,0.19393783807754517,0.9988012909889221,1.0673003196716309,1.1529240608215332,0.7419299483299255,0.2624368667602539,-0.18280674517154694,-0.3198047876358032,-0.028683962300419807,-0.4910523295402527,-1.004794955253601,-0.6794245839118958,-0.0971829816699028,-1.2445415258407593,-0.16568198800086975,-0.13143248856067657,-0.6965493559837341,0.03981505334377289,1.3584210872650146,0.21106259524822235,0.22818733751773834,0.17681308090686798,0.17681308090686798,-0.028683962300419807,1.1357992887496948,1.0501755475997925,0.913177490234375,0.8618032336235046,0.10831406712532043,0.12543882429599762,0.8104289770126343,0.6563062071800232,0.1425635814666748,0.7590547204017639,0.7419299483299255,0.1596883237361908,-1.227416753768921,-1.3301652669906616,-1.7925336360931396,-2.1179039478302,0.03981505334377289,0.6734309196472168,-0.7307988405227661,-0.30268001556396484,-0.9705454111099243,-0.6794245839118958,0.9474270343780518,0.056939806789159775,-2.0494048595428467,-2.0494048595428467,-2.1007792949676514,-1.8267830610275269,-0.3711790442466736,1.906413197517395,1.906413197517395,2.0434112548828125,1.4782943725585938,1.3412963151931763,1.1357992887496948,1.4097954034805298,1.3412963151931763,1.3926706314086914,1.6495418548583984,1.4611696004867554,1.5125439167022705,1.3412963151931763,1.5467933416366577,1.255672574043274,1.2385478019714355,1.5467933416366577,1.3584210872650146,1.7522904872894287,1.837914228439331,1.718040943145752,1.9920369386672974,2.0776607990264893,1.9406627416610718,1.9406627416610718,1.8036646842956543,1.6495418548583984,1.9920369386672974,1.7694151401519775,1.9235379695892334,1.7009161710739136,2.0091617107391357,1.9406627416610718,2.0091617107391357,1.837914228439331,2.0776607990264893,1.7694151401519775,1.7009161710739136,1.718040943145752,1.5810428857803345,1.8550390005111694,1.7522904872894287],[2.1632845401763916,2.248908281326294,2.231783628463745,2.248908281326294,2.248908281326294,2.248908281326294,2.248908281326294,1.9749122858047485,0.9474270343780518,0.3823101222515106,0.7590547204017639,0.19393783807754517,-0.2170562595129013,-0.6794245839118958,0.33093586564064026,1.033050775527954,1.2385478019714355,0.7933042049407959,0.7248051762580872,0.7761794924736023,1.2214230298995972,1.2214230298995972,1.2042982578277588,1.1529240608215332,0.8446784615516663,0.7076804637908936,0.8104289770126343,-0.06293346732854843,-0.028683962300419807,-1.073293924331665,0.2966863512992859,0.9645517468452454,1.1700488328933716,1.1700488328933716,1.3412963151931763,1.2899221181869507,1.1529240608215332,1.6152924299240112,1.324171543121338,1.3412963151931763,1.1357992887496948,0.913177490234375,1.6495418548583984,1.3926706314086914,1.8036646842956543,0.9988012909889221,1.5981676578521729,1.6495418548583984,1.837914228439331,1.786539912223816,1.7009161710739136,1.5125439167022705,1.4611696004867554,1.3412963151931763,1.324171543121338,1.0673003196716309,0.46793389320373535,0.416559636592865,0.7419299483299255,0.8104289770126343,1.1186745166778564,1.3926706314086914,1.444044828414917,1.4954191446304321,1.786539912223816,1.718040943145752,1.718040943145752,1.5981676578521729,1.7351657152175903,1.718040943145752,1.8550390005111694,1.7522904872894287,1.8721636533737183,1.7351657152175903,1.8721636533737183,1.8550390005111694,1.8892884254455566,1.9406627416610718,2.094785451889038,1.9577875137329102,2.0605359077453613,1.9920369386672974,2.231783628463745,1.9406627416610718,2.0091617107391357,2.0605359077453613,2.1804091930389404,1.7694151401519775,1.9577875137329102,2.0262866020202637,2.0434112548828125,2.214658737182617,2.0262866020202637,1.786539912223816,2.0776607990264893,2.0091617107391357,2.0776607990264893,2.094785451889038,1.9749122858047485,2.248908281326294,1.9749122858047485,2.0434112548828125,2.0434112548828125,2.0434112548828125,2.248908281326294,2.111910343170166,2.248908281326294,1.906413197517395,1.8721636533737183,1.6324172019958496,1.0501755475997925,0.8618032336235046,0.3823101222515106,0.5535576939582825,0.48505866527557373,0.8446784615516663,0.9474270343780518,0.7248051762580872,0.9988012909889221,0.7590547204017639,1.101549744606018,0.6905556917190552,0.6563062071800232,0.7761794924736023,0.5878071784973145,1.2214230298995972,-0.18280674517154694,-1.0904186964035034,-0.26843053102493286,0.19393783807754517,0.36518537998199463,0.8618032336235046,0.48505866527557373,0.09118931740522385,-0.5253018140792847,-0.3540542721748352,-0.13143248856067657,-0.4568028151988983,-0.5595513582229614,0.1425635814666748,-0.3369295299053192,-0.8335474133491516,-0.884921669960022,-1.2445415258407593,-0.884921669960022,-0.542426586151123,-1.0904186964035034,-0.576676070690155,-0.30268001556396484,-0.04580871760845184,0.24531209468841553,0.5021833777427673,0.433684378862381,-0.5253018140792847,0.7590547204017639,1.1357992887496948,0.8446784615516663,0.6220566630363464,0.34806060791015625,0.1596883237361908,0.022690298035740852,0.5364329218864441,1.2899221181869507,1.324171543121338,-0.18280674517154694,0.2624368667602539,-1.3472900390625,-1.5014127492904663,-0.9020463824272156,0.19393783807754517,0.5878071784973145,-0.7136741280555725,-1.8439078330993652,-1.5185375213623047,-0.26843053102493286,0.9303022623062134,1.101549744606018,-1.9809058904647827,-1.9809058904647827,-1.6555355787277222,0.2624368667602539,1.1186745166778564,1.8550390005111694,1.9235379695892334,2.0262866020202637,1.906413197517395,1.7694151401519775,1.0673003196716309,1.4097954034805298,1.2899221181869507,1.3926706314086914,1.3926706314086914,1.4782943725585938,1.5125439167022705,1.4954191446304321,1.3926706314086914,1.0844250917434692,1.324171543121338,1.4269200563430786,1.563918113708496,1.718040943145752,1.906413197517395,1.9577875137329102,2.0091617107391357,1.9577875137329102,1.8892884254455566,1.786539912223816,1.7694151401519775,2.0605359077453613,1.837914228439331,1.9920369386672974,1.7694151401519775,1.7694151401519775,1.8550390005111694,1.906413197517395,1.9749122858047485,1.9577875137329102,1.786539912223816,1.6837913990020752,1.5296686887741089,1.5981676578521729,1.7522904872894287,1.5810428857803345,1.6152924299240112],[2.111910343170166,2.0091617107391357,2.129034996032715,2.1804091930389404,2.248908281326294,2.1461598873138428,2.248908281326294,1.5810428857803345,0.878928005695343,0.6734309196472168,-0.16568198800086975,0.21106259524822235,0.022690298035740852,0.07406456023454666,0.9474270343780518,1.2727973461151123,0.878928005695343,-0.04580871760845184,-0.3711790442466736,0.03981505334377289,0.2624368667602539,0.2624368667602539,0.2966863512992859,0.5535576939582825,0.6391814351081848,0.6049319505691528,0.19393783807754517,-0.3711790442466736,0.2624368667602539,-0.28555527329444885,0.5364329218864441,1.033050775527954,1.307046890258789,1.324171543121338,1.2727973461151123,1.255672574043274,1.1700488328933716,1.2385478019714355,1.2042982578277588,1.1186745166778564,1.2214230298995972,0.8960527181625366,1.837914228439331,1.7009161710739136,1.8207894563674927,1.3412963151931763,1.444044828414917,1.3926706314086914,1.786539912223816,1.9406627416610718,1.6837913990020752,1.5467933416366577,1.444044828414917,1.4782943725585938,1.2727973461151123,0.8275537490844727,0.7761794924736023,0.46793389320373535,0.7590547204017639,0.9816765189170837,1.101549744606018,1.255672574043274,1.444044828414917,1.563918113708496,1.5125439167022705,1.4782943725585938,1.6666666269302368,1.563918113708496,1.7522904872894287,1.5810428857803345,1.6837913990020752,1.9235379695892334,1.9920369386672974,1.8721636533737183,1.7009161710739136,1.8207894563674927,1.9577875137329102,1.9749122858047485,1.9577875137329102,2.0434112548828125,1.9235379695892334,2.0434112548828125,2.0091617107391357,2.0434112548828125,2.0605359077453613,2.129034996032715,1.9577875137329102,2.0091617107391357,2.1804091930389404,2.1461598873138428,1.8892884254455566,1.9406627416610718,2.1804091930389404,2.0605359077453613,1.9749122858047485,2.214658737182617,2.1975340843200684,2.0091617107391357,1.9406627416610718,1.9749122858047485,2.1975340843200684,2.111910343170166,2.0091617107391357,2.248908281326294,2.129034996032715,2.248908281326294,2.094785451889038,2.094785451889038,1.837914228439331,1.4611696004867554,1.0501755475997925,0.5364329218864441,0.48505866527557373,0.6905556917190552,0.5364329218864441,0.913177490234375,0.9816765189170837,1.1700488328933716,0.7933042049407959,1.0501755475997925,0.8446784615516663,1.0159260034561157,1.1700488328933716,0.8446784615516663,0.31381112337112427,1.324171543121338,0.433684378862381,-0.4910523295402527,0.07406456023454666,-0.30268001556396484,-0.30268001556396484,0.21106259524822235,0.19393783807754517,0.1425635814666748,0.7933042049407959,0.45080915093421936,0.48505866527557373,0.5706824064254761,1.1186745166778564,-0.028683962300419807,0.6391814351081848,-1.0219197273254395,0.10831406712532043,-1.1760424375534058,-1.3815394639968872,-0.30268001556396484,-0.6794245839118958,-0.14855724573135376,0.19393783807754517,0.33093586564064026,-0.28555527329444885,-0.9876701831817627,0.48505866527557373,0.48505866527557373,1.0673003196716309,0.6734309196472168,0.9645517468452454,0.913177490234375,0.45080915093421936,-0.5595513582229614,0.12543882429599762,-0.2170562595129013,0.7590547204017639,0.9474270343780518,0.5878071784973145,-0.6280503273010254,-1.758284091949463,-1.8267830610275269,-0.576676070690155,0.9474270343780518,0.2624368667602539,-2.1007792949676514,-0.6622998714447021,-1.1075434684753418,-0.6280503273010254,0.8618032336235046,1.1186745166778564,-1.3986642360687256,-1.2102919816970825,-0.11430773138999939,1.2214230298995972,1.6495418548583984,1.8721636533737183,1.8036646842956543,1.7351657152175903,1.7522904872894287,1.8207894563674927,1.2385478019714355,1.3584210872650146,1.4782943725585938,1.375545859336853,1.4269200563430786,1.4611696004867554,1.5125439167022705,1.4954191446304321,1.4269200563430786,1.2727973461151123,1.101549744606018,1.18717360496521,1.5125439167022705,1.5296686887741089,1.5981676578521729,1.9235379695892334,1.906413197517395,1.906413197517395,1.9235379695892334,1.7522904872894287,1.6152924299240112,1.7009161710739136,1.9577875137329102,1.8036646842956543,1.7694151401519775,1.6837913990020752,1.6324172019958496,1.8892884254455566,2.1461598873138428,2.0262866020202637,1.8550390005111694,1.8892884254455566,1.5125439167022705,1.6666666269302368,1.8550390005111694,1.9749122858047485,1.8721636533737183],[2.1975340843200684,2.248908281326294,2.214658737182617,2.0262866020202637,2.129034996032715,2.1975340843200684,2.129034996032715,1.6324172019958496,0.6049319505691528,-0.19993150234222412,0.2966863512992859,0.36518537998199463,0.5021833777427673,0.8618032336235046,1.1357992887496948,1.0501755475997925,1.18717360496521,-0.14855724573135376,-0.16568198800086975,-0.5595513582229614,-0.6794245839118958,-0.7821731567382812,-1.0390443801879883,-0.5938008427619934,-0.5253018140792847,-0.06293346732854843,0.2624368667602539,0.9474270343780518,-1.0561691522598267,0.34806060791015625,0.6049319505691528,0.9303022623062134,1.1529240608215332,1.307046890258789,1.4782943725585938,1.255672574043274,1.033050775527954,1.324171543121338,1.1186745166778564,0.878928005695343,1.033050775527954,0.9645517468452454,1.8036646842956543,1.837914228439331,1.6152924299240112,1.7694151401519775,1.9406627416610718,1.9749122858047485,1.4782943725585938,1.786539912223816,1.718040943145752,1.375545859336853,1.3584210872650146,1.3926706314086914,1.5125439167022705,0.7933042049407959,0.45080915093421936,0.5706824064254761,0.8960527181625366,0.9816765189170837,1.0673003196716309,1.2899221181869507,1.4954191446304321,1.5810428857803345,1.375545859336853,1.6152924299240112,1.7009161710739136,1.7694151401519775,1.6666666269302368,1.6666666269302368,1.8892884254455566,1.8550390005111694,1.837914228439331,1.8721636533737183,1.9749122858047485,1.8550390005111694,1.8550390005111694,2.094785451889038,2.0091617107391357,1.9749122858047485,2.0091617107391357,2.1975340843200684,2.129034996032715,2.0262866020202637,1.9577875137329102,2.248908281326294,2.1632845401763916,2.0776607990264893,2.231783628463745,2.1975340843200684,2.0605359077453613,2.1804091930389404,2.129034996032715,2.0434112548828125,2.111910343170166,2.0434112548828125,2.0776607990264893,2.214658737182617,2.248908281326294,2.248908281326294,2.248908281326294,2.1632845401763916,2.248908281326294,2.1461598873138428,2.1461598873138428,2.248908281326294,2.0776607990264893,1.786539912223816,1.4097954034805298,1.2385478019714355,0.8446784615516663,0.48505866527557373,0.5706824064254761,0.913177490234375,0.878928005695343,0.9303022623062134,0.7933042049407959,1.0501755475997925,1.1529240608215332,1.0159260034561157,0.7590547204017639,1.0844250917434692,1.0159260034561157,1.0159260034561157,0.6734309196472168,0.8446784615516663,-0.3711790442466736,0.1425635814666748,0.5535576939582825,0.399434894323349,0.03981505334377289,0.433684378862381,-0.06293346732854843,-0.06293346732854843,0.433684378862381,0.6563062071800232,0.22818733751773834,-0.2170562595129013,-0.26843053102493286,-0.0971829816699028,-0.16568198800086975,-0.7307988405227661,-1.878157377243042,-0.0971829816699028,0.005565545056015253,0.6734309196472168,-0.0971829816699028,-1.415789008140564,-0.884921669960022,-0.9705454111099243,0.022690298035740852,1.0673003196716309,-0.26843053102493286,0.10831406712532043,0.878928005695343,0.12543882429599762,0.6049319505691528,0.12543882429599762,0.31381112337112427,-0.3711790442466736,-0.18280674517154694,-0.576676070690155,-0.028683962300419807,0.6049319505691528,0.056939806789159775,0.10831406712532043,-1.7754088640213013,-1.6726603507995605,0.48505866527557373,1.2899221181869507,1.0501755475997925,-0.7479236125946045,-1.6212860345840454,-1.0219197273254395,-0.5938008427619934,0.6905556917190552,1.3584210872650146,0.6734309196472168,0.46793389320373535,1.101549744606018,1.4097954034805298,1.5467933416366577,1.718040943145752,1.6152924299240112,1.4097954034805298,2.0091617107391357,2.1632845401763916,1.2214230298995972,1.0673003196716309,1.1357992887496948,1.2042982578277588,1.4611696004867554,1.3926706314086914,1.4611696004867554,1.4269200563430786,1.4269200563430786,1.375545859336853,1.4782943725585938,1.4782943725585938,1.4954191446304321,1.4097954034805298,1.6152924299240112,1.9235379695892334,2.1632845401763916,1.8036646842956543,1.9577875137329102,1.786539912223816,1.9577875137329102,1.786539912223816,1.8550390005111694,1.8892884254455566,1.9406627416610718,1.6837913990020752,1.9577875137329102,1.8207894563674927,1.8550390005111694,2.111910343170166,2.111910343170166,1.837914228439331,1.6666666269302368,1.5810428857803345,1.6495418548583984,1.8036646842956543,1.786539912223816],[2.214658737182617,2.0776607990264893,2.0605359077453613,2.248908281326294,2.0776607990264893,1.9749122858047485,1.8550390005111694,1.2214230298995972,0.33093586564064026,0.5021833777427673,0.6391814351081848,-0.13143248856067657,0.5193081498146057,0.878928005695343,0.7248051762580872,0.6049319505691528,1.1700488328933716,1.0844250917434692,1.2214230298995972,0.5706824064254761,-0.2170562595129013,-0.8506721258163452,-1.3815394639968872,-1.3472900390625,-1.5699118375778198,-0.7821731567382812,-1.3986642360687256,-0.26843053102493286,-0.6280503273010254,-1.4842880964279175,-1.3472900390625,1.0844250917434692,1.2727973461151123,1.4954191446304321,1.3412963151931763,1.2727973461151123,0.9645517468452454,1.1700488328933716,1.2385478019714355,0.878928005695343,0.9303022623062134,1.0159260034561157,1.4782943725585938,1.9406627416610718,1.906413197517395,1.6666666269302368,1.4097954034805298,1.7009161710739136,1.837914228439331,1.5296686887741089,1.4782943725585938,1.4782943725585938,1.1700488328933716,0.9816765189170837,1.18717360496521,0.7419299483299255,0.1425635814666748,0.6563062071800232,0.7419299483299255,0.878928005695343,1.0501755475997925,1.0844250917434692,1.307046890258789,1.7694151401519775,1.6837913990020752,1.7351657152175903,1.7694151401519775,1.6324172019958496,1.7351657152175903,1.7694151401519775,1.6324172019958496,1.6152924299240112,1.7522904872894287,1.7694151401519775,1.8721636533737183,1.906413197517395,1.7009161710739136,2.0776607990264893,1.906413197517395,1.8721636533737183,1.9749122858047485,2.1461598873138428,2.111910343170166,1.906413197517395,1.8892884254455566,2.1804091930389404,2.0776607990264893,2.0262866020202637,1.8721636533737183,2.0091617107391357,1.9749122858047485,2.0262866020202637,2.1804091930389404,2.129034996032715,2.0434112548828125,2.0776607990264893,2.1632845401763916,2.1632845401763916,2.248908281326294,1.8550390005111694,2.0262866020202637,2.248908281326294,2.248908281326294,2.1632845401763916,2.129034996032715,1.9749122858047485,1.8207894563674927,1.324171543121338,1.101549744606018,0.6734309196472168,0.6391814351081848,0.5878071784973145,0.8446784615516663,1.0501755475997925,0.9645517468452454,1.18717360496521,1.2385478019714355,1.0501755475997925,0.9474270343780518,1.0501755475997925,1.444044828414917,1.1186745166778564,0.5706824064254761,0.8960527181625366,1.4097954034805298,0.6563062071800232,-1.0219197273254395,0.5706824064254761,0.5535576939582825,1.0159260034561157,1.0159260034561157,0.48505866527557373,0.416559636592865,-0.14855724573135376,-0.40542855858802795,0.7761794924736023,-0.13143248856067657,0.48505866527557373,-0.6451750993728638,0.6049319505691528,0.8446784615516663,-0.04580871760845184,0.36518537998199463,0.48505866527557373,0.9474270343780518,0.8446784615516663,0.6220566630363464,1.0844250917434692,0.3823101222515106,0.399434894323349,-0.7650483846664429,-0.26843053102493286,-0.2341810017824173,-0.13143248856067657,0.07406456023454666,0.056939806789159775,-0.14855724573135376,0.8446784615516663,0.7933042049407959,-0.06293346732854843,-0.6794245839118958,-0.3711790442466736,0.416559636592865,0.03981505334377289,0.5193081498146057,-0.4739275574684143,-0.6280503273010254,-1.8267830610275269,0.7761794924736023,1.3412963151931763,-0.028683962300419807,-1.3986642360687256,-1.5185375213623047,-0.40542855858802795,0.6220566630363464,0.7933042049407959,1.1529240608215332,0.3823101222515106,1.3926706314086914,1.324171543121338,1.5125439167022705,1.4097954034805298,1.563918113708496,1.3926706314086914,1.18717360496521,1.8036646842956543,1.5467933416366577,1.4269200563430786,1.4611696004867554,1.0501755475997925,1.1700488328933716,1.2214230298995972,1.2727973461151123,1.2727973461151123,1.2042982578277588,1.2727973461151123,1.255672574043274,1.0844250917434692,1.1186745166778564,1.4782943725585938,1.444044828414917,1.6324172019958496,1.7351657152175903,1.8721636533737183,1.8721636533737183,1.7522904872894287,1.906413197517395,2.0434112548828125,1.8721636533737183,1.7351657152175903,1.8721636533737183,1.6666666269302368,1.9749122858047485,1.906413197517395,1.8550390005111694,1.6666666269302368,1.906413197517395,2.111910343170166,2.0434112548828125,1.5981676578521729,1.6666666269302368,1.718040943145752,1.3412963151931763,1.7351657152175903],[2.0605359077453613,2.0776607990264893,2.214658737182617,2.231783628463745,2.1632845401763916,2.129034996032715,1.9920369386672974,0.8618032336235046,-0.18280674517154694,0.36518537998199463,-0.01155920885503292,-0.6109256148338318,0.31381112337112427,0.45080915093421936,-0.19993150234222412,-0.01155920885503292,0.7419299483299255,1.4782943725585938,1.9235379695892334,1.2385478019714355,0.9988012909889221,-0.3369295299053192,-0.9705454111099243,-1.227416753768921,-1.7069098949432373,-1.5870366096496582,-1.6212860345840454,-0.7136741280555725,-0.2341810017824173,-1.809658408164978,-1.8610326051712036,0.7761794924736023,1.2727973461151123,1.4782943725585938,1.1529240608215332,1.033050775527954,1.3412963151931763,1.2385478019714355,1.2042982578277588,1.0159260034561157,0.6734309196472168,0.8275537490844727,1.6837913990020752,1.8892884254455566,2.111910343170166,1.9235379695892334,1.5125439167022705,1.5296686887741089,1.6495418548583984,1.837914228439331,1.324171543121338,1.3926706314086914,1.0501755475997925,0.8446784615516663,0.9645517468452454,0.2624368667602539,0.22818733751773834,0.5193081498146057,1.033050775527954,1.255672574043274,1.1186745166778564,1.255672574043274,1.444044828414917,1.3926706314086914,1.4611696004867554,1.6666666269302368,1.7694151401519775,1.444044828414917,1.7694151401519775,1.718040943145752,1.718040943145752,1.7351657152175903,1.8721636533737183,1.8892884254455566,1.9749122858047485,1.906413197517395,1.9406627416610718,1.8721636533737183,1.9749122858047485,2.0434112548828125,1.718040943145752,2.1804091930389404,2.1632845401763916,2.0091617107391357,2.094785451889038,2.1804091930389404,2.1975340843200684,2.1632845401763916,2.129034996032715,2.214658737182617,2.1804091930389404,1.9749122858047485,1.7522904872894287,1.9920369386672974,2.0605359077453613,2.111910343170166,2.0605359077453613,2.129034996032715,2.0262866020202637,2.1632845401763916,2.1804091930389404,2.1975340843200684,2.248908281326294,2.1461598873138428,2.248908281326294,1.8550390005111694,1.4611696004867554,1.4097954034805298,0.7933042049407959,0.45080915093421936,0.7933042049407959,0.7761794924736023,0.9303022623062134,1.1186745166778564,1.0673003196716309,1.1186745166778564,1.033050775527954,1.255672574043274,1.324171543121338,0.9988012909889221,1.4611696004867554,1.255672574043274,0.913177490234375,1.3412963151931763,1.5810428857803345,0.34806060791015625,-1.2787909507751465,0.416559636592865,0.7761794924736023,1.101549744606018,1.101549744606018,0.5193081498146057,0.005565545056015253,0.48505866527557373,0.7248051762580872,1.3412963151931763,0.8960527181625366,0.3823101222515106,0.5706824064254761,0.022690298035740852,0.46793389320373535,0.6049319505691528,1.0673003196716309,1.0673003196716309,0.7076804637908936,1.255672574043274,1.1357992887496948,0.5193081498146057,0.2966863512992859,0.1596883237361908,-0.08005822449922562,-0.19993150234222412,-0.6280503273010254,-0.6451750993728638,0.6049319505691528,0.03981505334377289,0.6905556917190552,0.6220566630363464,1.033050775527954,0.6734309196472168,0.17681308090686798,-0.4739275574684143,0.17681308090686798,0.5535576939582825,0.5706824064254761,-0.6280503273010254,-1.4842880964279175,-1.5527870655059814,0.878928005695343,1.101549744606018,-0.01155920885503292,-1.4842880964279175,-1.2959157228469849,0.03981505334377289,-0.6109256148338318,0.8275537490844727,0.7248051762580872,-0.11430773138999939,0.399434894323349,0.9645517468452454,1.2899221181869507,1.2042982578277588,1.5467933416366577,1.2042982578277588,1.1700488328933716,1.5981676578521729,1.5467933416366577,1.307046890258789,1.5296686887741089,1.837914228439331,1.033050775527954,0.9816765189170837,1.1186745166778564,1.0844250917434692,1.2214230298995972,1.375545859336853,1.2385478019714355,1.101549744606018,1.375545859336853,1.324171543121338,1.375545859336853,1.718040943145752,1.6837913990020752,2.0091617107391357,2.094785451889038,1.786539912223816,1.837914228439331,1.786539912223816,1.9577875137329102,1.8892884254455566,1.906413197517395,1.9920369386672974,1.8036646842956543,1.786539912223816,1.9235379695892334,1.837914228439331,2.094785451889038,1.9920369386672974,1.8550390005111694,1.4954191446304321,1.6666666269302368,1.4611696004867554,1.7694151401519775,1.786539912223816],[2.1975340843200684,2.214658737182617,2.094785451889038,2.094785451889038,2.0091617107391357,1.8721636533737183,1.5296686887741089,0.5878071784973145,-0.13143248856067657,-0.16568198800086975,-0.04580871760845184,0.46793389320373535,0.6049319505691528,0.5193081498146057,-0.7136741280555725,0.17681308090686798,0.8960527181625366,1.101549744606018,1.1357992887496948,1.3584210872650146,1.2727973461151123,0.19393783807754517,-0.028683962300419807,-0.7136741280555725,-1.535662293434143,-1.4842880964279175,-1.3472900390625,-0.8677968978881836,0.36518537998199463,-0.9362959265708923,-1.3815394639968872,0.5364329218864441,1.1529240608215332,1.6324172019958496,1.324171543121338,0.5706824064254761,1.2727973461151123,1.307046890258789,1.1357992887496948,0.7933042049407959,0.6391814351081848,0.9474270343780518,1.5125439167022705,1.8036646842956543,1.5296686887741089,1.8207894563674927,1.8550390005111694,1.6324172019958496,1.6152924299240112,1.6324172019958496,1.2042982578277588,1.3412963151931763,1.1186745166778564,1.1529240608215332,0.8618032336235046,-0.26843053102493286,0.433684378862381,0.6391814351081848,0.6049319505691528,1.0673003196716309,1.444044828414917,1.307046890258789,1.4954191446304321,1.5810428857803345,1.4782943725585938,1.4782943725585938,1.6152924299240112,1.6495418548583984,1.7009161710739136,1.8721636533737183,1.786539912223816,1.8550390005111694,1.8207894563674927,1.9577875137329102,1.9406627416610718,1.8036646842956543,1.906413197517395,1.9920369386672974,1.8550390005111694,1.9920369386672974,2.0434112548828125,2.0262866020202637,2.248908281326294,1.9577875137329102,1.8892884254455566,2.094785451889038,2.1975340843200684,2.0605359077453613,2.111910343170166,2.0434112548828125,2.1975340843200684,2.1461598873138428,2.129034996032715,2.1975340843200684,2.231783628463745,2.0434112548828125,2.0262866020202637,2.0605359077453613,2.111910343170166,2.0434112548828125,2.1804091930389404,2.129034996032715,1.9577875137329102,2.1975340843200684,1.9406627416610718,1.5981676578521729,1.2214230298995972,0.9474270343780518,0.6563062071800232,0.7419299483299255,0.6049319505691528,1.0501755475997925,1.1700488328933716,1.18717360496521,1.2727973461151123,1.2727973461151123,1.18717360496521,1.2385478019714355,1.18717360496521,1.2727973461151123,1.4097954034805298,1.1700488328933716,1.563918113708496,1.1186745166778564,1.2385478019714355,0.8446784615516663,-1.3472900390625,-0.2513057589530945,0.9816765189170837,1.324171543121338,1.2042982578277588,0.34806060791015625,-0.19993150234222412,0.31381112337112427,1.0159260034561157,0.7076804637908936,1.1700488328933716,0.7590547204017639,0.22818733751773834,0.5706824064254761,0.6391814351081848,1.3584210872650146,1.0673003196716309,0.9303022623062134,0.9474270343780518,1.101549744606018,0.7761794924736023,0.7248051762580872,1.1529240608215332,0.5535576939582825,0.7419299483299255,0.33093586564064026,-0.06293346732854843,-0.40542855858802795,-0.3198047876358032,0.7590547204017639,0.7248051762580872,0.7933042049407959,0.8275537490844727,0.9645517468452454,0.2624368667602539,-0.14855724573135376,0.21106259524822235,0.5364329218864441,0.8960527181625366,0.03981505334377289,-0.4568028151988983,-1.5699118375778198,0.8618032336235046,1.0844250917434692,-0.2341810017824173,-0.9705454111099243,-0.9362959265708923,0.022690298035740852,-0.9020463824272156,-0.2341810017824173,1.375545859336853,-0.8677968978881836,-1.1075434684753418,0.03981505334377289,1.0844250917434692,1.4269200563430786,1.0844250917434692,0.31381112337112427,1.033050775527954,1.307046890258789,0.6391814351081848,-0.6451750993728638,1.3584210872650146,1.6666666269302368,1.6837913990020752,1.6324172019958496,1.2899221181869507,1.0159260034561157,1.101549744606018,1.0844250917434692,1.033050775527954,1.2899221181869507,1.0673003196716309,1.1529240608215332,1.307046890258789,1.5467933416366577,1.5810428857803345,1.718040943145752,1.786539912223816,1.8892884254455566,1.7351657152175903,1.6152924299240112,1.9577875137329102,1.9235379695892334,1.7694151401519775,2.129034996032715,1.7694151401519775,1.718040943145752,1.7694151401519775,2.129034996032715,2.0434112548828125,1.9749122858047485,1.786539912223816,1.6324172019958496,1.4611696004867554,1.5810428857803345,1.7522904872894287,1.7522904872894287],[1.9920369386672974,2.094785451889038,2.094785451889038,2.0091617107391357,2.248908281326294,2.111910343170166,1.2214230298995972,0.5193081498146057,0.5535576939582825,0.2624368667602539,0.2795616090297699,0.6391814351081848,0.5021833777427673,0.7248051762580872,0.7419299483299255,1.0501755475997925,1.324171543121338,1.4954191446304321,1.6837913990020752,1.7522904872894287,1.307046890258789,1.0501755475997925,0.8960527181625366,0.19393783807754517,-0.28555527329444885,-1.1417930126190186,-0.8335474133491516,0.7248051762580872,0.399434894323349,0.005565545056015253,0.1425635814666748,0.7933042049407959,1.307046890258789,1.4782943725585938,1.4611696004867554,1.2042982578277588,0.9988012909889221,1.1700488328933716,1.1357992887496948,1.033050775527954,0.7248051762580872,1.2727973461151123,1.6152924299240112,1.786539912223816,1.4782943725585938,1.837914228439331,1.9235379695892334,1.6837913990020752,1.3926706314086914,1.0159260034561157,1.2385478019714355,1.2385478019714355,0.9988012909889221,0.9988012909889221,0.399434894323349,-0.06293346732854843,0.12543882429599762,0.7419299483299255,1.2727973461151123,1.1357992887496948,1.1529240608215332,1.5467933416366577,1.6324172019958496,1.5981676578521729,1.5296686887741089,1.7694151401519775,1.5810428857803345,1.6666666269302368,1.7009161710739136,1.6837913990020752,1.6837913990020752,1.6837913990020752,1.906413197517395,1.8207894563674927,1.5810428857803345,1.837914228439331,2.111910343170166,1.9920369386672974,1.9749122858047485,2.0091617107391357,1.9749122858047485,2.1975340843200684,2.111910343170166,2.111910343170166,1.8892884254455566,2.0605359077453613,1.9406627416610718,2.0776607990264893,1.9920369386672974,2.1632845401763916,1.9235379695892334,1.9920369386672974,2.248908281326294,2.0605359077453613,1.8550390005111694,2.0776607990264893,2.129034996032715,2.231783628463745,2.111910343170166,2.248908281326294,2.1461598873138428,2.214658737182617,2.248908281326294,2.111910343170166,1.7522904872894287,1.563918113708496,1.3584210872650146,0.7076804637908936,0.5878071784973145,0.8446784615516663,0.7076804637908936,1.18717360496521,1.18717360496521,1.2042982578277588,1.2385478019714355,1.3584210872650146,1.5467933416366577,1.324171543121338,1.307046890258789,1.375545859336853,1.5467933416366577,1.375545859336853,1.033050775527954,1.375545859336853,2.0776607990264893,1.0159260034561157,-0.7992978692054749,0.878928005695343,1.0673003196716309,0.8104289770126343,1.324171543121338,0.6049319505691528,0.2795616090297699,0.22818733751773834,0.6734309196472168,1.2214230298995972,1.0844250917434692,0.9303022623062134,0.9645517468452454,1.18717360496521,1.1700488328933716,1.3412963151931763,1.101549744606018,0.7933042049407959,0.9988012909889221,0.7590547204017639,0.8275537490844727,0.7761794924736023,0.6563062071800232,0.5706824064254761,1.2214230298995972,0.7419299483299255,0.056939806789159775,-0.6622998714447021,-0.4910523295402527,-0.4568028151988983,0.7076804637908936,0.48505866527557373,0.6734309196472168,1.1186745166778564,-0.4739275574684143,-0.7307988405227661,0.2624368667602539,-0.18280674517154694,0.31381112337112427,-1.1246682405471802,-0.5253018140792847,-1.5870366096496582,0.5364329218864441,1.1700488328933716,0.5878071784973145,-1.3301652669906616,-0.2341810017824173,-0.6965493559837341,-0.8677968978881836,0.19393783807754517,0.2624368667602539,-0.9534206986427307,-1.1246682405471802,-0.6794245839118958,0.878928005695343,1.18717360496521,1.2385478019714355,-0.3198047876358032,1.101549744606018,1.033050775527954,0.6905556917190552,1.0159260034561157,1.4782943725585938,1.307046890258789,1.786539912223816,1.1186745166778564,1.5810428857803345,1.5467933416366577,1.2727973461151123,0.8618032336235046,0.7933042049407959,-1.1075434684753418,-0.4739275574684143,0.878928005695343,0.8104289770126343,1.2385478019714355,1.6152924299240112,1.5981676578521729,1.8207894563674927,1.718040943145752,1.7351657152175903,1.8550390005111694,1.9749122858047485,1.9406627416610718,1.8550390005111694,1.9406627416610718,1.8550390005111694,1.5467933416366577,1.5296686887741089,1.8892884254455566,2.0262866020202637,2.0605359077453613,2.129034996032715,1.5810428857803345,1.5981676578521729,1.8036646842956543,1.7009161710739136,1.906413197517395],[2.0091617107391357,2.0434112548828125,2.248908281326294,2.1461598873138428,2.094785451889038,1.9406627416610718,1.2899221181869507,0.416559636592865,0.22818733751773834,0.2624368667602539,-0.08005822449922562,-0.16568198800086975,0.1596883237361908,0.9988012909889221,1.3584210872650146,1.255672574043274,1.0844250917434692,1.2727973461151123,0.913177490234375,0.9474270343780518,1.3412963151931763,0.9988012909889221,0.5364329218864441,-0.01155920885503292,-0.028683962300419807,-0.30268001556396484,-1.004794955253601,0.6563062071800232,0.2624368667602539,0.5193081498146057,0.5878071784973145,0.913177490234375,1.1186745166778564,1.3926706314086914,1.375545859336853,1.3584210872650146,1.3412963151931763,1.101549744606018,1.3926706314086914,1.1529240608215332,1.1700488328933716,1.3412963151931763,1.3412963151931763,1.7009161710739136,1.786539912223816,1.7522904872894287,1.718040943145752,1.786539912223816,1.324171543121338,0.9303022623062134,0.9988012909889221,0.913177490234375,0.7590547204017639,0.8960527181625366,-0.14855724573135376,-0.028683962300419807,0.2795616090297699,0.7419299483299255,1.1186745166778564,1.2214230298995972,1.2727973461151123,1.4782943725585938,1.5296686887741089,1.4782943725585938,1.5810428857803345,1.5125439167022705,1.6324172019958496,1.6837913990020752,1.6495418548583984,1.6837913990020752,1.6152924299240112,1.7009161710739136,1.906413197517395,1.8892884254455566,1.9235379695892334,1.7694151401519775,1.7522904872894287,1.9577875137329102,2.1804091930389404,1.9235379695892334,1.9920369386672974,2.0262866020202637,2.1632845401763916,1.9577875137329102,2.0776607990264893,2.1975340843200684,2.0091617107391357,2.0605359077453613,2.129034996032715,2.129034996032715,2.111910343170166,2.094785451889038,2.0091617107391357,2.214658737182617,2.248908281326294,2.0262866020202637,2.248908281326294,1.9749122858047485,2.214658737182617,2.248908281326294,2.248908281326294,2.231783628463745,1.9577875137329102,1.8207894563674927,1.786539912223816,1.255672574043274,0.7076804637908936,0.8446784615516663,0.913177490234375,1.033050775527954,1.324171543121338,1.101549744606018,1.2214230298995972,1.1700488328933716,1.2214230298995972,1.4954191446304321,1.375545859336853,1.4611696004867554,1.444044828414917,1.2727973461151123,1.033050775527954,1.2042982578277588,1.6495418548583984,1.3926706314086914,1.5296686887741089,0.9474270343780518,-0.7479236125946045,0.2966863512992859,1.0159260034561157,0.7933042049407959,0.878928005695343,0.6391814351081848,0.7419299483299255,0.5021833777427673,0.8104289770126343,0.878928005695343,0.9474270343780518,0.9816765189170837,1.3926706314086914,1.563918113708496,1.6666666269302368,1.4954191446304321,0.913177490234375,0.8960527181625366,0.9303022623062134,0.5021833777427673,1.1700488328933716,1.1700488328933716,1.4611696004867554,0.6049319505691528,0.34806060791015625,1.2042982578277588,0.056939806789159775,0.7248051762580872,0.45080915093421936,0.1425635814666748,0.19393783807754517,0.8618032336235046,0.48505866527557373,0.9645517468452454,0.12543882429599762,-0.28555527329444885,0.1425635814666748,0.7761794924736023,0.31381112337112427,-0.4910523295402527,-0.3198047876358032,-2.0665297508239746,0.24531209468841553,0.878928005695343,0.6905556917190552,0.2795616090297699,-0.6794245839118958,-1.3644148111343384,-1.0219197273254395,1.0673003196716309,0.07406456023454666,-1.758284091949463,-1.535662293434143,-1.6212860345840454,0.5878071784973145,1.255672574043274,1.3412963151931763,0.2795616090297699,1.7009161710739136,1.2042982578277588,1.307046890258789,1.444044828414917,1.3926706314086914,1.4097954034805298,1.6666666269302368,1.6152924299240112,-0.14855724573135376,-0.542426586151123,0.7076804637908936,-0.6794245839118958,-2.1179039478302,-1.998030662536621,-1.9295316934585571,-1.1075434684753418,-1.2102919816970825,-0.3540542721748352,1.0159260034561157,1.307046890258789,1.7351657152175903,1.5981676578521729,1.6324172019958496,1.786539912223816,1.7522904872894287,1.7522904872894287,1.7694151401519775,1.8721636533737183,1.906413197517395,1.444044828414917,1.444044828414917,1.906413197517395,2.231783628463745,1.8892884254455566,1.9920369386672974,1.4097954034805298,1.444044828414917,1.563918113708496,1.6324172019958496,1.9406627416610718],[2.129034996032715,1.9577875137329102,2.214658737182617,2.0776607990264893,1.9235379695892334,1.8207894563674927,1.255672574043274,0.5878071784973145,0.45080915093421936,0.5878071784973145,0.2624368667602539,-0.30268001556396484,0.433684378862381,1.0844250917434692,1.101549744606018,1.0673003196716309,0.7248051762580872,-0.04580871760845184,-0.3198047876358032,0.33093586564064026,0.09118931740522385,0.46793389320373535,-0.2513057589530945,-0.7992978692054749,-0.576676070690155,-1.1075434684753418,0.1425635814666748,-0.542426586151123,0.19393783807754517,0.8618032336235046,1.1357992887496948,1.1186745166778564,0.9645517468452454,1.4954191446304321,1.2214230298995972,1.563918113708496,1.2385478019714355,1.101549744606018,1.324171543121338,1.5296686887741089,1.563918113708496,1.4611696004867554,1.4954191446304321,1.786539912223816,1.8036646842956543,1.8550390005111694,1.5981676578521729,1.255672574043274,0.6734309196472168,0.8104289770126343,0.6220566630363464,0.7761794924736023,0.2795616090297699,0.24531209468841553,-0.0971829816699028,0.22818733751773834,0.6220566630363464,0.913177490234375,1.2899221181869507,1.2727973461151123,1.324171543121338,1.3412963151931763,1.3584210872650146,1.6324172019958496,1.6495418548583984,1.837914228439331,1.5981676578521729,1.6495418548583984,1.7351657152175903,1.6152924299240112,1.786539912223816,1.6324172019958496,1.9406627416610718,1.6837913990020752,1.9406627416610718,2.0262866020202637,1.906413197517395,2.111910343170166,2.0091617107391357,2.0262866020202637,1.906413197517395,1.9920369386672974,2.0605359077453613,1.8721636533737183,2.1461598873138428,1.9577875137329102,2.129034996032715,2.1804091930389404,1.8721636533737183,2.0434112548828125,2.0776607990264893,1.9749122858047485,1.9749122858047485,1.8721636533737183,2.0776607990264893,2.111910343170166,2.214658737182617,2.248908281326294,2.248908281326294,2.0262866020202637,2.248908281326294,2.0605359077453613,1.8207894563674927,1.5810428857803345,1.3584210872650146,0.913177490234375,0.878928005695343,0.7761794924736023,1.0159260034561157,1.033050775527954,1.18717360496521,1.2214230298995972,1.2385478019714355,1.1700488328933716,1.375545859336853,1.4269200563430786,1.4269200563430786,1.4611696004867554,1.4611696004867554,1.5467933416366577,1.3412963151931763,1.2385478019714355,1.7351657152175903,1.5810428857803345,2.1975340843200684,1.3926706314086914,-1.0904186964035034,-0.08005822449922562,0.7590547204017639,0.8446784615516663,1.5467933416366577,1.0159260034561157,1.2214230298995972,1.101549744606018,1.1357992887496948,0.8275537490844727,0.31381112337112427,0.7076804637908936,1.3926706314086914,1.444044828414917,1.5467933416366577,1.4782943725585938,0.5878071784973145,0.22818733751773834,0.5021833777427673,0.6220566630363464,0.48505866527557373,0.9988012909889221,1.4782943725585938,0.9645517468452454,0.7076804637908936,0.416559636592865,0.005565545056015253,0.17681308090686798,0.6391814351081848,0.6563062071800232,0.3823101222515106,0.6905556917190552,0.6049319505691528,0.8275537490844727,0.2795616090297699,-0.2170562595129013,0.5193081498146057,0.9474270343780518,1.2042982578277588,-0.5938008427619934,-0.9362959265708923,-1.7069098949432373,0.46793389320373535,0.7419299483299255,0.8104289770126343,0.46793389320373535,-0.5938008427619934,-1.073293924331665,-0.14855724573135376,-0.19993150234222412,0.878928005695343,-1.2959157228469849,-1.467163324356079,-1.604161262512207,0.2795616090297699,1.1529240608215332,1.2042982578277588,1.255672574043274,1.2214230298995972,1.18717360496521,1.4782943725585938,1.4097954034805298,1.5810428857803345,1.3926706314086914,1.563918113708496,1.4782943725585938,0.878928005695343,-1.5185375213623047,0.07406456023454666,-0.5595513582229614,-1.1589176654815674,-2.1179039478302,0.6220566630363464,-1.946656346321106,-1.758284091949463,0.8104289770126343,0.5706824064254761,0.9303022623062134,1.375545859336853,1.563918113708496,1.4097954034805298,1.4269200563430786,1.5981676578521729,1.563918113708496,1.8550390005111694,2.0091617107391357,1.5981676578521729,1.8036646842956543,1.6152924299240112,1.6837913990020752,1.9406627416610718,2.0262866020202637,1.9577875137329102,1.4269200563430786,1.5467933416366577,1.5981676578521729,1.6837913990020752,2.0434112548828125],[1.5296686887741089,1.8550390005111694,2.094785451889038,1.8550390005111694,1.906413197517395,1.8207894563674927,1.2899221181869507,0.6563062071800232,0.8104289770126343,0.7076804637908936,0.2624368667602539,0.34806060791015625,0.6391814351081848,0.9816765189170837,0.7419299483299255,0.399434894323349,-0.16568198800086975,-0.7650483846664429,-0.542426586151123,-1.0561691522598267,-0.06293346732854843,-0.3883037865161896,-0.542426586151123,-1.3644148111343384,-1.535662293434143,-2.0836544036865234,-1.5870366096496582,-1.8439078330993652,0.10831406712532043,0.913177490234375,1.0501755475997925,0.9645517468452454,1.3412963151931763,1.1186745166778564,1.5981676578521729,1.2214230298995972,1.2042982578277588,0.9988012909889221,1.1700488328933716,1.6495418548583984,1.7522904872894287,1.6837913990020752,1.7694151401519775,1.6152924299240112,1.7351657152175903,1.6324172019958496,1.2727973461151123,0.9816765189170837,0.45080915093421936,1.0501755475997925,0.7076804637908936,0.6391814351081848,-0.2170562595129013,-0.08005822449922562,-0.04580871760845184,0.433684378862381,0.433684378862381,0.6905556917190552,1.101549744606018,1.101549744606018,1.3584210872650146,1.4097954034805298,1.3926706314086914,1.324171543121338,1.4782943725585938,1.1186745166778564,1.4782943725585938,1.5810428857803345,1.3926706314086914,1.4611696004867554,1.6666666269302368,1.7009161710739136,1.7694151401519775,1.9749122858047485,1.5296686887741089,1.8550390005111694,2.111910343170166,1.8036646842956543,2.0091617107391357,2.0605359077453613,2.0605359077453613,2.0434112548828125,2.0262866020202637,2.248908281326294,2.0605359077453613,1.9920369386672974,1.8550390005111694,1.786539912223816,2.111910343170166,2.1632845401763916,2.1804091930389404,2.1804091930389404,1.9749122858047485,2.248908281326294,2.231783628463745,2.1804091930389404,2.0434112548828125,2.129034996032715,2.214658737182617,2.248908281326294,2.0605359077453613,1.9406627416610718,1.7009161710739136,1.563918113708496,1.1529240608215332,0.9474270343780518,0.9988012909889221,0.9303022623062134,1.18717360496521,1.0844250917434692,1.2042982578277588,1.2899221181869507,1.1700488328933716,1.3412963151931763,1.5467933416366577,1.5810428857803345,1.4782943725585938,1.6324172019958496,1.5981676578521729,1.444044828414917,1.4954191446304321,1.718040943145752,1.444044828414917,1.4611696004867554,1.9749122858047485,1.033050775527954,-0.14855724573135376,0.9816765189170837,1.3926706314086914,1.4097954034805298,1.2385478019714355,1.444044828414917,1.1529240608215332,0.6220566630363464,0.9645517468452454,0.913177490234375,0.6049319505691528,0.433684378862381,0.8960527181625366,1.4954191446304321,1.324171543121338,1.1186745166778564,1.0673003196716309,1.1529240608215332,1.4611696004867554,0.8960527181625366,0.46793389320373535,0.9645517468452454,1.2727973461151123,0.6049319505691528,1.1357992887496948,1.0673003196716309,0.5193081498146057,-0.26843053102493286,-0.6280503273010254,0.31381112337112427,1.033050775527954,1.0159260034561157,1.307046890258789,0.9988012909889221,0.8104289770126343,-0.01155920885503292,0.399434894323349,0.7590547204017639,1.2385478019714355,0.6563062071800232,-0.6794245839118958,-2.1007792949676514,0.2966863512992859,0.5193081498146057,0.48505866527557373,-0.2513057589530945,-1.5014127492904663,-0.8335474133491516,-0.9705454111099243,1.1529240608215332,0.2795616090297699,-1.3815394639968872,-1.7069098949432373,-1.227416753768921,0.45080915093421936,1.444044828414917,0.8960527181625366,1.2214230298995972,1.6152924299240112,1.3412963151931763,1.1700488328933716,1.563918113708496,1.7694151401519775,1.4097954034805298,1.4782943725585938,1.6837913990020752,1.2385478019714355,0.9645517468452454,0.34806060791015625,0.5535576939582825,0.8446784615516663,2.231783628463745,1.8036646842956543,0.48505866527557373,-1.8267830610275269,-1.5699118375778198,0.913177490234375,0.7761794924736023,0.9988012909889221,1.101549744606018,1.2214230298995972,1.255672574043274,1.5467933416366577,1.5296686887741089,1.7694151401519775,1.6837913990020752,1.8721636533737183,1.5810428857803345,1.6324172019958496,1.444044828414917,1.8892884254455566,1.8207894563674927,1.9235379695892334,1.6837913990020752,1.563918113708496,1.837914228439331,1.9577875137329102,2.0262866020202637],[1.4611696004867554,1.5467933416366577,2.0605359077453613,1.9577875137329102,1.5981676578521729,1.4611696004867554,1.2385478019714355,0.5878071784973145,0.8446784615516663,0.8960527181625366,0.6905556917190552,0.5193081498146057,0.45080915093421936,0.5364329218864441,-0.3711790442466736,-0.8506721258163452,-0.0971829816699028,0.056939806789159775,0.33093586564064026,-0.884921669960022,-0.6794245839118958,-0.576676070690155,-0.19993150234222412,-1.2616662979125977,-2.032280206680298,-2.1007792949676514,-2.032280206680298,-2.1179039478302,-2.1179039478302,0.31381112337112427,0.913177490234375,1.2385478019714355,1.324171543121338,1.1700488328933716,0.913177490234375,1.0501755475997925,0.9474270343780518,1.2385478019714355,1.2899221181869507,1.5125439167022705,1.7351657152175903,1.6666666269302368,1.563918113708496,1.8892884254455566,1.5296686887741089,1.4611696004867554,1.324171543121338,0.45080915093421936,0.878928005695343,0.6563062071800232,0.24531209468841553,0.10831406712532043,-0.2513057589530945,-0.6451750993728638,-0.16568198800086975,0.34806060791015625,0.48505866527557373,0.913177490234375,0.9474270343780518,1.2214230298995972,0.9816765189170837,1.307046890258789,1.2899221181869507,1.4782943725585938,1.1700488328933716,0.9303022623062134,0.8275537490844727,1.0844250917434692,1.18717360496521,0.8960527181625366,1.255672574043274,1.444044828414917,1.4782943725585938,1.4954191446304321,1.5810428857803345,1.8892884254455566,1.9920369386672974,1.906413197517395,1.7522904872894287,1.837914228439331,1.906413197517395,2.1632845401763916,2.248908281326294,2.248908281326294,1.9749122858047485,2.1461598873138428,2.248908281326294,2.094785451889038,2.0434112548828125,2.0091617107391357,2.129034996032715,2.248908281326294,2.0605359077453613,2.248908281326294,2.248908281326294,2.248908281326294,1.9920369386672974,2.1975340843200684,2.1804091930389404,2.0434112548828125,1.6324172019958496,1.6152924299240112,1.375545859336853,0.8960527181625366,0.878928005695343,1.1357992887496948,1.033050775527954,1.1529240608215332,1.033050775527954,1.2042982578277588,1.324171543121338,1.4611696004867554,1.6152924299240112,1.4954191446304321,1.6837913990020752,1.5296686887741089,1.4269200563430786,1.5467933416366577,1.6152924299240112,1.6666666269302368,1.7351657152175903,2.0091617107391357,1.6152924299240112,1.4782943725585938,1.444044828414917,1.0159260034561157,-0.3369295299053192,0.09118931740522385,1.033050775527954,0.9474270343780518,1.255672574043274,1.1186745166778564,1.1529240608215332,1.2042982578277588,0.34806060791015625,0.5535576939582825,0.7076804637908936,1.0501755475997925,1.1186745166778564,0.9988012909889221,1.5810428857803345,1.5810428857803345,0.12543882429599762,1.1357992887496948,2.248908281326294,1.2385478019714355,1.5467933416366577,2.248908281326294,0.36518537998199463,0.7248051762580872,0.6220566630363464,0.7248051762580872,1.1357992887496948,-0.06293346732854843,-0.9534206986427307,-0.7479236125946045,-0.01155920885503292,1.2727973461151123,1.18717360496521,0.6734309196472168,0.9645517468452454,-0.8164226412773132,0.8275537490844727,1.3584210872650146,0.6049319505691528,0.7761794924736023,-1.1417930126190186,-1.8267830610275269,1.033050775527954,0.8618032336235046,0.3823101222515106,-1.5185375213623047,-1.3472900390625,-1.1246682405471802,-0.5938008427619934,0.46793389320373535,-0.6109256148338318,-1.946656346321106,-1.5014127492904663,0.36518537998199463,1.307046890258789,1.18717360496521,0.9988012909889221,0.9816765189170837,1.3412963151931763,1.3584210872650146,1.5467933416366577,1.3926706314086914,1.6324172019958496,1.324171543121338,1.375545859336853,1.2727973461151123,1.0844250917434692,1.444044828414917,-0.7821731567382812,1.324171543121338,-0.06293346732854843,0.416559636592865,-0.2341810017824173,-0.08005822449922562,0.5364329218864441,-1.689785122871399,0.6220566630363464,1.563918113708496,0.416559636592865,0.7419299483299255,0.9474270343780518,1.444044828414917,1.7351657152175903,1.6666666269302368,1.6837913990020752,2.0262866020202637,1.7694151401519775,1.7351657152175903,1.6495418548583984,1.5467933416366577,1.8036646842956543,1.6324172019958496,2.0091617107391357,1.837914228439331,1.4611696004867554,1.7351657152175903,1.9406627416610718,2.0605359077453613],[1.255672574043274,1.375545859336853,1.6666666269302368,1.7522904872894287,1.8207894563674927,1.3926706314086914,0.878928005695343,0.17681308090686798,0.33093586564064026,0.48505866527557373,0.7076804637908936,0.6563062071800232,0.6220566630363464,0.6049319505691528,-0.16568198800086975,0.22818733751773834,0.913177490234375,1.4782943725585938,1.1529240608215332,0.5364329218864441,0.03981505334377289,-1.5527870655059814,-1.5185375213623047,-0.9020463824272156,-1.467163324356079,-1.604161262512207,-1.9809058904647827,-1.4329137802124023,-2.0836544036865234,-0.9705454111099243,1.101549744606018,1.1529240608215332,1.3584210872650146,1.18717360496521,0.7248051762580872,0.9474270343780518,0.7248051762580872,1.0159260034561157,1.255672574043274,1.5296686887741089,1.5125439167022705,1.6152924299240112,1.324171543121338,1.7522904872894287,1.4269200563430786,0.8446784615516663,1.033050775527954,0.5535576939582825,0.7419299483299255,0.8275537490844727,0.46793389320373535,0.2624368667602539,-0.6280503273010254,-0.6965493559837341,0.22818733751773834,0.2795616090297699,0.5706824064254761,0.9303022623062134,0.9474270343780518,1.2214230298995972,1.4097954034805298,1.0501755475997925,1.444044828414917,1.3412963151931763,0.48505866527557373,-0.13143248856067657,0.7590547204017639,1.0501755475997925,0.5364329218864441,0.7076804637908936,0.48505866527557373,0.7761794924736023,0.9816765189170837,1.255672574043274,1.5467933416366577,1.5981676578521729,1.5296686887741089,1.906413197517395,1.8550390005111694,2.214658737182617,1.9235379695892334,1.9749122858047485,1.8036646842956543,1.837914228439331,2.0091617107391357,2.111910343170166,1.8207894563674927,1.8550390005111694,1.9406627416610718,1.9577875137329102,2.214658737182617,1.9749122858047485,2.1804091930389404,2.214658737182617,2.248908281326294,1.9406627416610718,2.111910343170166,2.1975340843200684,1.8721636533737183,1.837914228439331,1.906413197517395,1.5810428857803345,0.8104289770126343,1.0501755475997925,0.9474270343780518,1.0673003196716309,1.0673003196716309,1.324171543121338,1.255672574043274,1.4611696004867554,1.324171543121338,1.4611696004867554,1.5296686887741089,1.6666666269302368,1.7351657152175903,1.6495418548583984,1.6495418548583984,1.5981676578521729,1.5296686887741089,1.8207894563674927,1.7351657152175903,1.8207894563674927,2.0091617107391357,1.6324172019958496,1.18717360496521,1.3584210872650146,0.5021833777427673,-0.7479236125946045,0.5706824064254761,1.0673003196716309,0.8618032336235046,1.2727973461151123,1.033050775527954,1.255672574043274,1.0501755475997925,0.9816765189170837,0.7248051762580872,0.3823101222515106,1.0501755475997925,0.9474270343780518,1.7351657152175903,1.4269200563430786,1.101549744606018,1.444044828414917,1.8721636533737183,1.444044828414917,1.6495418548583984,2.129034996032715,0.7248051762580872,0.9988012909889221,0.6049319505691528,0.7590547204017639,0.46793389320373535,0.8275537490844727,-0.2341810017824173,-0.9362959265708923,0.24531209468841553,0.12543882429599762,1.3412963151931763,0.7419299483299255,0.8960527181625366,0.005565545056015253,0.6734309196472168,1.033050775527954,0.416559636592865,0.7933042049407959,-1.1075434684753418,-1.5699118375778198,0.7076804637908936,0.5364329218864441,-0.9362959265708923,-1.8267830610275269,-2.1007792949676514,-0.30268001556396484,0.913177490234375,0.913177490234375,-0.8164226412773132,-1.8610326051712036,-0.8506721258163452,1.1529240608215332,1.1700488328933716,1.2385478019714355,0.34806060791015625,0.6734309196472168,1.1357992887496948,1.444044828414917,1.3926706314086914,1.5467933416366577,1.4097954034805298,1.255672574043274,1.2899221181869507,1.3584210872650146,0.9988012909889221,1.5467933416366577,1.1529240608215332,0.8960527181625366,0.7248051762580872,1.324171543121338,0.34806060791015625,0.46793389320373535,-0.5595513582229614,-0.04580871760845184,0.5021833777427673,1.2385478019714355,0.2795616090297699,1.033050775527954,1.0501755475997925,1.1700488328933716,1.6152924299240112,1.718040943145752,1.6837913990020752,1.6837913990020752,1.8207894563674927,1.5810428857803345,1.4782943725585938,1.5296686887741089,1.8550390005111694,1.6495418548583984,1.7522904872894287,1.9749122858047485,1.718040943145752,1.8036646842956543,1.9577875137329102,1.8892884254455566],[1.2214230298995972,1.1186745166778564,1.18717360496521,1.5125439167022705,1.6324172019958496,1.3584210872650146,1.033050775527954,0.48505866527557373,0.33093586564064026,0.7933042049407959,0.9303022623062134,0.8446784615516663,0.5535576939582825,0.31381112337112427,0.7248051762580872,0.9816765189170837,1.2214230298995972,1.255672574043274,1.2042982578277588,1.0501755475997925,0.6391814351081848,0.22818733751773834,0.022690298035740852,0.22818733751773834,0.6734309196472168,-0.6794245839118958,-0.9020463824272156,-0.8335474133491516,-2.1179039478302,-1.415789008140564,0.8618032336235046,1.307046890258789,1.307046890258789,1.1357992887496948,0.8104289770126343,0.7419299483299255,0.2795616090297699,1.2042982578277588,1.1529240608215332,1.4611696004867554,1.4611696004867554,1.4269200563430786,1.1529240608215332,1.4954191446304321,1.6495418548583984,0.913177490234375,0.6220566630363464,0.878928005695343,0.9645517468452454,0.8618032336235046,0.6734309196472168,-0.06293346732854843,-0.42255330085754395,-0.01155920885503292,-0.08005822449922562,0.433684378862381,0.8960527181625366,0.878928005695343,0.913177490234375,1.3584210872650146,1.307046890258789,1.2899221181869507,1.3584210872650146,0.6049319505691528,-0.14855724573135376,0.5021833777427673,0.5021833777427673,-0.04580871760845184,-0.3540542721748352,-0.19993150234222412,-0.16568198800086975,-0.08005822449922562,0.34806060791015625,0.8960527181625366,0.7419299483299255,0.8446784615516663,1.5810428857803345,1.6495418548583984,1.9235379695892334,1.6152924299240112,2.0605359077453613,1.906413197517395,2.0091617107391357,1.9235379695892334,2.214658737182617,1.9920369386672974,2.0776607990264893,2.1632845401763916,2.0605359077453613,1.9920369386672974,2.1804091930389404,2.129034996032715,2.248908281326294,2.094785451889038,2.0776607990264893,2.1975340843200684,2.1461598873138428,2.0434112548828125,2.0262866020202637,1.786539912223816,1.5296686887741089,1.1357992887496948,0.9645517468452454,1.033050775527954,0.913177490234375,1.0159260034561157,1.307046890258789,1.375545859336853,1.4611696004867554,1.324171543121338,1.718040943145752,1.4269200563430786,1.5981676578521729,1.6837913990020752,1.7351657152175903,1.6666666269302368,1.786539912223816,1.837914228439331,2.0605359077453613,2.1804091930389404,1.9920369386672974,2.1975340843200684,1.837914228439331,1.9235379695892334,1.0673003196716309,1.7694151401519775,1.307046890258789,-0.28555527329444885,-0.6280503273010254,0.12543882429599762,0.17681308090686798,1.3584210872650146,0.9988012909889221,0.9988012909889221,1.2042982578277588,0.9816765189170837,0.9474270343780518,0.433684378862381,0.6049319505691528,0.7761794924736023,1.718040943145752,1.6495418548583984,1.4611696004867554,1.837914228439331,1.3926706314086914,0.8960527181625366,1.8207894563674927,2.1632845401763916,0.7590547204017639,0.5878071784973145,-0.3198047876358032,0.1425635814666748,0.48505866527557373,0.17681308090686798,-0.01155920885503292,-0.16568198800086975,1.5467933416366577,0.1425635814666748,0.913177490234375,1.5296686887741089,0.5706824064254761,0.416559636592865,0.9816765189170837,1.2727973461151123,0.1596883237361908,1.1529240608215332,-1.1760424375534058,-0.9362959265708923,0.7590547204017639,0.5878071784973145,-0.3711790442466736,-1.9124069213867188,-1.6212860345840454,0.19393783807754517,0.7076804637908936,0.3823101222515106,-1.689785122871399,-0.6622998714447021,0.07406456023454666,0.9303022623062134,0.9988012909889221,1.2385478019714355,1.3412963151931763,0.399434894323349,0.7076804637908936,0.9988012909889221,1.033050775527954,1.1700488328933716,1.5981676578521729,1.101549744606018,1.101549744606018,1.3412963151931763,1.3584210872650146,1.101549744606018,1.6152924299240112,0.45080915093421936,0.5021833777427673,1.101549744606018,0.9645517468452454,0.399434894323349,-0.2513057589530945,1.0501755475997925,0.7248051762580872,1.1186745166778564,0.12543882429599762,0.9645517468452454,1.1700488328933716,1.3412963151931763,1.4954191446304321,1.6666666269302368,1.718040943145752,1.8036646842956543,1.7009161710739136,1.906413197517395,1.5810428857803345,1.5296686887741089,1.7694151401519775,1.5296686887741089,1.8892884254455566,1.8036646842956543,1.4954191446304321,2.129034996032715,2.248908281326294,2.248908281326294],[1.0159260034561157,0.9816765189170837,1.1186745166778564,1.1700488328933716,1.307046890258789,1.2214230298995972,0.7590547204017639,0.7933042049407959,0.9816765189170837,1.2042982578277588,0.8104289770126343,0.3823101222515106,0.21106259524822235,0.31381112337112427,0.36518537998199463,1.033050775527954,1.3412963151931763,1.1186745166778564,0.8104289770126343,0.8618032336235046,0.45080915093421936,0.7248051762580872,0.5364329218864441,0.7590547204017639,0.2795616090297699,0.6220566630363464,0.17681308090686798,0.17681308090686798,-1.2959157228469849,-1.6384108066558838,1.0673003196716309,1.0501755475997925,1.0844250917434692,1.0501755475997925,0.6734309196472168,0.5021833777427673,0.9988012909889221,1.1186745166778564,1.3412963151931763,1.255672574043274,1.324171543121338,1.2899221181869507,1.375545859336853,0.9816765189170837,1.4782943725585938,1.0844250917434692,0.878928005695343,0.46793389320373535,0.7761794924736023,0.6220566630363464,0.6734309196472168,-0.28555527329444885,-0.42255330085754395,0.03981505334377289,0.2624368667602539,0.34806060791015625,0.5706824064254761,0.9816765189170837,1.2042982578277588,0.6563062071800232,0.913177490234375,0.7590547204017639,0.09118931740522385,-1.0390443801879883,-0.7136741280555725,-0.01155920885503292,-0.9362959265708923,-0.6109256148338318,-0.5253018140792847,-0.3883037865161896,-0.7307988405227661,-0.43967804312705994,-0.2341810017824173,-0.4568028151988983,-0.14855724573135376,0.8446784615516663,1.033050775527954,1.4269200563430786,1.7694151401519775,1.837914228439331,2.111910343170166,1.8550390005111694,1.9749122858047485,1.8721636533737183,1.8721636533737183,2.0434112548828125,2.0605359077453613,2.0091617107391357,1.9235379695892334,1.9406627416610718,2.111910343170166,2.1975340843200684,1.9749122858047485,2.094785451889038,2.0605359077453613,2.0434112548828125,2.111910343170166,1.8207894563674927,1.7522904872894287,1.375545859336853,1.0844250917434692,0.9988012909889221,1.101549744606018,1.101549744606018,1.2727973461151123,1.1529240608215332,1.3412963151931763,1.4954191446304321,1.3926706314086914,1.5467933416366577,1.444044828414917,1.8207894563674927,1.563918113708496,1.7694151401519775,1.8207894563674927,1.837914228439331,1.9235379695892334,1.9749122858047485,1.906413197517395,1.837914228439331,1.906413197517395,1.563918113708496,1.6666666269302368,1.786539912223816,0.5364329218864441,1.5296686887741089,0.9988012909889221,0.7761794924736023,-0.40542855858802795,-1.0219197273254395,-0.884921669960022,1.2042982578277588,0.6049319505691528,1.0673003196716309,1.0501755475997925,1.3926706314086914,1.3412963151931763,0.5878071784973145,0.8446784615516663,1.0159260034561157,1.2899221181869507,1.6666666269302368,1.324171543121338,1.6837913990020752,1.1700488328933716,0.46793389320373535,1.4611696004867554,2.1804091930389404,0.6049319505691528,1.9406627416610718,0.33093586564064026,-0.2513057589530945,0.416559636592865,0.36518537998199463,1.1529240608215332,0.2624368667602539,1.1186745166778564,0.2624368667602539,1.307046890258789,1.1529240608215332,0.46793389320373535,0.7933042049407959,0.7933042049407959,1.2385478019714355,0.5193081498146057,0.6734309196472168,-0.6622998714447021,1.1357992887496948,0.7590547204017639,0.005565545056015253,-1.809658408164978,-2.032280206680298,-1.9124069213867188,0.36518537998199463,1.2214230298995972,-0.3711790442466736,-0.8335474133491516,0.005565545056015253,1.1186745166778564,1.4097954034805298,1.444044828414917,1.0673003196716309,1.0844250917434692,0.5878071784973145,0.1425635814666748,0.7419299483299255,0.9816765189170837,0.6391814351081848,0.9303022623062134,1.324171543121338,1.033050775527954,1.563918113708496,1.101549744606018,0.5193081498146057,1.1186745166778564,0.9303022623062134,0.399434894323349,1.1186745166778564,0.9645517468452454,0.17681308090686798,0.21106259524822235,1.837914228439331,0.913177490234375,1.0159260034561157,0.10831406712532043,1.0501755475997925,1.255672574043274,1.375545859336853,1.5981676578521729,1.7522904872894287,1.7351657152175903,1.563918113708496,1.8550390005111694,1.7694151401519775,1.4611696004867554,1.444044828414917,1.5981676578521729,1.6666666269302368,1.563918113708496,2.094785451889038,1.9235379695892334,1.9235379695892334,2.0091617107391357,1.9235379695892334],[0.9474270343780518,0.9816765189170837,0.8618032336235046,1.1186745166778564,0.8104289770126343,1.101549744606018,0.8446784615516663,0.6220566630363464,0.8960527181625366,0.8446784615516663,0.005565545056015253,-0.14855724573135376,-0.7307988405227661,-0.42255330085754395,0.5878071784973145,1.1357992887496948,0.8275537490844727,-0.16568198800086975,-0.7307988405227661,-1.5699118375778198,-0.18280674517154694,0.8446784615516663,1.2042982578277588,1.2214230298995972,1.2727973461151123,1.4097954034805298,0.9474270343780518,0.5706824064254761,-0.26843053102493286,-1.4329137802124023,1.1529240608215332,0.9474270343780518,0.913177490234375,1.101549744606018,0.7076804637908936,0.5193081498146057,0.878928005695343,1.255672574043274,1.3926706314086914,1.2727973461151123,1.5981676578521729,1.2042982578277588,0.8960527181625366,1.1700488328933716,0.7419299483299255,0.9988012909889221,0.03981505334377289,0.21106259524822235,-0.08005822449922562,0.09118931740522385,0.2966863512992859,-0.14855724573135376,-0.2513057589530945,-0.028683962300419807,0.399434894323349,0.6905556917190552,1.2214230298995972,1.0673003196716309,0.9816765189170837,1.1186745166778564,0.9303022623062134,0.45080915093421936,-0.7992978692054749,-0.6965493559837341,-0.3198047876358032,-0.7992978692054749,-0.9705454111099243,-0.6794245839118958,-1.1417930126190186,-1.1417930126190186,-0.8335474133491516,-1.1931672096252441,-1.415789008140564,-0.9362959265708923,-0.542426586151123,0.2795616090297699,1.307046890258789,1.5125439167022705,1.6495418548583984,1.6152924299240112,1.718040943145752,1.8207894563674927,1.9235379695892334,1.9577875137329102,1.8892884254455566,2.0091617107391357,2.094785451889038,2.129034996032715,1.9749122858047485,2.1461598873138428,2.248908281326294,2.1461598873138428,2.214658737182617,2.094785451889038,2.0434112548828125,2.094785451889038,1.6495418548583984,1.5467933416366577,1.4782943725585938,1.1357992887496948,1.444044828414917,1.1700488328933716,1.101549744606018,1.0501755475997925,0.9816765189170837,1.2385478019714355,1.3412963151931763,1.5296686887741089,1.4954191446304321,1.7522904872894287,1.5467933416366577,1.6837913990020752,1.837914228439331,1.8892884254455566,1.9749122858047485,2.1804091930389404,1.7694151401519775,1.9235379695892334,1.6495418548583984,1.8892884254455566,2.214658737182617,2.094785451889038,1.9577875137329102,1.307046890258789,0.9303022623062134,1.5810428857803345,1.2727973461151123,1.0844250917434692,1.1529240608215332,-0.30268001556396484,-0.8506721258163452,-0.6109256148338318,0.7076804637908936,0.9988012909889221,0.8104289770126343,1.3412963151931763,1.255672574043274,1.18717360496521,0.5364329218864441,0.6563062071800232,1.5467933416366577,1.5467933416366577,1.255672574043274,1.18717360496521,0.6049319505691528,0.31381112337112427,-0.5595513582229614,1.375545859336853,1.6324172019958496,0.7933042049407959,0.3823101222515106,0.22818733751773834,0.8446784615516663,0.416559636592865,0.5878071784973145,0.3823101222515106,0.9816765189170837,-0.04580871760845184,1.375545859336853,1.2214230298995972,1.0673003196716309,0.2966863512992859,0.6049319505691528,1.6152924299240112,0.399434894323349,-1.5014127492904663,0.19393783807754517,-1.8610326051712036,-0.14855724573135376,-1.3815394639968872,-1.7411593198776245,-2.0665297508239746,-1.6384108066558838,0.399434894323349,0.8960527181625366,0.03981505334377289,-0.19993150234222412,1.0673003196716309,1.1700488328933716,0.7933042049407959,1.033050775527954,1.3584210872650146,1.2727973461151123,1.444044828414917,-0.19993150234222412,0.5878071784973145,1.1186745166778564,0.913177490234375,0.6905556917190552,1.3584210872650146,1.101549744606018,1.1186745166778564,1.101549744606018,0.9816765189170837,1.0844250917434692,1.033050775527954,0.9303022623062134,1.3926706314086914,1.033050775527954,0.5706824064254761,0.5878071784973145,1.906413197517395,1.444044828414917,1.3584210872650146,0.6391814351081848,1.101549744606018,1.324171543121338,1.7351657152175903,1.6837913990020752,1.6152924299240112,1.7694151401519775,1.7694151401519775,1.6495418548583984,1.5125439167022705,1.563918113708496,1.4097954034805298,1.4782943725585938,1.8036646842956543,1.6666666269302368,2.094785451889038,1.8721636533737183,1.7351657152175903,1.9577875137329102,1.8892884254455566],[0.913177490234375,1.1529240608215332,0.7248051762580872,0.433684378862381,1.1357992887496948,1.3926706314086914,0.9645517468452454,0.7590547204017639,0.6563062071800232,0.3823101222515106,0.5706824064254761,0.45080915093421936,0.6049319505691528,0.6220566630363464,0.878928005695343,1.0501755475997925,0.17681308090686798,-0.9705454111099243,-1.2787909507751465,-1.6555355787277222,-0.9362959265708923,-0.18280674517154694,-0.0971829816699028,0.9474270343780518,1.5125439167022705,0.7419299483299255,1.2899221181869507,0.7248051762580872,0.416559636592865,0.2795616090297699,0.878928005695343,1.1357992887496948,0.7419299483299255,0.8275537490844727,0.878928005695343,0.8446784615516663,1.1186745166778564,1.1357992887496948,1.2214230298995972,1.1700488328933716,1.563918113708496,1.1700488328933716,0.5364329218864441,0.36518537998199463,0.24531209468841553,0.2624368667602539,-1.0904186964035034,-1.1075434684753418,-1.004794955253601,-0.42255330085754395,0.022690298035740852,-0.8164226412773132,-0.06293346732854843,0.005565545056015253,-0.028683962300419807,0.21106259524822235,0.399434894323349,0.9474270343780518,-0.0971829816699028,0.19393783807754517,0.36518537998199463,-0.3711790442466736,-1.1760424375534058,-0.3540542721748352,-0.9705454111099243,-0.919171154499054,-1.1417930126190186,-1.535662293434143,-1.535662293434143,-1.3472900390625,-1.6212860345840454,-1.6384108066558838,-1.7411593198776245,-1.535662293434143,-1.3130404949188232,-0.5938008427619934,0.9645517468452454,1.3926706314086914,1.718040943145752,1.7009161710739136,1.8721636533737183,1.7694151401519775,1.8036646842956543,1.718040943145752,1.7522904872894287,1.837914228439331,2.0262866020202637,1.9577875137329102,2.1461598873138428,2.248908281326294,2.214658737182617,2.248908281326294,2.231783628463745,1.9749122858047485,1.9406627416610718,1.9577875137329102,1.5810428857803345,1.444044828414917,1.1529240608215332,0.9474270343780518,1.2385478019714355,1.1357992887496948,1.307046890258789,1.3412963151931763,1.2385478019714355,1.2899221181869507,1.5981676578521729,1.4611696004867554,1.6324172019958496,1.5125439167022705,1.6495418548583984,1.6666666269302368,1.7522904872894287,1.906413197517395,1.837914228439331,2.094785451889038,2.094785451889038,1.9920369386672974,2.0434112548828125,2.0776607990264893,2.0776607990264893,1.8550390005111694,1.6152924299240112,1.2214230298995972,0.21106259524822235,-0.42255330085754395,0.5364329218864441,0.7933042049407959,0.8618032336235046,0.17681308090686798,0.5535576939582825,-1.227416753768921,-0.7992978692054749,1.033050775527954,1.324171543121338,0.913177490234375,0.9816765189170837,1.0159260034561157,0.433684378862381,0.22818733751773834,0.9988012909889221,1.3584210872650146,1.5810428857803345,0.913177490234375,0.7076804637908936,-0.2341810017824173,-0.6794245839118958,1.7694151401519775,1.8721636533737183,1.6837913990020752,0.416559636592865,0.36518537998199463,0.7248051762580872,0.5878071784973145,0.8960527181625366,0.6391814351081848,0.913177490234375,-0.14855724573135376,0.7933042049407959,0.7076804637908936,1.1700488328933716,-0.6965493559837341,0.12543882429599762,2.1975340843200684,0.7419299483299255,-1.3644148111343384,0.399434894323349,-1.0561691522598267,0.33093586564064026,-0.9705454111099243,-1.8267830610275269,-1.9637811183929443,-1.1931672096252441,1.0501755475997925,0.17681308090686798,-0.01155920885503292,0.2624368667602539,1.2727973461151123,1.033050775527954,0.913177490234375,0.8446784615516663,1.0673003196716309,1.324171543121338,1.1186745166778564,-0.6109256148338318,-0.9534206986427307,0.07406456023454666,0.5364329218864441,0.7933042049407959,0.5193081498146057,1.101549744606018,1.033050775527954,0.8275537490844727,0.8618032336235046,0.9816765189170837,1.0159260034561157,1.18717360496521,1.2727973461151123,0.913177490234375,0.7590547204017639,1.307046890258789,0.6391814351081848,0.7419299483299255,-0.3369295299053192,0.7419299483299255,1.101549744606018,1.5125439167022705,1.563918113708496,1.718040943145752,1.563918113708496,1.7351657152175903,1.5981676578521729,1.7694151401519775,1.563918113708496,1.8036646842956543,1.2727973461151123,1.6837913990020752,1.563918113708496,1.718040943145752,1.9749122858047485,1.9749122858047485,1.8550390005111694,2.0434112548828125,2.0262866020202637],[0.8618032336235046,0.8275537490844727,0.7761794924736023,0.7248051762580872,1.0844250917434692,1.0501755475997925,0.8446784615516663,0.878928005695343,0.9303022623062134,1.033050775527954,0.8960527181625366,0.9816765189170837,0.8275537490844727,0.9988012909889221,1.0159260034561157,0.12543882429599762,-0.43967804312705994,-0.919171154499054,-1.2102919816970825,-1.1760424375534058,-1.3301652669906616,-0.9705454111099243,-0.4739275574684143,0.7590547204017639,0.6391814351081848,1.4611696004867554,1.5125439167022705,0.913177490234375,1.033050775527954,1.1357992887496948,0.7590547204017639,1.2214230298995972,0.7590547204017639,0.6220566630363464,0.8618032336235046,0.5364329218864441,1.1529240608215332,1.3412963151931763,1.3412963151931763,1.4097954034805298,1.2214230298995972,0.9474270343780518,0.8446784615516663,0.9988012909889221,0.6049319505691528,-0.0971829816699028,-0.7650483846664429,-1.2616662979125977,-1.0904186964035034,-0.8506721258163452,-1.1246682405471802,-0.576676070690155,0.022690298035740852,-0.11430773138999939,-0.028683962300419807,0.6391814351081848,0.8618032336235046,-0.08005822449922562,0.48505866527557373,-0.11430773138999939,-1.1075434684753418,-0.9362959265708923,-0.5938008427619934,-1.0561691522598267,-0.884921669960022,-1.1760424375534058,-1.6212860345840454,-2.032280206680298,-1.6212860345840454,-1.7754088640213013,-1.6384108066558838,-1.689785122871399,-1.809658408164978,-1.4500385522842407,-1.2445415258407593,0.5021833777427673,1.2214230298995972,1.3584210872650146,1.2727973461151123,1.4782943725585938,1.6324172019958496,1.718040943145752,1.7009161710739136,1.8036646842956543,1.8892884254455566,1.837914228439331,1.9749122858047485,1.9920369386672974,2.1461598873138428,2.248908281326294,2.0262866020202637,1.8892884254455566,2.0605359077453613,2.0605359077453613,1.9235379695892334,1.6152924299240112,1.3584210872650146,1.0501755475997925,1.1357992887496948,1.2214230298995972,1.1700488328933716,1.1529240608215332,1.4269200563430786,1.324171543121338,1.255672574043274,1.4097954034805298,1.4782943725585938,1.6666666269302368,1.6666666269302368,1.8721636533737183,1.786539912223816,1.837914228439331,2.094785451889038,1.8550390005111694,2.1461598873138428,1.9406627416610718,1.8892884254455566,2.214658737182617,2.0776607990264893,2.129034996032715,2.0262866020202637,1.718040943145752,1.3926706314086914,1.6495418548583984,0.6391814351081848,0.399434894323349,0.5706824064254761,0.2624368667602539,0.6391814351081848,0.8618032336235046,0.8104289770126343,-0.28555527329444885,-1.1589176654815674,-0.2513057589530945,1.033050775527954,1.255672574043274,0.9988012909889221,0.6391814351081848,0.6905556917190552,0.399434894323349,0.9645517468452454,0.9816765189170837,0.9988012909889221,1.0501755475997925,1.033050775527954,0.07406456023454666,0.03981505334377289,0.5193081498146057,1.9920369386672974,1.6837913990020752,1.3584210872650146,0.36518537998199463,-0.13143248856067657,-0.04580871760845184,1.0501755475997925,0.5364329218864441,-0.0971829816699028,0.022690298035740852,0.2966863512992859,0.7933042049407959,0.24531209468841553,-0.9020463824272156,-0.4910523295402527,0.399434894323349,-0.9876701831817627,-1.8952821493148804,-1.7240345478057861,-0.30268001556396484,-1.1589176654815674,-1.0561691522598267,-1.535662293434143,-1.7925336360931396,-0.3540542721748352,0.9988012909889221,0.7590547204017639,0.5706824064254761,0.7761794924736023,0.5706824064254761,0.7076804637908936,0.22818733751773834,1.375545859336853,1.5125439167022705,1.2385478019714355,1.3584210872650146,0.6049319505691528,-0.30268001556396484,-0.43967804312705994,-0.9876701831817627,-0.9020463824272156,-0.5253018140792847,0.2624368667602539,1.1357992887496948,1.1700488328933716,0.2966863512992859,0.5364329218864441,0.9303022623062134,1.1186745166778564,0.8960527181625366,1.2042982578277588,1.101549744606018,1.324171543121338,1.0844250917434692,-0.6794245839118958,0.399434894323349,1.2899221181869507,1.5296686887741089,1.8207894563674927,1.5981676578521729,1.8207894563674927,1.8207894563674927,1.6152924299240112,1.563918113708496,1.718040943145752,1.4269200563430786,1.4097954034805298,1.4611696004867554,1.7522904872894287,1.9406627416610718,1.9406627416610718,1.8550390005111694,2.0776607990264893,2.111910343170166,1.9577875137329102,2.0434112548828125],[0.7590547204017639,0.7419299483299255,0.7761794924736023,1.4097954034805298,1.1700488328933716,1.3412963151931763,1.3926706314086914,1.255672574043274,1.324171543121338,1.307046890258789,0.8960527181625366,0.9303022623062134,0.9303022623062134,0.6905556917190552,-0.11430773138999939,-0.5081770420074463,-0.7992978692054749,-1.0561691522598267,-1.1417930126190186,-1.0219197273254395,-1.2959157228469849,-1.7411593198776245,-1.689785122871399,-0.6109256148338318,0.07406456023454666,0.9816765189170837,0.5364329218864441,0.5535576939582825,0.9816765189170837,0.6734309196472168,0.9645517468452454,1.1186745166778564,0.7761794924736023,0.34806060791015625,0.416559636592865,0.6220566630363464,0.9303022623062134,1.1357992887496948,1.2727973461151123,0.913177490234375,0.6734309196472168,0.5535576939582825,0.21106259524822235,0.6391814351081848,0.7590547204017639,0.6220566630363464,0.6734309196472168,-0.5253018140792847,-0.4910523295402527,-1.4500385522842407,-1.0904186964035034,-0.3198047876358032,-0.0971829816699028,-0.04580871760845184,-0.5253018140792847,0.19393783807754517,-0.19993150234222412,0.6905556917190552,-0.7307988405227661,-0.919171154499054,-1.5014127492904663,-0.8164226412773132,-1.1075434684753418,-1.3301652669906616,-1.073293924331665,-1.7754088640213013,-1.1246682405471802,-1.6726603507995605,-1.7754088640213013,-1.7240345478057861,-1.7411593198776245,-1.9637811183929443,-1.4329137802124023,-0.8506721258163452,-0.19993150234222412,0.09118931740522385,0.48505866527557373,0.7590547204017639,1.1357992887496948,1.4611696004867554,1.4611696004867554,1.3584210872650146,1.7009161710739136,1.444044828414917,2.1975340843200684,2.129034996032715,2.1975340843200684,1.9235379695892334,2.0434112548828125,2.1632845401763916,2.0091617107391357,2.0091617107391357,1.8892884254455566,1.6324172019958496,1.5467933416366577,1.4097954034805298,1.2385478019714355,1.375545859336853,1.0844250917434692,1.255672574043274,1.4954191446304321,1.3584210872650146,1.4611696004867554,1.444044828414917,1.5125439167022705,1.7694151401519775,1.9235379695892334,1.8036646842956543,1.7694151401519775,2.0605359077453613,2.0776607990264893,1.9406627416610718,1.9577875137329102,1.8892884254455566,2.0434112548828125,2.1975340843200684,1.9577875137329102,1.9920369386672974,1.9235379695892334,2.1804091930389404,2.0776607990264893,1.8892884254455566,1.3584210872650146,1.3926706314086914,1.1357992887496948,0.31381112337112427,0.8275537490844727,0.31381112337112427,-0.576676070690155,0.6905556917190552,0.3823101222515106,0.1425635814666748,-0.30268001556396484,-1.5185375213623047,-0.8506721258163452,0.5364329218864441,0.5021833777427673,0.7248051762580872,0.45080915093421936,0.6220566630363464,0.005565545056015253,0.7761794924736023,0.005565545056015253,-0.06293346732854843,0.5193081498146057,0.22818733751773834,-0.28555527329444885,-0.4739275574684143,2.111910343170166,1.8207894563674927,1.0673003196716309,0.1596883237361908,-0.19993150234222412,-0.0971829816699028,-0.2170562595129013,0.7590547204017639,-0.01155920885503292,0.8104289770126343,0.07406456023454666,-0.11430773138999939,-0.9020463824272156,-0.7821731567382812,-1.3815394639968872,-0.06293346732854843,-1.3130404949188232,0.9988012909889221,0.056939806789159775,-1.0390443801879883,-0.9876701831817627,-1.3130404949188232,-1.5699118375778198,-1.6212860345840454,0.24531209468841553,1.2214230298995972,1.1700488328933716,1.4954191446304321,1.4269200563430786,0.2624368667602539,1.324171543121338,0.7933042049407959,1.2727973461151123,1.5296686887741089,1.0844250917434692,1.0159260034561157,-0.16568198800086975,0.6220566630363464,0.1596883237361908,-0.2170562595129013,-0.3369295299053192,-0.28555527329444885,-0.26843053102493286,-0.14855724573135376,-0.04580871760845184,-0.3540542721748352,-0.5938008427619934,-0.6451750993728638,-0.6794245839118958,-1.3986642360687256,-1.2102919816970825,-1.3472900390625,-0.7307988405227661,-0.4910523295402527,0.8275537490844727,1.9235379695892334,1.9406627416610718,1.8892884254455566,1.7694151401519775,1.6666666269302368,1.8550390005111694,1.6152924299240112,1.444044828414917,1.4269200563430786,1.5810428857803345,1.6666666269302368,1.5981676578521729,1.6837913990020752,1.9235379695892334,2.0262866020202637,2.0605359077453613,2.0091617107391357,1.9749122858047485,1.8721636533737183,1.9235379695892334,1.8892884254455566],[0.7248051762580872,0.913177490234375,0.7761794924736023,1.1186745166778564,1.307046890258789,1.324171543121338,1.2899221181869507,1.324171543121338,1.0159260034561157,1.1700488328933716,0.9303022623062134,0.7590547204017639,0.6220566630363464,0.45080915093421936,0.34806060791015625,0.33093586564064026,0.5021833777427673,0.45080915093421936,0.5021833777427673,-0.3711790442466736,-1.9637811183929443,-1.4842880964279175,-1.7411593198776245,-0.8335474133491516,-0.5938008427619934,0.36518537998199463,-0.43967804312705994,0.5878071784973145,0.5021833777427673,0.6563062071800232,0.9474270343780518,1.0159260034561157,1.1186745166778564,0.433684378862381,-0.01155920885503292,0.8960527181625366,0.7933042049407959,1.0501755475997925,0.878928005695343,0.5021833777427673,0.17681308090686798,0.6734309196472168,0.3823101222515106,0.5706824064254761,0.8960527181625366,0.45080915093421936,0.5535576939582825,0.2624368667602539,-1.0561691522598267,-1.6726603507995605,-0.7307988405227661,-0.40542855858802795,0.10831406712532043,-1.0219197273254395,-0.6794245839118958,-0.542426586151123,-0.5595513582229614,-1.1589176654815674,-1.0390443801879883,-1.3986642360687256,-1.227416753768921,-0.4739275574684143,-0.8164226412773132,-1.5870366096496582,-1.809658408164978,-1.5870366096496582,-1.4842880964279175,-1.878157377243042,-1.998030662536621,-1.8610326051712036,-1.8610326051712036,-1.7925336360931396,-1.415789008140564,-1.227416753768921,-1.2445415258407593,-0.8335474133491516,-0.5938008427619934,0.6734309196472168,1.1529240608215332,0.9816765189170837,1.4097954034805298,1.5125439167022705,1.4611696004867554,2.0434112548828125,2.129034996032715,2.1975340843200684,2.1632845401763916,2.248908281326294,2.248908281326294,2.248908281326294,2.0605359077453613,1.8550390005111694,1.6324172019958496,1.563918113708496,1.1700488328933716,1.18717360496521,1.0673003196716309,1.1529240608215332,1.2214230298995972,1.3926706314086914,1.4269200563430786,1.5125439167022705,1.4954191446304321,1.4782943725585938,1.7009161710739136,1.9406627416610718,1.563918113708496,1.8550390005111694,2.0091617107391357,1.786539912223816,2.094785451889038,2.0091617107391357,2.129034996032715,2.1975340843200684,2.1632845401763916,2.0434112548828125,1.8721636533737183,2.1804091930389404,2.0776607990264893,1.8550390005111694,1.837914228439331,1.4782943725585938,1.6324172019958496,1.6324172019958496,1.5296686887741089,0.5706824064254761,1.0844250917434692,0.3823101222515106,-0.5081770420074463,-1.3301652669906616,-0.4910523295402527,0.19393783807754517,0.7248051762580872,-0.2170562595129013,-0.6622998714447021,0.12543882429599762,0.5535576939582825,0.8275537490844727,0.8104289770126343,0.8960527181625366,0.21106259524822235,0.19393783807754517,0.022690298035740852,-0.5595513582229614,-0.3711790442466736,0.36518537998199463,-0.5081770420074463,0.07406456023454666,1.7694151401519775,1.7351657152175903,-0.18280674517154694,0.10831406712532043,-0.13143248856067657,0.22818733751773834,0.48505866527557373,0.9988012909889221,0.7590547204017639,0.8618032336235046,1.255672574043274,0.8104289770126343,-0.2341810017824173,-0.3540542721748352,1.837914228439331,0.12543882429599762,1.906413197517395,-0.919171154499054,-0.9705454111099243,-0.6622998714447021,-0.9534206986427307,-1.073293924331665,-1.0219197273254395,-1.2787909507751465,-0.16568198800086975,1.1186745166778564,1.5810428857803345,1.4097954034805298,0.9474270343780518,1.2727973461151123,1.2385478019714355,1.6495418548583984,1.375545859336853,1.307046890258789,1.2899221181869507,-0.2170562595129013,-1.7240345478057861,0.6220566630363464,0.416559636592865,0.416559636592865,0.46793389320373535,0.2966863512992859,-0.01155920885503292,0.1425635814666748,-0.01155920885503292,-0.2513057589530945,-0.6109256148338318,-0.6794245839118958,-0.9020463824272156,-1.0390443801879883,-1.1760424375534058,-0.7650483846664429,-0.40542855858802795,1.0159260034561157,1.5467933416366577,1.8550390005111694,1.9577875137329102,1.7522904872894287,1.8892884254455566,1.7522904872894287,1.7522904872894287,1.4097954034805298,1.2899221181869507,1.4269200563430786,1.563918113708496,1.2727973461151123,1.4097954034805298,1.8036646842956543,1.906413197517395,1.8721636533737183,1.9577875137329102,1.9406627416610718,2.0091617107391357,2.0262866020202637,1.9749122858047485,1.786539912223816],[0.8618032336235046,0.9816765189170837,0.6905556917190552,0.7761794924736023,1.0673003196716309,0.7419299483299255,1.2385478019714355,0.8275537490844727,0.6391814351081848,0.6734309196472168,0.31381112337112427,0.399434894323349,0.3823101222515106,0.433684378862381,0.5364329218864441,0.8960527181625366,0.8275537490844727,1.101549744606018,1.033050775527954,0.9474270343780518,0.17681308090686798,-1.758284091949463,-1.998030662536621,-1.6726603507995605,-1.2959157228469849,-1.1589176654815674,0.022690298035740852,-0.2341810017824173,1.0673003196716309,0.416559636592865,1.1529240608215332,0.9988012909889221,0.8618032336235046,0.45080915093421936,0.1425635814666748,0.9303022623062134,0.8275537490844727,0.8446784615516663,0.7248051762580872,0.21106259524822235,0.9303022623062134,0.6905556917190552,0.5364329218864441,-0.028683962300419807,0.433684378862381,0.416559636592865,0.9816765189170837,0.5535576939582825,-1.1589176654815674,-0.8335474133491516,-0.13143248856067657,-0.4910523295402527,0.10831406712532043,-0.28555527329444885,-1.1417930126190186,-1.0390443801879883,-0.01155920885503292,-1.3472900390625,-1.0219197273254395,-1.1417930126190186,-0.7992978692054749,-1.0904186964035034,-1.4842880964279175,-1.809658408164978,-1.758284091949463,-1.2959157228469849,-1.878157377243042,-1.7069098949432373,-1.758284091949463,-1.8439078330993652,-1.8439078330993652,-1.8439078330993652,-1.5699118375778198,-1.7754088640213013,-1.7925336360931396,-1.1417930126190186,-0.2513057589530945,0.48505866527557373,1.1186745166778564,1.3584210872650146,1.1700488328933716,1.444044828414917,2.248908281326294,2.0605359077453613,2.248908281326294,2.1975340843200684,2.0091617107391357,2.248908281326294,2.111910343170166,1.786539912223816,1.837914228439331,1.6666666269302368,1.6152924299240112,1.2214230298995972,1.2214230298995972,1.307046890258789,1.307046890258789,1.2042982578277588,1.4954191446304321,1.3584210872650146,1.4782943725585938,1.5125439167022705,1.6666666269302368,1.6666666269302368,1.8550390005111694,1.906413197517395,2.0262866020202637,1.8892884254455566,1.9577875137329102,1.9749122858047485,1.9920369386672974,2.214658737182617,2.0434112548828125,2.094785451889038,1.9749122858047485,2.214658737182617,2.248908281326294,1.7009161710739136,1.6666666269302368,1.5810428857803345,1.4269200563430786,0.9988012909889221,1.324171543121338,1.324171543121338,1.1357992887496948,0.03981505334377289,0.5364329218864441,0.7590547204017639,0.056939806789159775,-0.6451750993728638,-1.0219197273254395,0.3823101222515106,0.6905556917190552,0.6220566630363464,-0.28555527329444885,-0.919171154499054,0.33093586564064026,0.3823101222515106,0.878928005695343,0.31381112337112427,0.46793389320373535,-0.04580871760845184,-0.5938008427619934,-0.884921669960022,-1.4329137802124023,-1.1931672096252441,-1.2102919816970825,0.24531209468841553,2.0091617107391357,1.2385478019714355,0.6734309196472168,0.433684378862381,-1.0561691522598267,-0.18280674517154694,0.21106259524822235,1.0501755475997925,0.9474270343780518,0.7419299483299255,1.2727973461151123,1.6837913990020752,0.10831406712532043,-0.16568198800086975,-0.5938008427619934,-0.40542855858802795,-1.6555355787277222,0.7419299483299255,-0.3540542721748352,-0.4568028151988983,-0.576676070690155,-0.8506721258163452,-1.004794955253601,-1.227416753768921,-1.073293924331665,1.0159260034561157,1.5125439167022705,1.0159260034561157,1.101549744606018,1.033050775527954,1.0159260034561157,0.8104289770126343,0.9645517468452454,0.8104289770126343,1.1700488328933716,-0.4910523295402527,-2.01515531539917,0.7419299483299255,0.7761794924736023,0.7076804637908936,0.6563062071800232,0.6049319505691528,0.33093586564064026,0.09118931740522385,0.09118931740522385,-0.06293346732854843,-0.11430773138999939,-0.4739275574684143,-0.7479236125946045,-0.919171154499054,-0.9020463824272156,-0.26843053102493286,0.33093586564064026,1.3584210872650146,1.7009161710739136,2.0776607990264893,1.786539912223816,1.7694151401519775,1.7351657152175903,1.786539912223816,1.563918113708496,1.4269200563430786,1.375545859336853,1.4097954034805298,1.5125439167022705,1.7694151401519775,1.4782943725585938,1.9235379695892334,1.8207894563674927,2.0262866020202637,1.9920369386672974,2.0262866020202637,2.0605359077453613,1.9577875137329102,1.6495418548583984,1.6495418548583984],[0.8104289770126343,0.7076804637908936,0.21106259524822235,0.7933042049407959,0.5364329218864441,0.7933042049407959,0.9303022623062134,0.9645517468452454,0.6905556917190552,0.5364329218864441,0.07406456023454666,-0.04580871760845184,-0.2513057589530945,-0.028683962300419807,0.5193081498146057,0.7076804637908936,0.9988012909889221,1.2214230298995972,0.878928005695343,0.7933042049407959,0.10831406712532043,-1.5699118375778198,-1.946656346321106,-1.1417930126190186,-1.1589176654815674,-1.0219197273254395,0.31381112337112427,-0.01155920885503292,1.2214230298995972,0.5706824064254761,0.7248051762580872,0.6049319505691528,0.5364329218864441,0.6905556917190552,0.07406456023454666,0.33093586564064026,0.7419299483299255,0.416559636592865,0.5878071784973145,1.1700488328933716,0.45080915093421936,0.7419299483299255,-0.04580871760845184,-1.1075434684753418,-1.3644148111343384,-0.30268001556396484,-0.2170562595129013,-0.028683962300419807,-0.9534206986427307,-0.42255330085754395,0.10831406712532043,-0.19993150234222412,-0.4568028151988983,-0.8677968978881836,-0.9362959265708923,-0.7479236125946045,-1.1760424375534058,-1.689785122871399,-1.3986642360687256,-0.9705454111099243,-0.9876701831817627,-1.9809058904647827,-1.535662293434143,-1.227416753768921,-1.3301652669906616,-1.998030662536621,-1.604161262512207,-1.6384108066558838,-1.689785122871399,-2.0836544036865234,-1.9295316934585571,-1.7925336360931396,-1.8610326051712036,-1.9124069213867188,-1.8267830610275269,-1.0904186964035034,-0.2341810017824173,0.46793389320373535,1.0673003196716309,1.101549744606018,2.0776607990264893,2.1461598873138428,2.1804091930389404,2.248908281326294,2.248908281326294,2.111910343170166,2.231783628463745,1.837914228439331,1.8036646842956543,1.6324172019958496,1.7351657152175903,1.4782943725585938,1.4097954034805298,1.2727973461151123,1.307046890258789,1.0844250917434692,1.1529240608215332,1.4097954034805298,1.4782943725585938,1.563918113708496,1.6152924299240112,1.6837913990020752,1.7009161710739136,1.718040943145752,1.8036646842956543,1.9577875137329102,2.1804091930389404,1.786539912223816,2.1632845401763916,1.8550390005111694,2.0605359077453613,2.094785451889038,2.248908281326294,2.248908281326294,2.248908281326294,1.9749122858047485,2.0605359077453613,1.9577875137329102,1.837914228439331,1.9406627416610718,1.6152924299240112,1.2042982578277588,1.7351657152175903,0.8960527181625366,0.9303022623062134,1.0501755475997925,0.9474270343780518,-0.3711790442466736,-0.4739275574684143,-0.3369295299053192,-0.2170562595129013,-1.4842880964279175,-0.28555527329444885,-0.42255330085754395,0.48505866527557373,-0.576676070690155,-0.08005822449922562,0.005565545056015253,0.416559636592865,-0.2170562595129013,0.2624368667602539,0.2624368667602539,-0.14855724573135376,-0.542426586151123,-0.7821731567382812,-1.0561691522598267,-1.0219197273254395,-0.7650483846664429,1.5467933416366577,0.3823101222515106,0.8618032336235046,1.0673003196716309,-0.4739275574684143,-0.0971829816699028,0.5193081498146057,0.9645517468452454,0.913177490234375,-0.11430773138999939,1.7009161710739136,1.8550390005111694,0.12543882429599762,0.1596883237361908,2.214658737182617,1.3412963151931763,1.5810428857803345,0.03981505334377289,0.12543882429599762,-0.5253018140792847,-0.30268001556396484,-0.5081770420074463,-0.8335474133491516,-0.9705454111099243,-0.6965493559837341,0.022690298035740852,0.7076804637908936,1.5296686887741089,1.375545859336853,1.4611696004867554,0.7933042049407959,1.1529240608215332,1.2385478019714355,1.5125439167022705,0.7419299483299255,-0.8164226412773132,-0.8677968978881836,0.433684378862381,1.307046890258789,0.9988012909889221,0.9988012909889221,1.0159260034561157,0.5193081498146057,0.5193081498146057,0.399434894323349,0.2795616090297699,0.1596883237361908,-0.19993150234222412,-0.16568198800086975,-0.4910523295402527,-0.5938008427619934,0.19393783807754517,1.0501755475997925,1.4611696004867554,2.0434112548828125,1.837914228439331,1.7009161710739136,1.7351657152175903,1.8721636533737183,1.6324172019958496,1.2214230298995972,1.3412963151931763,1.3412963151931763,1.307046890258789,1.375545859336853,1.718040943145752,1.837914228439331,2.0776607990264893,2.1632845401763916,1.9577875137329102,1.9577875137329102,1.8550390005111694,1.9920369386672974,2.0434112548828125,1.6495418548583984,2.111910343170166],[1.0501755475997925,0.9645517468452454,0.8960527181625366,0.3823101222515106,0.21106259524822235,0.33093586564064026,0.6563062071800232,0.8104289770126343,1.0159260034561157,0.9645517468452454,0.8960527181625366,0.5706824064254761,-0.08005822449922562,-0.7821731567382812,-0.3369295299053192,-0.0971829816699028,0.3823101222515106,1.033050775527954,1.4097954034805298,1.2385478019714355,1.2042982578277588,-0.3198047876358032,-0.6622998714447021,-0.6109256148338318,-0.6109256148338318,-0.2170562595129013,0.8446784615516663,0.48505866527557373,1.2214230298995972,0.5706824064254761,0.9816765189170837,0.5535576939582825,-0.40542855858802795,-0.3198047876358032,0.022690298035740852,0.5535576939582825,0.9645517468452454,0.36518537998199463,1.2727973461151123,1.1186745166778564,0.46793389320373535,0.9816765189170837,0.2795616090297699,0.005565545056015253,-1.535662293434143,-1.0561691522598267,-0.9534206986427307,-0.3369295299053192,-0.6280503273010254,-0.2170562595129013,-0.08005822449922562,-1.3472900390625,-1.4842880964279175,-1.1931672096252441,-1.2959157228469849,-0.6622998714447021,-0.6451750993728638,-0.8506721258163452,-1.7069098949432373,-1.1075434684753418,-1.1246682405471802,-1.1075434684753418,-1.467163324356079,-1.5014127492904663,-1.535662293434143,-1.4500385522842407,-2.0494048595428467,-1.7411593198776245,-1.946656346321106,-1.535662293434143,-1.689785122871399,-1.6384108066558838,-2.0494048595428467,-1.9124069213867188,-1.8267830610275269,-1.467163324356079,-0.2341810017824173,0.2795616090297699,0.8960527181625366,2.1804091930389404,2.0776607990264893,2.248908281326294,2.129034996032715,1.906413197517395,2.0605359077453613,1.786539912223816,2.129034996032715,1.8721636533737183,1.7522904872894287,1.5810428857803345,1.5125439167022705,1.255672574043274,1.255672574043274,1.2042982578277588,1.101549744606018,1.3926706314086914,1.4611696004867554,1.3926706314086914,1.563918113708496,1.718040943145752,1.786539912223816,1.7522904872894287,1.6152924299240112,1.8550390005111694,2.0262866020202637,2.0091617107391357,2.0434112548828125,1.9920369386672974,2.0605359077453613,2.248908281326294,2.129034996032715,2.214658737182617,2.1461598873138428,1.8036646842956543,1.8721636533737183,1.8892884254455566,1.7522904872894287,1.7009161710739136,1.5981676578521729,1.5467933416366577,1.4782943725585938,1.375545859336853,1.1529240608215332,1.4269200563430786,1.1529240608215332,1.1357992887496948,1.906413197517395,0.9988012909889221,-1.1931672096252441,-1.1246682405471802,-0.5081770420074463,-1.1931672096252441,-1.5699118375778198,0.5706824064254761,-0.28555527329444885,-0.13143248856067657,-0.8677968978881836,-0.26843053102493286,-0.11430773138999939,0.2795616090297699,0.31381112337112427,0.33093586564064026,0.7076804637908936,-0.5253018140792847,-0.13143248856067657,-0.2341810017824173,-0.08005822449922562,2.0262866020202637,0.8104289770126343,0.7761794924736023,0.8960527181625366,1.2214230298995972,-0.2341810017824173,-0.04580871760845184,0.6220566630363464,1.0159260034561157,0.8618032336235046,-0.16568198800086975,1.1357992887496948,1.9235379695892334,0.6563062071800232,0.8618032336235046,-0.3369295299053192,-0.3711790442466736,0.2966863512992859,-0.0971829816699028,0.10831406712532043,0.022690298035740852,-0.2341810017824173,-0.2341810017824173,-0.26843053102493286,-0.5595513582229614,-0.43967804312705994,-0.9705454111099243,0.09118931740522385,1.5467933416366577,1.7522904872894287,1.324171543121338,1.255672574043274,1.444044828414917,1.5296686887741089,1.1529240608215332,0.1596883237361908,-0.8506721258163452,-0.40542855858802795,0.6563062071800232,1.307046890258789,1.1186745166778564,0.7076804637908936,0.6734309196472168,0.7419299483299255,0.6905556917190552,0.6049319505691528,0.416559636592865,0.03981505334377289,0.2966863512992859,-0.16568198800086975,-0.30268001556396484,-0.16568198800086975,1.1357992887496948,1.307046890258789,1.8550390005111694,1.9920369386672974,1.9577875137329102,1.6837913990020752,1.6324172019958496,1.563918113708496,1.5467933416366577,1.2385478019714355,1.1529240608215332,1.2042982578277588,1.8036646842956543,1.4782943725585938,2.0605359077453613,2.0605359077453613,1.7351657152175903,1.8550390005111694,1.786539912223816,1.8892884254455566,1.7522904872894287,2.0605359077453613,2.0262866020202637,1.8550390005111694,1.6837913990020752],[1.2042982578277588,0.7761794924736023,0.8104289770126343,0.2624368667602539,0.17681308090686798,0.17681308090686798,0.46793389320373535,0.6905556917190552,1.2899221181869507,0.7248051762580872,0.8275537490844727,0.6220566630363464,-0.028683962300419807,-0.06293346732854843,-0.028683962300419807,0.7419299483299255,1.033050775527954,0.9474270343780518,1.1529240608215332,1.2042982578277588,0.5706824064254761,0.6563062071800232,0.8618032336235046,1.2899221181869507,0.8960527181625366,0.5535576939582825,0.022690298035740852,-0.5253018140792847,0.5364329218864441,0.433684378862381,0.433684378862381,0.3823101222515106,-0.08005822449922562,-0.576676070690155,-0.16568198800086975,0.2966863512992859,-0.06293346732854843,0.878928005695343,0.7933042049407959,0.17681308090686798,0.24531209468841553,0.8104289770126343,0.31381112337112427,0.10831406712532043,-1.4329137802124023,-1.6384108066558838,-1.227416753768921,-1.004794955253601,-0.6622998714447021,0.022690298035740852,-0.2513057589530945,-1.5185375213623047,-1.3644148111343384,-1.3472900390625,-0.7136741280555725,-0.3711790442466736,-0.28555527329444885,-0.7821731567382812,-0.9534206986427307,0.056939806789159775,-1.3130404949188232,-1.5185375213623047,-1.9124069213867188,-1.8952821493148804,-1.8267830610275269,-2.0665297508239746,-1.758284091949463,-1.1760424375534058,-1.6555355787277222,-1.8267830610275269,-1.6384108066558838,-2.01515531539917,-2.032280206680298,-2.0494048595428467,-1.7925336360931396,-0.9705454111099243,-0.14855724573135376,0.8618032336235046,2.094785451889038,2.248908281326294,2.248908281326294,2.094785451889038,1.9749122858047485,2.129034996032715,2.0605359077453613,1.837914228439331,1.5810428857803345,1.718040943145752,1.6324172019958496,1.4782943725585938,1.2214230298995972,1.375545859336853,1.2385478019714355,1.4269200563430786,1.375545859336853,1.2385478019714355,1.4611696004867554,1.6495418548583984,1.7694151401519775,1.8207894563674927,1.7522904872894287,2.111910343170166,1.9235379695892334,1.8207894563674927,2.0434112548828125,2.0091617107391357,1.9749122858047485,1.9920369386672974,1.906413197517395,1.9749122858047485,2.0605359077453613,2.214658737182617,2.111910343170166,2.0434112548828125,1.906413197517395,1.4611696004867554,1.5981676578521729,1.2385478019714355,2.111910343170166,1.563918113708496,1.6837913990020752,1.7009161710739136,1.8721636533737183,1.718040943145752,1.4954191446304321,0.913177490234375,1.3584210872650146,0.09118931740522385,0.8960527181625366,-1.6212860345840454,0.12543882429599762,-0.5938008427619934,-1.1246682405471802,-1.4329137802124023,-0.7307988405227661,-0.3540542721748352,-0.4739275574684143,-0.8335474133491516,-0.3540542721748352,0.21106259524822235,0.5535576939582825,0.36518537998199463,0.433684378862381,0.07406456023454666,0.33093586564064026,0.1425635814666748,-0.4910523295402527,1.786539912223816,0.2966863512992859,0.8618032336235046,1.1529240608215332,1.101549744606018,-0.0971829816699028,0.2795616090297699,0.5535576939582825,1.2727973461151123,0.48505866527557373,-0.43967804312705994,-0.4739275574684143,1.307046890258789,1.033050775527954,1.2899221181869507,1.4954191446304321,0.9988012909889221,0.10831406712532043,0.48505866527557373,0.2795616090297699,0.12543882429599762,-0.028683962300419807,-0.26843053102493286,-0.28555527329444885,-0.3883037865161896,-0.30268001556396484,-0.6451750993728638,-0.7821731567382812,1.5296686887741089,1.7351657152175903,1.2385478019714355,1.324171543121338,1.7009161710739136,1.5810428857803345,0.7761794924736023,-0.3883037865161896,-1.6212860345840454,1.1186745166778564,1.307046890258789,1.2899221181869507,0.9645517468452454,0.8446784615516663,0.8275537490844727,0.8104289770126343,0.5364329218864441,0.6220566630363464,0.31381112337112427,0.31381112337112427,0.12543882429599762,0.005565545056015253,-0.30268001556396484,0.5535576939582825,1.375545859336853,1.5810428857803345,1.8550390005111694,1.7351657152175903,2.0605359077453613,1.6495418548583984,1.718040943145752,1.6837913990020752,1.3926706314086914,1.324171543121338,1.375545859336853,1.5296686887741089,1.9749122858047485,1.7351657152175903,1.9920369386672974,2.0091617107391357,2.0605359077453613,2.0776607990264893,2.0776607990264893,1.8721636533737183,1.9920369386672974,1.8721636533737183,1.8550390005111694,1.7522904872894287,1.906413197517395],[1.4954191446304321,0.8618032336235046,0.5193081498146057,0.1425635814666748,0.2966863512992859,-0.13143248856067657,0.24531209468841553,0.31381112337112427,0.7590547204017639,0.878928005695343,0.7761794924736023,0.6905556917190552,0.5535576939582825,0.6905556917190552,0.8104289770126343,0.9988012909889221,1.0159260034561157,0.9816765189170837,1.3412963151931763,0.8960527181625366,1.2727973461151123,1.4611696004867554,0.6391814351081848,0.9645517468452454,1.375545859336853,0.6220566630363464,0.33093586564064026,-1.0561691522598267,-0.0971829816699028,0.2795616090297699,-0.0971829816699028,-0.14855724573135376,-0.2170562595129013,-0.6109256148338318,-0.04580871760845184,0.1425635814666748,-0.18280674517154694,0.48505866527557373,0.21106259524822235,-0.28555527329444885,-0.3369295299053192,0.6391814351081848,0.3823101222515106,0.19393783807754517,-1.073293924331665,-1.8610326051712036,-1.5527870655059814,-0.8335474133491516,-0.13143248856067657,0.24531209468841553,-0.43967804312705994,-1.415789008140564,-1.5185375213623047,-1.6212860345840454,-1.2959157228469849,-1.3644148111343384,-1.3815394639968872,-1.467163324356079,-1.1246682405471802,-1.946656346321106,-1.1075434684753418,-1.604161262512207,-1.6384108066558838,-1.9809058904647827,-1.6384108066558838,-1.2959157228469849,-1.6212860345840454,-1.5870366096496582,-1.9809058904647827,-1.8610326051712036,-1.878157377243042,-1.946656346321106,-2.1179039478302,-1.6384108066558838,-1.415789008140564,-0.7821731567382812,1.1186745166778564,2.231783628463745,2.0605359077453613,2.248908281326294,2.214658737182617,2.0091617107391357,2.1461598873138428,1.9235379695892334,1.7522904872894287,1.837914228439331,1.6495418548583984,1.6152924299240112,1.5981676578521729,1.324171543121338,1.375545859336853,1.324171543121338,1.255672574043274,1.4097954034805298,1.4611696004867554,1.7009161710739136,1.5810428857803345,1.7522904872894287,1.9406627416610718,1.8550390005111694,2.0776607990264893,1.8721636533737183,2.0776607990264893,1.906413197517395,2.248908281326294,1.9920369386672974,2.1461598873138428,2.248908281326294,2.094785451889038,2.0434112548828125,2.1461598873138428,1.8721636533737183,2.111910343170166,2.0434112548828125,2.0262866020202637,2.0434112548828125,1.786539912223816,1.6666666269302368,1.6837913990020752,1.5810428857803345,1.4097954034805298,1.5981676578521729,1.8892884254455566,1.101549744606018,2.0434112548828125,1.4611696004867554,1.9406627416610718,0.21106259524822235,0.31381112337112427,-0.6794245839118958,-1.2445415258407593,-0.3711790442466736,-1.2616662979125977,-1.5527870655059814,-0.884921669960022,-0.919171154499054,-0.028683962300419807,-0.11430773138999939,-1.004794955253601,0.45080915093421936,-0.30268001556396484,0.6563062071800232,0.5364329218864441,0.5021833777427673,-1.758284091949463,-0.7479236125946045,-0.3540542721748352,1.2727973461151123,0.7076804637908936,1.3412963151931763,1.255672574043274,0.6734309196472168,0.6391814351081848,0.21106259524822235,0.5535576939582825,0.9303022623062134,0.48505866527557373,-0.28555527329444885,-0.14855724573135376,1.255672574043274,1.6495418548583984,1.0844250917434692,1.4269200563430786,1.1357992887496948,0.5878071784973145,0.416559636592865,0.24531209468841553,0.2624368667602539,0.2966863512992859,0.022690298035740852,0.03981505334377289,-0.04580871760845184,-0.0971829816699028,-0.2170562595129013,-0.42255330085754395,0.46793389320373535,1.4097954034805298,1.5810428857803345,1.2042982578277588,1.5467933416366577,1.8721636533737183,0.913177490234375,-1.0561691522598267,0.1596883237361908,1.5296686887741089,1.4954191446304321,1.307046890258789,1.563918113708496,0.6734309196472168,0.9645517468452454,0.8618032336235046,0.6734309196472168,0.45080915093421936,0.46793389320373535,0.21106259524822235,0.22818733751773834,-0.11430773138999939,0.22818733751773834,1.3412963151931763,1.5981676578521729,1.786539912223816,1.9577875137329102,1.8207894563674927,1.7522904872894287,1.5467933416366577,1.255672574043274,1.101549744606018,1.307046890258789,1.255672574043274,1.2042982578277588,1.324171543121338,1.9235379695892334,2.1804091930389404,1.786539912223816,1.9577875137329102,2.0605359077453613,2.1632845401763916,2.1975340843200684,1.837914228439331,2.0091617107391357,2.0091617107391357,1.8036646842956543,2.0434112548828125,1.5125439167022705],[2.0605359077453613,1.4269200563430786,0.9303022623062134,0.9474270343780518,0.3823101222515106,-0.11430773138999939,-0.3198047876358032,-0.01155920885503292,0.7933042049407959,0.6734309196472168,0.8618032336235046,0.5193081498146057,0.7419299483299255,0.8446784615516663,0.9816765189170837,0.7248051762580872,0.9988012909889221,1.1186745166778564,0.8960527181625366,1.033050775527954,1.5467933416366577,0.9988012909889221,0.433684378862381,0.24531209468841553,-1.3986642360687256,0.12543882429599762,-2.0836544036865234,-1.6726603507995605,-1.3986642360687256,-0.6794245839118958,-0.19993150234222412,-0.7650483846664429,-1.004794955253601,-0.7821731567382812,-0.11430773138999939,0.48505866527557373,0.9816765189170837,0.8104289770126343,0.5021833777427673,0.913177490234375,1.2214230298995972,1.2385478019714355,0.399434894323349,0.21106259524822235,0.005565545056015253,-0.7821731567382812,-0.9020463824272156,-0.542426586151123,-0.028683962300419807,-0.0971829816699028,-0.9705454111099243,-1.946656346321106,-1.7925336360931396,-0.7992978692054749,-2.0665297508239746,-0.542426586151123,-0.9020463824272156,-1.0219197273254395,-1.7754088640213013,-1.467163324356079,-1.1417930126190186,-1.073293924331665,-1.7069098949432373,-1.3130404949188232,-1.9124069213867188,-1.6384108066558838,-1.7925336360931396,-1.8610326051712036,-2.0494048595428467,-1.998030662536621,-2.01515531539917,-2.1007792949676514,-1.7925336360931396,-1.1417930126190186,1.1357992887496948,2.1632845401763916,2.129034996032715,2.1975340843200684,2.094785451889038,2.094785451889038,2.111910343170166,2.0091617107391357,2.1975340843200684,1.718040943145752,1.7522904872894287,1.6324172019958496,1.375545859336853,1.4782943725585938,1.307046890258789,1.3926706314086914,1.2385478019714355,1.2899221181869507,1.5125439167022705,1.5810428857803345,1.5810428857803345,1.718040943145752,1.7351657152175903,1.786539912223816,1.7694151401519775,1.8721636533737183,1.6837913990020752,2.0605359077453613,1.9749122858047485,1.8036646842956543,2.0434112548828125,1.9577875137329102,1.9749122858047485,2.1461598873138428,2.1461598873138428,2.111910343170166,2.1804091930389404,1.8892884254455566,1.9406627416610718,2.094785451889038,2.0776607990264893,1.375545859336853,1.8036646842956543,1.5125439167022705,1.8550390005111694,1.7351657152175903,1.5810428857803345,1.9577875137329102,1.9406627416610718,1.718040943145752,1.5467933416366577,1.1529240608215332,1.5467933416366577,1.6152924299240112,0.46793389320373535,-0.18280674517154694,0.2795616090297699,-1.073293924331665,-0.2170562595129013,-0.19993150234222412,-1.3644148111343384,-1.2445415258407593,-0.6280503273010254,-0.3198047876358032,-0.19993150234222412,-0.3369295299053192,0.21106259524822235,0.34806060791015625,0.17681308090686798,0.22818733751773834,-0.9020463824272156,-0.3711790442466736,-0.26843053102493286,0.09118931740522385,0.9474270343780518,0.1425635814666748,1.0159260034561157,0.09118931740522385,0.34806060791015625,0.5021833777427673,0.34806060791015625,0.8104289770126343,1.0501755475997925,1.1186745166778564,0.056939806789159775,0.8104289770126343,1.7522904872894287,1.7009161710739136,1.1186745166778564,0.5193081498146057,0.7933042049407959,0.3823101222515106,0.48505866527557373,0.2795616090297699,0.1425635814666748,0.6049319505691528,0.33093586564064026,0.33093586564064026,0.33093586564064026,-0.01155920885503292,-0.06293346732854843,-0.19993150234222412,-0.11430773138999939,1.9235379695892334,1.7522904872894287,1.718040943145752,0.7590547204017639,1.0159260034561157,0.8104289770126343,1.9406627416610718,1.4954191446304321,1.2042982578277588,1.0844250917434692,1.375545859336853,1.7694151401519775,1.0501755475997925,0.7248051762580872,0.6391814351081848,0.3823101222515106,0.399434894323349,0.22818733751773834,0.10831406712532043,0.34806060791015625,1.2727973461151123,1.6324172019958496,1.6837913990020752,1.8036646842956543,1.906413197517395,1.8721636533737183,1.4954191446304321,1.3584210872650146,1.101549744606018,1.1529240608215332,1.2899221181869507,1.1357992887496948,1.6495418548583984,1.307046890258789,1.9920369386672974,2.0776607990264893,2.0605359077453613,1.906413197517395,1.8207894563674927,2.0605359077453613,2.0605359077453613,1.8721636533737183,1.7009161710739136,1.7351657152175903,1.5467933416366577,1.6152924299240112,1.6666666269302368],[1.786539912223816,1.6152924299240112,1.18717360496521,0.9474270343780518,0.7590547204017639,0.34806060791015625,-0.4568028151988983,0.22818733751773834,0.6734309196472168,0.8618032336235046,0.878928005695343,0.7933042049407959,0.913177490234375,0.6905556917190552,0.433684378862381,0.5878071784973145,0.07406456023454666,0.7933042049407959,0.005565545056015253,0.433684378862381,0.878928005695343,0.7076804637908936,-0.16568198800086975,-1.227416753768921,-1.4842880964279175,-1.2102919816970825,-2.1007792949676514,-1.9295316934585571,-1.5185375213623047,-1.0904186964035034,-0.3883037865161896,-0.7479236125946045,-0.9534206986427307,-0.01155920885503292,-0.01155920885503292,0.6049319505691528,0.5535576939582825,1.1700488328933716,0.8446784615516663,0.9816765189170837,1.255672574043274,1.0844250917434692,0.45080915093421936,0.45080915093421936,0.1425635814666748,-0.2170562595129013,-0.16568198800086975,-0.3711790442466736,0.022690298035740852,-0.42255330085754395,-1.4842880964279175,-2.1179039478302,-1.7411593198776245,-2.1179039478302,-1.6555355787277222,-0.919171154499054,-1.2616662979125977,-0.9020463824272156,-1.5014127492904663,-0.8335474133491516,-1.8439078330993652,-1.6384108066558838,-1.7240345478057861,-1.9809058904647827,-1.5527870655059814,-1.7069098949432373,-1.946656346321106,-1.5185375213623047,-1.9124069213867188,-2.0494048595428467,-2.0494048595428467,-2.1179039478302,-0.7992978692054749,2.111910343170166,1.7694151401519775,2.0262866020202637,2.1804091930389404,1.9406627416610718,2.248908281326294,2.1632845401763916,1.7009161710739136,1.9406627416610718,1.7694151401519775,1.5810428857803345,1.7522904872894287,1.4269200563430786,1.5125439167022705,1.5125439167022705,1.5981676578521729,1.4782943725585938,1.3584210872650146,1.7009161710739136,1.8550390005111694,1.6837913990020752,1.786539912223816,2.0091617107391357,1.9235379695892334,1.8207894563674927,2.0605359077453613,2.0605359077453613,2.1461598873138428,1.8721636533737183,2.214658737182617,2.1975340843200684,2.0434112548828125,2.129034996032715,2.0605359077453613,2.111910343170166,2.129034996032715,1.8892884254455566,2.248908281326294,1.7694151401519775,1.9406627416610718,1.8207894563674927,1.6495418548583984,1.9406627416610718,1.6495418548583984,1.7522904872894287,1.8892884254455566,1.906413197517395,1.8892884254455566,1.8892884254455566,1.9920369386672974,1.8036646842956543,1.9406627416610718,1.6324172019958496,1.4782943725585938,1.2042982578277588,0.8446784615516663,-0.16568198800086975,-0.16568198800086975,-0.42255330085754395,-0.7136741280555725,-1.1589176654815674,-0.2513057589530945,-1.809658408164978,-0.5253018140792847,-1.004794955253601,-0.3369295299053192,-0.4910523295402527,-0.7479236125946045,0.6220566630363464,0.2624368667602539,-0.8677968978881836,-0.8335474133491516,0.6220566630363464,-0.6109256148338318,-0.3369295299053192,0.6220566630363464,-0.06293346732854843,0.7933042049407959,-0.16568198800086975,0.913177490234375,0.8960527181625366,0.7076804637908936,0.9645517468452454,1.375545859336853,0.8104289770126343,-0.0971829816699028,0.6905556917190552,1.1700488328933716,1.5810428857803345,0.22818733751773834,0.24531209468841553,0.399434894323349,0.6391814351081848,0.6220566630363464,0.6049319505691528,0.5364329218864441,0.433684378862381,0.45080915093421936,0.416559636592865,0.5193081498146057,0.21106259524822235,0.022690298035740852,0.09118931740522385,-0.26843053102493286,1.444044828414917,1.6495418548583984,1.6324172019958496,1.0673003196716309,1.4954191446304321,1.3412963151931763,1.6837913990020752,1.3926706314086914,1.2214230298995972,1.3412963151931763,1.255672574043274,1.3584210872650146,1.0501755475997925,0.36518537998199463,0.45080915093421936,0.399434894323349,0.2966863512992859,0.022690298035740852,0.34806060791015625,0.7076804637908936,1.6495418548583984,1.9235379695892334,1.8207894563674927,1.8550390005111694,1.7694151401519775,1.4097954034805298,1.255672574043274,0.878928005695343,0.8275537490844727,0.6905556917190552,0.8960527181625366,1.324171543121338,1.718040943145752,2.0434112548828125,1.9749122858047485,2.1461598873138428,1.837914228439331,1.9577875137329102,1.8721636533737183,2.111910343170166,1.7694151401519775,1.7351657152175903,1.9749122858047485,1.7351657152175903,1.4954191446304321,1.6495418548583984,1.307046890258789],[1.837914228439331,1.9920369386672974,1.8036646842956543,1.5467933416366577,0.9988012909889221,0.7419299483299255,0.3823101222515106,0.1425635814666748,0.5535576939582825,0.5021833777427673,1.2385478019714355,1.1186745166778564,0.6220566630363464,0.416559636592865,0.2624368667602539,-0.8164226412773132,-0.7992978692054749,-1.2445415258407593,0.005565545056015253,0.45080915093421936,0.19393783807754517,0.8104289770126343,-0.30268001556396484,-1.4329137802124023,-1.4842880964279175,-1.8267830610275269,-1.7925336360931396,-0.9020463824272156,-0.8677968978881836,-0.7307988405227661,-0.4568028151988983,-0.26843053102493286,-0.16568198800086975,0.21106259524822235,0.48505866527557373,0.33093586564064026,0.31381112337112427,0.878928005695343,0.6391814351081848,0.7419299483299255,0.6220566630363464,0.9816765189170837,0.9816765189170837,0.9474270343780518,1.1700488328933716,0.9645517468452454,0.9816765189170837,1.1700488328933716,0.07406456023454666,-0.9705454111099243,-1.3986642360687256,-1.8952821493148804,-0.9362959265708923,-1.2616662979125977,-1.7754088640213013,-0.8506721258163452,-1.2787909507751465,-0.6622998714447021,-0.7992978692054749,-2.032280206680298,0.17681308090686798,-1.946656346321106,-1.9124069213867188,-1.9637811183929443,-1.7925336360931396,-1.4842880964279175,-1.7754088640213013,-2.1179039478302,-1.809658408164978,-2.01515531539917,-2.1179039478302,0.2624368667602539,2.248908281326294,2.1461598873138428,2.248908281326294,1.9749122858047485,2.1461598873138428,1.9577875137329102,1.8036646842956543,2.0605359077453613,1.8036646842956543,1.6666666269302368,1.837914228439331,1.9406627416610718,1.6837913990020752,1.7351657152175903,1.4097954034805298,1.3926706314086914,1.3926706314086914,1.5125439167022705,1.563918113708496,1.6324172019958496,1.7522904872894287,1.8892884254455566,1.786539912223816,1.9406627416610718,1.837914228439331,2.111910343170166,2.111910343170166,2.0262866020202637,2.1804091930389404,2.248908281326294,2.231783628463745,1.9749122858047485,2.1975340843200684,2.248908281326294,1.8892884254455566,2.214658737182617,1.9235379695892334,2.248908281326294,2.1975340843200684,2.0776607990264893,1.7694151401519775,1.5810428857803345,1.8207894563674927,1.8892884254455566,1.837914228439331,1.6666666269302368,1.718040943145752,2.111910343170166,2.248908281326294,1.9920369386672974,1.9920369386672974,2.1632845401763916,2.111910343170166,1.9235379695892334,1.6495418548583984,0.7590547204017639,1.4954191446304321,0.913177490234375,-0.4568028151988983,0.09118931740522385,-0.4739275574684143,-1.0561691522598267,-0.8164226412773132,-0.8164226412773132,-2.0494048595428467,-1.5527870655059814,-0.8506721258163452,-0.542426586151123,-0.7136741280555725,-0.18280674517154694,0.399434894323349,0.09118931740522385,-1.0904186964035034,0.2624368667602539,-0.06293346732854843,0.5535576939582825,0.6220566630363464,0.2966863512992859,0.5364329218864441,0.07406456023454666,-0.0971829816699028,0.8446784615516663,0.6563062071800232,0.7419299483299255,1.444044828414917,1.2727973461151123,-0.8164226412773132,0.10831406712532043,1.5467933416366577,1.4269200563430786,1.324171543121338,0.8104289770126343,0.5706824064254761,0.8104289770126343,0.7761794924736023,0.6391814351081848,0.8446784615516663,0.5706824064254761,0.6734309196472168,0.6391814351081848,0.5193081498146057,0.2624368667602539,0.34806060791015625,0.1425635814666748,0.10831406712532043,0.5878071784973145,1.4782943725585938,1.8550390005111694,1.786539912223816,1.5467933416366577,1.3584210872650146,0.7590547204017639,1.3412963151931763,1.444044828414917,1.2042982578277588,1.0501755475997925,1.324171543121338,1.4782943725585938,0.48505866527557373,0.07406456023454666,0.399434894323349,0.07406456023454666,0.433684378862381,0.6391814351081848,1.2385478019714355,1.9406627416610718,1.718040943145752,1.4611696004867554,1.6495418548583984,1.4611696004867554,1.1186745166778564,1.101549744606018,0.8446784615516663,0.8104289770126343,1.2727973461151123,1.3584210872650146,1.6324172019958496,1.7009161710739136,1.8550390005111694,1.7694151401519775,1.9235379695892334,1.8892884254455566,1.9920369386672974,2.129034996032715,1.718040943145752,1.6152924299240112,1.906413197517395,1.2899221181869507,1.5810428857803345,1.3412963151931763,1.4954191446304321,1.6152924299240112],[2.248908281326294,2.248908281326294,1.718040943145752,1.718040943145752,1.563918113708496,0.7761794924736023,0.6049319505691528,0.3823101222515106,0.2966863512992859,0.5535576939582825,0.8104289770126343,0.2966863512992859,0.2795616090297699,0.12543882429599762,-0.14855724573135376,-0.8506721258163452,-1.2959157228469849,-1.604161262512207,-0.9362959265708923,-0.3369295299053192,-1.0219197273254395,-1.1075434684753418,-1.9295316934585571,-0.8335474133491516,-1.5527870655059814,-1.3986642360687256,-1.3301652669906616,-0.2170562595129013,0.5193081498146057,0.005565545056015253,-0.7307988405227661,-0.2341810017824173,-0.43967804312705994,0.45080915093421936,0.5535576939582825,0.5193081498146057,0.5535576939582825,0.7076804637908936,0.913177490234375,0.9988012909889221,0.5706824064254761,1.2214230298995972,1.2727973461151123,1.255672574043274,1.563918113708496,1.2727973461151123,1.4782943725585938,1.3926706314086914,1.324171543121338,1.1529240608215332,0.2966863512992859,-1.2787909507751465,-2.1179039478302,-2.1179039478302,-1.0390443801879883,-1.2102919816970825,-1.2102919816970825,-1.0904186964035034,-1.946656346321106,-0.3711790442466736,-1.6212860345840454,-1.8952821493148804,-2.1179039478302,-1.4329137802124023,-1.2616662979125977,-2.1179039478302,-1.5014127492904663,-1.998030662536621,-2.01515531539917,-1.415789008140564,1.5296686887741089,2.248908281326294,2.094785451889038,2.231783628463745,2.1632845401763916,2.248908281326294,1.8892884254455566,2.129034996032715,1.7522904872894287,1.5810428857803345,1.7009161710739136,1.6837913990020752,1.5125439167022705,1.4097954034805298,1.563918113708496,1.5296686887741089,1.3926706314086914,1.2214230298995972,1.6324172019958496,1.563918113708496,1.6324172019958496,1.6324172019958496,1.8036646842956543,1.7694151401519775,2.0434112548828125,2.0605359077453613,1.9235379695892334,1.786539912223816,2.248908281326294,2.1461598873138428,2.248908281326294,2.0091617107391357,1.9406627416610718,2.231783628463745,2.1804091930389404,2.0434112548828125,2.129034996032715,1.9577875137329102,2.111910343170166,2.094785451889038,2.094785451889038,1.8036646842956543,1.5125439167022705,1.5125439167022705,1.8892884254455566,2.0776607990264893,2.231783628463745,2.1632845401763916,2.0262866020202637,2.0262866020202637,1.9235379695892334,1.8550390005111694,1.7351657152175903,2.1804091930389404,2.094785451889038,1.9577875137329102,2.214658737182617,0.8960527181625366,0.6563062071800232,1.1700488328933716,0.6563062071800232,-0.5938008427619934,-0.11430773138999939,-0.4910523295402527,-1.2102919816970825,-1.1075434684753418,-0.6280503273010254,-1.8439078330993652,-0.9876701831817627,-0.26843053102493286,0.399434894323349,-1.4329137802124023,-1.1760424375534058,-0.14855724573135376,-0.43967804312705994,0.6391814351081848,0.2624368667602539,0.5364329218864441,-0.19993150234222412,-0.5595513582229614,-0.13143248856067657,0.19393783807754517,0.878928005695343,0.19393783807754517,0.2624368667602539,-0.26843053102493286,0.8960527181625366,1.1357992887496948,-0.19993150234222412,-0.4568028151988983,0.7933042049407959,0.9303022623062134,0.5193081498146057,0.7933042049407959,0.8960527181625366,0.48505866527557373,0.6391814351081848,0.878928005695343,0.7590547204017639,0.46793389320373535,0.7419299483299255,0.6220566630363464,0.878928005695343,0.7076804637908936,0.5193081498146057,0.3823101222515106,0.31381112337112427,0.2624368667602539,1.5467933416366577,1.786539912223816,1.837914228439331,1.563918113708496,1.5810428857803345,1.8550390005111694,1.563918113708496,1.5981676578521729,1.2727973461151123,0.8960527181625366,1.4097954034805298,1.3926706314086914,1.101549744606018,0.1596883237361908,0.1425635814666748,0.19393783807754517,0.5878071784973145,1.2385478019714355,1.6324172019958496,1.6837913990020752,1.6152924299240112,1.4269200563430786,1.3926706314086914,1.2042982578277588,0.7076804637908936,0.8618032336235046,0.7248051762580872,1.2214230298995972,1.4954191446304321,1.4954191446304321,1.8036646842956543,1.8036646842956543,1.7522904872894287,1.9749122858047485,1.8892884254455566,1.8721636533737183,1.837914228439331,1.8036646842956543,1.6837913990020752,1.718040943145752,1.7522904872894287,1.6666666269302368,1.5981676578521729,1.6152924299240112,1.563918113708496,1.5810428857803345],[2.0091617107391357,2.1461598873138428,1.906413197517395,2.094785451889038,1.786539912223816,1.2042982578277588,0.878928005695343,0.416559636592865,0.6905556917190552,0.7419299483299255,0.6049319505691528,0.7761794924736023,0.1596883237361908,0.399434894323349,0.5364329218864441,-0.2170562595129013,-1.1589176654815674,-1.3301652669906616,-1.7925336360931396,-1.9637811183929443,-1.8952821493148804,-2.1179039478302,-1.6212860345840454,-1.998030662536621,-1.8610326051712036,-0.7992978692054749,-0.14855724573135376,0.7076804637908936,0.9816765189170837,0.46793389320373535,-0.6451750993728638,-0.028683962300419807,-0.5938008427619934,-0.08005822449922562,0.3823101222515106,0.5706824064254761,0.21106259524822235,-0.18280674517154694,0.433684378862381,0.5021833777427673,0.8275537490844727,0.8960527181625366,1.4097954034805298,1.18717360496521,1.3584210872650146,1.4782943725585938,1.5296686887741089,1.7351657152175903,1.906413197517395,1.6666666269302368,1.4611696004867554,0.913177490234375,-0.919171154499054,-1.758284091949463,-0.9534206986427307,-1.4500385522842407,-0.7821731567382812,-0.8164226412773132,-0.11430773138999939,-1.3644148111343384,-1.7069098949432373,-2.0836544036865234,-0.8677968978881836,-1.9637811183929443,-2.1007792949676514,-1.3815394639968872,-1.998030662536621,-1.9295316934585571,-0.5081770420074463,2.0605359077453613,1.9406627416610718,2.1632845401763916,2.1632845401763916,2.1632845401763916,1.8207894563674927,1.9577875137329102,2.1975340843200684,1.6495418548583984,1.8721636533737183,1.6666666269302368,1.6324172019958496,1.4269200563430786,1.4611696004867554,1.4954191446304321,1.2899221181869507,1.4782943725585938,1.4954191446304321,1.6837913990020752,1.4954191446304321,1.5981676578521729,1.906413197517395,1.7694151401519775,1.786539912223816,2.0605359077453613,1.9235379695892334,1.9749122858047485,1.837914228439331,2.0605359077453613,2.111910343170166,2.094785451889038,1.906413197517395,2.0776607990264893,2.1804091930389404,2.094785451889038,2.248908281326294,2.1461598873138428,2.1632845401763916,2.231783628463745,2.1461598873138428,2.1804091930389404,1.718040943145752,1.9920369386672974,2.094785451889038,1.8721636533737183,1.9749122858047485,2.248908281326294,2.0091617107391357,2.129034996032715,2.1975340843200684,1.8207894563674927,1.9235379695892334,1.7694151401519775,2.214658737182617,1.8721636533737183,1.906413197517395,1.8550390005111694,1.7009161710739136,1.0159260034561157,0.17681308090686798,0.5364329218864441,0.8104289770126343,-0.0971829816699028,-0.2170562595129013,-0.6109256148338318,-0.7821731567382812,-1.6212860345840454,-1.6212860345840454,-1.227416753768921,-1.1931672096252441,-0.7307988405227661,0.1596883237361908,0.1425635814666748,-0.04580871760845184,-0.5938008427619934,-0.3883037865161896,0.5193081498146057,0.7419299483299255,0.46793389320373535,-0.7307988405227661,0.46793389320373535,-0.18280674517154694,-0.4568028151988983,-0.0971829816699028,0.6563062071800232,0.7248051762580872,-0.8164226412773132,0.022690298035740852,1.5296686887741089,-0.16568198800086975,-0.3711790442466736,-0.26843053102493286,1.6152924299240112,0.7933042049407959,0.8275537490844727,0.7248051762580872,0.9816765189170837,0.9474270343780518,0.7933042049407959,0.6734309196472168,1.033050775527954,0.7076804637908936,0.7761794924736023,0.8960527181625366,0.7419299483299255,0.6734309196472168,0.33093586564064026,0.416559636592865,0.12543882429599762,0.21106259524822235,1.5981676578521729,1.8892884254455566,1.837914228439331,1.718040943145752,1.7009161710739136,1.6324172019958496,1.5810428857803345,1.7522904872894287,1.324171543121338,0.9988012909889221,1.6495418548583984,1.5296686887741089,0.07406456023454666,0.31381112337112427,0.46793389320373535,1.4269200563430786,1.4782943725585938,1.6152924299240112,1.4269200563430786,1.4269200563430786,1.307046890258789,0.913177490234375,0.6734309196472168,0.24531209468841553,0.7933042049407959,1.101549744606018,1.3584210872650146,1.5125439167022705,1.6666666269302368,1.5125439167022705,1.9406627416610718,1.9749122858047485,1.7522904872894287,1.8207894563674927,1.8036646842956543,1.9235379695892334,1.4611696004867554,1.4954191446304321,1.6324172019958496,1.786539912223816,1.7694151401519775,1.307046890258789,1.5125439167022705,1.6666666269302368,1.5125439167022705],[2.0262866020202637,2.0776607990264893,2.111910343170166,2.1632845401763916,1.9920369386672974,1.563918113708496,1.0844250917434692,0.7248051762580872,0.8446784615516663,0.5021833777427673,0.7590547204017639,0.46793389320373535,0.7419299483299255,0.878928005695343,0.6391814351081848,0.5878071784973145,-0.028683962300419807,-0.14855724573135376,-1.3301652669906616,-1.073293924331665,-1.8952821493148804,-1.4500385522842407,-1.4842880964279175,-1.9295316934585571,-1.6726603507995605,-1.1246682405471802,0.8275537490844727,1.1357992887496948,0.7248051762580872,0.5021833777427673,-0.3540542721748352,0.07406456023454666,-0.43967804312705994,-0.5253018140792847,0.36518537998199463,0.45080915093421936,-0.7479236125946045,0.17681308090686798,-0.01155920885503292,0.5193081498146057,0.5193081498146057,0.7933042049407959,1.1357992887496948,1.1357992887496948,1.4782943725585938,1.7694151401519775,1.8892884254455566,2.0434112548828125,1.8721636533737183,1.7694151401519775,1.8550390005111694,1.5467933416366577,0.21106259524822235,-0.5938008427619934,-1.9637811183929443,-1.8952821493148804,-1.0904186964035034,-1.1246682405471802,-0.8506721258163452,-1.8610326051712036,-2.1179039478302,-1.5870366096496582,-1.5185375213623047,-1.604161262512207,-1.7069098949432373,-2.1007792949676514,-1.946656346321106,0.6220566630363464,2.1461598873138428,2.0605359077453613,2.1804091930389404,2.1632845401763916,2.248908281326294,2.248908281326294,2.094785451889038,1.8207894563674927,1.786539912223816,2.0091617107391357,1.6666666269302368,1.718040943145752,1.5296686887741089,1.563918113708496,1.6495418548583984,1.5467933416366577,1.6324172019958496,1.6152924299240112,1.7351657152175903,1.718040943145752,1.7351657152175903,1.8550390005111694,2.129034996032715,2.094785451889038,1.7009161710739136,1.906413197517395,2.0434112548828125,2.0091617107391357,2.0434112548828125,1.9749122858047485,1.9749122858047485,1.9577875137329102,2.1804091930389404,2.214658737182617,2.0434112548828125,2.094785451889038,2.1461598873138428,2.111910343170166,1.837914228439331,1.7009161710739136,1.8036646842956543,2.0091617107391357,1.718040943145752,1.9577875137329102,1.9920369386672974,1.9235379695892334,2.248908281326294,1.786539912223816,2.111910343170166,2.094785451889038,1.8892884254455566,2.111910343170166,2.0262866020202637,2.248908281326294,2.1804091930389404,2.0776607990264893,1.837914228439331,1.5810428857803345,1.9920369386672974,0.9645517468452454,0.3823101222515106,0.1596883237361908,0.8104289770126343,0.8446784615516663,-0.3883037865161896,-0.6794245839118958,-0.28555527329444885,-0.9534206986427307,-1.6726603507995605,-1.1760424375534058,-1.1931672096252441,-1.809658408164978,-1.946656346321106,-0.8335474133491516,0.7248051762580872,0.31381112337112427,0.1425635814666748,-0.26843053102493286,-1.467163324356079,0.7248051762580872,1.324171543121338,0.5706824064254761,-0.08005822449922562,0.7933042049407959,0.913177490234375,0.2624368667602539,0.09118931740522385,0.5364329218864441,1.1186745166778564,1.444044828414917,0.19393783807754517,-0.5595513582229614,0.399434894323349,2.248908281326294,0.8104289770126343,0.7761794924736023,1.1186745166778564,0.9303022623062134,0.8960527181625366,0.9988012909889221,1.0159260034561157,0.6905556917190552,0.8446784615516663,0.7761794924736023,0.9816765189170837,0.913177490234375,0.8275537490844727,0.5878071784973145,0.6391814351081848,0.5193081498146057,0.5535576939582825,0.7419299483299255,2.0091617107391357,1.8036646842956543,1.033050775527954,1.4782943725585938,1.6837913990020752,2.0776607990264893,1.5810428857803345,1.6666666269302368,1.4097954034805298,1.4954191446304321,1.718040943145752,0.8960527181625366,0.433684378862381,1.0673003196716309,1.307046890258789,1.563918113708496,1.307046890258789,1.2214230298995972,1.4782943725585938,0.7419299483299255,0.416559636592865,0.022690298035740852,0.7248051762580872,1.101549744606018,1.3584210872650146,1.375545859336853,1.5296686887741089,1.8207894563674927,2.0262866020202637,1.9406627416610718,1.8892884254455566,2.0262866020202637,1.8721636533737183,2.1461598873138428,1.8036646842956543,1.255672574043274,1.563918113708496,1.6495418548583984,1.6324172019958496,1.5296686887741089,1.563918113708496,1.4269200563430786,1.5467933416366577,1.6666666269302368],[1.9577875137329102,2.214658737182617,2.248908281326294,2.0434112548828125,2.1632845401763916,2.0776607990264893,1.5125439167022705,0.8275537490844727,0.7248051762580872,0.6220566630363464,0.7076804637908936,0.6220566630363464,1.0159260034561157,0.5021833777427673,0.7076804637908936,0.1425635814666748,0.5021833777427673,0.399434894323349,0.21106259524822235,0.09118931740522385,-0.14855724573135376,-0.11430773138999939,0.03981505334377289,-1.2959157228469849,-0.6280503273010254,0.913177490234375,1.2385478019714355,1.033050775527954,0.8104289770126343,0.24531209468841553,-0.5938008427619934,-0.40542855858802795,-0.3711790442466736,-0.6622998714447021,-0.11430773138999939,-0.576676070690155,-0.6451750993728638,-0.7136741280555725,-0.01155920885503292,-0.3883037865161896,0.19393783807754517,0.34806060791015625,0.7590547204017639,0.878928005695343,1.2385478019714355,1.4782943725585938,1.786539912223816,1.8721636533737183,1.5981676578521729,1.7694151401519775,1.8892884254455566,1.3584210872650146,1.1529240608215332,1.033050775527954,-1.6726603507995605,-2.1179039478302,-1.946656346321106,-1.5527870655059814,-1.946656346321106,-1.6384108066558838,-1.3815394639968872,-1.3815394639968872,-1.5527870655059814,-1.7925336360931396,-1.5870366096496582,-1.4329137802124023,1.9235379695892334,1.9749122858047485,2.231783628463745,2.094785451889038,2.129034996032715,2.248908281326294,2.094785451889038,2.1975340843200684,1.906413197517395,1.8550390005111694,1.7351657152175903,1.6495418548583984,1.563918113708496,1.307046890258789,1.6666666269302368,1.375545859336853,1.4611696004867554,1.5467933416366577,1.444044828414917,1.6666666269302368,1.6837913990020752,1.8207894563674927,1.8721636533737183,1.6666666269302368,1.9920369386672974,1.837914228439331,2.0434112548828125,2.0262866020202637,1.9406627416610718,1.9235379695892334,2.094785451889038,2.094785451889038,2.248908281326294,2.094785451889038,2.248908281326294,2.0605359077453613,2.248908281326294,2.129034996032715,2.1975340843200684,2.0605359077453613,2.1975340843200684,2.129034996032715,2.0262866020202637,2.094785451889038,2.231783628463745,2.0605359077453613,2.0434112548828125,2.248908281326294,2.0776607990264893,2.248908281326294,1.9920369386672974,2.0262866020202637,2.1804091930389404,2.0262866020202637,1.7694151401519775,1.9920369386672974,2.1632845401763916,2.214658737182617,1.906413197517395,2.1461598873138428,1.375545859336853,0.7076804637908936,0.5878071784973145,0.005565545056015253,0.34806060791015625,0.5193081498146057,0.34806060791015625,-0.7821731567382812,-0.14855724573135376,-0.2170562595129013,-1.0904186964035034,-0.9705454111099243,-0.6622998714447021,-1.2445415258407593,-1.1589176654815674,-0.42255330085754395,-0.2513057589530945,0.24531209468841553,0.33093586564064026,0.7933042049407959,0.6391814351081848,-0.919171154499054,-1.3472900390625,1.0501755475997925,-0.28555527329444885,0.433684378862381,0.03981505334377289,-0.28555527329444885,0.45080915093421936,0.8960527181625366,1.4611696004867554,1.2214230298995972,0.21106259524822235,-0.8677968978881836,1.5810428857803345,2.111910343170166,0.913177490234375,0.9645517468452454,1.0501755475997925,0.9303022623062134,1.033050775527954,0.913177490234375,0.9988012909889221,0.913177490234375,0.9816765189170837,0.8618032336235046,0.9474270343780518,0.7248051762580872,0.6734309196472168,0.8446784615516663,0.6391814351081848,0.8618032336235046,0.7590547204017639,0.8275537490844727,1.9406627416610718,2.0605359077453613,1.7351657152175903,1.4954191446304321,1.8036646842956543,1.5467933416366577,1.563918113708496,0.8960527181625366,1.6324172019958496,1.444044828414917,1.375545859336853,1.5125439167022705,0.8618032336235046,1.2727973461151123,1.4782943725585938,1.5125439167022705,1.6152924299240112,1.101549744606018,0.7761794924736023,0.2966863512992859,0.07406456023454666,0.5364329218864441,0.5193081498146057,0.9816765189170837,1.3926706314086914,1.7694151401519775,2.111910343170166,1.9235379695892334,2.0091617107391357,1.906413197517395,1.9235379695892334,1.8207894563674927,1.906413197517395,1.6666666269302368,1.8892884254455566,1.3412963151931763,1.7694151401519775,1.6495418548583984,1.8892884254455566,1.6495418548583984,1.5296686887741089,1.786539912223816,1.5981676578521729,1.7009161710739136],[2.248908281326294,2.094785451889038,2.129034996032715,2.094785451889038,2.1804091930389404,1.9920369386672974,1.906413197517395,1.375545859336853,0.7590547204017639,0.5706824064254761,0.8275537490844727,0.5364329218864441,0.5193081498146057,0.005565545056015253,-0.8335474133491516,-0.6451750993728638,-1.0561691522598267,-0.4910523295402527,0.5535576939582825,1.18717360496521,0.7761794924736023,1.0159260034561157,1.18717360496521,0.6563062071800232,1.6152924299240112,1.1529240608215332,1.1700488328933716,1.101549744606018,0.5193081498146057,-0.3198047876358032,-1.0219197273254395,-0.28555527329444885,-0.19993150234222412,-0.43967804312705994,-0.5081770420074463,-0.7136741280555725,-0.43967804312705994,-0.7479236125946045,-0.7307988405227661,-0.6280503273010254,-0.6109256148338318,-0.30268001556396484,0.09118931740522385,1.1357992887496948,0.9988012909889221,1.324171543121338,1.5125439167022705,1.3412963151931763,1.1357992887496948,1.1186745166778564,0.9645517468452454,1.3584210872650146,0.9645517468452454,0.7419299483299255,0.5364329218864441,-2.1179039478302,-1.8267830610275269,-1.5185375213623047,-1.5699118375778198,-1.2445415258407593,-1.2445415258407593,-1.3130404949188232,-2.1179039478302,-2.0665297508239746,1.2385478019714355,1.8721636533737183,2.1804091930389404,2.1632845401763916,2.111910343170166,1.906413197517395,1.9406627416610718,2.0776607990264893,1.8036646842956543,1.8207894563674927,1.8721636533737183,1.718040943145752,1.6837913990020752,1.3926706314086914,1.4954191446304321,1.3412963151931763,1.4269200563430786,1.444044828414917,1.5467933416366577,1.5125439167022705,1.8036646842956543,1.786539912223816,1.8550390005111694,1.8892884254455566,1.9235379695892334,1.7694151401519775,1.8721636533737183,1.9749122858047485,2.248908281326294,2.1632845401763916,1.786539912223816,1.9749122858047485,2.0605359077453613,2.111910343170166,2.248908281326294,2.231783628463745,2.111910343170166,2.0605359077453613,2.1975340843200684,2.0605359077453613,2.214658737182617,1.9406627416610718,2.1632845401763916,2.248908281326294,1.718040943145752,1.9406627416610718,2.0262866020202637,1.9577875137329102,2.1632845401763916,2.248908281326294,2.0434112548828125,2.231783628463745,2.1632845401763916,1.9920369386672974,2.1632845401763916,2.111910343170166,2.214658737182617,2.0605359077453613,2.094785451889038,2.1975340843200684,1.5981676578521729,1.7694151401519775,0.48505866527557373,1.1186745166778564,0.433684378862381,0.22818733751773834,0.21106259524822235,-0.01155920885503292,0.7761794924736023,-0.43967804312705994,0.022690298035740852,-0.3883037865161896,0.3823101222515106,-0.0971829816699028,-0.4739275574684143,-0.8677968978881836,-1.4842880964279175,-0.7821731567382812,-1.4842880964279175,-0.8335474133491516,-0.6451750993728638,1.2042982578277588,0.5364329218864441,0.056939806789159775,-1.3815394639968872,-0.3540542721748352,0.6905556917190552,0.24531209468841553,0.36518537998199463,0.433684378862381,0.005565545056015253,0.5706824064254761,1.8207894563674927,2.248908281326294,-1.467163324356079,-0.40542855858802795,-0.08005822449922562,0.21106259524822235,0.8104289770126343,0.9816765189170837,1.0844250917434692,0.9645517468452454,1.0844250917434692,1.101549744606018,0.913177490234375,0.8446784615516663,1.2042982578277588,1.2214230298995972,1.101549744606018,1.0844250917434692,0.878928005695343,1.1186745166778564,0.913177490234375,1.1700488328933716,0.7076804637908936,0.8275537490844727,0.7933042049407959,2.0605359077453613,2.0776607990264893,1.4097954034805298,0.6734309196472168,1.375545859336853,1.6495418548583984,1.9235379695892334,1.4611696004867554,0.7076804637908936,1.307046890258789,1.3412963151931763,1.2899221181869507,1.255672574043274,1.0844250917434692,1.2899221181869507,0.8275537490844727,0.12543882429599762,-0.01155920885503292,0.22818733751773834,0.48505866527557373,0.36518537998199463,1.18717360496521,1.718040943145752,1.837914228439331,1.9577875137329102,2.0434112548828125,2.0262866020202637,1.9749122858047485,1.5981676578521729,1.6152924299240112,2.0262866020202637,1.6324172019958496,1.7351657152175903,1.5296686887741089,1.4097954034805298,1.4611696004867554,1.6495418548583984,1.4782943725585938,1.8207894563674927,1.6324172019958496,1.7009161710739136,1.718040943145752,1.8721636533737183],[2.129034996032715,2.231783628463745,2.111910343170166,1.9235379695892334,2.0262866020202637,2.231783628463745,1.7694151401519775,1.2385478019714355,0.8960527181625366,0.7419299483299255,0.6391814351081848,0.7761794924736023,0.22818733751773834,-0.2341810017824173,-0.9876701831817627,-1.2445415258407593,-1.2959157228469849,-1.3472900390625,0.1425635814666748,-0.16568198800086975,1.2727973461151123,1.101549744606018,1.1700488328933716,0.7933042049407959,1.7351657152175903,0.7248051762580872,0.7248051762580872,0.5706824064254761,0.10831406712532043,-0.7650483846664429,-0.8335474133491516,0.19393783807754517,-0.3198047876358032,-0.6794245839118958,-0.5595513582229614,-0.30268001556396484,-0.576676070690155,-0.3883037865161896,-0.43967804312705994,-0.8164226412773132,-0.9705454111099243,-0.7992978692054749,0.48505866527557373,0.7590547204017639,1.0673003196716309,1.1529240608215332,1.375545859336853,1.1357992887496948,1.2214230298995972,1.0673003196716309,0.7248051762580872,1.0673003196716309,1.255672574043274,1.1700488328933716,0.7076804637908936,-1.6555355787277222,-2.0665297508239746,-1.8952821493148804,-1.878157377243042,-1.758284091949463,-1.878157377243042,-2.1179039478302,-1.5870366096496582,1.324171543121338,2.1461598873138428,2.248908281326294,2.214658737182617,2.0434112548828125,1.8892884254455566,1.837914228439331,1.906413197517395,1.7522904872894287,1.7351657152175903,1.7522904872894287,1.6666666269302368,1.5467933416366577,1.4782943725585938,1.4097954034805298,1.6324172019958496,1.5467933416366577,1.4097954034805298,1.5296686887741089,1.7009161710739136,1.6152924299240112,1.7351657152175903,1.6666666269302368,1.9920369386672974,1.9235379695892334,1.9577875137329102,2.0434112548828125,2.094785451889038,2.1461598873138428,1.8892884254455566,2.0262866020202637,2.0434112548828125,2.0091617107391357,1.9920369386672974,2.094785451889038,1.9406627416610718,2.248908281326294,2.111910343170166,2.248908281326294,2.1632845401763916,2.248908281326294,2.1461598873138428,1.9577875137329102,1.9920369386672974,2.0605359077453613,2.1975340843200684,2.0776607990264893,1.8550390005111694,2.248908281326294,2.111910343170166,1.786539912223816,1.9749122858047485,2.1804091930389404,2.094785451889038,2.129034996032715,2.1804091930389404,1.9577875137329102,2.231783628463745,1.9406627416610718,2.1632845401763916,1.7009161710739136,2.0434112548828125,1.8550390005111694,1.7694151401519775,1.033050775527954,0.8275537490844727,-0.30268001556396484,-0.28555527329444885,0.12543882429599762,0.022690298035740852,-0.06293346732854843,0.5193081498146057,0.10831406712532043,-0.3369295299053192,0.36518537998199463,0.2966863512992859,-0.7136741280555725,0.056939806789159775,-1.878157377243042,-1.8439078330993652,-1.073293924331665,-0.5253018140792847,-0.42255330085754395,0.9816765189170837,0.10831406712532043,-0.028683962300419807,-0.26843053102493286,-0.01155920885503292,-0.7650483846664429,-0.11430773138999939,-0.3711790442466736,0.9816765189170837,1.5125439167022705,1.6666666269302368,-0.28555527329444885,0.8446784615516663,-0.26843053102493286,0.45080915093421936,0.7761794924736023,0.7590547204017639,1.0673003196716309,1.1186745166778564,1.0844250917434692,1.0673003196716309,1.0673003196716309,1.1186745166778564,1.1186745166778564,1.0844250917434692,1.033050775527954,0.9645517468452454,0.9303022623062134,0.9816765189170837,0.9816765189170837,1.1186745166778564,1.0673003196716309,1.0501755475997925,1.1186745166778564,1.1529240608215332,2.129034996032715,1.8550390005111694,1.718040943145752,1.6495418548583984,1.6152924299240112,2.248908281326294,1.9235379695892334,1.2727973461151123,0.9474270343780518,1.5981676578521729,1.5810428857803345,1.3584210872650146,1.1357992887496948,0.6563062071800232,0.8104289770126343,0.21106259524822235,-0.26843053102493286,-0.2513057589530945,0.48505866527557373,0.5535576939582825,1.1357992887496948,1.718040943145752,1.8036646842956543,1.8721636533737183,1.9920369386672974,2.0091617107391357,1.9235379695892334,1.6495418548583984,1.5467933416366577,1.7009161710739136,1.6152924299240112,1.5810428857803345,1.4954191446304321,1.6152924299240112,1.8721636533737183,1.718040943145752,1.563918113708496,1.6666666269302368,1.6152924299240112,1.906413197517395,1.8207894563674927,1.7522904872894287,1.7351657152175903],[2.248908281326294,2.1632845401763916,1.9920369386672974,2.231783628463745,1.9920369386672974,2.0776607990264893,2.0262866020202637,1.4269200563430786,0.6220566630363464,0.6734309196472168,0.5193081498146057,0.21106259524822235,0.022690298035740852,-0.8164226412773132,-1.0219197273254395,-1.1589176654815674,-1.1075434684753418,-1.7069098949432373,-1.6212860345840454,0.2966863512992859,0.31381112337112427,0.7419299483299255,0.5021833777427673,1.1357992887496948,0.8960527181625366,0.7248051762580872,0.399434894323349,-0.4568028151988983,-0.11430773138999939,-0.4568028151988983,-0.3883037865161896,-0.5253018140792847,-0.542426586151123,-0.2170562595129013,-0.4910523295402527,-0.4910523295402527,-0.30268001556396484,-0.576676070690155,-0.5253018140792847,-0.5253018140792847,-0.9705454111099243,-0.5253018140792847,0.1425635814666748,0.7419299483299255,0.8446784615516663,0.6734309196472168,0.7419299483299255,1.1186745166778564,1.2214230298995972,0.9303022623062134,0.8104289770126343,0.3823101222515106,0.8275537490844727,0.9988012909889221,0.6391814351081848,-0.2513057589530945,-2.1007792949676514,-2.0494048595428467,-1.8439078330993652,-1.998030662536621,-1.998030662536621,-1.7069098949432373,1.033050775527954,1.9235379695892334,2.0776607990264893,2.231783628463745,2.129034996032715,2.248908281326294,2.248908281326294,1.5125439167022705,1.8550390005111694,1.8036646842956543,1.4611696004867554,1.6837913990020752,1.4954191446304321,1.4782943725585938,1.6495418548583984,1.6495418548583984,1.5810428857803345,1.7694151401519775,1.6666666269302368,1.6152924299240112,1.7522904872894287,1.6666666269302368,1.8892884254455566,2.0262866020202637,1.9920369386672974,2.1975340843200684,2.1975340843200684,1.9577875137329102,2.0091617107391357,1.8892884254455566,2.0605359077453613,1.9749122858047485,1.8550390005111694,2.1804091930389404,2.0091617107391357,2.129034996032715,2.248908281326294,2.248908281326294,2.248908281326294,2.248908281326294,2.111910343170166,2.1804091930389404,2.129034996032715,2.129034996032715,2.0262866020202637,1.9920369386672974,1.9920369386672974,1.9749122858047485,2.0605359077453613,2.214658737182617,2.248908281326294,2.248908281326294,2.129034996032715,1.906413197517395,2.1975340843200684,2.231783628463745,1.786539912223816,2.0091617107391357,2.1461598873138428,1.8892884254455566,2.129034996032715,2.1975340843200684,1.9577875137329102,1.444044828414917,1.3412963151931763,1.3584210872650146,1.2385478019714355,0.416559636592865,0.21106259524822235,-0.28555527329444885,-0.6622998714447021,-0.3369295299053192,-1.3815394639968872,0.5535576939582825,0.6220566630363464,-0.576676070690155,0.416559636592865,-0.4910523295402527,-0.19993150234222412,-1.5870366096496582,-1.0219197273254395,-0.6109256148338318,0.005565545056015253,-0.9534206986427307,-1.2445415258407593,-1.0219197273254395,0.19393783807754517,0.07406456023454666,0.31381112337112427,0.8275537490844727,0.9988012909889221,0.45080915093421936,0.7248051762580872,1.375545859336853,-0.7650483846664429,1.101549744606018,0.8104289770126343,0.5364329218864441,0.6391814351081848,-0.04580871760845184,0.7076804637908936,0.9474270343780518,1.0159260034561157,0.9816765189170837,0.8960527181625366,1.3412963151931763,1.18717360496521,1.18717360496521,1.1357992887496948,1.307046890258789,1.1700488328933716,1.324171543121338,1.1529240608215332,1.0844250917434692,0.9303022623062134,1.3412963151931763,1.1529240608215332,1.2727973461151123,1.2727973461151123,2.094785451889038,2.248908281326294,1.9920369386672974,2.111910343170166,2.1804091930389404,1.9235379695892334,2.0091617107391357,1.5125439167022705,-0.6794245839118958,1.5296686887741089,1.6837913990020752,1.375545859336853,1.4954191446304321,0.2795616090297699,0.07406456023454666,0.09118931740522385,0.17681308090686798,0.17681308090686798,0.5706824064254761,1.033050775527954,1.307046890258789,1.8550390005111694,1.906413197517395,1.8550390005111694,1.9235379695892334,1.906413197517395,1.8036646842956543,1.906413197517395,2.0091617107391357,1.5467933416366577,1.6152924299240112,1.375545859336853,1.5981676578521729,1.7694151401519775,1.7694151401519775,1.8207894563674927,1.8036646842956543,1.718040943145752,1.9406627416610718,1.8207894563674927,1.5125439167022705,1.4954191446304321,1.786539912223816],[2.1461598873138428,2.1632845401763916,2.0776607990264893,1.9749122858047485,2.0434112548828125,2.129034996032715,2.0434112548828125,1.7522904872894287,1.2727973461151123,0.6391814351081848,0.416559636592865,0.45080915093421936,-0.42255330085754395,-0.26843053102493286,-0.6109256148338318,-0.06293346732854843,-0.5253018140792847,-0.5938008427619934,-0.08005822449922562,0.45080915093421936,1.375545859336853,0.33093586564064026,1.563918113708496,0.46793389320373535,-0.2341810017824173,-0.919171154499054,-0.9534206986427307,-0.7650483846664429,-0.3883037865161896,-0.2341810017824173,-0.04580871760845184,-0.08005822449922562,-0.3540542721748352,-1.227416753768921,-0.06293346732854843,-0.11430773138999939,-0.16568198800086975,-0.08005822449922562,-0.4568028151988983,-0.8506721258163452,-0.9362959265708923,-0.7650483846664429,-0.01155920885503292,0.19393783807754517,0.7761794924736023,-0.028683962300419807,0.2624368667602539,0.433684378862381,1.18717360496521,1.033050775527954,1.0844250917434692,0.5021833777427673,0.34806060791015625,0.9645517468452454,0.7761794924736023,0.5706824064254761,-1.998030662536621,-1.809658408164978,-1.535662293434143,-1.5699118375778198,-1.5185375213623047,0.5021833777427673,1.8550390005111694,2.094785451889038,2.094785451889038,2.231783628463745,1.9235379695892334,2.248908281326294,1.8207894563674927,1.7009161710739136,1.7009161710739136,1.6324172019958496,1.7351657152175903,1.4782943725585938,1.4954191446304321,1.4954191446304321,1.6495418548583984,1.5296686887741089,1.6666666269302368,1.8036646842956543,1.7351657152175903,1.6837913990020752,1.9577875137329102,1.8207894563674927,2.0262866020202637,1.9235379695892334,1.8892884254455566,1.9749122858047485,2.094785451889038,1.9577875137329102,2.1804091930389404,2.1461598873138428,2.111910343170166,2.1632845401763916,2.094785451889038,1.9749122858047485,2.0434112548828125,2.1632845401763916,2.1804091930389404,2.248908281326294,2.1461598873138428,2.248908281326294,2.111910343170166,2.248908281326294,2.111910343170166,2.111910343170166,1.9920369386672974,1.8036646842956543,1.9749122858047485,2.094785451889038,2.0605359077453613,2.094785451889038,2.248908281326294,2.0091617107391357,1.9406627416610718,2.214658737182617,1.8550390005111694,1.8207894563674927,1.9406627416610718,2.129034996032715,2.1461598873138428,1.9920369386672974,2.0262866020202637,1.9577875137329102,2.248908281326294,1.9406627416610718,1.3412963151931763,1.444044828414917,1.3412963151931763,0.46793389320373535,0.46793389320373535,-0.6965493559837341,-0.9705454111099243,-0.9362959265708923,-1.6726603507995605,-1.4500385522842407,-0.08005822449922562,0.416559636592865,-0.5081770420074463,-0.28555527329444885,0.17681308090686798,-0.2513057589530945,-1.8439078330993652,0.36518537998199463,0.2795616090297699,-0.5938008427619934,0.33093586564064026,-0.4568028151988983,0.5535576939582825,0.5193081498146057,0.7248051762580872,1.1186745166778564,0.17681308090686798,1.3926706314086914,-0.8677968978881836,1.033050775527954,-0.2513057589530945,1.101549744606018,1.5467933416366577,0.8960527181625366,0.9816765189170837,0.433684378862381,0.8104289770126343,0.9303022623062134,0.8960527181625366,0.9988012909889221,1.4097954034805298,1.1186745166778564,1.1186745166778564,1.2042982578277588,1.3926706314086914,1.3412963151931763,1.0501755475997925,1.0501755475997925,1.0844250917434692,1.2214230298995972,1.4954191446304321,1.0159260034561157,1.4611696004867554,1.5296686887741089,1.1357992887496948,0.9303022623062134,2.0262866020202637,2.0605359077453613,2.1804091930389404,2.0091617107391357,1.9749122858047485,1.837914228439331,1.1700488328933716,-0.3198047876358032,1.5467933416366577,1.8550390005111694,1.4097954034805298,1.307046890258789,1.307046890258789,0.07406456023454666,-0.3711790442466736,-0.40542855858802795,0.6905556917190552,1.1357992887496948,1.2727973461151123,1.5125439167022705,1.8207894563674927,1.7351657152175903,1.8036646842956543,1.7009161710739136,1.8892884254455566,1.4269200563430786,1.8721636533737183,1.786539912223816,1.6495418548583984,1.5467933416366577,1.5810428857803345,2.0262866020202637,1.6152924299240112,1.9406627416610718,1.9749122858047485,1.9749122858047485,1.8550390005111694,1.9749122858047485,2.0434112548828125,1.8892884254455566,1.9235379695892334,1.906413197517395],[2.214658737182617,2.094785451889038,2.094785451889038,1.7694151401519775,1.9920369386672974,1.906413197517395,1.8892884254455566,1.7694151401519775,1.3412963151931763,1.0844250917434692,0.416559636592865,0.36518537998199463,-0.11430773138999939,0.1596883237361908,-0.04580871760845184,0.7419299483299255,0.5878071784973145,-0.19993150234222412,0.2795616090297699,0.5706824064254761,0.31381112337112427,-0.6109256148338318,0.48505866527557373,0.9645517468452454,0.17681308090686798,-1.415789008140564,-1.004794955253601,-1.2102919816970825,-0.9020463824272156,-0.3540542721748352,-0.14855724573135376,-0.2513057589530945,-0.2513057589530945,-0.6622998714447021,0.2966863512992859,0.19393783807754517,0.10831406712532043,-0.30268001556396484,-0.5253018140792847,-0.26843053102493286,-0.42255330085754395,-0.6622998714447021,-0.04580871760845184,-0.2170562595129013,0.056939806789159775,-0.7821731567382812,-1.6212860345840454,0.09118931740522385,0.2966863512992859,0.9816765189170837,0.8960527181625366,0.416559636592865,-0.30268001556396484,0.46793389320373535,0.5535576939582825,0.5878071784973145,-1.1760424375534058,-2.0836544036865234,-1.7240345478057861,-2.1179039478302,-0.6109256148338318,1.7009161710739136,2.0776607990264893,2.129034996032715,2.0605359077453613,1.8036646842956543,1.718040943145752,2.111910343170166,1.906413197517395,1.7351657152175903,1.563918113708496,1.6495418548583984,1.5296686887741089,1.5467933416366577,1.5810428857803345,1.5810428857803345,1.563918113708496,1.837914228439331,1.8721636533737183,1.8550390005111694,1.7694151401519775,1.8892884254455566,1.786539912223816,2.231783628463745,2.0091617107391357,1.8892884254455566,1.9577875137329102,1.9235379695892334,2.0262866020202637,2.0605359077453613,1.9406627416610718,2.1461598873138428,2.1804091930389404,2.1975340843200684,2.248908281326294,2.0776607990264893,2.111910343170166,2.0605359077453613,2.0605359077453613,1.9749122858047485,2.248908281326294,2.111910343170166,2.248908281326294,1.9749122858047485,2.214658737182617,2.094785451889038,1.8892884254455566,1.9749122858047485,2.0434112548828125,2.0262866020202637,2.111910343170166,2.248908281326294,2.111910343170166,2.231783628463745,2.1804091930389404,2.214658737182617,2.0776607990264893,2.0262866020202637,2.0091617107391357,2.0434112548828125,1.9406627416610718,2.0776607990264893,2.0605359077453613,2.248908281326294,1.9577875137329102,1.563918113708496,1.033050775527954,0.8618032336235046,1.101549744606018,0.3823101222515106,0.8275537490844727,-0.3198047876358032,-0.6794245839118958,-1.3130404949188232,-1.3301652669906616,0.07406456023454666,-0.5253018140792847,-0.42255330085754395,-1.1246682405471802,-0.2341810017824173,-0.6622998714447021,1.0159260034561157,-0.13143248856067657,-0.576676070690155,-0.14855724573135376,-0.6965493559837341,-0.11430773138999939,-0.3883037865161896,-0.7136741280555725,0.056939806789159775,0.12543882429599762,-0.11430773138999939,1.4954191446304321,1.0673003196716309,1.1529240608215332,0.7590547204017639,0.34806060791015625,0.7419299483299255,1.0159260034561157,1.3412963151931763,1.3584210872650146,0.9474270343780518,0.8960527181625366,0.7761794924736023,1.0501755475997925,1.101549744606018,1.1700488328933716,1.255672574043274,1.3584210872650146,1.324171543121338,1.1529240608215332,1.375545859336853,1.375545859336853,1.255672574043274,1.324171543121338,1.444044828414917,1.2042982578277588,1.324171543121338,1.3412963151931763,1.6152924299240112,1.5296686887741089,1.3412963151931763,1.6666666269302368,2.231783628463745,2.129034996032715,1.6495418548583984,0.9816765189170837,1.307046890258789,0.6734309196472168,0.2624368667602539,1.5296686887741089,1.1700488328933716,1.3584210872650146,1.4954191446304321,1.8036646842956543,1.3926706314086914,-0.11430773138999939,0.36518537998199463,0.8618032336235046,1.307046890258789,1.307046890258789,1.4782943725585938,1.5125439167022705,1.5296686887741089,1.5981676578521729,1.718040943145752,1.8036646842956543,1.5467933416366577,1.7351657152175903,1.7351657152175903,1.7351657152175903,1.7009161710739136,1.5467933416366577,1.563918113708496,1.9749122858047485,2.0262866020202637,1.6666666269302368,1.8036646842956543,2.129034996032715,2.0605359077453613,1.9577875137329102,1.9749122858047485,1.5125439167022705,1.6495418548583984],[2.231783628463745,2.248908281326294,2.248908281326294,1.9406627416610718,1.8036646842956543,1.8550390005111694,2.0605359077453613,1.8036646842956543,1.0501755475997925,0.9816765189170837,0.5878071784973145,0.416559636592865,-0.30268001556396484,0.33093586564064026,0.31381112337112427,0.6734309196472168,0.45080915093421936,-0.13143248856067657,0.31381112337112427,-1.2445415258407593,-1.6384108066558838,0.22818733751773834,-1.6384108066558838,-1.689785122871399,-1.1760424375534058,-1.3472900390625,-1.7069098949432373,-1.3815394639968872,-0.9534206986427307,-0.4568028151988983,0.2624368667602539,0.09118931740522385,0.056939806789159775,-0.7136741280555725,-0.2170562595129013,0.5021833777427673,-0.2513057589530945,-1.0219197273254395,-0.8677968978881836,-0.4568028151988983,-0.5081770420074463,-0.3540542721748352,-0.28555527329444885,-0.5253018140792847,-0.576676070690155,-1.9637811183929443,-1.946656346321106,-1.1246682405471802,-0.28555527329444885,0.45080915093421936,0.7248051762580872,0.8275537490844727,-0.30268001556396484,-0.6109256148338318,0.5364329218864441,0.7761794924736023,0.03981505334377289,-1.7925336360931396,-1.7754088640213013,-0.4910523295402527,1.2385478019714355,1.9749122858047485,2.248908281326294,1.906413197517395,1.9406627416610718,2.0091617107391357,1.8207894563674927,1.8550390005111694,1.786539912223816,1.5296686887741089,1.5981676578521729,1.563918113708496,1.3412963151931763,1.563918113708496,1.3926706314086914,1.563918113708496,1.5810428857803345,1.7009161710739136,1.5981676578521729,1.9235379695892334,2.0091617107391357,1.8207894563674927,1.9920369386672974,1.9920369386672974,1.9920369386672974,2.0605359077453613,2.1461598873138428,2.129034996032715,1.9749122858047485,2.1975340843200684,2.111910343170166,2.1632845401763916,1.9920369386672974,2.0605359077453613,2.129034996032715,2.248908281326294,2.1461598873138428,2.1632845401763916,2.1461598873138428,2.111910343170166,2.248908281326294,2.0776607990264893,2.0605359077453613,2.248908281326294,2.1632845401763916,2.0776607990264893,2.1461598873138428,2.094785451889038,2.248908281326294,1.9920369386672974,2.231783628463745,2.111910343170166,2.248908281326294,2.1632845401763916,1.906413197517395,2.0434112548828125,2.094785451889038,2.0605359077453613,1.9749122858047485,1.8550390005111694,2.0262866020202637,2.094785451889038,1.9920369386672974,2.0605359077453613,1.2385478019714355,0.8960527181625366,1.0159260034561157,1.1186745166778564,0.8275537490844727,0.416559636592865,0.6049319505691528,-0.4739275574684143,-0.4739275574684143,-0.919171154499054,-1.1931672096252441,-0.4568028151988983,-0.7136741280555725,-0.16568198800086975,-0.6451750993728638,0.21106259524822235,-0.01155920885503292,0.5021833777427673,0.2624368667602539,-0.08005822449922562,-0.884921669960022,-0.14855724573135376,-0.6280503273010254,-0.5081770420074463,-1.1417930126190186,0.24531209468841553,0.24531209468841553,1.1357992887496948,1.0844250917434692,-1.0904186964035034,0.31381112337112427,0.36518537998199463,-0.18280674517154694,0.6563062071800232,0.5706824064254761,1.3412963151931763,0.5193081498146057,0.7933042049407959,0.9645517468452454,0.9645517468452454,0.9988012909889221,1.101549744606018,1.4097954034805298,1.324171543121338,1.3412963151931763,1.444044828414917,1.2899221181869507,1.3584210872650146,1.5467933416366577,1.3584210872650146,1.4097954034805298,1.324171543121338,1.5467933416366577,1.6152924299240112,1.837914228439331,1.1700488328933716,1.4611696004867554,1.2385478019714355,0.9645517468452454,2.1804091930389404,2.129034996032715,2.0605359077453613,1.8721636533737183,1.8721636533737183,0.9988012909889221,1.0673003196716309,1.563918113708496,0.6905556917190552,1.6324172019958496,1.6837913990020752,1.307046890258789,1.906413197517395,1.2214230298995972,1.1529240608215332,0.7933042049407959,1.3584210872650146,1.2214230298995972,1.4269200563430786,1.5125439167022705,1.2214230298995972,1.307046890258789,1.7522904872894287,1.5810428857803345,1.718040943145752,1.7009161710739136,1.7694151401519775,1.9235379695892334,1.6324172019958496,1.9920369386672974,1.7351657152175903,1.837914228439331,2.0091617107391357,1.6837913990020752,1.8721636533737183,2.0091617107391357,1.9577875137329102,1.7694151401519775,1.5810428857803345,1.9577875137329102,1.9406627416610718],[2.231783628463745,2.0605359077453613,1.9577875137329102,1.563918113708496,1.5810428857803345,1.7694151401519775,2.094785451889038,2.0434112548828125,1.6324172019958496,1.3584210872650146,0.10831406712532043,0.36518537998199463,0.416559636592865,-0.30268001556396484,0.8618032336235046,0.7248051762580872,-0.5938008427619934,-1.2445415258407593,-0.9705454111099243,-0.884921669960022,-1.7240345478057861,-1.2787909507751465,-2.032280206680298,-2.0494048595428467,-2.0494048595428467,-0.6109256148338318,-1.0904186964035034,-1.2445415258407593,-1.4500385522842407,-0.8164226412773132,0.34806060791015625,0.10831406712532043,0.17681308090686798,-0.4568028151988983,-0.5081770420074463,0.2966863512992859,-0.4910523295402527,-1.0219197273254395,-0.8164226412773132,-1.1075434684753418,-0.7479236125946045,-0.5253018140792847,-0.8164226412773132,-1.3815394639968872,-0.9876701831817627,-1.3301652669906616,-1.6384108066558838,-1.5014127492904663,-1.3986642360687256,0.07406456023454666,0.5021833777427673,0.12543882429599762,-0.42255330085754395,-0.7650483846664429,0.36518537998199463,0.5878071784973145,0.6563062071800232,-1.8439078330993652,-1.2445415258407593,1.563918113708496,1.9920369386672974,2.248908281326294,2.1461598873138428,2.248908281326294,2.0605359077453613,1.8721636533737183,1.7522904872894287,1.8207894563674927,1.786539912223816,1.6324172019958496,1.5296686887741089,1.6837913990020752,1.6666666269302368,1.9235379695892334,1.5981676578521729,1.7009161710739136,1.6666666269302368,1.6837913990020752,1.6837913990020752,1.9406627416610718,2.0262866020202637,1.906413197517395,2.129034996032715,1.8721636533737183,1.9749122858047485,2.214658737182617,2.1804091930389404,2.0434112548828125,2.0776607990264893,2.094785451889038,2.1461598873138428,2.0091617107391357,1.9749122858047485,1.8892884254455566,1.9920369386672974,2.0605359077453613,2.0434112548828125,2.0776607990264893,1.906413197517395,2.094785451889038,1.9577875137329102,2.1461598873138428,2.1461598873138428,2.1632845401763916,2.248908281326294,2.214658737182617,2.0776607990264893,2.0776607990264893,2.1632845401763916,2.1975340843200684,1.9749122858047485,2.1632845401763916,2.248908281326294,2.1461598873138428,2.248908281326294,2.1461598873138428,2.248908281326294,2.0776607990264893,1.9577875137329102,2.1804091930389404,2.0605359077453613,2.129034996032715,1.9235379695892334,2.248908281326294,0.9303022623062134,0.31381112337112427,0.6391814351081848,0.8104289770126343,0.5535576939582825,-0.04580871760845184,-0.0971829816699028,-0.542426586151123,-0.28555527329444885,-0.6109256148338318,-0.30268001556396484,-1.1760424375534058,-1.004794955253601,-0.14855724573135376,-0.40542855858802795,0.03981505334377289,-0.4739275574684143,0.8618032336235046,0.19393783807754517,-0.0971829816699028,0.33093586564064026,0.7248051762580872,-0.43967804312705994,-0.5081770420074463,-0.16568198800086975,0.5364329218864441,-0.18280674517154694,-0.11430773138999939,-0.06293346732854843,-0.8335474133491516,-0.08005822449922562,-0.7650483846664429,-0.4910523295402527,0.1425635814666748,0.433684378862381,0.6905556917190552,0.878928005695343,1.2214230298995972,0.9988012909889221,1.101549744606018,1.1357992887496948,1.375545859336853,1.4954191446304321,1.2727973461151123,1.4097954034805298,1.3584210872650146,1.5125439167022705,1.3926706314086914,1.4782943725585938,1.5981676578521729,1.5981676578521729,1.5125439167022705,1.4097954034805298,1.563918113708496,1.5125439167022705,1.5467933416366577,1.7009161710739136,1.3584210872650146,0.6905556917190552,1.9577875137329102,2.248908281326294,2.1461598873138428,2.1632845401763916,1.9920369386672974,1.2385478019714355,1.5981676578521729,1.3926706314086914,1.375545859336853,1.4269200563430786,1.2214230298995972,1.7009161710739136,1.5467933416366577,2.0776607990264893,1.0501755475997925,1.4782943725585938,1.101549744606018,1.2214230298995972,1.3584210872650146,1.4954191446304321,1.4097954034805298,1.6152924299240112,1.5810428857803345,1.7009161710739136,1.6837913990020752,1.7009161710739136,1.4954191446304321,1.8036646842956543,1.6837913990020752,1.9577875137329102,1.8721636533737183,1.8207894563674927,1.9406627416610718,1.8550390005111694,1.9577875137329102,1.8036646842956543,1.8721636533737183,1.8036646842956543,1.8721636533737183,1.786539912223816,1.837914228439331],[2.0262866020202637,2.248908281326294,2.094785451889038,1.8550390005111694,1.5296686887741089,0.9816765189170837,1.324171543121338,1.9920369386672974,1.6666666269302368,1.2214230298995972,0.9645517468452454,1.4097954034805298,0.7076804637908936,1.0501755475997925,0.7761794924736023,0.34806060791015625,0.22818733751773834,-0.4739275574684143,-0.9876701831817627,-1.073293924331665,-1.7411593198776245,-1.758284091949463,-1.7069098949432373,-0.8506721258163452,0.46793389320373535,0.21106259524822235,-0.28555527329444885,-1.2102919816970825,-1.467163324356079,-0.7136741280555725,0.09118931740522385,0.33093586564064026,0.31381112337112427,-0.5081770420074463,-1.0904186964035034,-0.9705454111099243,0.2795616090297699,-1.0561691522598267,-0.2170562595129013,-0.2513057589530945,-0.40542855858802795,-0.40542855858802795,-0.6109256148338318,-1.227416753768921,-1.3986642360687256,-1.689785122871399,-1.8439078330993652,-1.3986642360687256,-1.2787909507751465,-0.9705454111099243,0.09118931740522385,0.416559636592865,1.1357992887496948,-0.04580871760845184,0.07406456023454666,0.8446784615516663,1.4782943725585938,-1.3130404949188232,0.8960527181625366,1.8892884254455566,2.0434112548828125,1.9749122858047485,1.9749122858047485,1.6324172019958496,1.7351657152175903,1.7351657152175903,1.7351657152175903,1.6324172019958496,1.6152924299240112,1.5296686887741089,1.7009161710739136,1.563918113708496,1.3412963151931763,1.4954191446304321,1.7694151401519775,1.5296686887741089,1.8207894563674927,1.8721636533737183,1.9577875137329102,1.8721636533737183,2.0776607990264893,2.094785451889038,2.248908281326294,1.8892884254455566,2.0605359077453613,1.837914228439331,2.111910343170166,2.1804091930389404,2.1975340843200684,2.129034996032715,2.1975340843200684,2.111910343170166,2.0776607990264893,2.0605359077453613,1.6837913990020752,1.9920369386672974,2.094785451889038,2.0434112548828125,1.9235379695892334,2.1804091930389404,2.129034996032715,2.248908281326294,2.1461598873138428,2.1804091930389404,2.248908281326294,2.248908281326294,2.248908281326294,2.0434112548828125,1.8550390005111694,1.9920369386672974,2.0605359077453613,2.111910343170166,2.1632845401763916,2.129034996032715,2.0262866020202637,2.248908281326294,2.1975340843200684,1.9749122858047485,2.0262866020202637,2.1975340843200684,2.248908281326294,1.9920369386672974,2.214658737182617,1.033050775527954,0.2966863512992859,0.2795616090297699,0.005565545056015253,0.46793389320373535,0.022690298035740852,0.17681308090686798,0.8275537490844727,0.09118931740522385,1.444044828414917,1.5981676578521729,1.4269200563430786,1.8207894563674927,1.444044828414917,0.913177490234375,1.0844250917434692,0.8446784615516663,0.5535576939582825,0.1596883237361908,0.005565545056015253,-0.3540542721748352,0.10831406712532043,0.056939806789159775,0.022690298035740852,0.7761794924736023,1.0844250917434692,0.5706824064254761,1.0844250917434692,0.8960527181625366,0.31381112337112427,0.31381112337112427,-0.9362959265708923,-0.6451750993728638,0.056939806789159775,0.8446784615516663,0.6563062071800232,0.7590547204017639,0.878928005695343,1.1700488328933716,1.2727973461151123,1.1529240608215332,1.7522904872894287,1.5125439167022705,1.5467933416366577,1.6495418548583984,1.8892884254455566,1.8207894563674927,1.718040943145752,1.4611696004867554,1.7009161710739136,1.6324172019958496,1.6837913990020752,1.5296686887741089,1.5125439167022705,1.6324172019958496,1.5125439167022705,1.6152924299240112,1.5981676578521729,1.307046890258789,0.8960527181625366,0.22818733751773834,2.094785451889038,2.1632845401763916,1.9577875137329102,1.4269200563430786,1.9749122858047485,2.0605359077453613,0.9474270343780518,1.1186745166778564,1.4097954034805298,1.324171543121338,1.6324172019958496,1.718040943145752,2.111910343170166,2.0262866020202637,1.1357992887496948,1.2727973461151123,0.8618032336235046,1.101549744606018,1.375545859336853,1.2899221181869507,1.4782943725585938,1.6324172019958496,1.8721636533737183,1.6495418548583984,1.6152924299240112,1.7351657152175903,1.7694151401519775,1.8207894563674927,1.9749122858047485,1.906413197517395,1.9749122858047485,2.0434112548828125,2.214658737182617,1.9577875137329102,1.8036646842956543,1.718040943145752,1.906413197517395,1.8892884254455566,1.7522904872894287,1.8036646842956543],[2.1975340843200684,2.231783628463745,2.1632845401763916,1.837914228439331,1.4782943725585938,0.878928005695343,1.1529240608215332,1.324171543121338,1.4097954034805298,1.6152924299240112,1.1700488328933716,0.8618032336235046,1.0159260034561157,1.2899221181869507,0.8960527181625366,0.8960527181625366,0.9303022623062134,0.1596883237361908,0.31381112337112427,0.19393783807754517,-0.08005822449922562,-1.227416753768921,-0.40542855858802795,0.416559636592865,1.1700488328933716,0.8275537490844727,0.48505866527557373,-0.884921669960022,-1.2102919816970825,-0.6794245839118958,0.1596883237361908,0.2795616090297699,0.31381112337112427,0.24531209468841553,-0.13143248856067657,0.09118931740522385,-0.028683962300419807,-0.26843053102493286,0.03981505334377289,0.19393783807754517,0.005565545056015253,0.09118931740522385,0.17681308090686798,-0.30268001556396484,-0.28555527329444885,-0.8677968978881836,-1.3815394639968872,-1.8267830610275269,-0.9362959265708923,-0.7136741280555725,-1.0561691522598267,0.3823101222515106,0.7761794924736023,-0.2513057589530945,0.5193081498146057,1.1529240608215332,0.9988012909889221,-0.3540542721748352,0.9988012909889221,2.094785451889038,2.1804091930389404,1.9749122858047485,1.8207894563674927,1.9920369386672974,1.8550390005111694,1.5981676578521729,1.6324172019958496,1.4611696004867554,1.5125439167022705,1.324171543121338,1.5125439167022705,1.5296686887741089,1.4097954034805298,1.7522904872894287,1.7351657152175903,1.8036646842956543,1.786539912223816,1.8207894563674927,2.111910343170166,1.9406627416610718,1.8550390005111694,2.0776607990264893,1.8036646842956543,2.0434112548828125,1.8036646842956543,1.9235379695892334,2.1975340843200684,2.0434112548828125,2.1975340843200684,2.248908281326294,2.248908281326294,1.9749122858047485,2.231783628463745,2.111910343170166,2.1461598873138428,1.9749122858047485,2.129034996032715,2.094785451889038,2.1975340843200684,2.0605359077453613,2.1461598873138428,2.248908281326294,2.0605359077453613,2.1461598873138428,2.1632845401763916,2.248908281326294,2.0091617107391357,2.094785451889038,1.906413197517395,2.1804091930389404,2.129034996032715,2.231783628463745,2.111910343170166,2.0262866020202637,2.1632845401763916,2.231783628463745,2.0091617107391357,2.1632845401763916,2.0434112548828125,2.0776607990264893,1.9920369386672974,1.906413197517395,2.111910343170166,0.9988012909889221,-0.5081770420074463,0.005565545056015253,-0.028683962300419807,0.22818733751773834,0.31381112337112427,0.3823101222515106,0.433684378862381,1.8892884254455566,1.5125439167022705,1.4097954034805298,1.6495418548583984,1.786539912223816,1.8550390005111694,1.563918113708496,0.2624368667602539,1.1186745166778564,1.0159260034561157,0.005565545056015253,-0.30268001556396484,0.3823101222515106,0.5021833777427673,0.7590547204017639,0.022690298035740852,0.6049319505691528,-0.06293346732854843,0.8618032336235046,0.9988012909889221,0.22818733751773834,1.4269200563430786,-1.004794955253601,-0.40542855858802795,-0.08005822449922562,0.2624368667602539,0.913177490234375,0.9988012909889221,0.9988012909889221,1.101549744606018,1.1186745166778564,1.3412963151931763,1.4782943725585938,1.6495418548583984,1.7694151401519775,1.8550390005111694,1.8036646842956543,1.786539912223816,1.718040943145752,1.786539912223816,1.7009161710739136,1.6666666269302368,1.7522904872894287,1.8721636533737183,1.7694151401519775,1.718040943145752,1.837914228439331,1.718040943145752,1.786539912223816,1.6495418548583984,1.5467933416366577,0.8618032336235046,0.433684378862381,1.786539912223816,2.0091617107391357,2.0605359077453613,1.3584210872650146,1.5125439167022705,1.8036646842956543,1.5981676578521729,1.4782943725585938,1.5125439167022705,1.4269200563430786,1.7009161710739136,1.5467933416366577,1.4269200563430786,2.0091617107391357,0.7248051762580872,0.8446784615516663,1.18717360496521,1.3584210872650146,1.324171543121338,1.375545859336853,1.5125439167022705,1.7009161710739136,1.7522904872894287,1.6324172019958496,1.8721636533737183,1.7351657152175903,1.7522904872894287,1.9577875137329102,1.8036646842956543,1.8721636533737183,2.0605359077453613,1.837914228439331,1.906413197517395,2.214658737182617,1.7522904872894287,1.6152924299240112,1.7522904872894287,1.8207894563674927,1.8721636533737183,1.718040943145752],[2.248908281326294,2.1632845401763916,2.094785451889038,1.9749122858047485,1.6666666269302368,0.7590547204017639,1.2727973461151123,1.4269200563430786,1.18717360496521,1.1700488328933716,0.7761794924736023,0.6905556917190552,0.9474270343780518,0.9474270343780518,0.8960527181625366,0.36518537998199463,0.8446784615516663,0.8104289770126343,0.8618032336235046,1.0159260034561157,0.17681308090686798,0.07406456023454666,0.6220566630363464,0.5193081498146057,1.2727973461151123,0.8618032336235046,-0.06293346732854843,-1.2616662979125977,-1.0561691522598267,-0.5253018140792847,-0.04580871760845184,0.22818733751773834,0.7590547204017639,0.07406456023454666,-0.542426586151123,-0.11430773138999939,-1.0390443801879883,-0.14855724573135376,0.07406456023454666,0.03981505334377289,0.17681308090686798,0.12543882429599762,0.5193081498146057,0.24531209468841553,0.07406456023454666,-0.01155920885503292,-0.7307988405227661,-1.2445415258407593,-1.1075434684753418,-0.26843053102493286,-0.8164226412773132,-0.4568028151988983,0.8618032336235046,-0.5938008427619934,0.10831406712532043,0.5021833777427673,-0.18280674517154694,0.7248051762580872,1.9920369386672974,1.9577875137329102,2.0262866020202637,1.786539912223816,1.9235379695892334,1.786539912223816,1.6666666269302368,1.6152924299240112,1.4954191446304321,1.5467933416366577,1.4954191446304321,1.4782943725585938,1.6666666269302368,1.786539912223816,1.5810428857803345,1.906413197517395,1.7009161710739136,1.9920369386672974,1.8721636533737183,2.0605359077453613,1.9406627416610718,2.0091617107391357,2.0091617107391357,2.1804091930389404,2.248908281326294,2.1632845401763916,2.248908281326294,2.1975340843200684,2.248908281326294,2.094785451889038,2.129034996032715,2.1632845401763916,1.9235379695892334,2.0776607990264893,2.0605359077453613,2.248908281326294,1.9235379695892334,2.1461598873138428,1.9749122858047485,2.0262866020202637,2.1461598873138428,2.129034996032715,2.1632845401763916,2.094785451889038,2.129034996032715,2.1804091930389404,2.0776607990264893,2.214658737182617,2.111910343170166,2.129034996032715,2.0776607990264893,1.8721636533737183,1.786539912223816,2.1461598873138428,2.248908281326294,2.248908281326294,2.1632845401763916,2.214658737182617,2.0262866020202637,2.231783628463745,2.1804091930389404,2.248908281326294,2.094785451889038,2.094785451889038,2.1975340843200684,0.7248051762580872,-0.6280503273010254,-0.3883037865161896,0.17681308090686798,-0.18280674517154694,0.33093586564064026,1.8207894563674927,2.231783628463745,2.111910343170166,2.0605359077453613,1.4782943725585938,1.324171543121338,0.9988012909889221,1.7522904872894287,1.8207894563674927,1.9749122858047485,1.101549744606018,1.5467933416366577,1.0673003196716309,1.8207894563674927,0.5535576939582825,1.1357992887496948,0.6905556917190552,0.6563062071800232,1.033050775527954,1.4269200563430786,1.1529240608215332,1.375545859336853,1.307046890258789,-0.8506721258163452,-0.3369295299053192,-0.028683962300419807,0.7590547204017639,1.101549744606018,1.0159260034561157,1.2385478019714355,1.255672574043274,1.4097954034805298,1.375545859336853,1.6152924299240112,1.7009161710739136,1.7351657152175903,1.8550390005111694,1.7694151401519775,1.8892884254455566,1.5810428857803345,1.8207894563674927,1.786539912223816,1.837914228439331,1.7522904872894287,1.786539912223816,1.8036646842956543,1.906413197517395,1.8721636533737183,1.8550390005111694,1.8550390005111694,1.8550390005111694,1.5981676578521729,1.3584210872650146,1.2385478019714355,0.34806060791015625,0.878928005695343,2.1461598873138428,1.8550390005111694,1.6152924299240112,1.2214230298995972,1.4611696004867554,1.7694151401519775,1.6666666269302368,2.0091617107391357,1.4611696004867554,1.6495418548583984,1.4269200563430786,1.7522904872894287,1.9749122858047485,1.0673003196716309,0.878928005695343,0.8104289770126343,1.3412963151931763,1.307046890258789,1.2042982578277588,1.2214230298995972,1.3584210872650146,1.563918113708496,1.7694151401519775,1.718040943145752,1.837914228439331,1.7009161710739136,1.8207894563674927,1.8892884254455566,1.9406627416610718,1.9749122858047485,1.8036646842956543,2.0091617107391357,1.906413197517395,1.837914228439331,1.718040943145752,1.6666666269302368,1.8036646842956543,1.7694151401519775,1.8721636533737183],[2.1804091930389404,2.214658737182617,2.129034996032715,2.1632845401763916,1.4782943725585938,1.255672574043274,0.8104289770126343,0.8275537490844727,0.9988012909889221,0.6563062071800232,0.5878071784973145,0.5706824064254761,0.36518537998199463,0.5535576939582825,-0.2513057589530945,0.48505866527557373,0.5878071784973145,1.101549744606018,1.2042982578277588,0.31381112337112427,0.6563062071800232,0.9474270343780518,1.2042982578277588,0.8446784615516663,0.878928005695343,0.7419299483299255,-0.30268001556396484,-1.1246682405471802,-0.40542855858802795,-0.5938008427619934,0.8618032336235046,-0.06293346732854843,0.5535576939582825,0.5193081498146057,-0.3369295299053192,-1.4842880964279175,-0.30268001556396484,0.2795616090297699,0.1596883237361908,0.2624368667602539,0.17681308090686798,0.005565545056015253,0.6049319505691528,0.5021833777427673,0.36518537998199463,-0.11430773138999939,-0.2513057589530945,-0.7479236125946045,-1.2959157228469849,-0.7479236125946045,-0.43967804312705994,-0.11430773138999939,-0.16568198800086975,-1.3301652669906616,-0.028683962300419807,0.7419299483299255,-0.28555527329444885,1.837914228439331,2.111910343170166,1.9235379695892334,2.0262866020202637,1.837914228439331,1.8036646842956543,1.5981676578521729,1.4097954034805298,1.375545859336853,1.3412963151931763,1.4954191446304321,1.6152924299240112,1.5296686887741089,1.5810428857803345,1.7009161710739136,1.8036646842956543,2.1632845401763916,1.8207894563674927,2.111910343170166,1.6495418548583984,2.0776607990264893,2.1804091930389404,1.9920369386672974,2.094785451889038,1.8721636533737183,2.0605359077453613,2.248908281326294,2.231783628463745,2.1632845401763916,2.248908281326294,2.248908281326294,2.129034996032715,2.0434112548828125,2.1804091930389404,1.9235379695892334,2.0776607990264893,2.0605359077453613,1.8892884254455566,2.0434112548828125,2.0091617107391357,1.786539912223816,1.906413197517395,2.0091617107391357,2.0262866020202637,1.9749122858047485,1.9920369386672974,2.1461598873138428,2.129034996032715,2.248908281326294,2.0262866020202637,1.9920369386672974,1.9920369386672974,1.837914228439331,1.9577875137329102,2.0605359077453613,2.111910343170166,1.906413197517395,2.0262866020202637,2.0776607990264893,2.248908281326294,2.0434112548828125,1.8892884254455566,1.8207894563674927,1.786539912223816,2.0091617107391357,1.718040943145752,0.8446784615516663,-0.2513057589530945,0.056939806789159775,1.2042982578277588,2.0262866020202637,2.1461598873138428,2.094785451889038,1.718040943145752,1.307046890258789,1.6837913990020752,1.375545859336853,1.7351657152175903,0.8104289770126343,1.1357992887496948,1.5467933416366577,1.324171543121338,1.5981676578521729,0.5364329218864441,0.7076804637908936,0.2624368667602539,0.878928005695343,1.0844250917434692,1.324171543121338,2.0091617107391357,1.1186745166778564,0.8446784615516663,1.444044828414917,1.837914228439331,0.7761794924736023,0.24531209468841553,0.6049319505691528,0.6220566630363464,0.8618032336235046,1.2214230298995972,1.1700488328933716,1.2727973461151123,1.18717360496521,1.6666666269302368,1.6666666269302368,1.7522904872894287,1.6837913990020752,1.7009161710739136,1.8550390005111694,1.8207894563674927,1.8892884254455566,1.718040943145752,1.837914228439331,1.6837913990020752,1.9406627416610718,1.837914228439331,1.7522904872894287,1.837914228439331,2.111910343170166,1.6837913990020752,1.837914228439331,1.6837913990020752,2.1461598873138428,1.718040943145752,1.324171543121338,1.101549744606018,0.399434894323349,0.9645517468452454,2.111910343170166,2.129034996032715,1.5810428857803345,0.8446784615516663,1.6324172019958496,1.7009161710739136,1.8721636533737183,1.8207894563674927,1.8721636533737183,1.906413197517395,1.4097954034805298,1.8892884254455566,1.9235379695892334,1.8550390005111694,0.399434894323349,0.8275537490844727,1.1529240608215332,0.913177490234375,1.4097954034805298,1.5296686887741089,1.4269200563430786,1.7351657152175903,1.5296686887741089,1.9235379695892334,1.6495418548583984,2.0434112548828125,1.8550390005111694,1.5810428857803345,1.8207894563674927,1.9406627416610718,1.786539912223816,1.5981676578521729,1.786539912223816,1.7009161710739136,1.7009161710739136,1.7009161710739136,1.8036646842956543,1.563918113708496,1.9749122858047485],[2.1632845401763916,2.1461598873138428,2.231783628463745,1.8892884254455566,2.231783628463745,0.9474270343780518,0.8104289770126343,0.7076804637908936,0.8618032336235046,0.6220566630363464,0.433684378862381,-0.06293346732854843,-0.6622998714447021,-0.5938008427619934,-1.1589176654815674,0.2795616090297699,-0.04580871760845184,0.6049319505691528,0.21106259524822235,0.7933042049407959,1.5810428857803345,0.5364329218864441,0.878928005695343,0.46793389320373535,0.9474270343780518,0.7590547204017639,-0.30268001556396484,-1.3130404949188232,-0.542426586151123,-0.26843053102493286,1.307046890258789,-0.2341810017824173,0.07406456023454666,0.6391814351081848,-0.11430773138999939,-1.8267830610275269,-1.0904186964035034,0.45080915093421936,-0.06293346732854843,0.7248051762580872,0.6049319505691528,0.056939806789159775,-0.18280674517154694,0.005565545056015253,0.09118931740522385,0.07406456023454666,-0.43967804312705994,-0.0971829816699028,-0.7821731567382812,-0.8335474133491516,-0.6794245839118958,-0.7479236125946045,0.005565545056015253,-0.5938008427619934,-0.01155920885503292,-0.6109256148338318,1.5810428857803345,2.094785451889038,2.0776607990264893,1.8721636533737183,1.8036646842956543,1.5981676578521729,1.6837913990020752,1.6152924299240112,1.444044828414917,1.3412963151931763,1.4954191446304321,1.2899221181869507,1.5467933416366577,1.6666666269302368,1.7009161710739136,1.8721636533737183,2.0091617107391357,1.906413197517395,1.8036646842956543,2.0091617107391357,2.0776607990264893,1.9920369386672974,2.094785451889038,2.111910343170166,2.111910343170166,2.248908281326294,2.248908281326294,1.9577875137329102,2.248908281326294,2.0776607990264893,2.214658737182617,2.248908281326294,2.0262866020202637,2.1632845401763916,2.248908281326294,2.248908281326294,2.111910343170166,2.0434112548828125,2.248908281326294,1.9235379695892334,1.8207894563674927,2.248908281326294,2.1461598873138428,2.0776607990264893,2.129034996032715,2.248908281326294,2.1804091930389404,2.248908281326294,2.248908281326294,2.248908281326294,2.1804091930389404,2.0434112548828125,2.0605359077453613,2.0434112548828125,2.1461598873138428,2.0605359077453613,2.0091617107391357,1.9749122858047485,2.1632845401763916,1.9749122858047485,1.9920369386672974,2.1461598873138428,2.1461598873138428,2.1804091930389404,1.8207894563674927,1.6152924299240112,2.0262866020202637,2.0262866020202637,2.094785451889038,2.248908281326294,2.0091617107391357,2.0091617107391357,1.9749122858047485,1.9920369386672974,1.5296686887741089,1.9406627416610718,1.8207894563674927,1.8207894563674927,2.0262866020202637,1.7694151401519775,1.563918113708496,0.8960527181625366,0.7761794924736023,0.7248051762580872,0.3823101222515106,-0.06293346732854843,0.7076804637908936,0.45080915093421936,0.878928005695343,0.005565545056015253,1.5125439167022705,1.7351657152175903,1.4611696004867554,1.307046890258789,0.3823101222515106,0.19393783807754517,0.7248051762580872,1.1529240608215332,1.255672574043274,1.2727973461151123,1.4097954034805298,1.3926706314086914,1.563918113708496,1.6495418548583984,1.6666666269302368,1.8036646842956543,1.6324172019958496,1.9577875137329102,1.8036646842956543,1.8036646842956543,1.837914228439331,1.837914228439331,2.0262866020202637,1.8036646842956543,1.8721636533737183,2.0091617107391357,1.8892884254455566,1.8207894563674927,1.9749122858047485,2.0091617107391357,2.094785451889038,1.9235379695892334,1.8550390005111694,2.0605359077453613,1.8550390005111694,1.2899221181869507,1.2385478019714355,1.1700488328933716,1.9577875137329102,1.9749122858047485,1.9406627416610718,1.8721636533737183,0.8104289770126343,1.8892884254455566,2.0605359077453613,1.4954191446304321,2.0091617107391357,2.0262866020202637,1.8721636533737183,1.1186745166778564,1.9235379695892334,2.0434112548828125,2.111910343170166,0.31381112337112427,0.9988012909889221,1.1700488328933716,1.1529240608215332,1.2899221181869507,1.6495418548583984,1.5981676578521729,1.718040943145752,1.6837913990020752,1.6837913990020752,1.6152924299240112,1.7009161710739136,1.6837913990020752,1.5296686887741089,1.6666666269302368,1.7522904872894287,1.8036646842956543,1.6837913990020752,1.8721636533737183,1.8892884254455566,1.8721636533737183,1.6324172019958496,1.8550390005111694,1.8550390005111694,1.786539912223816],[2.1632845401763916,2.1632845401763916,2.1975340843200684,2.248908281326294,1.718040943145752,1.2899221181869507,0.6734309196472168,0.36518537998199463,0.9303022623062134,0.8960527181625366,0.6905556917190552,0.19393783807754517,-0.9362959265708923,-1.0561691522598267,-0.6109256148338318,-0.42255330085754395,-0.42255330085754395,-0.8335474133491516,-0.40542855858802795,-0.18280674517154694,0.7933042049407959,0.48505866527557373,0.7761794924736023,0.2966863512992859,0.6905556917190552,0.2624368667602539,-0.40542855858802795,-1.4500385522842407,-0.6794245839118958,0.005565545056015253,1.0844250917434692,-0.14855724573135376,-0.3711790442466736,0.9645517468452454,-0.919171154499054,-1.5699118375778198,-1.3130404949188232,-0.8164226412773132,0.24531209468841553,0.1425635814666748,0.5364329218864441,0.2624368667602539,0.1596883237361908,-0.4910523295402527,-0.30268001556396484,-0.542426586151123,-0.4568028151988983,-0.13143248856067657,0.005565545056015253,0.005565545056015253,-0.028683962300419807,-0.0971829816699028,-0.2170562595129013,-0.13143248856067657,0.6391814351081848,1.9920369386672974,1.8892884254455566,1.7009161710739136,1.4954191446304321,1.8036646842956543,1.7694151401519775,1.7009161710739136,1.444044828414917,1.4954191446304321,1.5125439167022705,1.4954191446304321,1.4954191446304321,1.6495418548583984,1.8207894563674927,1.8036646842956543,1.786539912223816,1.9577875137329102,1.9235379695892334,2.0434112548828125,2.0776607990264893,1.9749122858047485,1.906413197517395,2.1975340843200684,2.1632845401763916,2.1804091930389404,2.1461598873138428,2.231783628463745,1.9920369386672974,2.1975340843200684,2.1975340843200684,2.248908281326294,2.231783628463745,2.1632845401763916,2.094785451889038,2.0434112548828125,2.1632845401763916,2.231783628463745,2.248908281326294,2.094785451889038,2.214658737182617,2.1804091930389404,2.0605359077453613,2.1461598873138428,2.094785451889038,2.0605359077453613,2.248908281326294,2.1975340843200684,2.0605359077453613,2.0605359077453613,2.1632845401763916,1.9406627416610718,2.214658737182617,2.248908281326294,2.0434112548828125,2.1804091930389404,2.1461598873138428,2.1632845401763916,2.1804091930389404,2.248908281326294,2.1632845401763916,1.9749122858047485,2.214658737182617,1.9577875137329102,1.8550390005111694,2.0091617107391357,1.9749122858047485,2.094785451889038,1.8721636533737183,2.1975340843200684,1.7522904872894287,1.8721636533737183,2.111910343170166,1.7351657152175903,2.0605359077453613,1.906413197517395,1.8892884254455566,2.1975340843200684,2.0605359077453613,1.7522904872894287,1.7009161710739136,1.906413197517395,1.6324172019958496,1.255672574043274,1.4782943725585938,1.0159260034561157,1.375545859336853,1.1186745166778564,1.1186745166778564,0.878928005695343,0.5535576939582825,0.8446784615516663,0.10831406712532043,1.1357992887496948,0.45080915093421936,0.6905556917190552,1.2899221181869507,0.9988012909889221,1.4611696004867554,1.3412963151931763,1.2899221181869507,1.563918113708496,1.5810428857803345,1.5125439167022705,1.8721636533737183,1.786539912223816,1.8550390005111694,1.8550390005111694,1.8721636533737183,1.837914228439331,1.7351657152175903,1.8721636533737183,2.0434112548828125,1.8036646842956543,1.9920369386672974,1.9577875137329102,1.786539912223816,1.786539912223816,1.6666666269302368,2.129034996032715,1.8892884254455566,1.9406627416610718,2.0262866020202637,1.837914228439331,1.718040943145752,1.9577875137329102,1.5296686887741089,1.5125439167022705,1.2727973461151123,1.4097954034805298,2.1975340843200684,2.231783628463745,1.8550390005111694,1.2042982578277588,1.7694151401519775,1.9920369386672974,2.0091617107391357,1.5810428857803345,2.248908281326294,2.0605359077453613,1.718040943145752,1.324171543121338,1.5467933416366577,2.094785451889038,2.0262866020202637,-0.04580871760845184,0.7933042049407959,0.8446784615516663,1.4611696004867554,1.3926706314086914,1.4782943725585938,1.5981676578521729,1.6495418548583984,1.6666666269302368,1.5981676578521729,1.7522904872894287,1.837914228439331,1.718040943145752,1.8892884254455566,1.8721636533737183,1.7522904872894287,1.7522904872894287,1.837914228439331,1.7009161710739136,1.9577875137329102,1.3584210872650146,1.786539912223816,1.6495418548583984,1.5810428857803345,1.8892884254455566],[2.1975340843200684,2.1461598873138428,2.1632845401763916,2.0776607990264893,2.1804091930389404,1.4782943725585938,0.913177490234375,0.9303022623062134,0.45080915093421936,0.5878071784973145,0.416559636592865,0.03981505334377289,-0.6451750993728638,-0.6794245839118958,-0.26843053102493286,-0.9020463824272156,-1.227416753768921,-0.14855724573135376,-0.6794245839118958,0.1596883237361908,-1.689785122871399,0.056939806789159775,0.8104289770126343,-0.3369295299053192,-0.3883037865161896,0.03981505334377289,-0.40542855858802795,-1.2102919816970825,-1.004794955253601,-0.19993150234222412,1.2727973461151123,0.056939806789159775,-0.2170562595129013,0.36518537998199463,-0.9362959265708923,-1.4329137802124023,-1.7411593198776245,-1.3644148111343384,-0.4910523295402527,0.056939806789159775,0.22818733751773834,0.416559636592865,0.2624368667602539,0.399434894323349,0.21106259524822235,0.433684378862381,0.7933042049407959,0.8104289770126343,1.2727973461151123,1.1700488328933716,1.0673003196716309,1.6495418548583984,1.6837913990020752,2.111910343170166,1.9235379695892334,1.7009161710739136,1.8550390005111694,1.7694151401519775,1.9406627416610718,1.7009161710739136,1.6837913990020752,1.2214230298995972,1.2727973461151123,1.2899221181869507,1.18717360496521,1.5981676578521729,1.5810428857803345,1.5125439167022705,1.6324172019958496,1.786539912223816,1.9577875137329102,1.906413197517395,1.7694151401519775,2.0434112548828125,1.9406627416610718,2.0434112548828125,2.1632845401763916,1.9920369386672974,2.0776607990264893,1.9577875137329102,1.9577875137329102,1.9749122858047485,2.248908281326294,2.111910343170166,2.214658737182617,2.231783628463745,2.1804091930389404,2.0434112548828125,2.1804091930389404,2.1632845401763916,2.0776607990264893,2.1632845401763916,2.1632845401763916,2.1632845401763916,2.129034996032715,2.1461598873138428,2.111910343170166,1.7009161710739136,2.111910343170166,2.1632845401763916,2.1975340843200684,2.1632845401763916,2.248908281326294,2.0262866020202637,2.111910343170166,2.248908281326294,2.248908281326294,2.094785451889038,1.8892884254455566,2.1804091930389404,2.214658737182617,2.094785451889038,1.837914228439331,1.837914228439331,1.8721636533737183,2.231783628463745,2.0776607990264893,2.0605359077453613,2.0091617107391357,1.9577875137329102,2.0091617107391357,1.8207894563674927,1.7694151401519775,1.9406627416610718,1.7522904872894287,1.6324172019958496,1.8721636533737183,1.9749122858047485,2.129034996032715,1.718040943145752,2.0605359077453613,2.094785451889038,1.8892884254455566,2.0262866020202637,1.9235379695892334,1.7694151401519775,1.9406627416610718,1.7351657152175903,1.4611696004867554,1.7694151401519775,1.7522904872894287,1.1186745166778564,1.4269200563430786,1.6324172019958496,0.878928005695343,0.9474270343780518,1.6666666269302368,0.7590547204017639,1.563918113708496,1.9235379695892334,1.3412963151931763,1.3926706314086914,1.6324172019958496,1.5810428857803345,1.6152924299240112,1.8721636533737183,1.8550390005111694,1.7694151401519775,1.6152924299240112,1.906413197517395,1.8207894563674927,2.0434112548828125,1.9577875137329102,1.8036646842956543,1.9749122858047485,1.8721636533737183,1.9235379695892334,1.9235379695892334,1.9406627416610718,1.837914228439331,1.8721636533737183,1.8892884254455566,1.9577875137329102,1.9749122858047485,2.0776607990264893,2.1804091930389404,1.837914228439331,1.786539912223816,1.563918113708496,1.8550390005111694,1.718040943145752,1.4269200563430786,1.444044828414917,1.906413197517395,1.9406627416610718,2.0605359077453613,1.9235379695892334,1.255672574043274,1.8207894563674927,2.0776607990264893,1.6837913990020752,0.8960527181625366,1.1357992887496948,2.129034996032715,1.8892884254455566,1.6666666269302368,1.9406627416610718,2.1804091930389404,1.9235379695892334,0.8446784615516663,1.0673003196716309,0.8275537490844727,1.4611696004867554,1.4782943725585938,1.6152924299240112,1.837914228439331,1.6152924299240112,1.5296686887741089,1.8036646842956543,1.5981676578521729,1.4954191446304321,1.7009161710739136,1.9749122858047485,1.563918113708496,1.5810428857803345,1.718040943145752,1.5981676578521729,1.6495418548583984,1.7009161710739136,1.5296686887741089,1.5981676578521729,1.5125439167022705,1.9577875137329102,1.5296686887741089],[2.1632845401763916,2.1632845401763916,2.1975340843200684,2.1975340843200684,2.1804091930389404,1.9235379695892334,0.7248051762580872,0.5706824064254761,0.34806060791015625,0.10831406712532043,0.913177490234375,0.8618032336235046,0.7933042049407959,0.7076804637908936,0.34806060791015625,0.34806060791015625,0.24531209468841553,-0.9534206986427307,-0.8335474133491516,-1.604161262512207,-0.542426586151123,-1.8610326051712036,-0.5595513582229614,-0.3711790442466736,-0.7307988405227661,-0.9534206986427307,-1.004794955253601,-1.3130404949188232,-1.2445415258407593,-0.4568028151988983,0.7248051762580872,0.1425635814666748,-0.18280674517154694,0.19393783807754517,-0.26843053102493286,-1.7925336360931396,-1.5527870655059814,-1.5014127492904663,-0.5253018140792847,-0.2513057589530945,0.33093586564064026,0.7933042049407959,1.0501755475997925,1.4269200563430786,1.3584210872650146,1.3584210872650146,1.5810428857803345,1.9749122858047485,2.0776607990264893,2.0434112548828125,2.0605359077453613,1.9406627416610718,1.8550390005111694,1.786539912223816,1.6666666269302368,1.9920369386672974,1.7522904872894287,1.6666666269302368,1.5467933416366577,1.2727973461151123,1.2214230298995972,1.307046890258789,1.444044828414917,1.4097954034805298,1.7009161710739136,1.6495418548583984,1.8892884254455566,1.7522904872894287,1.8721636533737183,2.0605359077453613,2.0091617107391357,2.111910343170166,1.9920369386672974,2.1632845401763916,2.129034996032715,1.9577875137329102,1.906413197517395,2.0262866020202637,2.0091617107391357,2.0434112548828125,1.9577875137329102,2.1975340843200684,2.129034996032715,2.248908281326294,1.9920369386672974,2.0605359077453613,2.111910343170166,2.0434112548828125,2.1632845401763916,2.214658737182617,2.111910343170166,2.0776607990264893,2.0091617107391357,2.0605359077453613,2.0605359077453613,2.248908281326294,2.0776607990264893,2.214658737182617,2.129034996032715,2.0434112548828125,2.1632845401763916,2.129034996032715,2.0605359077453613,2.214658737182617,2.129034996032715,2.248908281326294,1.906413197517395,2.129034996032715,1.9920369386672974,1.8721636533737183,2.0262866020202637,2.231783628463745,2.111910343170166,2.1975340843200684,2.0776607990264893,2.0434112548828125,2.0434112548828125,2.129034996032715,2.1632845401763916,1.9235379695892334,1.9749122858047485,1.6837913990020752,2.0605359077453613,2.129034996032715,2.1632845401763916,2.248908281326294,2.0434112548828125,2.1632845401763916,1.9920369386672974,2.248908281326294,1.8550390005111694,2.248908281326294,2.214658737182617,1.8036646842956543,1.8892884254455566,1.8207894563674927,2.0262866020202637,1.9920369386672974,1.9406627416610718,1.2899221181869507,1.7009161710739136,1.5296686887741089,1.6495418548583984,1.4954191446304321,1.4782943725585938,1.5810428857803345,1.6152924299240112,1.8036646842956543,2.0262866020202637,2.0434112548828125,1.6666666269302368,1.786539912223816,2.111910343170166,1.9235379695892334,1.8892884254455566,1.9577875137329102,1.9235379695892334,1.8721636533737183,1.9749122858047485,2.094785451889038,2.0262866020202637,1.906413197517395,2.129034996032715,2.0605359077453613,2.0605359077453613,2.0776607990264893,1.7351657152175903,1.9235379695892334,1.8550390005111694,1.8207894563674927,1.8892884254455566,1.9577875137329102,1.9749122858047485,2.0091617107391357,1.7522904872894287,2.0262866020202637,1.906413197517395,1.786539912223816,1.9235379695892334,1.6495418548583984,1.3926706314086914,1.6837913990020752,1.9235379695892334,2.111910343170166,2.094785451889038,2.129034996032715,2.111910343170166,1.6837913990020752,0.1425635814666748,1.8036646842956543,1.4782943725585938,1.4782943725585938,1.8036646842956543,1.0159260034561157,1.8036646842956543,1.8550390005111694,2.1632845401763916,2.248908281326294,0.6734309196472168,0.10831406712532043,0.005565545056015253,0.8446784615516663,1.9577875137329102,2.0434112548828125,1.6837913990020752,1.6837913990020752,1.5810428857803345,1.9577875137329102,1.5981676578521729,1.7009161710739136,1.7351657152175903,1.7694151401519775,1.7694151401519775,1.5810428857803345,1.6837913990020752,1.9406627416610718,1.7694151401519775,1.786539912223816,1.906413197517395,1.5810428857803345,1.8721636533737183,1.7009161710739136,1.6495418548583984,1.7351657152175903],[2.094785451889038,2.1461598873138428,2.1975340843200684,2.248908281326294,2.248908281326294,1.8550390005111694,0.8446784615516663,0.6391814351081848,0.33093586564064026,0.6049319505691528,0.8618032336235046,1.1357992887496948,0.48505866527557373,0.46793389320373535,0.3823101222515106,0.9474270343780518,0.7590547204017639,-0.14855724573135376,0.03981505334377289,-0.08005822449922562,-0.13143248856067657,0.45080915093421936,-0.0971829816699028,0.2624368667602539,0.31381112337112427,-0.19993150234222412,-1.0390443801879883,-0.576676070690155,-0.9362959265708923,-0.40542855858802795,0.5706824064254761,0.2795616090297699,0.12543882429599762,-0.028683962300419807,0.24531209468841553,-0.30268001556396484,-1.0904186964035034,-0.7307988405227661,-0.14855724573135376,0.07406456023454666,0.2795616090297699,1.324171543121338,1.786539912223816,1.718040943145752,1.8207894563674927,1.7351657152175903,1.8892884254455566,1.7522904872894287,1.8207894563674927,1.8550390005111694,2.0776607990264893,1.8550390005111694,2.0434112548828125,2.0091617107391357,1.8036646842956543,1.5981676578521729,1.3412963151931763,1.2042982578277588,1.18717360496521,1.0844250917434692,1.5125439167022705,1.3584210872650146,1.5467933416366577,1.7009161710739136,1.9577875137329102,1.837914228439331,2.0091617107391357,1.8550390005111694,1.837914228439331,2.129034996032715,1.8207894563674927,1.9920369386672974,2.1632845401763916,1.9749122858047485,2.0091617107391357,2.094785451889038,2.214658737182617,2.111910343170166,2.111910343170166,2.0434112548828125,2.248908281326294,2.111910343170166,2.094785451889038,2.111910343170166,2.094785451889038,2.248908281326294,2.248908281326294,2.1975340843200684,2.1975340843200684,2.094785451889038,2.248908281326294,2.0262866020202637,2.129034996032715,2.248908281326294,2.248908281326294,2.0434112548828125,2.248908281326294,2.248908281326294,2.111910343170166,2.111910343170166,2.248908281326294,2.248908281326294,2.094785451889038,2.0434112548828125,2.1461598873138428,2.1632845401763916,2.1461598873138428,2.0434112548828125,1.9749122858047485,2.0605359077453613,2.111910343170166,2.1632845401763916,1.906413197517395,2.248908281326294,1.8207894563674927,2.0091617107391357,1.9749122858047485,2.111910343170166,2.248908281326294,2.129034996032715,2.248908281326294,1.9235379695892334,1.8892884254455566,2.1975340843200684,1.837914228439331,2.0776607990264893,1.9577875137329102,1.9406627416610718,2.248908281326294,2.0605359077453613,1.837914228439331,1.9235379695892334,2.111910343170166,1.9577875137329102,1.8036646842956543,2.111910343170166,1.8721636533737183,1.8550390005111694,1.6666666269302368,2.1975340843200684,2.1461598873138428,2.129034996032715,1.4782943725585938,1.6666666269302368,2.0262866020202637,1.786539912223816,1.7009161710739136,2.0605359077453613,1.9406627416610718,2.094785451889038,2.248908281326294,1.837914228439331,2.1804091930389404,1.9577875137329102,1.9749122858047485,2.231783628463745,1.9920369386672974,2.0262866020202637,1.9920369386672974,1.8721636533737183,1.9577875137329102,1.906413197517395,1.9920369386672974,1.9920369386672974,2.0262866020202637,1.8207894563674927,2.0776607990264893,2.0434112548828125,2.094785451889038,1.9920369386672974,1.906413197517395,2.0605359077453613,2.0262866020202637,1.906413197517395,2.0434112548828125,1.9406627416610718,1.7694151401519775,1.906413197517395,2.0434112548828125,2.0434112548828125,1.906413197517395,1.786539912223816,1.9920369386672974,2.231783628463745,2.1804091930389404,2.0262866020202637,2.0262866020202637,1.6666666269302368,-1.2787909507751465,1.307046890258789,1.5467933416366577,2.231783628463745,1.786539912223816,1.6666666269302368,1.9920369386672974,2.0605359077453613,1.7351657152175903,1.563918113708496,0.36518537998199463,-0.26843053102493286,0.22818733751773834,1.18717360496521,1.8036646842956543,2.0262866020202637,2.1632845401763916,2.0434112548828125,1.718040943145752,1.8207894563674927,1.718040943145752,1.7522904872894287,1.718040943145752,1.7351657152175903,1.9235379695892334,1.9920369386672974,1.786539912223816,1.6666666269302368,1.906413197517395,1.7694151401519775,1.6152924299240112,1.7009161710739136,1.563918113708496,1.837914228439331,1.7522904872894287,1.6324172019958496],[2.1632845401763916,2.094785451889038,2.094785451889038,2.248908281326294,2.0091617107391357,1.8892884254455566,1.2899221181869507,0.46793389320373535,0.6220566630363464,0.7076804637908936,0.7590547204017639,0.2966863512992859,0.07406456023454666,0.34806060791015625,0.8618032336235046,1.255672574043274,0.7419299483299255,1.0501755475997925,0.7590547204017639,1.0844250917434692,0.7419299483299255,1.1700488328933716,0.5535576939582825,0.2795616090297699,-0.06293346732854843,0.10831406712532043,-0.2170562595129013,0.056939806789159775,0.17681308090686798,-0.2341810017824173,0.8960527181625366,0.5535576939582825,0.34806060791015625,0.433684378862381,0.45080915093421936,0.31381112337112427,-0.3883037865161896,-0.2170562595129013,0.46793389320373535,0.9474270343780518,1.2214230298995972,1.837914228439331,2.0091617107391357,2.0776607990264893,1.9920369386672974,1.8550390005111694,2.094785451889038,1.8207894563674927,1.6837913990020752,1.9749122858047485,2.0262866020202637,1.837914228439331,1.563918113708496,1.8036646842956543,1.837914228439331,1.4611696004867554,1.2214230298995972,1.0673003196716309,1.0673003196716309,1.375545859336853,1.4611696004867554,1.2727973461151123,1.718040943145752,1.837914228439331,1.8207894563674927,2.129034996032715,2.0091617107391357,1.8207894563674927,2.0091617107391357,2.0776607990264893,2.1804091930389404,2.1804091930389404,2.1632845401763916,2.0605359077453613,2.0262866020202637,2.1461598873138428,2.1804091930389404,2.1461598873138428,1.9577875137329102,1.8721636533737183,1.906413197517395,2.231783628463745,2.094785451889038,1.8207894563674927,2.0776607990264893,2.111910343170166,2.248908281326294,2.0605359077453613,2.0776607990264893,1.9749122858047485,2.094785451889038,2.0776607990264893,2.248908281326294,2.1804091930389404,2.0776607990264893,2.1975340843200684,2.1975340843200684,2.214658737182617,1.9920369386672974,2.248908281326294,2.094785451889038,2.0776607990264893,2.1975340843200684,2.248908281326294,2.1975340843200684,2.129034996032715,2.248908281326294,2.248908281326294,2.129034996032715,1.7694151401519775,2.0776607990264893,2.0091617107391357,1.9406627416610718,2.129034996032715,2.0605359077453613,2.129034996032715,2.1632845401763916,1.9235379695892334,2.0262866020202637,2.0091617107391357,1.8721636533737183,1.9577875137329102,2.0776607990264893,1.7522904872894287,1.9749122858047485,1.9920369386672974,2.0776607990264893,2.231783628463745,2.0434112548828125,2.0091617107391357,1.9577875137329102,1.8550390005111694,1.9749122858047485,2.111910343170166,2.0262866020202637,2.111910343170166,1.8892884254455566,1.7694151401519775,2.111910343170166,2.1461598873138428,1.9235379695892334,1.7351657152175903,1.9749122858047485,1.8207894563674927,2.0776607990264893,1.7522904872894287,2.0434112548828125,1.718040943145752,2.0262866020202637,1.9749122858047485,1.8721636533737183,2.094785451889038,2.111910343170166,1.9577875137329102,1.9920369386672974,2.094785451889038,2.129034996032715,2.0605359077453613,1.7351657152175903,1.9406627416610718,1.906413197517395,2.0605359077453613,2.111910343170166,1.8892884254455566,1.8721636533737183,2.129034996032715,2.0605359077453613,2.111910343170166,2.0434112548828125,2.0434112548828125,1.9749122858047485,2.1461598873138428,1.8550390005111694,1.8550390005111694,2.129034996032715,2.0262866020202637,1.9749122858047485,1.8721636533737183,1.9920369386672974,1.8892884254455566,1.8721636533737183,2.094785451889038,2.0434112548828125,2.1975340843200684,2.1804091930389404,2.0434112548828125,2.0605359077453613,1.837914228439331,-1.2959157228469849,0.24531209468841553,1.9406627416610718,2.0605359077453613,1.7351657152175903,1.7009161710739136,2.0434112548828125,2.111910343170166,2.248908281326294,0.8618032336235046,0.005565545056015253,-0.11430773138999939,0.17681308090686798,1.2385478019714355,2.231783628463745,2.0434112548828125,1.9577875137329102,1.8721636533737183,1.9577875137329102,1.5296686887741089,1.9235379695892334,1.837914228439331,2.0091617107391357,1.8207894563674927,1.9235379695892334,2.1632845401763916,1.8550390005111694,2.129034996032715,1.718040943145752,1.8721636533737183,1.7351657152175903,1.8036646842956543,1.8207894563674927,1.4954191446304321,1.8892884254455566,1.837914228439331],[2.248908281326294,2.248908281326294,2.1804091930389404,2.248908281326294,2.0434112548828125,2.1461598873138428,1.8036646842956543,0.7248051762580872,0.33093586564064026,0.36518537998199463,0.1596883237361908,-0.14855724573135376,0.5535576939582825,0.8960527181625366,1.1186745166778564,1.1529240608215332,0.8104289770126343,1.101549744606018,1.0159260034561157,1.5981676578521729,1.6666666269302368,1.375545859336853,0.6905556917190552,0.005565545056015253,0.2795616090297699,0.5193081498146057,0.45080915093421936,0.433684378862381,0.5878071784973145,0.7248051762580872,1.307046890258789,1.0844250917434692,0.9303022623062134,1.0501755475997925,1.0501755475997925,0.878928005695343,1.2042982578277588,1.1700488328933716,1.6837913990020752,1.8892884254455566,1.906413197517395,1.563918113708496,2.129034996032715,1.7694151401519775,2.094785451889038,1.9235379695892334,1.9920369386672974,1.5296686887741089,1.8207894563674927,1.6837913990020752,1.6837913990020752,1.6152924299240112,1.4782943725585938,0.9645517468452454,1.2385478019714355,1.101549744606018,1.2727973461151123,1.307046890258789,1.4611696004867554,1.8036646842956543,1.786539912223816,1.786539912223816,1.8721636533737183,1.7522904872894287,1.9749122858047485,1.8892884254455566,1.9235379695892334,2.214658737182617,2.248908281326294,2.0776607990264893,1.9920369386672974,2.1461598873138428,2.0434112548828125,1.8721636533737183,2.0434112548828125,2.231783628463745,2.0434112548828125,2.129034996032715,2.1975340843200684,2.231783628463745,2.248908281326294,2.0262866020202637,2.129034996032715,2.214658737182617,2.1461598873138428,2.1804091930389404,2.0262866020202637,2.214658737182617,2.248908281326294,2.214658737182617,2.1461598873138428,2.0776607990264893,2.111910343170166,2.094785451889038,2.248908281326294,2.248908281326294,2.214658737182617,2.248908281326294,2.248908281326294,2.0776607990264893,2.1632845401763916,2.1632845401763916,2.214658737182617,1.9235379695892334,2.111910343170166,1.7522904872894287,1.8721636533737183,1.5810428857803345,2.0776607990264893,2.094785451889038,1.9577875137329102,1.9749122858047485,2.1975340843200684,2.111910343170166,1.9749122858047485,2.248908281326294,1.8892884254455566,2.0605359077453613,1.9406627416610718,2.1632845401763916,2.248908281326294,2.248908281326294,2.1632845401763916,2.231783628463745,2.248908281326294,1.8207894563674927,2.111910343170166,1.718040943145752,1.9577875137329102,2.1461598873138428,1.9749122858047485,1.9406627416610718,1.8721636533737183,2.248908281326294,1.9920369386672974,1.8550390005111694,2.129034996032715,1.6666666269302368,1.8721636533737183,1.9406627416610718,1.906413197517395,2.094785451889038,2.129034996032715,1.7009161710739136,2.0434112548828125,1.906413197517395,2.129034996032715,2.248908281326294,2.129034996032715,1.9577875137329102,2.1804091930389404,2.0262866020202637,2.0776607990264893,1.9749122858047485,1.906413197517395,2.0091617107391357,1.9577875137329102,2.0434112548828125,1.9235379695892334,2.0605359077453613,2.0262866020202637,1.9577875137329102,2.129034996032715,2.1632845401763916,2.0091617107391357,2.0091617107391357,2.111910343170166,2.0434112548828125,2.0262866020202637,2.1461598873138428,2.0605359077453613,1.837914228439331,1.9577875137329102,1.786539912223816,1.786539912223816,1.906413197517395,1.8721636533737183,2.0434112548828125,1.8892884254455566,1.9406627416610718,1.9749122858047485,1.906413197517395,2.129034996032715,2.0262866020202637,2.1461598873138428,2.1975340843200684,1.8207894563674927,1.563918113708496,-0.4568028151988983,-0.7136741280555725,1.7522904872894287,2.0091617107391357,-0.028683962300419807,2.1804091930389404,1.3926706314086914,1.9920369386672974,1.8550390005111694,0.48505866527557373,0.2966863512992859,0.3823101222515106,0.7761794924736023,1.8721636533737183,2.0091617107391357,2.0091617107391357,2.0434112548828125,2.129034996032715,1.7351657152175903,2.0262866020202637,1.7009161710739136,1.7522904872894287,1.7522904872894287,1.8036646842956543,1.7009161710739136,1.906413197517395,1.9749122858047485,2.094785451889038,1.786539912223816,1.7522904872894287,1.7351657152175903,1.7522904872894287,1.8036646842956543,1.9577875137329102,1.6495418548583984,1.7694151401519775],[2.214658737182617,2.1975340843200684,2.248908281326294,2.248908281326294,2.1632845401763916,2.0776607990264893,1.718040943145752,1.2385478019714355,0.33093586564064026,0.1425635814666748,0.19393783807754517,0.2624368667602539,-0.5081770420074463,0.1596883237361908,0.5021833777427673,1.0844250917434692,1.0501755475997925,1.101549744606018,1.307046890258789,1.7522904872894287,0.6905556917190552,1.033050775527954,0.9303022623062134,0.6905556917190552,0.878928005695343,0.31381112337112427,0.6905556917190552,1.0844250917434692,1.5296686887741089,1.2042982578277588,1.3412963151931763,1.5810428857803345,1.563918113708496,1.6324172019958496,1.6837913990020752,1.4269200563430786,1.4782943725585938,1.6324172019958496,2.0434112548828125,1.9406627416610718,1.786539912223816,1.5467933416366577,1.7522904872894287,1.9749122858047485,1.8207894563674927,1.786539912223816,2.0434112548828125,1.786539912223816,1.6324172019958496,1.4782943725585938,1.444044828414917,1.2727973461151123,1.2042982578277588,1.4782943725585938,1.1357992887496948,1.375545859336853,1.8036646842956543,1.5981676578521729,1.7009161710739136,1.9235379695892334,1.9406627416610718,2.0434112548828125,2.0605359077453613,1.8721636533737183,1.8892884254455566,1.9920369386672974,2.0434112548828125,2.0776607990264893,2.0434112548828125,2.0776607990264893,1.9920369386672974,2.0776607990264893,2.214658737182617,2.0091617107391357,2.1632845401763916,2.231783628463745,2.0605359077453613,2.111910343170166,1.9235379695892334,2.0091617107391357,2.094785451889038,2.248908281326294,2.1632845401763916,2.248908281326294,2.0605359077453613,2.248908281326294,2.094785451889038,2.248908281326294,2.129034996032715,2.129034996032715,2.214658737182617,2.1975340843200684,2.1975340843200684,2.1461598873138428,2.248908281326294,2.0091617107391357,2.248908281326294,2.0434112548828125,2.248908281326294,2.0091617107391357,2.248908281326294,2.1461598873138428,2.1461598873138428,2.0605359077453613,2.0605359077453613,1.9749122858047485,1.906413197517395,2.1975340843200684,1.9920369386672974,1.837914228439331,1.9920369386672974,2.094785451889038,2.1632845401763916,2.111910343170166,2.214658737182617,2.0776607990264893,2.0605359077453613,1.7694151401519775,2.1975340843200684,2.094785451889038,2.248908281326294,1.9406627416610718,2.248908281326294,1.8550390005111694,2.0776607990264893,2.1975340843200684,2.0262866020202637,2.129034996032715,2.0605359077453613,1.9577875137329102,2.1975340843200684,2.214658737182617,1.9920369386672974,2.0776607990264893,1.8892884254455566,1.9235379695892334,2.231783628463745,2.0091617107391357,2.129034996032715,2.0776607990264893,1.9406627416610718,1.9577875137329102,1.9235379695892334,1.8721636533737183,2.214658737182617,1.9920369386672974,2.129034996032715,2.094785451889038,2.129034996032715,1.9235379695892334,2.0262866020202637,2.0262866020202637,1.906413197517395,1.9920369386672974,2.0605359077453613,2.1461598873138428,1.9577875137329102,2.0262866020202637,1.9920369386672974,2.231783628463745,2.1632845401763916,1.9749122858047485,2.0434112548828125,2.1461598873138428,2.0091617107391357,1.8550390005111694,2.214658737182617,1.9577875137329102,2.0434112548828125,2.0262866020202637,1.8550390005111694,1.9235379695892334,2.0262866020202637,2.0434112548828125,1.7694151401519775,1.8721636533737183,1.9577875137329102,1.8892884254455566,2.0434112548828125,2.0434112548828125,1.9406627416610718,2.1975340843200684,2.1632845401763916,2.248908281326294,2.1804091930389404,2.231783628463745,1.8721636533737183,1.5810428857803345,0.19393783807754517,-0.28555527329444885,0.5535576939582825,1.5125439167022705,2.0091617107391357,0.6563062071800232,1.101549744606018,2.248908281326294,-0.11430773138999939,1.101549744606018,0.5535576939582825,0.9988012909889221,1.2042982578277588,1.6837913990020752,2.1804091930389404,2.1632845401763916,2.0434112548828125,1.786539912223816,1.718040943145752,1.4954191446304321,1.7009161710739136,1.7009161710739136,1.7351657152175903,1.6495418548583984,1.8550390005111694,1.8207894563674927,1.786539912223816,1.8892884254455566,1.837914228439331,1.9406627416610718,2.129034996032715,1.6324172019958496,1.8207894563674927,2.111910343170166,1.8036646842956543,1.5296686887741089],[2.248908281326294,2.0262866020202637,2.1804091930389404,2.248908281326294,2.111910343170166,2.248908281326294,2.129034996032715,1.4097954034805298,0.9645517468452454,0.7419299483299255,0.5021833777427673,0.34806060791015625,0.46793389320373535,0.399434894323349,0.6563062071800232,1.033050775527954,1.1529240608215332,1.324171543121338,1.563918113708496,0.9645517468452454,1.033050775527954,0.9474270343780518,1.0673003196716309,1.2899221181869507,1.101549744606018,0.7419299483299255,0.9988012909889221,1.444044828414917,1.7351657152175903,1.4954191446304321,1.6495418548583984,1.7351657152175903,1.9235379695892334,2.0434112548828125,1.8721636533737183,2.0776607990264893,2.0262866020202637,2.129034996032715,1.8721636533737183,2.0434112548828125,1.9235379695892334,1.8550390005111694,1.563918113708496,1.563918113708496,1.6666666269302368,1.4611696004867554,1.6152924299240112,1.5467933416366577,1.2214230298995972,1.255672574043274,1.3926706314086914,1.5296686887741089,1.6324172019958496,1.6837913990020752,1.6324172019958496,1.8550390005111694,1.7694151401519775,1.8721636533737183,2.0091617107391357,1.8721636533737183,1.8550390005111694,2.0091617107391357,2.111910343170166,2.1632845401763916,2.248908281326294,2.129034996032715,2.1632845401763916,2.0434112548828125,1.9920369386672974,2.248908281326294,2.0262866020202637,1.9749122858047485,2.214658737182617,2.1461598873138428,2.0776607990264893,2.214658737182617,2.0262866020202637,2.248908281326294,2.248908281326294,2.1975340843200684,2.1461598873138428,2.0776607990264893,2.0605359077453613,2.1461598873138428,2.129034996032715,2.0434112548828125,2.0605359077453613,2.0262866020202637,2.1975340843200684,2.214658737182617,2.1461598873138428,2.0434112548828125,2.1975340843200684,2.1632845401763916,2.214658737182617,2.1461598873138428,2.0434112548828125,2.0776607990264893,2.094785451889038,1.9920369386672974,2.0434112548828125,2.1632845401763916,2.248908281326294,2.214658737182617,2.0434112548828125,2.0091617107391357,2.0776607990264893,1.8207894563674927,2.1975340843200684,1.9235379695892334,2.248908281326294,2.248908281326294,2.0262866020202637,2.129034996032715,2.248908281326294,2.1804091930389404,2.129034996032715,2.0434112548828125,1.8036646842956543,2.0605359077453613,2.248908281326294,2.0776607990264893,1.8721636533737183,2.1804091930389404,2.0434112548828125,2.1975340843200684,2.129034996032715,2.248908281326294,2.0605359077453613,1.9920369386672974,2.0434112548828125,1.7351657152175903,1.9406627416610718,2.111910343170166,2.0262866020202637,1.9749122858047485,2.1632845401763916,2.111910343170166,1.8036646842956543,2.1632845401763916,2.111910343170166,2.0091617107391357,2.1461598873138428,2.248908281326294,1.7522904872894287,2.094785451889038,2.0776607990264893,1.9235379695892334,1.906413197517395,1.8550390005111694,2.111910343170166,1.9920369386672974,2.111910343170166,1.9920369386672974,1.7694151401519775,2.129034996032715,2.094785451889038,1.9920369386672974,1.9920369386672974,2.0262866020202637,1.837914228439331,2.111910343170166,2.0776607990264893,2.1632845401763916,2.231783628463745,1.8550390005111694,1.8892884254455566,2.0262866020202637,2.0091617107391357,1.9920369386672974,1.9406627416610718,2.0605359077453613,1.837914228439331,1.8892884254455566,2.0434112548828125,1.9577875137329102,1.906413197517395,2.0434112548828125,1.9749122858047485,2.231783628463745,2.094785451889038,2.1461598873138428,2.248908281326294,2.1975340843200684,2.1461598873138428,2.214658737182617,1.8550390005111694,1.5810428857803345,0.45080915093421936,0.31381112337112427,-0.30268001556396484,0.6734309196472168,1.9577875137329102,1.8892884254455566,-0.28555527329444885,0.34806060791015625,0.7761794924736023,0.7761794924736023,0.7590547204017639,1.1357992887496948,1.2727973461151123,1.8721636533737183,2.111910343170166,2.214658737182617,2.129034996032715,1.9749122858047485,1.9235379695892334,1.8036646842956543,1.4782943725585938,1.6152924299240112,1.8892884254455566,1.7009161710739136,2.0091617107391357,2.0262866020202637,1.8550390005111694,1.9749122858047485,2.0605359077453613,1.906413197517395,1.8550390005111694,1.9749122858047485,1.837914228439331,1.6666666269302368,1.8207894563674927,1.8036646842956543],[2.0776607990264893,2.1632845401763916,2.0262866020202637,2.231783628463745,2.248908281326294,2.1461598873138428,2.0091617107391357,1.786539912223816,0.9474270343780518,0.7248051762580872,0.6049319505691528,0.6734309196472168,0.433684378862381,0.12543882429599762,0.416559636592865,0.19393783807754517,1.1529240608215332,0.21106259524822235,0.8618032336235046,1.0844250917434692,1.7351657152175903,1.033050775527954,1.3412963151931763,1.2042982578277588,1.1529240608215332,1.2214230298995972,1.0159260034561157,1.1700488328933716,1.324171543121338,1.7009161710739136,1.8036646842956543,1.9749122858047485,1.9920369386672974,1.7009161710739136,1.7694151401519775,1.718040943145752,1.8036646842956543,1.8721636533737183,1.7009161710739136,1.8721636533737183,1.786539912223816,1.7009161710739136,1.7009161710739136,1.7009161710739136,1.5981676578521729,1.324171543121338,1.3926706314086914,1.4097954034805298,1.375545859336853,1.2214230298995972,1.6324172019958496,1.5296686887741089,1.7694151401519775,1.5981676578521729,1.786539912223816,1.8036646842956543,2.0434112548828125,1.8892884254455566,1.7351657152175903,1.8550390005111694,1.8036646842956543,1.9406627416610718,1.7694151401519775,1.9577875137329102,2.0776607990264893,2.0776607990264893,2.248908281326294,2.0776607990264893,2.231783628463745,2.0605359077453613,2.111910343170166,2.0434112548828125,2.231783628463745,2.1632845401763916,2.129034996032715,2.0434112548828125,2.1804091930389404,2.0776607990264893,2.129034996032715,2.094785451889038,2.1804091930389404,2.248908281326294,2.1804091930389404,2.129034996032715,2.0262866020202637,2.094785451889038,2.1975340843200684,2.248908281326294,2.111910343170166,2.1632845401763916,2.1804091930389404,2.1632845401763916,2.0605359077453613,2.1461598873138428,1.9749122858047485,2.248908281326294,2.248908281326294,2.248908281326294,2.0776607990264893,2.1804091930389404,2.094785451889038,2.129034996032715,2.0605359077453613,2.0262866020202637,2.129034996032715,1.8892884254455566,2.1461598873138428,1.9406627416610718,1.9235379695892334,1.8550390005111694,1.9406627416610718,2.094785451889038,2.0262866020202637,2.111910343170166,1.8550390005111694,1.8892884254455566,2.0262866020202637,1.9577875137329102,2.129034996032715,2.0776607990264893,1.9749122858047485,2.248908281326294,2.1975340843200684,2.248908281326294,2.248908281326294,2.1975340843200684,2.094785451889038,1.8892884254455566,2.248908281326294,1.9920369386672974,2.111910343170166,2.248908281326294,2.094785451889038,2.129034996032715,2.0262866020202637,1.906413197517395,2.0776607990264893,2.0262866020202637,2.0434112548828125,2.231783628463745,2.111910343170166,1.718040943145752,1.9749122858047485,1.8207894563674927,2.111910343170166,2.1461598873138428,2.0434112548828125,2.1975340843200684,2.248908281326294,2.0776607990264893,1.9920369386672974,2.129034996032715,2.1461598873138428,2.1632845401763916,1.8550390005111694,2.1804091930389404,2.129034996032715,1.9235379695892334,2.0262866020202637,2.094785451889038,1.9749122858047485,2.0434112548828125,2.248908281326294,2.214658737182617,2.111910343170166,2.1804091930389404,2.214658737182617,2.1461598873138428,2.129034996032715,2.0776607990264893,2.0262866020202637,2.111910343170166,1.8721636533737183,2.0605359077453613,1.906413197517395,2.214658737182617,2.214658737182617,2.0776607990264893,2.0091617107391357,2.1804091930389404,2.248908281326294,2.248908281326294,2.248908281326294,2.1632845401763916,1.9920369386672974,2.0605359077453613,1.7351657152175903,1.101549744606018,0.6220566630363464,0.5364329218864441,0.7590547204017639,1.5981676578521729,2.0262866020202637,2.094785451889038,0.5535576939582825,0.6049319505691528,0.9816765189170837,0.7761794924736023,1.101549744606018,1.255672574043274,1.5125439167022705,1.9749122858047485,2.1804091930389404,2.094785451889038,2.214658737182617,2.248908281326294,2.0262866020202637,1.8550390005111694,1.6495418548583984,1.563918113708496,1.8550390005111694,1.8721636533737183,1.8721636533737183,1.7694151401519775,2.094785451889038,2.0776607990264893,1.9235379695892334,1.7009161710739136,1.8721636533737183,2.111910343170166,2.0605359077453613,1.9920369386672974,1.8721636533737183,1.8892884254455566],[2.1461598873138428,2.129034996032715,2.111910343170166,2.1804091930389404,2.1461598873138428,2.0776607990264893,1.8207894563674927,1.8550390005111694,1.375545859336853,1.4269200563430786,1.3584210872650146,0.7761794924736023,0.24531209468841553,0.7419299483299255,0.5364329218864441,0.45080915093421936,-0.5595513582229614,0.1425635814666748,0.24531209468841553,1.0844250917434692,1.1186745166778564,0.5878071784973145,1.0844250917434692,1.2385478019714355,0.5193081498146057,0.399434894323349,0.8104289770126343,0.9645517468452454,1.255672574043274,1.2042982578277588,1.563918113708496,1.2899221181869507,1.6666666269302368,1.5467933416366577,1.7694151401519775,1.8550390005111694,1.7351657152175903,1.444044828414917,1.4611696004867554,1.5810428857803345,1.3412963151931763,0.9303022623062134,1.3926706314086914,1.6152924299240112,1.4269200563430786,1.6495418548583984,1.5810428857803345,1.5981676578521729,1.4611696004867554,1.6152924299240112,1.5296686887741089,1.9749122858047485,1.837914228439331,2.0434112548828125,2.0434112548828125,1.9406627416610718,1.9749122858047485,1.9749122858047485,1.9749122858047485,2.0091617107391357,1.9920369386672974,1.9577875137329102,2.0091617107391357,1.8892884254455566,1.906413197517395,1.9577875137329102,2.214658737182617,2.0262866020202637,1.8892884254455566,2.248908281326294,2.248908281326294,2.0434112548828125,2.248908281326294,2.0605359077453613,2.248908281326294,2.1804091930389404,1.9920369386672974,2.111910343170166,2.248908281326294,2.1632845401763916,1.9920369386672974,2.094785451889038,2.129034996032715,2.0262866020202637,2.231783628463745,2.1975340843200684,2.1804091930389404,2.0434112548828125,2.248908281326294,1.9749122858047485,2.0434112548828125,2.1804091930389404,2.1975340843200684,2.094785451889038,2.0262866020202637,2.094785451889038,2.0434112548828125,2.248908281326294,2.0262866020202637,2.1461598873138428,2.1632845401763916,2.0776607990264893,2.1804091930389404,2.1632845401763916,1.837914228439331,1.7009161710739136,2.1632845401763916,2.0776607990264893,2.1461598873138428,2.0776607990264893,2.0605359077453613,2.094785451889038,2.0776607990264893,1.9235379695892334,1.9749122858047485,2.248908281326294,2.129034996032715,2.0091617107391357,2.1804091930389404,2.094785451889038,2.0262866020202637,1.9406627416610718,2.248908281326294,2.248908281326294,2.1975340843200684,2.1804091930389404,2.1461598873138428,2.0262866020202637,2.0776607990264893,2.111910343170166,1.906413197517395,1.9749122858047485,2.214658737182617,1.906413197517395,1.7009161710739136,1.9577875137329102,2.1804091930389404,2.1975340843200684,2.1632845401763916,2.1461598873138428,2.1632845401763916,2.129034996032715,2.248908281326294,2.248908281326294,2.0776607990264893,2.094785451889038,2.214658737182617,2.1632845401763916,1.786539912223816,1.9406627416610718,2.1632845401763916,1.9406627416610718,2.0091617107391357,2.094785451889038,1.9920369386672974,2.094785451889038,1.9749122858047485,2.111910343170166,1.9406627416610718,2.1461598873138428,1.8892884254455566,1.7009161710739136,2.0262866020202637,1.9749122858047485,2.0605359077453613,2.0262866020202637,1.9577875137329102,2.0434112548828125,1.8550390005111694,1.9749122858047485,1.9406627416610718,2.0776607990264893,1.8892884254455566,1.8207894563674927,2.0434112548828125,1.7694151401519775,2.1804091930389404,2.248908281326294,2.1461598873138428,2.0434112548828125,2.111910343170166,2.248908281326294,2.0605359077453613,2.0434112548828125,1.9920369386672974,1.786539912223816,1.8550390005111694,1.1700488328933716,0.913177490234375,0.6905556917190552,1.18717360496521,1.8550390005111694,2.0262866020202637,1.8036646842956543,0.5193081498146057,0.9816765189170837,1.18717360496521,1.3412963151931763,1.2214230298995972,0.9816765189170837,1.5810428857803345,1.9235379695892334,1.6324172019958496,2.0091617107391357,2.1632845401763916,2.094785451889038,1.9920369386672974,2.094785451889038,1.8550390005111694,1.6152924299240112,1.375545859336853,1.6837913990020752,1.786539912223816,1.8892884254455566,2.0605359077453613,1.9749122858047485,1.8550390005111694,1.8721636533737183,1.8207894563674927,1.7522904872894287,1.906413197517395,1.8892884254455566,1.8892884254455566,2.0434112548828125],[2.094785451889038,1.9406627416610718,2.248908281326294,2.0776607990264893,2.0605359077453613,2.248908281326294,2.248908281326294,2.0605359077453613,1.718040943145752,1.5125439167022705,1.0159260034561157,1.3926706314086914,0.5021833777427673,0.6220566630363464,0.6905556917190552,0.5878071784973145,0.6049319505691528,1.033050775527954,0.913177490234375,1.324171543121338,1.3412963151931763,1.1529240608215332,1.324171543121338,1.0673003196716309,0.36518537998199463,0.2966863512992859,0.36518537998199463,0.8275537490844727,0.7590547204017639,1.307046890258789,1.375545859336853,1.2385478019714355,1.4782943725585938,1.6324172019958496,1.4954191446304321,1.4269200563430786,1.3926706314086914,1.3926706314086914,1.307046890258789,1.4954191446304321,1.324171543121338,1.5810428857803345,1.5810428857803345,1.6666666269302368,1.6666666269302368,1.4954191446304321,1.7694151401519775,1.9920369386672974,1.7694151401519775,1.9577875137329102,1.9920369386672974,1.8207894563674927,1.9920369386672974,1.718040943145752,1.8721636533737183,1.837914228439331,1.9749122858047485,2.248908281326294,2.231783628463745,2.248908281326294,1.9920369386672974,2.0605359077453613,2.0776607990264893,2.1632845401763916,2.1632845401763916,1.9749122858047485,1.906413197517395,2.111910343170166,2.1632845401763916,2.0605359077453613,2.248908281326294,2.094785451889038,2.1804091930389404,2.248908281326294,2.1632845401763916,2.214658737182617,2.0091617107391357,2.111910343170166,2.231783628463745,2.248908281326294,2.094785451889038,2.1975340843200684,2.094785451889038,2.1975340843200684,2.1461598873138428,2.214658737182617,2.1975340843200684,2.129034996032715,2.248908281326294,2.214658737182617,2.248908281326294,2.129034996032715,2.231783628463745,2.248908281326294,2.248908281326294,2.248908281326294,2.248908281326294,2.1975340843200684,2.248908281326294,2.0091617107391357,2.1632845401763916,2.111910343170166,1.8721636533737183,1.8892884254455566,1.906413197517395,1.8892884254455566,1.9406627416610718,2.111910343170166,2.129034996032715,2.094785451889038,2.248908281326294,2.248908281326294,2.214658737182617,2.0776607990264893,1.9406627416610718,2.111910343170166,2.248908281326294,2.1804091930389404,1.906413197517395,1.8721636533737183,2.094785451889038,2.1804091930389404,1.9406627416610718,2.0776607990264893,2.1804091930389404,2.248908281326294,2.0776607990264893,1.7522904872894287,1.7694151401519775,2.1975340843200684,2.094785451889038,2.0605359077453613,2.248908281326294,2.0605359077453613,2.094785451889038,2.0605359077453613,1.837914228439331,1.7351657152175903,1.9406627416610718,1.8892884254455566,2.0091617107391357,2.248908281326294,2.1461598873138428,2.0776607990264893,2.248908281326294,2.129034996032715,1.9577875137329102,1.9920369386672974,2.0434112548828125,2.0605359077453613,2.1804091930389404,2.1804091930389404,2.094785451889038,2.1632845401763916,2.231783628463745,1.9577875137329102,2.0605359077453613,1.9577875137329102,2.0091617107391357,2.1461598873138428,2.0776607990264893,2.111910343170166,2.111910343170166,1.9577875137329102,2.0776607990264893,1.786539912223816,1.9406627416610718,2.0434112548828125,1.9235379695892334,1.8892884254455566,2.0262866020202637,2.214658737182617,2.0605359077453613,1.9920369386672974,1.8207894563674927,2.111910343170166,1.9406627416610718,2.129034996032715,2.248908281326294,2.231783628463745,2.248908281326294,2.111910343170166,2.0776607990264893,2.0091617107391357,1.9749122858047485,1.8207894563674927,1.6324172019958496,0.9645517468452454,0.7419299483299255,0.7419299483299255,1.3584210872650146,1.786539912223816,2.1804091930389404,1.9406627416610718,0.6049319505691528,0.8618032336235046,1.2042982578277588,1.4611696004867554,1.4954191446304321,1.2042982578277588,1.1700488328933716,1.9235379695892334,2.0262866020202637,2.248908281326294,2.1461598873138428,2.1632845401763916,2.0776607990264893,2.1632845401763916,1.9920369386672974,1.563918113708496,1.6324172019958496,1.4611696004867554,1.7351657152175903,1.7351657152175903,1.8721636533737183,1.8207894563674927,1.9235379695892334,1.9406627416610718,2.0262866020202637,2.0091617107391357,2.0091617107391357,2.0434112548828125,1.8721636533737183,1.8892884254455566],[2.1804091930389404,2.129034996032715,2.0605359077453613,2.214658737182617,2.111910343170166,1.8892884254455566,2.1461598873138428,2.0434112548828125,1.8721636533737183,1.906413197517395,1.4954191446304321,2.248908281326294,1.4269200563430786,0.8960527181625366,0.5364329218864441,0.5535576939582825,1.2042982578277588,1.375545859336853,1.1529240608215332,1.4782943725585938,1.101549744606018,0.913177490234375,1.1357992887496948,1.0159260034561157,0.46793389320373535,-0.42255330085754395,0.46793389320373535,0.6220566630363464,0.8446784615516663,1.2042982578277588,0.9988012909889221,1.2385478019714355,1.3584210872650146,1.2214230298995972,1.3584210872650146,1.5125439167022705,1.4954191446304321,1.4097954034805298,1.6666666269302368,1.6152924299240112,1.4611696004867554,1.6666666269302368,1.6666666269302368,1.8892884254455566,1.718040943145752,1.9920369386672974,1.8892884254455566,1.906413197517395,1.8207894563674927,1.9749122858047485,2.0434112548828125,2.248908281326294,2.0262866020202637,2.0091617107391357,2.0262866020202637,2.0091617107391357,2.0605359077453613,2.0605359077453613,2.248908281326294,2.248908281326294,2.1804091930389404,2.094785451889038,2.0434112548828125,2.094785451889038,2.1632845401763916,2.248908281326294,2.248908281326294,2.0434112548828125,2.1461598873138428,2.0262866020202637,1.9920369386672974,2.0776607990264893,2.248908281326294,2.248908281326294,1.9920369386672974,2.0091617107391357,2.129034996032715,2.129034996032715,2.248908281326294,2.129034996032715,1.9406627416610718,2.094785451889038,2.1632845401763916,1.8721636533737183,2.0776607990264893,2.0262866020202637,2.248908281326294,2.1804091930389404,1.9406627416610718,2.248908281326294,2.248908281326294,2.0605359077453613,2.129034996032715,1.9406627416610718,2.214658737182617,2.111910343170166,2.231783628463745,2.1461598873138428,2.248908281326294,1.9749122858047485,1.9920369386672974,1.9577875137329102,2.0605359077453613,2.1461598873138428,2.0091617107391357,1.9749122858047485,2.094785451889038,1.9920369386672974,1.8550390005111694,1.8721636533737183,1.9577875137329102,2.0605359077453613,2.0262866020202637,2.1632845401763916,2.248908281326294,1.8721636533737183,2.0262866020202637,1.906413197517395,2.1804091930389404,2.111910343170166,2.1461598873138428,1.9235379695892334,1.9235379695892334,2.248908281326294,1.9406627416610718,2.111910343170166,2.214658737182617,2.1975340843200684,2.0262866020202637,2.0091617107391357,2.1804091930389404,1.9749122858047485,2.1632845401763916,2.0434112548828125,1.837914228439331,2.214658737182617,2.231783628463745,2.1804091930389404,2.1975340843200684,1.9235379695892334,1.9749122858047485,1.8721636533737183,2.231783628463745,2.0605359077453613,2.248908281326294,2.248908281326294,2.0434112548828125,2.129034996032715,2.1632845401763916,2.0434112548828125,2.094785451889038,2.0605359077453613,2.1632845401763916,2.0434112548828125,2.0434112548828125,2.0262866020202637,1.786539912223816,2.248908281326294,2.0262866020202637,2.111910343170166,2.1461598873138428,2.1975340843200684,2.248908281326294,2.248908281326294,1.9577875137329102,1.9235379695892334,2.1632845401763916,2.0091617107391357,1.9749122858047485,2.0262866020202637,1.9406627416610718,2.129034996032715,2.1804091930389404,2.1632845401763916,2.1804091930389404,2.0776607990264893,2.1461598873138428,2.1975340843200684,2.0434112548828125,2.214658737182617,2.231783628463745,2.1632845401763916,1.9920369386672974,2.1804091930389404,1.9577875137329102,1.8721636533737183,1.563918113708496,1.0673003196716309,0.913177490234375,0.9988012909889221,1.7009161710739136,2.094785451889038,1.9749122858047485,1.837914228439331,0.5706824064254761,0.7761794924736023,1.2727973461151123,1.4954191446304321,1.563918113708496,1.5810428857803345,1.255672574043274,1.6152924299240112,1.8721636533737183,1.9920369386672974,2.0262866020202637,2.231783628463745,2.214658737182617,2.094785451889038,1.8892884254455566,1.9235379695892334,1.5125439167022705,1.3926706314086914,1.6837913990020752,1.8207894563674927,1.7694151401519775,1.8207894563674927,1.837914228439331,1.9577875137329102,1.8207894563674927,1.906413197517395,1.8892884254455566,2.0262866020202637,2.0434112548828125,1.8721636533737183],[2.248908281326294,1.906413197517395,2.1461598873138428,1.9577875137329102,2.214658737182617,2.1804091930389404,2.0434112548828125,1.9920369386672974,1.7522904872894287,2.094785451889038,1.8550390005111694,1.9577875137329102,1.4954191446304321,0.9645517468452454,0.878928005695343,0.9474270343780518,1.6666666269302368,-0.19993150234222412,0.8446784615516663,0.36518537998199463,1.101549744606018,1.0501755475997925,1.101549744606018,0.7076804637908936,0.10831406712532043,0.3823101222515106,0.2795616090297699,0.7419299483299255,1.0844250917434692,1.0673003196716309,1.2385478019714355,1.3584210872650146,1.3412963151931763,1.4269200563430786,1.3412963151931763,1.5296686887741089,1.444044828414917,1.4611696004867554,1.2727973461151123,1.6152924299240112,1.6324172019958496,1.5810428857803345,1.7522904872894287,2.0262866020202637,2.094785451889038,2.1461598873138428,1.9235379695892334,1.8892884254455566,2.1975340843200684,2.1975340843200684,2.248908281326294,1.906413197517395,1.9577875137329102,2.111910343170166,2.0262866020202637,1.9749122858047485,2.248908281326294,1.906413197517395,1.9577875137329102,2.094785451889038,2.1461598873138428,2.1975340843200684,2.1975340843200684,1.8550390005111694,2.0776607990264893,2.248908281326294,2.1461598873138428,2.1804091930389404,1.9577875137329102,2.0262866020202637,2.1632845401763916,2.1804091930389404,2.1975340843200684,2.248908281326294,2.1975340843200684,2.1632845401763916,2.0776607990264893,2.1804091930389404,2.248908281326294,2.0262866020202637,2.0605359077453613,2.094785451889038,2.1632845401763916,2.094785451889038,2.0605359077453613,2.1975340843200684,2.0262866020202637,2.1975340843200684,2.1632845401763916,2.248908281326294,2.111910343170166,2.231783628463745,2.1975340843200684,2.1975340843200684,2.0434112548828125,2.231783628463745,2.231783628463745,2.0776607990264893,2.129034996032715,1.9235379695892334,1.9920369386672974,2.231783628463745,2.0605359077453613,2.0605359077453613,1.9577875137329102,1.9920369386672974,1.9920369386672974,1.9920369386672974,2.1975340843200684,2.1632845401763916,2.0605359077453613,2.231783628463745,2.0605359077453613,1.9920369386672974,2.0434112548828125,2.248908281326294,2.248908281326294,2.1804091930389404,1.8721636533737183,2.0262866020202637,2.0091617107391357,2.1804091930389404,2.248908281326294,2.0091617107391357,2.248908281326294,2.129034996032715,2.129034996032715,2.1804091930389404,2.0776607990264893,2.111910343170166,2.094785451889038,2.1804091930389404,2.0776607990264893,1.9749122858047485,1.9749122858047485,1.6152924299240112,1.8207894563674927,2.111910343170166,2.0776607990264893,2.1632845401763916,2.0776607990264893,2.214658737182617,1.9577875137329102,1.906413197517395,2.248908281326294,2.214658737182617,2.094785451889038,2.111910343170166,2.0605359077453613,2.0091617107391357,1.8892884254455566,2.0262866020202637,1.9920369386672974,2.0262866020202637,1.9577875137329102,1.906413197517395,1.9749122858047485,2.094785451889038,2.0262866020202637,2.0091617107391357,2.1461598873138428,2.0605359077453613,2.094785451889038,2.214658737182617,1.9749122858047485,2.1461598873138428,2.111910343170166,2.094785451889038,2.111910343170166,2.0091617107391357,2.111910343170166,2.248908281326294,2.231783628463745,2.0434112548828125,2.0434112548828125,2.248908281326294,2.231783628463745,2.214658737182617,2.0262866020202637,2.1632845401763916,2.214658737182617,2.1975340843200684,2.129034996032715,1.8892884254455566,1.8721636533737183,1.837914228439331,1.6666666269302368,1.101549744606018,0.9816765189170837,1.2042982578277588,1.9920369386672974,2.214658737182617,2.0776607990264893,1.7694151401519775,0.913177490234375,0.7419299483299255,1.2899221181869507,1.6837913990020752,1.6152924299240112,1.2042982578277588,1.4611696004867554,1.2727973461151123,1.6837913990020752,2.248908281326294,2.129034996032715,2.0776607990264893,2.1804091930389404,2.094785451889038,2.094785451889038,1.8207894563674927,1.5981676578521729,1.4782943725585938,1.375545859336853,1.5981676578521729,1.9235379695892334,1.8036646842956543,1.8550390005111694,1.9920369386672974,1.9406627416610718,2.0605359077453613,2.0776607990264893,2.0434112548828125,1.9749122858047485,1.9920369386672974],[2.129034996032715,2.231783628463745,2.111910343170166,2.094785451889038,2.0776607990264893,2.129034996032715,2.248908281326294,1.9577875137329102,1.9235379695892334,1.718040943145752,1.563918113708496,1.5981676578521729,1.6495418548583984,1.033050775527954,0.6563062071800232,0.6563062071800232,0.45080915093421936,-0.6622998714447021,-0.3198047876358032,-0.0971829816699028,0.2624368667602539,0.878928005695343,1.101549744606018,0.46793389320373535,-0.30268001556396484,0.19393783807754517,0.5364329218864441,0.7419299483299255,0.9816765189170837,1.18717360496521,1.255672574043274,1.7009161710739136,1.307046890258789,1.3584210872650146,1.3584210872650146,1.5125439167022705,1.4954191446304321,1.6837913990020752,1.7351657152175903,1.8892884254455566,1.7351657152175903,1.8721636533737183,1.837914228439331,1.9577875137329102,1.9235379695892334,1.837914228439331,2.248908281326294,2.1975340843200684,2.1461598873138428,2.1804091930389404,2.0776607990264893,2.111910343170166,1.8036646842956543,2.0605359077453613,2.0605359077453613,2.231783628463745,2.214658737182617,2.0434112548828125,2.231783628463745,2.248908281326294,2.1975340843200684,2.1975340843200684,1.8207894563674927,1.9749122858047485,2.214658737182617,2.0262866020202637,2.0776607990264893,1.8892884254455566,2.111910343170166,2.248908281326294,2.248908281326294,2.248908281326294,2.248908281326294,2.248908281326294,2.248908281326294,2.1632845401763916,2.248908281326294,2.0605359077453613,2.129034996032715,1.8892884254455566,1.9235379695892334,2.0776607990264893,2.231783628463745,1.9235379695892334,2.0776607990264893,2.0262866020202637,2.0605359077453613,2.0776607990264893,2.214658737182617,2.0776607990264893,2.248908281326294,2.248908281326294,2.248908281326294,2.248908281326294,2.0262866020202637,2.094785451889038,2.0776607990264893,2.0262866020202637,2.0434112548828125,2.0434112548828125,2.1461598873138428,2.129034996032715,2.1804091930389404,2.129034996032715,1.9920369386672974,1.9577875137329102,2.0262866020202637,2.094785451889038,1.9749122858047485,2.0776607990264893,1.9577875137329102,1.9235379695892334,2.111910343170166,2.1804091930389404,2.1804091930389404,2.0262866020202637,2.248908281326294,2.0091617107391357,2.231783628463745,1.9920369386672974,2.129034996032715,2.1461598873138428,2.248908281326294,2.0091617107391357,2.0776607990264893,2.094785451889038,2.1804091930389404,2.129034996032715,2.094785451889038,1.6837913990020752,1.8550390005111694,1.8892884254455566,2.214658737182617,1.906413197517395,2.1975340843200684,2.0091617107391357,2.0262866020202637,1.9235379695892334,1.8721636533737183,1.9920369386672974,1.8721636533737183,1.9577875137329102,2.0091617107391357,1.9920369386672974,1.9235379695892334,2.231783628463745,2.0434112548828125,1.8721636533737183,2.1461598873138428,1.9235379695892334,1.906413197517395,2.111910343170166,2.0262866020202637,2.0605359077453613,1.9920369386672974,2.1461598873138428,2.231783628463745,2.1975340843200684,2.129034996032715,2.0091617107391357,2.0262866020202637,2.248908281326294,1.9235379695892334,2.0776607990264893,1.9577875137329102,2.111910343170166,2.0776607990264893,1.9406627416610718,1.9920369386672974,2.0262866020202637,1.8550390005111694,2.248908281326294,2.231783628463745,2.248908281326294,2.0605359077453613,2.1804091930389404,2.214658737182617,2.231783628463745,2.248908281326294,2.248908281326294,2.1975340843200684,2.1461598873138428,2.0776607990264893,2.111910343170166,1.7522904872894287,1.5296686887741089,1.255672574043274,1.2727973461151123,1.0673003196716309,1.1700488328933716,2.0262866020202637,2.0434112548828125,2.0605359077453613,1.718040943145752,1.1357992887496948,0.9816765189170837,1.1186745166778564,1.5981676578521729,1.5810428857803345,1.6666666269302368,1.2214230298995972,1.2727973461151123,1.786539912223816,2.0605359077453613,2.231783628463745,2.0605359077453613,2.231783628463745,2.0262866020202637,2.129034996032715,2.0262866020202637,1.9235379695892334,1.6495418548583984,1.4954191446304321,1.5296686887741089,1.3926706314086914,1.8721636533737183,1.8550390005111694,2.111910343170166,1.9749122858047485,2.0434112548828125,1.9235379695892334,2.0091617107391357,1.8036646842956543,2.129034996032715],[2.129034996032715,2.0605359077453613,2.1461598873138428,1.9406627416610718,2.248908281326294,2.1804091930389404,2.0605359077453613,1.9577875137329102,2.0434112548828125,1.906413197517395,1.8721636533737183,1.9920369386672974,1.5125439167022705,1.3412963151931763,0.8104289770126343,0.2795616090297699,0.5021833777427673,0.2795616090297699,0.6734309196472168,0.09118931740522385,0.12543882429599762,0.8104289770126343,1.1357992887496948,-0.13143248856067657,0.03981505334377289,0.31381112337112427,0.6905556917190552,0.7590547204017639,1.0844250917434692,1.1186745166778564,1.4269200563430786,1.0501755475997925,1.3926706314086914,1.375545859336853,1.4269200563430786,1.444044828414917,1.6324172019958496,1.6495418548583984,1.8892884254455566,1.786539912223816,1.6837913990020752,1.9235379695892334,1.837914228439331,1.7351657152175903,1.8550390005111694,2.0434112548828125,2.129034996032715,2.0776607990264893,2.111910343170166,2.129034996032715,2.111910343170166,2.094785451889038,1.8892884254455566,2.0776607990264893,2.111910343170166,2.0434112548828125,2.129034996032715,1.9235379695892334,2.0262866020202637,2.1804091930389404,2.0091617107391357,2.111910343170166,2.1975340843200684,2.248908281326294,2.094785451889038,2.0605359077453613,2.1461598873138428,2.111910343170166,2.111910343170166,2.1632845401763916,1.9920369386672974,2.0262866020202637,2.111910343170166,2.0776607990264893,2.1461598873138428,2.1461598873138428,2.248908281326294,2.1975340843200684,2.0262866020202637,2.0434112548828125,2.214658737182617,1.9577875137329102,2.1461598873138428,2.0776607990264893,1.8036646842956543,2.248908281326294,2.248908281326294,2.129034996032715,2.248908281326294,2.248908281326294,2.0776607990264893,2.1804091930389404,2.248908281326294,2.111910343170166,2.1632845401763916,2.248908281326294,2.094785451889038,1.9749122858047485,2.129034996032715,1.906413197517395,2.111910343170166,2.214658737182617,2.231783628463745,1.9577875137329102,1.9577875137329102,2.0091617107391357,2.0091617107391357,2.0776607990264893,1.9920369386672974,2.0605359077453613,2.129034996032715,2.0605359077453613,2.0091617107391357,2.129034996032715,1.8892884254455566,1.9920369386672974,2.0091617107391357,2.248908281326294,2.0434112548828125,2.1632845401763916,2.0262866020202637,2.248908281326294,2.0262866020202637,2.094785451889038,2.1804091930389404,2.214658737182617,2.248908281326294,2.094785451889038,1.906413197517395,1.9577875137329102,2.0776607990264893,2.0776607990264893,1.8892884254455566,1.9235379695892334,1.9920369386672974,2.1632845401763916,2.129034996032715,2.0776607990264893,1.9749122858047485,2.248908281326294,2.248908281326294,2.1804091930389404,2.1804091930389404,2.1804091930389404,2.231783628463745,2.0262866020202637,1.9749122858047485,2.248908281326294,2.0091617107391357,2.0605359077453613,1.8892884254455566,2.1461598873138428,2.0605359077453613,1.8550390005111694,2.0776607990264893,2.129034996032715,2.1461598873138428,2.129034996032715,2.0605359077453613,2.094785451889038,2.111910343170166,2.0091617107391357,2.0776607990264893,1.8207894563674927,1.9920369386672974,1.837914228439331,1.906413197517395,1.7009161710739136,1.9749122858047485,2.0091617107391357,2.1461598873138428,1.9920369386672974,2.214658737182617,2.0434112548828125,2.094785451889038,1.9577875137329102,2.129034996032715,2.1804091930389404,2.1461598873138428,2.248908281326294,2.0091617107391357,2.0091617107391357,1.9920369386672974,1.906413197517395,1.8550390005111694,1.5125439167022705,1.2727973461151123,1.0673003196716309,0.8618032336235046,1.444044828414917,2.1632845401763916,2.111910343170166,1.8207894563674927,1.8207894563674927,1.3584210872650146,1.2214230298995972,1.1529240608215332,1.7009161710739136,1.7522904872894287,1.7522904872894287,1.6837913990020752,1.2214230298995972,1.5810428857803345,2.1975340843200684,2.0776607990264893,2.1632845401763916,2.111910343170166,2.129034996032715,2.214658737182617,1.9235379695892334,1.9749122858047485,1.7009161710739136,1.4611696004867554,1.4782943725585938,1.3412963151931763,1.4097954034805298,1.7694151401519775,1.837914228439331,1.718040943145752,1.6495418548583984,1.9577875137329102,2.0262866020202637,1.9749122858047485,1.8892884254455566],[2.0776607990264893,2.111910343170166,1.837914228439331,2.0262866020202637,2.0605359077453613,2.0434112548828125,2.094785451889038,2.111910343170166,1.9406627416610718,1.8207894563674927,1.8721636533737183,1.9920369386672974,1.8207894563674927,1.1186745166778564,0.8618032336235046,0.6734309196472168,1.0673003196716309,0.6049319505691528,-0.06293346732854843,-1.2787909507751465,0.34806060791015625,0.7590547204017639,1.0159260034561157,0.005565545056015253,0.10831406712532043,0.5878071784973145,0.8275537490844727,0.8618032336235046,0.9988012909889221,1.0501755475997925,1.2727973461151123,1.2214230298995972,1.3584210872650146,1.4269200563430786,1.4782943725585938,1.6495418548583984,1.9749122858047485,1.5810428857803345,1.786539912223816,1.906413197517395,1.6495418548583984,2.094785451889038,1.8550390005111694,1.9406627416610718,1.9235379695892334,2.1632845401763916,2.0091617107391357,2.0262866020202637,2.0605359077453613,2.0091617107391357,2.1975340843200684,2.214658737182617,2.111910343170166,2.0091617107391357,2.0776607990264893,2.214658737182617,2.0091617107391357,2.129034996032715,1.906413197517395,2.1632845401763916,2.111910343170166,2.111910343170166,1.7694151401519775,2.094785451889038,2.0262866020202637,2.248908281326294,2.1632845401763916,1.9577875137329102,1.9577875137329102,2.1804091930389404,2.111910343170166,2.0434112548828125,2.111910343170166,1.9577875137329102,2.1632845401763916,2.1461598873138428,2.1632845401763916,2.248908281326294,2.0434112548828125,2.231783628463745,2.248908281326294,2.248908281326294,2.248908281326294,2.214658737182617,2.1461598873138428,2.1461598873138428,2.129034996032715,2.248908281326294,2.1461598873138428,2.248908281326294,2.129034996032715,2.248908281326294,2.0434112548828125,2.0262866020202637,2.0262866020202637,2.0262866020202637,2.129034996032715,2.248908281326294,2.0776607990264893,2.094785451889038,2.1804091930389404,2.1461598873138428,2.1804091930389404,2.214658737182617,2.0605359077453613,2.094785451889038,2.111910343170166,1.906413197517395,1.9920369386672974,1.7522904872894287,2.0776607990264893,2.0434112548828125,2.0605359077453613,2.1804091930389404,2.0091617107391357,2.1804091930389404,2.231783628463745,2.0434112548828125,2.1461598873138428,2.248908281326294,2.0776607990264893,1.9920369386672974,2.248908281326294,2.0262866020202637,2.1461598873138428,2.0776607990264893,2.1804091930389404,2.0262866020202637,2.0605359077453613,2.129034996032715,1.6666666269302368,1.8036646842956543,1.906413197517395,2.0776607990264893,1.8721636533737183,2.0605359077453613,2.0605359077453613,2.0605359077453613,2.0605359077453613,1.9235379695892334,2.1804091930389404,2.0776607990264893,1.8721636533737183,2.0434112548828125,2.1632845401763916,2.248908281326294,2.1975340843200684,2.0434112548828125,2.1975340843200684,2.214658737182617,2.129034996032715,2.1804091930389404,2.0434112548828125,1.837914228439331,1.9749122858047485,2.0434112548828125,2.0605359077453613,2.214658737182617,2.0434112548828125,2.0434112548828125,2.0262866020202637,1.9749122858047485,2.0091617107391357,2.0434112548828125,1.837914228439331,2.0434112548828125,2.129034996032715,1.9406627416610718,2.0262866020202637,1.7351657152175903,2.111910343170166,2.214658737182617,2.1975340843200684,2.231783628463745,2.1632845401763916,2.248908281326294,2.248908281326294,2.1804091930389404,2.0091617107391357,2.0605359077453613,1.9749122858047485,1.9406627416610718,2.0434112548828125,1.9920369386672974,1.786539912223816,1.6666666269302368,1.2899221181869507,1.2727973461151123,1.0673003196716309,1.7009161710739136,2.0262866020202637,2.1804091930389404,1.9406627416610718,1.8550390005111694,1.563918113708496,1.255672574043274,1.255672574043274,1.6152924299240112,1.837914228439331,1.5467933416366577,1.4097954034805298,1.0844250917434692,1.5981676578521729,1.837914228439331,2.248908281326294,2.111910343170166,2.1461598873138428,2.111910343170166,2.0605359077453613,1.9577875137329102,2.0776607990264893,2.094785451889038,1.3412963151931763,1.4269200563430786,1.6837913990020752,1.5981676578521729,1.4954191446304321,1.6837913990020752,1.6152924299240112,1.6324172019958496,1.718040943145752,1.8550390005111694,1.9406627416610718,1.9749122858047485],[2.111910343170166,1.9406627416610718,1.8207894563674927,2.094785451889038,1.9920369386672974,1.9235379695892334,2.1975340843200684,2.1632845401763916,1.9577875137329102,1.906413197517395,1.786539912223816,1.9577875137329102,1.7522904872894287,1.5981676578521729,1.1186745166778564,1.2214230298995972,1.7009161710739136,0.9303022623062134,0.6734309196472168,0.2624368667602539,0.5021833777427673,1.1186745166778564,1.1186745166778564,0.2795616090297699,0.2795616090297699,0.6563062071800232,0.8618032336235046,1.1529240608215332,1.2727973461151123,1.2042982578277588,1.5296686887741089,1.4097954034805298,1.307046890258789,1.1700488328933716,1.5467933416366577,1.1700488328933716,1.5810428857803345,1.6152924299240112,1.7522904872894287,1.7522904872894287,1.7351657152175903,1.9749122858047485,2.1632845401763916,2.111910343170166,2.248908281326294,2.0262866020202637,1.9749122858047485,1.9235379695892334,2.0091617107391357,2.1975340843200684,2.0091617107391357,2.0091617107391357,2.1461598873138428,1.9920369386672974,2.111910343170166,2.1461598873138428,2.1461598873138428,2.248908281326294,2.1632845401763916,1.9920369386672974,2.1461598873138428,2.248908281326294,2.094785451889038,1.7522904872894287,2.214658737182617,2.0605359077453613,2.1804091930389404,2.111910343170166,2.248908281326294,2.094785451889038,2.248908281326294,2.0434112548828125,1.9920369386672974,1.9749122858047485,1.9577875137329102,2.1632845401763916,2.129034996032715,2.248908281326294,2.0776607990264893,1.8550390005111694,2.1804091930389404,2.248908281326294,2.248908281326294,1.8892884254455566,1.786539912223816,2.1632845401763916,2.0091617107391357,2.231783628463745,2.248908281326294,2.129034996032715,2.0262866020202637,1.9920369386672974,2.231783628463745,1.9577875137329102,1.8721636533737183,2.1804091930389404,2.1975340843200684,1.8892884254455566,2.248908281326294,2.0605359077453613,2.248908281326294,1.8892884254455566,2.248908281326294,2.1461598873138428,2.0776607990264893,2.1804091930389404,2.0434112548828125,1.906413197517395,1.9406627416610718,2.0605359077453613,2.111910343170166,2.248908281326294,2.111910343170166,2.129034996032715,2.1804091930389404,2.248908281326294,2.094785451889038,2.248908281326294,2.111910343170166,2.1632845401763916,2.129034996032715,2.111910343170166,2.1461598873138428,2.0605359077453613,2.094785451889038,2.111910343170166,2.248908281326294,2.1461598873138428,2.1461598873138428,2.248908281326294,1.8207894563674927,2.0262866020202637,2.0434112548828125,1.9406627416610718,2.0605359077453613,1.7694151401519775,1.9406627416610718,1.9920369386672974,2.0776607990264893,2.0605359077453613,2.0091617107391357,1.9577875137329102,1.906413197517395,1.9235379695892334,1.9577875137329102,2.1461598873138428,2.248908281326294,2.111910343170166,2.0091617107391357,1.906413197517395,2.0434112548828125,2.129034996032715,1.9749122858047485,2.0091617107391357,2.0434112548828125,1.837914228439331,2.0605359077453613,2.1804091930389404,2.1461598873138428,2.0776607990264893,2.1461598873138428,1.9577875137329102,2.1632845401763916,1.906413197517395,2.0091617107391357,2.111910343170166,2.129034996032715,1.9235379695892334,1.9406627416610718,2.129034996032715,2.1632845401763916,2.0091617107391357,2.1975340843200684,2.248908281326294,2.248908281326294,2.1804091930389404,2.1632845401763916,2.129034996032715,2.248908281326294,2.1461598873138428,1.906413197517395,2.0434112548828125,1.9920369386672974,1.906413197517395,1.7694151401519775,1.2899221181869507,1.1700488328933716,0.9645517468452454,1.1357992887496948,1.837914228439331,2.248908281326294,2.1461598873138428,1.906413197517395,1.7351657152175903,1.5810428857803345,1.0159260034561157,1.3584210872650146,1.563918113708496,1.718040943145752,1.8721636533737183,1.5981676578521729,1.307046890258789,1.2042982578277588,1.8036646842956543,1.9235379695892334,2.248908281326294,2.094785451889038,2.1461598873138428,2.248908281326294,2.094785451889038,1.9749122858047485,1.8892884254455566,1.8036646842956543,1.4097954034805298,1.307046890258789,1.5467933416366577,1.5981676578521729,1.786539912223816,1.6495418548583984,1.6324172019958496,1.7694151401519775,1.9235379695892334,1.8892884254455566,1.8550390005111694],[2.231783628463745,2.0776607990264893,2.094785451889038,2.0434112548828125,2.0605359077453613,2.111910343170166,1.9577875137329102,2.248908281326294,2.0605359077453613,2.248908281326294,1.9920369386672974,1.8207894563674927,1.8892884254455566,1.3926706314086914,0.7419299483299255,1.444044828414917,1.6837913990020752,1.2042982578277588,0.7590547204017639,0.9474270343780518,0.7933042049407959,0.913177490234375,1.033050775527954,-0.028683962300419807,0.36518537998199463,0.8618032336235046,0.9303022623062134,1.0673003196716309,1.3584210872650146,1.444044828414917,1.5125439167022705,1.18717360496521,1.6837913990020752,1.4954191446304321,1.5810428857803345,1.6666666269302368,1.5981676578521729,1.718040943145752,1.8550390005111694,1.837914228439331,1.9235379695892334,2.0434112548828125,1.9749122858047485,2.0776607990264893,2.0262866020202637,2.214658737182617,2.1461598873138428,2.248908281326294,2.094785451889038,1.9577875137329102,1.9920369386672974,2.1632845401763916,2.0776607990264893,1.8721636533737183,2.129034996032715,1.8892884254455566,2.214658737182617,2.214658737182617,2.248908281326294,2.0605359077453613,2.129034996032715,2.1975340843200684,2.0262866020202637,2.231783628463745,2.1804091930389404,2.1804091930389404,2.094785451889038,2.1975340843200684,2.111910343170166,2.0091617107391357,2.248908281326294,2.0091617107391357,2.214658737182617,2.1975340843200684,2.214658737182617,2.1461598873138428,2.0776607990264893,2.1804091930389404,2.0262866020202637,1.8036646842956543,2.0605359077453613,2.111910343170166,1.9920369386672974,2.129034996032715,2.248908281326294,2.129034996032715,2.111910343170166,2.129034996032715,2.1975340843200684,2.129034996032715,2.1632845401763916,2.1804091930389404,2.1632845401763916,1.9920369386672974,1.906413197517395,1.8550390005111694,1.786539912223816,1.8207894563674927,2.0262866020202637,2.231783628463745,2.248908281326294,2.1632845401763916,2.1632845401763916,2.0262866020202637,2.248908281326294,1.906413197517395,1.8721636533737183,2.0605359077453613,1.9235379695892334,2.094785451889038,1.9920369386672974,2.0434112548828125,2.214658737182617,2.0434112548828125,2.1461598873138428,2.1461598873138428,2.094785451889038,2.129034996032715,2.231783628463745,2.1461598873138428,2.248908281326294,1.9920369386672974,2.0434112548828125,1.9920369386672974,2.0776607990264893,2.111910343170166,2.248908281326294,2.248908281326294,1.837914228439331,2.111910343170166,2.248908281326294,2.1461598873138428,2.214658737182617,2.111910343170166,2.1461598873138428,2.0262866020202637,2.0262866020202637,1.8207894563674927,2.111910343170166,1.9749122858047485,2.231783628463745,2.0091617107391357,1.9920369386672974,1.9577875137329102,2.129034996032715,2.248908281326294,2.231783628463745,2.0434112548828125,2.214658737182617,2.248908281326294,1.9749122858047485,2.094785451889038,1.8207894563674927,2.0605359077453613,2.1804091930389404,2.111910343170166,2.111910343170166,2.1975340843200684,2.0776607990264893,1.9920369386672974,1.906413197517395,2.129034996032715,2.094785451889038,2.0605359077453613,2.1975340843200684,2.129034996032715,2.094785451889038,1.9920369386672974,2.0434112548828125,2.248908281326294,2.129034996032715,2.0434112548828125,2.248908281326294,2.1804091930389404,2.248908281326294,2.248908281326294,2.0605359077453613,2.111910343170166,2.0605359077453613,1.9577875137329102,1.9577875137329102,1.6152924299240112,1.6837913990020752,1.786539912223816,1.6666666269302368,1.5467933416366577,1.3412963151931763,1.0501755475997925,1.6152924299240112,1.9920369386672974,2.1632845401763916,2.1632845401763916,1.906413197517395,1.8207894563674927,1.5467933416366577,1.18717360496521,1.255672574043274,1.5125439167022705,1.7694151401519775,1.8207894563674927,1.444044828414917,1.4954191446304321,1.307046890258789,1.5810428857803345,2.0434112548828125,2.129034996032715,2.214658737182617,2.0776607990264893,2.094785451889038,2.1632845401763916,2.129034996032715,2.0434112548828125,1.718040943145752,1.4097954034805298,1.7009161710739136,1.5810428857803345,1.1357992887496948,1.3584210872650146,1.7009161710739136,1.7522904872894287,1.8721636533737183,1.9406627416610718,1.9406627416610718,1.906413197517395],[2.1804091930389404,2.248908281326294,1.9749122858047485,2.0434112548828125,2.111910343170166,1.906413197517395,1.9577875137329102,2.0091617107391357,2.0605359077453613,1.9577875137329102,1.786539912223816,1.9920369386672974,1.7694151401519775,1.563918113708496,1.0501755475997925,1.786539912223816,1.4097954034805298,0.9645517468452454,1.1357992887496948,0.6220566630363464,0.8446784615516663,0.8104289770126343,1.2727973461151123,0.24531209468841553,0.7933042049407959,0.9816765189170837,1.1357992887496948,1.18717360496521,1.324171543121338,1.444044828414917,1.3412963151931763,1.7009161710739136,1.3584210872650146,1.4611696004867554,1.5125439167022705,1.563918113708496,1.7522904872894287,1.786539912223816,1.8721636533737183,1.7009161710739136,1.8207894563674927,1.9235379695892334,2.111910343170166,1.8550390005111694,2.0434112548828125,2.0434112548828125,1.906413197517395,2.0262866020202637,2.0605359077453613,2.248908281326294,2.1632845401763916,2.094785451889038,2.231783628463745,2.1632845401763916,2.1461598873138428,2.248908281326294,2.0434112548828125,2.0605359077453613,1.9406627416610718,2.0091617107391357,2.0605359077453613,2.248908281326294,2.1461598873138428,2.129034996032715,2.0776607990264893,2.1804091930389404,2.0262866020202637,2.1461598873138428,2.0605359077453613,2.248908281326294,2.248908281326294,2.111910343170166,2.129034996032715,1.9406627416610718,2.248908281326294,2.0262866020202637,2.094785451889038,2.0091617107391357,1.9920369386672974,2.0091617107391357,1.9577875137329102,2.0091617107391357,1.8892884254455566,2.0776607990264893,2.111910343170166,2.0434112548828125,2.248908281326294,2.248908281326294,2.0434112548828125,2.1461598873138428,2.094785451889038,2.0434112548828125,2.0434112548828125,1.9749122858047485,1.8721636533737183,1.9235379695892334,2.0262866020202637,2.129034996032715,2.0434112548828125,2.231783628463745,2.111910343170166,2.094785451889038,2.1975340843200684,2.248908281326294,2.094785451889038,2.129034996032715,2.214658737182617,2.1804091930389404,2.248908281326294,2.1461598873138428,2.111910343170166,2.248908281326294,2.214658737182617,2.214658737182617,2.248908281326294,1.906413197517395,2.1461598873138428,1.9749122858047485,1.8207894563674927,2.111910343170166,2.0262866020202637,2.248908281326294,2.248908281326294,1.8892884254455566,2.248908281326294,1.9577875137329102,1.8036646842956543,2.0262866020202637,2.248908281326294,2.1461598873138428,1.8036646842956543,2.0262866020202637,2.0434112548828125,2.111910343170166,1.9749122858047485,1.7522904872894287,2.0091617107391357,2.094785451889038,2.0776607990264893,2.248908281326294,2.094785451889038,2.1632845401763916,2.214658737182617,2.231783628463745,1.9577875137329102,2.231783628463745,2.1461598873138428,2.1804091930389404,2.1632845401763916,2.248908281326294,2.0262866020202637,1.837914228439331,2.0091617107391357,2.0091617107391357,1.7694151401519775,2.1975340843200684,2.0434112548828125,1.9235379695892334,2.0434112548828125,2.129034996032715,2.1804091930389404,2.248908281326294,2.214658737182617,2.1975340843200684,1.906413197517395,2.0262866020202637,2.1461598873138428,2.129034996032715,2.111910343170166,1.9577875137329102,2.1632845401763916,2.0262866020202637,2.1804091930389404,2.231783628463745,2.1461598873138428,2.111910343170166,2.248908281326294,2.094785451889038,2.1804091930389404,2.111910343170166,2.0776607990264893,1.8550390005111694,1.7522904872894287,1.786539912223816,1.4782943725585938,1.324171543121338,1.2214230298995972,1.1186745166778564,1.5296686887741089,1.9577875137329102,2.129034996032715,2.1804091930389404,1.9749122858047485,1.7351657152175903,1.6666666269302368,1.307046890258789,1.1700488328933716,1.4782943725585938,1.7694151401519775,1.718040943145752,1.6666666269302368,1.3584210872650146,1.2899221181869507,1.4269200563430786,1.837914228439331,2.129034996032715,2.094785451889038,2.0776607990264893,2.111910343170166,2.111910343170166,2.1461598873138428,2.129034996032715,2.111910343170166,1.7351657152175903,1.375545859336853,1.375545859336853,1.5467933416366577,1.255672574043274,1.4782943725585938,1.5810428857803345,1.563918113708496,1.7351657152175903,1.8721636533737183,1.7351657152175903],[2.0776607990264893,2.0262866020202637,1.9577875137329102,2.231783628463745,2.0434112548828125,2.129034996032715,2.129034996032715,2.094785451889038,2.0776607990264893,1.9749122858047485,2.0776607990264893,1.6152924299240112,1.7009161710739136,1.5810428857803345,0.7419299483299255,1.5125439167022705,1.4269200563430786,1.2727973461151123,0.5193081498146057,0.9303022623062134,0.7248051762580872,0.46793389320373535,1.1700488328933716,0.24531209468841553,0.6049319505691528,1.0501755475997925,1.0159260034561157,1.4782943725585938,1.444044828414917,1.4269200563430786,1.5467933416366577,1.4269200563430786,1.5125439167022705,1.4782943725585938,1.8207894563674927,1.5981676578521729,1.7351657152175903,1.8721636533737183,1.6666666269302368,1.9235379695892334,1.837914228439331,2.129034996032715,1.9749122858047485,2.094785451889038,1.9235379695892334,2.129034996032715,1.8036646842956543,2.094785451889038,2.1975340843200684,2.214658737182617,2.0776607990264893,1.9920369386672974,2.1632845401763916,2.1632845401763916,2.248908281326294,2.1632845401763916,1.718040943145752,1.9577875137329102,2.0776607990264893,2.248908281326294,2.094785451889038,2.1632845401763916,2.111910343170166,2.248908281326294,2.111910343170166,2.0262866020202637,2.1461598873138428,1.8207894563674927,2.0434112548828125,2.111910343170166,2.0605359077453613,2.248908281326294,2.094785451889038,1.9920369386672974,2.129034996032715,2.1461598873138428,2.129034996032715,2.129034996032715,1.9920369386672974,2.094785451889038,2.248908281326294,2.214658737182617,2.111910343170166,2.0776607990264893,2.248908281326294,2.1975340843200684,1.9749122858047485,2.094785451889038,2.1632845401763916,2.129034996032715,2.0091617107391357,2.248908281326294,2.0262866020202637,1.9406627416610718,2.129034996032715,1.8207894563674927,1.786539912223816,1.9749122858047485,2.0605359077453613,1.9749122858047485,2.094785451889038,2.248908281326294,2.1461598873138428,2.1632845401763916,2.214658737182617,2.0605359077453613,1.9920369386672974,2.129034996032715,2.248908281326294,2.1632845401763916,1.9920369386672974,2.1632845401763916,2.1804091930389404,2.248908281326294,2.0434112548828125,2.1804091930389404,1.7694151401519775,2.0262866020202637,1.9406627416610718,2.0091617107391357,2.1975340843200684,1.8721636533737183,2.1461598873138428,2.1804091930389404,1.9577875137329102,2.1804091930389404,2.0434112548828125,2.094785451889038,2.0091617107391357,2.0605359077453613,2.0262866020202637,2.1632845401763916,1.9920369386672974,2.094785451889038,1.9577875137329102,2.129034996032715,2.214658737182617,1.8892884254455566,2.1461598873138428,1.9577875137329102,2.129034996032715,2.214658737182617,2.111910343170166,2.1804091930389404,2.1461598873138428,2.111910343170166,2.111910343170166,2.0434112548828125,2.214658737182617,1.9749122858047485,2.1804091930389404,2.0605359077453613,2.0434112548828125,2.094785451889038,2.0091617107391357,2.0091617107391357,2.248908281326294,2.1975340843200684,2.248908281326294,2.1804091930389404,2.1632845401763916,1.9920369386672974,2.0262866020202637,1.9920369386672974,1.9749122858047485,2.094785451889038,2.0262866020202637,2.0434112548828125,2.248908281326294,1.9920369386672974,1.9749122858047485,2.1461598873138428,2.1804091930389404,2.1804091930389404,2.1461598873138428,2.1632845401763916,2.0091617107391357,2.1804091930389404,1.9577875137329102,1.8550390005111694,1.8550390005111694,1.7694151401519775,1.8721636533737183,1.7522904872894287,1.2899221181869507,1.307046890258789,1.2385478019714355,1.4097954034805298,1.9406627416610718,2.1461598873138428,2.0776607990264893,2.1632845401763916,1.9406627416610718,1.8721636533737183,1.6324172019958496,1.375545859336853,1.255672574043274,1.4611696004867554,1.8036646842956543,1.9406627416610718,1.7351657152175903,1.4611696004867554,1.3926706314086914,1.2385478019714355,1.6152924299240112,2.094785451889038,2.0091617107391357,2.1804091930389404,2.129034996032715,2.111910343170166,2.1804091930389404,1.8721636533737183,1.9920369386672974,1.7009161710739136,1.6666666269302368,1.375545859336853,1.444044828414917,1.2727973461151123,1.2899221181869507,1.444044828414917,1.4954191446304321,1.837914228439331,1.837914228439331,1.8550390005111694],[2.1632845401763916,2.0605359077453613,2.1975340843200684,2.214658737182617,1.9577875137329102,1.8036646842956543,1.8721636533737183,1.9577875137329102,1.906413197517395,1.9749122858047485,2.248908281326294,2.231783628463745,1.9749122858047485,1.2899221181869507,1.3412963151931763,1.5810428857803345,1.0159260034561157,1.1700488328933716,1.0501755475997925,0.24531209468841553,0.2624368667602539,0.7076804637908936,1.033050775527954,0.416559636592865,0.5878071784973145,1.0501755475997925,1.255672574043274,1.3412963151931763,1.4611696004867554,1.718040943145752,1.444044828414917,1.4611696004867554,1.7694151401519775,1.6666666269302368,1.837914228439331,1.8721636533737183,1.8892884254455566,2.0776607990264893,2.0776607990264893,1.7009161710739136,2.0262866020202637,1.837914228439331,2.111910343170166,2.111910343170166,1.8892884254455566,1.7694151401519775,2.1461598873138428,2.214658737182617,1.7351657152175903,1.9406627416610718,1.9749122858047485,1.7009161710739136,2.248908281326294,2.1804091930389404,2.111910343170166,2.0605359077453613,2.0434112548828125,1.8721636533737183,2.248908281326294,2.248908281326294,2.1975340843200684,2.111910343170166,2.248908281326294,2.1461598873138428,2.1461598873138428,2.1804091930389404,2.248908281326294,2.0434112548828125,1.9920369386672974,2.248908281326294,2.231783628463745,2.1975340843200684,2.1804091930389404,2.231783628463745,2.248908281326294,2.1975340843200684,2.248908281326294,1.8892884254455566,2.1975340843200684,2.1975340843200684,2.111910343170166,2.094785451889038,2.129034996032715,1.906413197517395,2.248908281326294,2.1975340843200684,2.1632845401763916,2.0434112548828125,2.1461598873138428,2.0776607990264893,2.129034996032715,1.8550390005111694,1.906413197517395,1.8036646842956543,2.1461598873138428,1.8207894563674927,1.8892884254455566,2.0262866020202637,2.0434112548828125,2.1804091930389404,2.1975340843200684,2.0434112548828125,2.111910343170166,2.248908281326294,2.1975340843200684,2.0776607990264893,1.9235379695892334,2.0262866020202637,2.111910343170166,2.248908281326294,2.248908281326294,2.248908281326294,1.9577875137329102,2.0605359077453613,2.1975340843200684,2.1975340843200684,2.248908281326294,2.1804091930389404,2.248908281326294,2.248908281326294,2.0434112548828125,2.1632845401763916,2.1461598873138428,2.0262866020202637,2.0605359077453613,1.9577875137329102,1.9749122858047485,1.9406627416610718,2.094785451889038,2.1804091930389404,2.1804091930389404,1.9749122858047485,1.8892884254455566,1.9920369386672974,2.0605359077453613,2.0262866020202637,2.1632845401763916,1.9235379695892334,2.248908281326294,2.0262866020202637,2.1975340843200684,1.9577875137329102,2.248908281326294,2.1975340843200684,2.248908281326294,2.1461598873138428,2.1461598873138428,2.0605359077453613,2.0776607990264893,2.0605359077453613,2.1461598873138428,2.248908281326294,1.9749122858047485,2.231783628463745,2.0262866020202637,1.8207894563674927,2.111910343170166,1.9406627416610718,1.9920369386672974,1.9577875137329102,2.1632845401763916,1.9577875137329102,2.1804091930389404,2.111910343170166,1.9577875137329102,1.906413197517395,2.1461598873138428,2.248908281326294,2.0091617107391357,1.906413197517395,2.0091617107391357,2.248908281326294,2.1632845401763916,2.094785451889038,2.1632845401763916,1.9920369386672974,2.129034996032715,2.248908281326294,2.1461598873138428,2.0776607990264893,1.8550390005111694,1.837914228439331,1.9235379695892334,1.786539912223816,1.3926706314086914,1.4269200563430786,1.4782943725585938,1.4097954034805298,1.9920369386672974,2.1461598873138428,2.214658737182617,2.0434112548828125,1.9749122858047485,1.8207894563674927,1.6152924299240112,1.2727973461151123,1.101549744606018,1.5125439167022705,1.9406627416610718,2.0434112548828125,1.8550390005111694,1.7351657152175903,1.4269200563430786,1.3926706314086914,1.255672574043274,2.1632845401763916,2.248908281326294,2.0262866020202637,2.1804091930389404,2.1804091930389404,2.231783628463745,2.1632845401763916,2.0776607990264893,1.7694151401519775,1.906413197517395,1.786539912223816,1.3926706314086914,1.2385478019714355,1.2042982578277588,1.2727973461151123,1.563918113708496,1.5981676578521729,1.6152924299240112,1.7522904872894287],[2.248908281326294,2.1632845401763916,1.9235379695892334,2.094785451889038,1.9920369386672974,1.9406627416610718,1.9920369386672974,1.5467933416366577,1.8721636533737183,2.0434112548828125,1.8036646842956543,1.6666666269302368,1.786539912223816,1.444044828414917,0.878928005695343,0.913177490234375,1.7694151401519775,1.1700488328933716,1.1186745166778564,0.21106259524822235,-0.28555527329444885,0.9303022623062134,1.2042982578277588,0.31381112337112427,1.033050775527954,1.033050775527954,1.444044828414917,1.324171543121338,1.5810428857803345,1.5467933416366577,1.5125439167022705,1.6666666269302368,1.6495418548583984,1.837914228439331,1.6837913990020752,1.9577875137329102,2.0605359077453613,2.094785451889038,1.9749122858047485,1.9577875137329102,1.8721636533737183,2.0776607990264893,2.248908281326294,1.9920369386672974,1.9749122858047485,1.9577875137329102,2.248908281326294,2.214658737182617,1.906413197517395,1.9235379695892334,1.837914228439331,2.0776607990264893,2.0605359077453613,2.0776607990264893,2.094785451889038,1.9235379695892334,2.1975340843200684,2.231783628463745,2.248908281326294,2.094785451889038,2.0434112548828125,2.0262866020202637,2.129034996032715,2.1632845401763916,2.248908281326294,2.1804091930389404,2.248908281326294,2.1975340843200684,2.111910343170166,2.248908281326294,2.214658737182617,2.0776607990264893,2.248908281326294,2.0434112548828125,2.1804091930389404,2.0776607990264893,1.9920369386672974,2.248908281326294,1.9406627416610718,2.1461598873138428,2.111910343170166,1.9920369386672974,2.1632845401763916,1.9406627416610718,2.1461598873138428,1.9920369386672974,2.111910343170166,2.1975340843200684,1.9920369386672974,2.094785451889038,1.9749122858047485,2.0091617107391357,1.718040943145752,2.094785451889038,1.9235379695892334,2.094785451889038,2.248908281326294,2.0434112548828125,2.248908281326294,2.094785451889038,2.111910343170166,2.111910343170166,2.1804091930389404,2.129034996032715,2.231783628463745,2.0605359077453613,2.094785451889038,2.1632845401763916,2.1461598873138428,2.0605359077453613,2.1804091930389404,2.248908281326294,2.094785451889038,2.231783628463745,2.248908281326294,2.0262866020202637,2.129034996032715,2.1804091930389404,1.9749122858047485,1.9749122858047485,1.906413197517395,2.0605359077453613,2.214658737182617,1.8892884254455566,2.0091617107391357,2.248908281326294,2.0776607990264893,1.906413197517395,1.9235379695892334,1.8207894563674927,2.1632845401763916,1.8550390005111694,2.0605359077453613,1.9920369386672974,2.1461598873138428,1.906413197517395,2.248908281326294,2.0262866020202637,1.9577875137329102,1.9749122858047485,2.248908281326294,2.1975340843200684,2.1632845401763916,2.214658737182617,2.248908281326294,2.1804091930389404,2.248908281326294,1.9406627416610718,1.9920369386672974,1.6324172019958496,1.9577875137329102,1.8036646842956543,1.9749122858047485,2.214658737182617,2.214658737182617,2.0776607990264893,2.1461598873138428,2.0434112548828125,2.0776607990264893,2.1632845401763916,2.0434112548828125,2.094785451889038,2.0262866020202637,2.1975340843200684,2.0605359077453613,2.1461598873138428,1.9920369386672974,2.094785451889038,2.248908281326294,2.129034996032715,2.214658737182617,2.111910343170166,2.214658737182617,2.1804091930389404,2.214658737182617,2.214658737182617,2.231783628463745,2.0262866020202637,2.0091617107391357,1.718040943145752,2.111910343170166,1.7694151401519775,1.786539912223816,1.5467933416366577,1.4097954034805298,1.2899221181869507,1.375545859336853,1.7694151401519775,2.0434112548828125,2.0605359077453613,2.1461598873138428,2.1461598873138428,1.906413197517395,1.8207894563674927,1.8550390005111694,1.4782943725585938,1.375545859336853,1.307046890258789,1.8721636533737183,1.7694151401519775,1.718040943145752,1.6837913990020752,1.4782943725585938,1.307046890258789,1.307046890258789,1.906413197517395,2.111910343170166,2.0776607990264893,2.1461598873138428,2.094785451889038,2.1975340843200684,2.248908281326294,1.9406627416610718,1.8550390005111694,1.7351657152175903,1.8550390005111694,1.2727973461151123,1.5296686887741089,1.3412963151931763,1.1186745166778564,1.2042982578277588,1.3926706314086914,1.6324172019958496,1.786539912223816],[2.231783628463745,2.248908281326294,2.129034996032715,2.1975340843200684,2.1461598873138428,1.9749122858047485,1.9749122858047485,1.8550390005111694,1.9406627416610718,1.7522904872894287,1.9749122858047485,1.8207894563674927,1.3584210872650146,1.2214230298995972,1.033050775527954,1.1357992887496948,1.5810428857803345,0.9988012909889221,1.0673003196716309,1.0159260034561157,0.3823101222515106,1.0501755475997925,1.1357992887496948,0.416559636592865,0.7761794924736023,1.101549744606018,1.2899221181869507,1.5467933416366577,1.4782943725585938,1.6152924299240112,1.7522904872894287,1.5296686887741089,1.7351657152175903,1.8721636533737183,1.786539912223816,1.9920369386672974,1.9920369386672974,1.8892884254455566,1.9577875137329102,1.9577875137329102,2.231783628463745,2.111910343170166,2.111910343170166,2.111910343170166,2.129034996032715,2.111910343170166,2.111910343170166,2.0776607990264893,2.094785451889038,2.111910343170166,2.248908281326294,1.9920369386672974,1.9235379695892334,2.094785451889038,1.9235379695892334,2.248908281326294,1.8721636533737183,1.8550390005111694,2.0605359077453613,2.129034996032715,2.1804091930389404,2.248908281326294,2.231783628463745,2.0262866020202637,1.906413197517395,2.129034996032715,1.906413197517395,2.1461598873138428,2.129034996032715,2.231783628463745,2.1632845401763916,1.9920369386672974,2.0605359077453613,2.129034996032715,2.1975340843200684,2.248908281326294,2.1632845401763916,2.248908281326294,2.0262866020202637,1.9920369386672974,1.9749122858047485,2.248908281326294,1.9920369386672974,1.9749122858047485,2.0605359077453613,2.231783628463745,2.1804091930389404,2.111910343170166,1.8721636533737183,1.8721636533737183,2.0434112548828125,1.8207894563674927,1.8550390005111694,1.6666666269302368,2.0434112548828125,1.8207894563674927,2.248908281326294,2.1804091930389404,2.1632845401763916,2.0091617107391357,2.094785451889038,2.248908281326294,2.129034996032715,2.0434112548828125,2.0091617107391357,1.9749122858047485,2.248908281326294,2.1975340843200684,2.1461598873138428,2.1461598873138428,2.0776607990264893,2.0776607990264893,2.248908281326294,2.0605359077453613,1.8721636533737183,2.0091617107391357,2.248908281326294,2.1975340843200684,1.8892884254455566,1.9749122858047485,2.111910343170166,2.0605359077453613,2.248908281326294,2.248908281326294,2.1804091930389404,2.0262866020202637,2.1461598873138428,2.248908281326294,2.0262866020202637,1.6837913990020752,1.8207894563674927,2.0776607990264893,1.9406627416610718,2.248908281326294,2.0091617107391357,2.1632845401763916,2.094785451889038,1.9577875137329102,2.0262866020202637,1.8892884254455566,2.1804091930389404,2.111910343170166,2.094785451889038,2.0776607990264893,2.1804091930389404,2.0262866020202637,2.214658737182617,2.0434112548828125,2.248908281326294,2.231783628463745,1.9235379695892334,1.9406627416610718,1.8721636533737183,2.094785451889038,2.129034996032715,1.9920369386672974,2.0776607990264893,2.0776607990264893,1.8550390005111694,1.786539912223816,2.111910343170166,2.248908281326294,2.111910343170166,2.0262866020202637,2.0434112548828125,2.1632845401763916,1.9577875137329102,2.248908281326294,2.1632845401763916,2.248908281326294,2.1632845401763916,2.1804091930389404,2.094785451889038,2.248908281326294,2.1461598873138428,2.214658737182617,1.8892884254455566,2.129034996032715,2.129034996032715,1.8892884254455566,1.9235379695892334,1.8207894563674927,1.7009161710739136,1.444044828414917,1.2727973461151123,1.2899221181869507,1.5467933416366577,1.7009161710739136,2.1461598873138428,2.1632845401763916,2.214658737182617,1.9920369386672974,1.8721636533737183,1.718040943145752,1.7009161710739136,1.3584210872650146,1.2214230298995972,1.6495418548583984,1.9920369386672974,1.837914228439331,2.1461598873138428,1.4611696004867554,1.307046890258789,1.444044828414917,1.5125439167022705,1.5810428857803345,1.7351657152175903,2.214658737182617,2.094785451889038,2.111910343170166,2.248908281326294,2.111910343170166,2.0605359077453613,1.9577875137329102,2.0605359077453613,1.7694151401519775,1.4782943725585938,1.5981676578521729,1.4269200563430786,1.3926706314086914,1.2899221181869507,1.4954191446304321,1.5125439167022705,1.5810428857803345],[2.0262866020202637,2.129034996032715,2.129034996032715,2.1804091930389404,2.214658737182617,2.1804091930389404,1.8721636533737183,1.8721636533737183,1.563918113708496,1.4611696004867554,1.5467933416366577,1.9235379695892334,1.307046890258789,0.913177490234375,1.1357992887496948,1.1186745166778564,1.2385478019714355,1.255672574043274,0.9816765189170837,0.7419299483299255,0.6563062071800232,0.6734309196472168,1.0159260034561157,0.07406456023454666,0.6734309196472168,1.101549744606018,1.4269200563430786,1.4611696004867554,1.8036646842956543,1.5467933416366577,1.4782943725585938,1.7694151401519775,1.7009161710739136,1.4954191446304321,1.8036646842956543,1.8721636533737183,1.7694151401519775,2.1461598873138428,2.1975340843200684,2.129034996032715,2.094785451889038,2.214658737182617,1.9749122858047485,2.111910343170166,2.0091617107391357,2.1975340843200684,2.111910343170166,2.248908281326294,2.214658737182617,1.9577875137329102,1.9749122858047485,2.094785451889038,1.5125439167022705,2.214658737182617,2.0262866020202637,2.248908281326294,2.111910343170166,2.094785451889038,2.1632845401763916,2.248908281326294,2.094785451889038,2.0605359077453613,2.111910343170166,2.0605359077453613,2.248908281326294,2.248908281326294,2.0091617107391357,2.248908281326294,2.094785451889038,2.129034996032715,2.1804091930389404,2.0091617107391357,1.9920369386672974,2.248908281326294,2.231783628463745,2.111910343170166,2.248908281326294,2.129034996032715,2.248908281326294,2.0434112548828125,1.837914228439331,2.1975340843200684,2.0776607990264893,1.837914228439331,2.111910343170166,2.111910343170166,2.0091617107391357,2.094785451889038,2.214658737182617,1.786539912223816,1.8892884254455566,1.8207894563674927,1.6152924299240112,1.8207894563674927,2.1804091930389404,1.9235379695892334,2.1632845401763916,2.0091617107391357,2.0091617107391357,2.111910343170166,2.129034996032715,2.248908281326294,2.1632845401763916,2.248908281326294,2.248908281326294,2.129034996032715,2.214658737182617,2.1975340843200684,2.1461598873138428,2.129034996032715,2.0605359077453613,2.248908281326294,2.094785451889038,2.1975340843200684,2.0434112548828125,1.9920369386672974,2.111910343170166,2.248908281326294,2.0091617107391357,1.9406627416610718,1.906413197517395,2.248908281326294,2.1632845401763916,2.111910343170166,2.1632845401763916,1.837914228439331,2.248908281326294,1.9406627416610718,2.0605359077453613,2.248908281326294,2.248908281326294,2.0091617107391357,1.9920369386672974,2.0091617107391357,2.0776607990264893,2.0262866020202637,2.0605359077453613,2.129034996032715,2.0776607990264893,2.248908281326294,2.1975340843200684,2.1804091930389404,2.1461598873138428,2.231783628463745,2.1975340843200684,2.1975340843200684,2.0776607990264893,1.906413197517395,1.9749122858047485,1.786539912223816,1.7522904872894287,2.1632845401763916,2.111910343170166,2.248908281326294,1.906413197517395,2.1461598873138428,2.129034996032715,2.1804091930389404,2.0605359077453613,1.9406627416610718,1.7522904872894287,1.9749122858047485,2.111910343170166,2.129034996032715,2.1804091930389404,2.0776607990264893,2.214658737182617,2.094785451889038,2.094785451889038,2.248908281326294,2.111910343170166,2.1632845401763916,2.231783628463745,2.214658737182617,2.0262866020202637,1.9577875137329102,2.1632845401763916,1.9235379695892334,1.8721636533737183,1.7522904872894287,1.8207894563674927,1.906413197517395,1.8036646842956543,1.5810428857803345,1.5125439167022705,1.3584210872650146,1.7694151401519775,2.111910343170166,2.1975340843200684,2.1804091930389404,2.248908281326294,1.9920369386672974,1.786539912223816,1.718040943145752,1.6837913990020752,1.3584210872650146,1.18717360496521,1.7009161710739136,1.9920369386672974,1.9577875137329102,1.8207894563674927,1.6837913990020752,1.4611696004867554,1.324171543121338,1.3584210872650146,1.444044828414917,1.718040943145752,2.0776607990264893,2.129034996032715,2.1632845401763916,2.248908281326294,2.0605359077453613,2.129034996032715,1.906413197517395,2.1804091930389404,1.8550390005111694,1.7351657152175903,1.5125439167022705,1.3584210872650146,1.4097954034805298,1.4611696004867554,1.2385478019714355,1.2214230298995972,1.5810428857803345],[2.1461598873138428,2.214658737182617,2.248908281326294,2.248908281326294,2.0091617107391357,2.248908281326294,2.0091617107391357,2.0776607990264893,1.7351657152175903,1.6324172019958496,1.307046890258789,1.4782943725585938,1.1186745166778564,0.6049319505691528,1.324171543121338,0.9816765189170837,1.6152924299240112,1.255672574043274,0.8104289770126343,0.8104289770126343,0.5878071784973145,0.8275537490844727,1.3926706314086914,0.12543882429599762,0.5878071784973145,0.8104289770126343,1.4269200563430786,1.6495418548583984,1.718040943145752,1.5810428857803345,1.5296686887741089,1.5810428857803345,1.6837913990020752,1.837914228439331,1.9577875137329102,2.0262866020202637,2.214658737182617,1.837914228439331,1.8550390005111694,2.129034996032715,2.1975340843200684,1.9920369386672974,1.9406627416610718,2.248908281326294,2.1804091930389404,1.8721636533737183,2.248908281326294,2.248908281326294,1.7694151401519775,1.9577875137329102,2.248908281326294,2.094785451889038,2.1804091930389404,2.0776607990264893,2.129034996032715,1.837914228439331,1.837914228439331,2.214658737182617,1.9749122858047485,2.111910343170166,2.214658737182617,2.231783628463745,2.1461598873138428,2.094785451889038,2.0605359077453613,2.111910343170166,2.1975340843200684,2.0776607990264893,1.906413197517395,2.129034996032715,1.9577875137329102,2.1461598873138428,2.248908281326294,2.214658737182617,1.9920369386672974,1.9920369386672974,1.8550390005111694,2.214658737182617,2.111910343170166,2.0605359077453613,2.0262866020202637,2.0605359077453613,1.9235379695892334,2.1804091930389404,2.0605359077453613,2.214658737182617,2.214658737182617,1.9406627416610718,2.094785451889038,1.8721636533737183,2.0434112548828125,1.8036646842956543,2.0434112548828125,1.9235379695892334,2.0605359077453613,2.129034996032715,2.0605359077453613,2.0091617107391357,2.0605359077453613,2.1804091930389404,2.248908281326294,2.248908281326294,2.1632845401763916,2.1461598873138428,1.8550390005111694,2.129034996032715,2.094785451889038,2.0434112548828125,1.9749122858047485,2.0776607990264893,1.9235379695892334,2.111910343170166,2.231783628463745,2.129034996032715,1.906413197517395,1.9577875137329102,2.0605359077453613,2.094785451889038,2.0091617107391357,1.718040943145752,1.906413197517395,1.9749122858047485,2.0262866020202637,1.9920369386672974,2.0091617107391357,2.0776607990264893,1.9920369386672974,2.1461598873138428,2.231783628463745,2.1975340843200684,2.0434112548828125,2.111910343170166,1.9235379695892334,2.248908281326294,2.1804091930389404,2.248908281326294,2.0091617107391357,2.214658737182617,1.9406627416610718,1.7351657152175903,2.1461598873138428,2.1632845401763916,2.1804091930389404,2.1975340843200684,1.9749122858047485,2.0434112548828125,1.7351657152175903,2.0776607990264893,2.0091617107391357,2.231783628463745,2.0605359077453613,2.1461598873138428,2.0776607990264893,1.9577875137329102,2.0605359077453613,2.111910343170166,1.9749122858047485,1.9749122858047485,2.094785451889038,1.9406627416610718,2.0091617107391357,1.9749122858047485,2.1632845401763916,1.9920369386672974,2.0605359077453613,2.0605359077453613,2.214658737182617,2.0262866020202637,2.111910343170166,2.094785451889038,2.094785451889038,1.9749122858047485,2.1975340843200684,2.0776607990264893,2.129034996032715,2.1804091930389404,2.214658737182617,1.9920369386672974,1.8721636533737183,2.111910343170166,1.8550390005111694,1.8721636533737183,1.8207894563674927,1.6666666269302368,1.6495418548583984,1.4782943725585938,1.8550390005111694,2.248908281326294,2.1804091930389404,2.0776607990264893,2.1804091930389404,1.9577875137329102,1.9577875137329102,1.8550390005111694,1.444044828414917,1.3926706314086914,1.3412963151931763,1.6152924299240112,1.8892884254455566,2.0091617107391357,1.8207894563674927,1.307046890258789,1.4269200563430786,1.255672574043274,1.2899221181869507,1.3584210872650146,1.5810428857803345,1.9920369386672974,2.1975340843200684,2.1461598873138428,2.0776607990264893,2.214658737182617,2.129034996032715,2.1461598873138428,1.9920369386672974,1.9920369386672974,1.786539912223816,1.7351657152175903,1.563918113708496,1.324171543121338,1.3412963151931763,1.1529240608215332,1.4269200563430786,1.1186745166778564],[1.9920369386672974,2.231783628463745,2.129034996032715,2.0434112548828125,2.248908281326294,2.129034996032715,2.0091617107391357,1.8207894563674927,1.7522904872894287,1.3926706314086914,1.4782943725585938,1.2042982578277588,1.1357992887496948,0.878928005695343,0.7933042049407959,1.4269200563430786,1.6837913990020752,1.1700488328933716,1.101549744606018,0.48505866527557373,0.6734309196472168,0.7933042049407959,1.2214230298995972,-0.06293346732854843,0.33093586564064026,1.0673003196716309,1.307046890258789,1.2899221181869507,1.5125439167022705,1.7009161710739136,1.3926706314086914,1.7522904872894287,1.718040943145752,1.8721636533737183,2.129034996032715,2.0776607990264893,1.906413197517395,1.8550390005111694,2.248908281326294,2.0434112548828125,2.111910343170166,2.0262866020202637,2.1975340843200684,2.1632845401763916,2.214658737182617,2.1975340843200684,2.248908281326294,2.1975340843200684,2.214658737182617,1.9920369386672974,1.9577875137329102,2.094785451889038,2.248908281326294,2.231783628463745,2.0605359077453613,2.094785451889038,2.1461598873138428,1.8550390005111694,2.214658737182617,2.248908281326294,1.9235379695892334,2.0091617107391357,2.1975340843200684,2.1461598873138428,2.1461598873138428,2.214658737182617,2.0776607990264893,2.214658737182617,2.1632845401763916,2.0605359077453613,1.9749122858047485,2.111910343170166,2.094785451889038,2.094785451889038,1.9406627416610718,2.1461598873138428,2.0262866020202637,2.0262866020202637,2.0434112548828125,2.231783628463745,2.248908281326294,2.0776607990264893,2.1975340843200684,2.231783628463745,2.214658737182617,2.111910343170166,2.231783628463745,1.9577875137329102,1.9406627416610718,2.0262866020202637,2.0434112548828125,1.906413197517395,1.8207894563674927,1.906413197517395,2.094785451889038,2.0434112548828125,2.214658737182617,2.214658737182617,2.1804091930389404,2.0434112548828125,2.1632845401763916,2.0605359077453613,2.248908281326294,2.248908281326294,2.1804091930389404,2.0091617107391357,2.1804091930389404,2.1975340843200684,2.0776607990264893,2.0091617107391357,2.129034996032715,2.1632845401763916,2.0434112548828125,2.1632845401763916,2.1975340843200684,2.248908281326294,1.9577875137329102,1.9577875137329102,2.0605359077453613,1.837914228439331,1.8721636533737183,1.837914228439331,2.248908281326294,2.1632845401763916,1.9406627416610718,2.248908281326294,2.248908281326294,2.0605359077453613,2.111910343170166,2.1975340843200684,2.094785451889038,2.0262866020202637,1.9577875137329102,2.0605359077453613,1.8721636533737183,1.906413197517395,2.129034996032715,2.1461598873138428,1.9577875137329102,2.214658737182617,2.248908281326294,2.0262866020202637,2.094785451889038,2.0091617107391357,1.9406627416610718,2.0091617107391357,2.129034996032715,2.111910343170166,1.786539912223816,1.9235379695892334,1.906413197517395,2.0605359077453613,2.1804091930389404,2.248908281326294,1.9235379695892334,1.9920369386672974,2.129034996032715,2.248908281326294,1.9406627416610718,2.094785451889038,2.0776607990264893,2.111910343170166,2.0434112548828125,2.1975340843200684,2.111910343170166,2.231783628463745,2.1461598873138428,2.111910343170166,2.129034996032715,2.248908281326294,2.0434112548828125,2.0262866020202637,2.248908281326294,2.1632845401763916,2.0605359077453613,2.1461598873138428,1.8207894563674927,1.7522904872894287,1.718040943145752,1.563918113708496,1.718040943145752,1.7009161710739136,1.5810428857803345,1.375545859336853,1.3584210872650146,1.6666666269302368,1.9749122858047485,2.0605359077453613,2.1804091930389404,2.1804091930389404,2.1461598873138428,2.094785451889038,1.786539912223816,2.094785451889038,1.5296686887741089,1.5125439167022705,1.2385478019714355,1.786539912223816,1.7694151401519775,1.7009161710739136,1.906413197517395,1.5981676578521729,1.5467933416366577,1.3926706314086914,1.444044828414917,1.324171543121338,1.3584210872650146,1.9235379695892334,2.1804091930389404,2.0776607990264893,2.111910343170166,2.111910343170166,2.0776607990264893,2.1461598873138428,2.0434112548828125,1.9577875137329102,2.0434112548828125,1.6837913990020752,1.6495418548583984,1.4611696004867554,1.2727973461151123,1.2214230298995972,1.18717360496521,1.1700488328933716],[2.1975340843200684,2.0434112548828125,2.1632845401763916,2.1632845401763916,2.231783628463745,2.1632845401763916,2.1461598873138428,2.0091617107391357,1.8721636533737183,1.5810428857803345,1.6152924299240112,1.1700488328933716,0.7419299483299255,0.5878071784973145,1.0159260034561157,1.563918113708496,1.5296686887741089,1.1700488328933716,0.46793389320373535,0.1596883237361908,0.8275537490844727,0.7590547204017639,1.375545859336853,-0.14855724573135376,0.399434894323349,0.9988012909889221,1.2899221181869507,1.4611696004867554,1.5296686887741089,1.6666666269302368,1.6495418548583984,1.7522904872894287,1.8892884254455566,1.9920369386672974,1.8207894563674927,1.837914228439331,2.0091617107391357,2.0262866020202637,1.8721636533737183,2.1804091930389404,2.1632845401763916,2.248908281326294,2.0262866020202637,2.248908281326294,2.0605359077453613,2.0434112548828125,2.1804091930389404,2.111910343170166,2.248908281326294,2.248908281326294,2.214658737182617,2.1804091930389404,2.094785451889038,2.1461598873138428,2.0776607990264893,1.9920369386672974,1.9577875137329102,2.0091617107391357,2.1975340843200684,2.094785451889038,2.248908281326294,2.1975340843200684,2.129034996032715,1.906413197517395,2.0605359077453613,2.248908281326294,2.111910343170166,2.214658737182617,2.248908281326294,2.1461598873138428,2.231783628463745,2.248908281326294,2.248908281326294,2.248908281326294,2.111910343170166,2.129034996032715,2.094785451889038,2.214658737182617,2.094785451889038,2.214658737182617,2.129034996032715,2.1632845401763916,2.0091617107391357,2.0434112548828125,2.248908281326294,2.248908281326294,1.906413197517395,2.0605359077453613,2.0434112548828125,1.9406627416610718,1.8036646842956543,1.9235379695892334,2.214658737182617,1.906413197517395,1.9749122858047485,2.1632845401763916,1.9920369386672974,2.0262866020202637,2.248908281326294,2.0605359077453613,2.248908281326294,2.111910343170166,2.1461598873138428,2.248908281326294,2.214658737182617,2.0776607990264893,2.1461598873138428,1.837914228439331,2.0262866020202637,2.111910343170166,2.1461598873138428,2.111910343170166,2.1632845401763916,2.0776607990264893,1.9406627416610718,1.9235379695892334,2.248908281326294,2.0434112548828125,1.9749122858047485,1.8550390005111694,2.0262866020202637,2.0262866020202637,2.248908281326294,2.111910343170166,2.094785451889038,1.8207894563674927,2.094785451889038,2.1632845401763916,2.0262866020202637,2.248908281326294,1.9235379695892334,2.129034996032715,2.1804091930389404,2.094785451889038,2.1804091930389404,2.0776607990264893,2.0091617107391357,2.129034996032715,2.1804091930389404,2.248908281326294,2.1804091930389404,2.231783628463745,2.0262866020202637,2.248908281326294,2.248908281326294,2.129034996032715,1.906413197517395,2.0262866020202637,2.1804091930389404,2.248908281326294,2.0776607990264893,2.0262866020202637,1.9406627416610718,1.906413197517395,2.0776607990264893,2.248908281326294,2.0091617107391357,2.1461598873138428,2.0605359077453613,1.9577875137329102,2.111910343170166,2.231783628463745,2.1461598873138428,2.0605359077453613,2.214658737182617,2.094785451889038,2.094785451889038,2.248908281326294,2.1461598873138428,2.1461598873138428,1.9577875137329102,2.248908281326294,2.0434112548828125,1.9749122858047485,2.0262866020202637,1.906413197517395,1.9406627416610718,1.8892884254455566,1.7009161710739136,1.906413197517395,1.8892884254455566,1.718040943145752,1.444044828414917,1.6495418548583984,1.5467933416366577,1.718040943145752,1.9235379695892334,2.0605359077453613,2.248908281326294,2.129034996032715,2.129034996032715,1.9235379695892334,1.8892884254455566,1.8721636533737183,1.6324172019958496,1.3412963151931763,1.307046890258789,1.6495418548583984,1.8721636533737183,1.9749122858047485,1.837914228439331,1.6495418548583984,1.6324172019958496,1.324171543121338,1.255672574043274,1.2042982578277588,1.5296686887741089,1.6324172019958496,1.9749122858047485,2.094785451889038,2.0434112548828125,2.129034996032715,2.0776607990264893,2.1632845401763916,2.0605359077453613,2.0605359077453613,1.8892884254455566,1.7522904872894287,1.3926706314086914,1.5125439167022705,1.307046890258789,1.1529240608215332,1.1186745166778564,1.324171543121338],[2.248908281326294,2.129034996032715,2.094785451889038,2.0776607990264893,2.214658737182617,2.231783628463745,2.129034996032715,1.9406627416610718,2.0262866020202637,1.563918113708496,1.7694151401519775,1.2385478019714355,0.8275537490844727,0.6563062071800232,0.9816765189170837,1.324171543121338,1.7694151401519775,0.9645517468452454,0.399434894323349,0.2966863512992859,0.6734309196472168,0.7761794924736023,1.0844250917434692,-0.43967804312705994,0.7419299483299255,1.18717360496521,1.1357992887496948,1.4269200563430786,1.3926706314086914,1.5981676578521729,1.5810428857803345,1.5296686887741089,1.8036646842956543,1.8550390005111694,1.9920369386672974,2.094785451889038,2.1461598873138428,1.7694151401519775,2.0262866020202637,1.9577875137329102,2.0434112548828125,2.1975340843200684,2.1632845401763916,2.0776607990264893,2.0262866020202637,1.9920369386672974,2.094785451889038,2.111910343170166,2.0776607990264893,2.0091617107391357,2.1632845401763916,2.1975340843200684,2.1804091930389404,2.1804091930389404,2.1461598873138428,2.214658737182617,2.1804091930389404,2.111910343170166,2.129034996032715,2.0262866020202637,1.9749122858047485,2.248908281326294,2.0434112548828125,2.248908281326294,2.248908281326294,2.214658737182617,2.094785451889038,2.1461598873138428,2.0605359077453613,2.0091617107391357,2.094785451889038,2.1975340843200684,2.0605359077453613,1.9577875137329102,2.111910343170166,2.0605359077453613,2.1461598873138428,2.094785451889038,2.1632845401763916,2.0262866020202637,2.0091617107391357,2.0776607990264893,2.1461598873138428,1.9577875137329102,1.9235379695892334,2.0434112548828125,1.9406627416610718,1.906413197517395,1.8892884254455566,1.9749122858047485,1.9406627416610718,1.7009161710739136,1.9920369386672974,2.0434112548828125,2.1461598873138428,2.094785451889038,2.1975340843200684,2.0262866020202637,2.1975340843200684,2.1975340843200684,2.0434112548828125,2.1804091930389404,2.1975340843200684,2.094785451889038,1.7522904872894287,2.0262866020202637,2.0776607990264893,2.0605359077453613,2.0091617107391357,2.1461598873138428,2.0776607990264893,2.248908281326294,1.906413197517395,1.9920369386672974,1.9920369386672974,1.7694151401519775,2.0605359077453613,1.9235379695892334,1.8892884254455566,1.9577875137329102,1.8892884254455566,1.9749122858047485,1.8207894563674927,2.1804091930389404,2.094785451889038,1.9235379695892334,2.248908281326294,2.1632845401763916,2.0605359077453613,2.1461598873138428,1.9235379695892334,2.0091617107391357,1.9749122858047485,2.1461598873138428,1.9920369386672974,2.0091617107391357,2.0091617107391357,1.786539912223816,1.9920369386672974,2.0605359077453613,2.111910343170166,2.1632845401763916,2.1632845401763916,2.0434112548828125,2.094785451889038,1.9920369386672974,2.0262866020202637,2.0434112548828125,2.0434112548828125,2.0605359077453613,1.9749122858047485,2.094785451889038,2.0091617107391357,1.9920369386672974,2.214658737182617,2.0605359077453613,2.0605359077453613,1.906413197517395,2.1461598873138428,2.0605359077453613,2.248908281326294,1.906413197517395,2.1975340843200684,2.214658737182617,2.248908281326294,2.1975340843200684,2.248908281326294,2.248908281326294,2.094785451889038,2.1975340843200684,2.1632845401763916,2.248908281326294,2.0605359077453613,1.9406627416610718,1.8892884254455566,2.0091617107391357,1.9920369386672974,1.837914228439331,1.5981676578521729,1.837914228439331,1.5296686887741089,1.6837913990020752,1.786539912223816,1.6152924299240112,1.906413197517395,1.9577875137329102,2.1461598873138428,2.248908281326294,2.0434112548828125,2.1632845401763916,2.0434112548828125,1.8892884254455566,1.8892884254455566,1.5467933416366577,1.5296686887741089,1.563918113708496,1.4611696004867554,1.4611696004867554,1.718040943145752,1.6666666269302368,1.8721636533737183,2.0262866020202637,1.5810428857803345,1.3412963151931763,1.2899221181869507,1.1529240608215332,1.5125439167022705,1.6837913990020752,1.8721636533737183,2.094785451889038,2.0262866020202637,2.0776607990264893,2.0776607990264893,2.1975340843200684,2.111910343170166,2.0776607990264893,1.837914228439331,1.7522904872894287,1.7522904872894287,1.5981676578521729,1.4782943725585938,1.4954191446304321,1.3412963151931763,1.033050775527954],[2.248908281326294,2.129034996032715,2.0434112548828125,2.1632845401763916,2.0262866020202637,2.1975340843200684,2.129034996032715,2.094785451889038,2.0605359077453613,1.837914228439331,1.786539912223816,1.255672574043274,0.5706824064254761,0.5535576939582825,1.255672574043274,1.255672574043274,1.444044828414917,1.4782943725585938,0.7761794924736023,1.101549744606018,0.46793389320373535,0.5535576939582825,1.4611696004867554,-0.42255330085754395,0.2795616090297699,0.6049319505691528,1.2899221181869507,1.324171543121338,1.5810428857803345,1.6152924299240112,1.6324172019958496,1.718040943145752,1.9235379695892334,2.0605359077453613,2.0262866020202637,2.0262866020202637,1.9577875137329102,1.837914228439331,2.1632845401763916,1.8892884254455566,2.0262866020202637,2.231783628463745,2.0434112548828125,2.129034996032715,2.231783628463745,1.9920369386672974,2.111910343170166,2.094785451889038,2.1975340843200684,2.1804091930389404,2.231783628463745,2.248908281326294,2.0262866020202637,2.0091617107391357,2.248908281326294,2.1804091930389404,2.0434112548828125,2.214658737182617,2.0434112548828125,2.231783628463745,1.8892884254455566,2.0262866020202637,2.0091617107391357,1.9406627416610718,2.248908281326294,2.214658737182617,1.9920369386672974,2.0776607990264893,2.129034996032715,2.129034996032715,2.094785451889038,2.0262866020202637,2.094785451889038,2.0776607990264893,2.129034996032715,1.9920369386672974,1.7694151401519775,2.129034996032715,2.248908281326294,2.0262866020202637,2.1975340843200684,2.248908281326294,2.231783628463745,2.0434112548828125,2.0605359077453613,2.1804091930389404,2.1461598873138428,2.1975340843200684,1.9577875137329102,1.786539912223816,1.9577875137329102,2.094785451889038,2.248908281326294,2.0776607990264893,2.0434112548828125,2.1632845401763916,2.1461598873138428,1.9406627416610718,1.9235379695892334,2.248908281326294,2.0434112548828125,2.0434112548828125,1.8721636533737183,2.0434112548828125,2.0262866020202637,1.906413197517395,2.0262866020202637,2.111910343170166,2.1461598873138428,2.094785451889038,2.129034996032715,2.0434112548828125,2.0605359077453613,1.906413197517395,2.111910343170166,1.837914228439331,1.9577875137329102,2.0262866020202637,2.1975340843200684,1.8550390005111694,1.718040943145752,1.9749122858047485,2.248908281326294,2.1804091930389404,1.9749122858047485,2.248908281326294,1.9749122858047485,2.248908281326294,2.231783628463745,1.9406627416610718,2.248908281326294,2.129034996032715,2.111910343170166,2.094785451889038,2.1632845401763916,2.0262866020202637,2.094785451889038,2.1632845401763916,2.248908281326294,1.8550390005111694,1.9920369386672974,2.0434112548828125,2.0605359077453613,2.129034996032715,1.8550390005111694,2.0434112548828125,2.1975340843200684,1.9406627416610718,1.9920369386672974,1.8207894563674927,2.0434112548828125,2.0776607990264893,2.111910343170166,2.0605359077453613,2.231783628463745,1.9920369386672974,2.129034996032715,2.0776607990264893,2.0262866020202637,2.0091617107391357,2.0776607990264893,2.231783628463745,2.129034996032715,1.9749122858047485,2.129034996032715,1.9749122858047485,2.1975340843200684,2.248908281326294,1.9920369386672974,2.0776607990264893,2.129034996032715,2.248908281326294,1.8721636533737183,2.129034996032715,1.8207894563674927,1.7351657152175903,1.8892884254455566,1.8036646842956543,1.8036646842956543,1.8721636533737183,1.8550390005111694,1.6324172019958496,1.4097954034805298,1.7009161710739136,1.5296686887741089,2.129034996032715,2.094785451889038,2.0776607990264893,2.214658737182617,2.0776607990264893,2.094785451889038,1.906413197517395,1.8550390005111694,1.6324172019958496,1.6495418548583984,1.444044828414917,1.1529240608215332,1.6495418548583984,1.7694151401519775,1.9406627416610718,2.0262866020202637,2.0091617107391357,1.7009161710739136,1.3926706314086914,1.0159260034561157,1.0501755475997925,1.1529240608215332,1.4097954034805298,1.7351657152175903,1.906413197517395,2.0434112548828125,2.1632845401763916,2.129034996032715,2.129034996032715,2.111910343170166,1.9920369386672974,1.8207894563674927,1.7351657152175903,1.8036646842956543,1.7694151401519775,1.2042982578277588,1.4097954034805298,1.307046890258789,1.1700488328933716],[2.129034996032715,1.8207894563674927,2.111910343170166,2.1461598873138428,2.129034996032715,2.0262866020202637,2.129034996032715,1.9920369386672974,2.1804091930389404,2.0434112548828125,1.8721636533737183,1.3584210872650146,0.8618032336235046,0.2624368667602539,0.9303022623062134,1.4782943725585938,1.2899221181869507,1.0501755475997925,0.7761794924736023,0.31381112337112427,0.5706824064254761,0.7248051762580872,1.3584210872650146,-0.542426586151123,0.6734309196472168,1.033050775527954,1.444044828414917,1.5467933416366577,1.4097954034805298,1.5467933416366577,1.5125439167022705,1.718040943145752,1.6495418548583984,1.7009161710739136,2.0605359077453613,2.0091617107391357,1.9749122858047485,2.231783628463745,2.094785451889038,2.1975340843200684,2.0776607990264893,2.0605359077453613,2.111910343170166,2.1461598873138428,1.9749122858047485,2.1632845401763916,2.094785451889038,2.1461598873138428,1.9577875137329102,2.094785451889038,1.8036646842956543,2.1632845401763916,2.248908281326294,2.0434112548828125,2.248908281326294,2.248908281326294,2.0605359077453613,2.248908281326294,2.248908281326294,2.1804091930389404,2.248908281326294,2.0091617107391357,2.248908281326294,2.0262866020202637,2.129034996032715,2.0434112548828125,2.0776607990264893,2.1975340843200684,2.1804091930389404,2.1975340843200684,2.129034996032715,2.231783628463745,2.1461598873138428,2.0434112548828125,2.1804091930389404,2.111910343170166,2.0776607990264893,2.214658737182617,1.9920369386672974,2.1804091930389404,2.248908281326294,2.0091617107391357,1.9920369386672974,2.1804091930389404,1.8036646842956543,1.7351657152175903,2.1461598873138428,1.5981676578521729,1.9406627416610718,1.9749122858047485,2.0605359077453613,1.8892884254455566,2.0605359077453613,2.0605359077453613,2.0605359077453613,2.0091617107391357,2.129034996032715,2.0776607990264893,2.248908281326294,2.129034996032715,2.1804091930389404,2.1632845401763916,2.248908281326294,2.0262866020202637,2.094785451889038,2.111910343170166,2.094785451889038,2.231783628463745,2.0434112548828125,2.1975340843200684,1.9577875137329102,2.111910343170166,1.8892884254455566,2.0605359077453613,1.837914228439331,2.094785451889038,2.0091617107391357,1.906413197517395,1.6152924299240112,1.9920369386672974,1.8721636533737183,2.0605359077453613,2.1975340843200684,1.8550390005111694,1.906413197517395,1.9920369386672974,2.248908281326294,1.9406627416610718,2.094785451889038,2.094785451889038,2.248908281326294,2.0434112548828125,2.0091617107391357,2.094785451889038,1.9406627416610718,2.111910343170166,2.111910343170166,2.1975340843200684,2.0091617107391357,2.129034996032715,2.248908281326294,2.129034996032715,1.9577875137329102,2.111910343170166,2.0091617107391357,1.8892884254455566,2.1461598873138428,2.1804091930389404,1.8721636533737183,2.0776607990264893,2.111910343170166,1.9577875137329102,2.111910343170166,2.231783628463745,2.0091617107391357,2.111910343170166,1.9235379695892334,2.1461598873138428,2.0434112548828125,2.214658737182617,2.1632845401763916,2.129034996032715,2.094785451889038,2.111910343170166,2.248908281326294,2.1975340843200684,2.1461598873138428,2.0776607990264893,2.111910343170166,2.0262866020202637,2.1632845401763916,2.248908281326294,2.0262866020202637,2.0776607990264893,2.1632845401763916,1.8721636533737183,1.906413197517395,1.8892884254455566,1.837914228439331,1.9577875137329102,1.7694151401519775,1.5467933416366577,1.4782943725585938,1.6837913990020752,1.9406627416610718,2.111910343170166,2.0776607990264893,2.0605359077453613,2.111910343170166,1.906413197517395,2.1804091930389404,1.718040943145752,1.718040943145752,1.4782943725585938,1.4269200563430786,1.4954191446304321,1.4954191446304321,1.5125439167022705,1.8721636533737183,1.906413197517395,2.0091617107391357,1.5981676578521729,1.444044828414917,1.375545859336853,1.307046890258789,1.101549744606018,1.2727973461151123,1.3412963151931763,1.8207894563674927,2.214658737182617,2.129034996032715,2.0091617107391357,2.1461598873138428,2.1632845401763916,2.248908281326294,2.1975340843200684,1.906413197517395,1.9920369386672974,1.6495418548583984,1.8892884254455566,1.5296686887741089,1.3926706314086914,1.255672574043274,1.3584210872650146],[2.1461598873138428,1.9406627416610718,1.9920369386672974,1.9749122858047485,1.9749122858047485,2.0091617107391357,1.9406627416610718,2.248908281326294,2.094785451889038,1.9749122858047485,1.9577875137329102,1.4097954034805298,0.21106259524822235,0.6734309196472168,1.0844250917434692,1.18717360496521,1.101549744606018,1.0159260034561157,0.9816765189170837,0.7590547204017639,0.8104289770126343,0.9303022623062134,1.255672574043274,0.12543882429599762,0.5878071784973145,0.7248051762580872,1.033050775527954,1.255672574043274,1.307046890258789,1.4269200563430786,1.5981676578521729,1.7351657152175903,1.6495418548583984,1.7351657152175903,1.9235379695892334,1.9235379695892334,2.1804091930389404,2.214658737182617,1.906413197517395,2.111910343170166,2.248908281326294,2.1461598873138428,1.9406627416610718,2.1975340843200684,2.0091617107391357,2.248908281326294,1.9577875137329102,2.111910343170166,1.9749122858047485,2.0776607990264893,2.248908281326294,2.1461598873138428,1.9920369386672974,2.248908281326294,2.0262866020202637,2.0776607990264893,2.1632845401763916,2.094785451889038,2.0776607990264893,2.248908281326294,2.231783628463745,1.9749122858047485,2.0434112548828125,2.248908281326294,2.1632845401763916,2.111910343170166,2.248908281326294,1.8892884254455566,2.0434112548828125,2.0091617107391357,2.1804091930389404,2.1975340843200684,2.0605359077453613,1.9920369386672974,2.0091617107391357,1.8721636533737183,2.0776607990264893,2.0091617107391357,2.231783628463745,2.231783628463745,1.8892884254455566,2.214658737182617,1.8892884254455566,1.9577875137329102,1.9749122858047485,1.906413197517395,2.111910343170166,2.0434112548828125,2.0605359077453613,1.9577875137329102,1.9577875137329102,2.1804091930389404,2.0776607990264893,2.1975340843200684,2.111910343170166,1.9920369386672974,1.8892884254455566,2.0776607990264893,1.9406627416610718,2.1632845401763916,2.0776607990264893,1.9920369386672974,2.094785451889038,2.248908281326294,1.8721636533737183,2.0605359077453613,2.129034996032715,2.0605359077453613,2.248908281326294,2.248908281326294,2.248908281326294,2.0091617107391357,2.1632845401763916,1.9749122858047485,1.8550390005111694,2.0091617107391357,2.0262866020202637,1.9235379695892334,2.0434112548828125,1.906413197517395,2.1461598873138428,1.9235379695892334,2.111910343170166,2.094785451889038,2.111910343170166,2.0776607990264893,1.9406627416610718,2.129034996032715,2.0091617107391357,2.214658737182617,2.214658737182617,2.1975340843200684,2.248908281326294,2.1461598873138428,1.837914228439331,2.0091617107391357,2.1975340843200684,2.1461598873138428,2.1632845401763916,2.1632845401763916,2.1975340843200684,2.1975340843200684,2.1975340843200684,2.129034996032715,1.9577875137329102,2.0091617107391357,2.0776607990264893,2.0434112548828125,2.0262866020202637,2.248908281326294,2.214658737182617,2.0434112548828125,2.1975340843200684,1.9235379695892334,1.9406627416610718,1.9920369386672974,1.9406627416610718,2.248908281326294,1.9749122858047485,2.214658737182617,2.248908281326294,2.0605359077453613,2.248908281326294,1.9577875137329102,2.129034996032715,2.231783628463745,2.1632845401763916,2.111910343170166,2.1461598873138428,2.111910343170166,2.1632845401763916,1.9920369386672974,1.9235379695892334,1.8550390005111694,1.7694151401519775,1.9749122858047485,1.9235379695892334,1.8207894563674927,1.8892884254455566,1.718040943145752,1.718040943145752,1.6666666269302368,1.7351657152175903,1.786539912223816,1.9920369386672974,2.0091617107391357,2.1461598873138428,2.1804091930389404,2.0776607990264893,1.9920369386672974,1.9235379695892334,2.0262866020202637,1.6495418548583984,1.7351657152175903,1.307046890258789,1.6324172019958496,1.2214230298995972,1.7694151401519775,1.7694151401519775,1.8550390005111694,1.9577875137329102,1.6152924299240112,1.4954191446304321,1.255672574043274,0.9645517468452454,1.0501755475997925,1.3926706314086914,1.1186745166778564,1.307046890258789,1.8892884254455566,2.1975340843200684,1.9577875137329102,2.111910343170166,2.129034996032715,2.0776607990264893,2.094785451889038,2.094785451889038,2.214658737182617,2.0434112548828125,1.786539912223816,1.786539912223816,1.3584210872650146,1.6324172019958496,1.5981676578521729],[1.9577875137329102,1.9235379695892334,1.9577875137329102,1.9577875137329102,1.8036646842956543,2.0434112548828125,1.6837913990020752,2.1461598873138428,2.0776607990264893,1.8036646842956543,1.9577875137329102,1.4269200563430786,-0.4739275574684143,0.22818733751773834,0.8275537490844727,1.2042982578277588,1.0501755475997925,0.7933042049407959,1.3584210872650146,0.21106259524822235,0.7590547204017639,1.0844250917434692,1.1700488328933716,0.005565545056015253,0.2795616090297699,0.5364329218864441,1.324171543121338,1.3926706314086914,1.4954191446304321,1.5296686887741089,1.4611696004867554,1.4097954034805298,1.5467933416366577,1.786539912223816,1.906413197517395,1.9920369386672974,2.1632845401763916,2.248908281326294,2.0605359077453613,2.129034996032715,2.0262866020202637,2.231783628463745,2.248908281326294,1.9406627416610718,2.0262866020202637,1.9920369386672974,2.248908281326294,2.094785451889038,2.1804091930389404,2.231783628463745,2.1632845401763916,2.1804091930389404,2.214658737182617,2.094785451889038,2.248908281326294,2.129034996032715,2.231783628463745,2.1975340843200684,2.111910343170166,2.0434112548828125,2.0776607990264893,1.9577875137329102,2.248908281326294,2.248908281326294,2.129034996032715,2.248908281326294,1.906413197517395,2.248908281326294,2.0776607990264893,2.129034996032715,2.1461598873138428,2.0776607990264893,1.8550390005111694,2.231783628463745,2.0776607990264893,2.0434112548828125,1.9749122858047485,2.248908281326294,1.9577875137329102,2.248908281326294,1.9235379695892334,2.1975340843200684,2.094785451889038,2.129034996032715,1.9749122858047485,2.1461598873138428,2.111910343170166,1.9920369386672974,1.8721636533737183,2.111910343170166,2.1461598873138428,1.9577875137329102,2.094785451889038,2.0776607990264893,2.1461598873138428,2.1804091930389404,2.248908281326294,2.1804091930389404,2.248908281326294,2.0605359077453613,2.0605359077453613,2.129034996032715,2.111910343170166,2.111910343170166,1.9406627416610718,2.0262866020202637,2.0605359077453613,1.9577875137329102,2.1632845401763916,2.094785451889038,1.8207894563674927,1.9749122858047485,1.9406627416610718,1.8036646842956543,2.248908281326294,2.1804091930389404,2.0605359077453613,2.111910343170166,1.786539912223816,2.0776607990264893,1.9749122858047485,1.9920369386672974,2.0776607990264893,1.9920369386672974,1.8550390005111694,1.8550390005111694,2.0262866020202637,2.248908281326294,2.0091617107391357,2.129034996032715,2.1632845401763916,2.1804091930389404,2.0776607990264893,2.214658737182617,2.129034996032715,2.1461598873138428,2.248908281326294,2.094785451889038,2.248908281326294,1.9235379695892334,2.1461598873138428,2.0776607990264893,2.231783628463745,1.9235379695892334,2.1804091930389404,2.094785451889038,1.8721636533737183,2.0605359077453613,1.9749122858047485,2.0091617107391357,2.129034996032715,1.9749122858047485,2.129034996032715,1.9749122858047485,1.9920369386672974,2.0605359077453613,2.094785451889038,2.1461598873138428,2.231783628463745,2.0262866020202637,2.0776607990264893,2.1975340843200684,2.111910343170166,2.111910343170166,2.1632845401763916,2.111910343170166,2.111910343170166,2.248908281326294,2.0262866020202637,1.9920369386672974,2.0262866020202637,2.0434112548828125,2.0605359077453613,1.7522904872894287,1.906413197517395,1.9920369386672974,1.8036646842956543,1.7694151401519775,1.7351657152175903,1.6837913990020752,1.6152924299240112,1.786539912223816,1.8207894563674927,1.906413197517395,2.0605359077453613,1.9920369386672974,2.248908281326294,1.9749122858047485,2.1461598873138428,2.0434112548828125,1.9577875137329102,1.8207894563674927,1.8036646842956543,1.6324172019958496,1.4954191446304321,1.307046890258789,1.5125439167022705,1.7694151401519775,1.7522904872894287,2.0091617107391357,1.8892884254455566,1.5296686887741089,1.6152924299240112,1.255672574043274,1.307046890258789,1.18717360496521,0.9645517468452454,1.2042982578277588,1.3412963151931763,1.7522904872894287,2.1632845401763916,2.0776607990264893,2.111910343170166,2.0605359077453613,2.1461598873138428,2.129034996032715,2.094785451889038,2.111910343170166,2.0262866020202637,1.9406627416610718,1.7009161710739136,1.786539912223816,1.7351657152175903,1.4097954034805298],[2.1804091930389404,2.094785451889038,2.0605359077453613,2.1461598873138428,2.248908281326294,1.324171543121338,1.9235379695892334,2.0262866020202637,1.8036646842956543,2.0262866020202637,2.231783628463745,1.3412963151931763,-1.004794955253601,0.7761794924736023,0.9645517468452454,1.5810428857803345,1.4782943725585938,0.9816765189170837,0.6391814351081848,0.7076804637908936,1.563918113708496,1.18717360496521,1.101549744606018,0.09118931740522385,0.416559636592865,0.7761794924736023,1.1529240608215332,1.18717360496521,1.3412963151931763,1.6837913990020752,1.307046890258789,1.6152924299240112,1.6666666269302368,1.8036646842956543,1.786539912223816,1.7694151401519775,2.129034996032715,2.111910343170166,2.0605359077453613,2.1975340843200684,2.0776607990264893,2.1804091930389404,2.094785451889038,2.231783628463745,2.231783628463745,2.231783628463745,2.0605359077453613,1.9920369386672974,1.8721636533737183,2.1461598873138428,2.0434112548828125,2.1461598873138428,2.248908281326294,2.1804091930389404,2.248908281326294,1.9577875137329102,1.9577875137329102,2.1461598873138428,2.214658737182617,2.248908281326294,2.129034996032715,1.8550390005111694,1.9235379695892334,2.1632845401763916,2.094785451889038,2.0091617107391357,1.9749122858047485,2.248908281326294,2.129034996032715,2.111910343170166,2.1804091930389404,1.906413197517395,2.1461598873138428,2.1975340843200684,2.129034996032715,2.231783628463745,2.248908281326294,2.094785451889038,2.248908281326294,2.1804091930389404,1.9406627416610718,1.906413197517395,1.8550390005111694,1.9406627416610718,1.8892884254455566,1.5467933416366577,2.0605359077453613,2.248908281326294,2.248908281326294,2.1975340843200684,2.129034996032715,2.0776607990264893,1.9920369386672974,2.129034996032715,2.1461598873138428,2.129034996032715,2.0776607990264893,2.248908281326294,2.231783628463745,1.9406627416610718,2.248908281326294,2.214658737182617,2.129034996032715,2.248908281326294,2.0434112548828125,2.0091617107391357,2.248908281326294,1.9920369386672974,2.1804091930389404,1.9920369386672974,2.0434112548828125,1.906413197517395,2.1461598873138428,2.1804091930389404,1.786539912223816,1.9577875137329102,1.9235379695892334,2.231783628463745,1.786539912223816,2.111910343170166,1.9406627416610718,2.0091617107391357,2.248908281326294,2.1461598873138428,2.0434112548828125,2.0434112548828125,1.9406627416610718,1.9577875137329102,2.0605359077453613,2.0091617107391357,2.0262866020202637,2.1632845401763916,2.1461598873138428,1.906413197517395,2.0091617107391357,2.248908281326294,2.0434112548828125,2.1461598873138428,2.129034996032715,2.1461598873138428,1.837914228439331,2.1632845401763916,2.231783628463745,2.0605359077453613,2.248908281326294,1.9749122858047485,2.0262866020202637,2.0605359077453613,2.231783628463745,1.9406627416610718,2.214658737182617,2.1804091930389404,2.1975340843200684,1.9749122858047485,1.9406627416610718,1.7522904872894287,2.214658737182617,2.1461598873138428,2.111910343170166,2.094785451889038,2.214658737182617,2.248908281326294,2.1632845401763916,2.214658737182617,2.1632845401763916,2.1975340843200684,2.111910343170166,2.1632845401763916,2.0605359077453613,1.9235379695892334,2.0605359077453613,1.837914228439331,2.0605359077453613,1.7522904872894287,1.9749122858047485,1.6666666269302368,1.8550390005111694,2.0091617107391357,1.6666666269302368,1.786539912223816,1.786539912223816,1.7694151401519775,1.8721636533737183,1.9235379695892334,1.9406627416610718,1.9920369386672974,2.0776607990264893,2.129034996032715,2.1975340843200684,2.0776607990264893,2.0776607990264893,1.8550390005111694,1.837914228439331,1.7522904872894287,1.4782943725585938,1.3584210872650146,1.4611696004867554,1.6837913990020752,1.8036646842956543,1.9749122858047485,1.8721636533737183,1.906413197517395,1.718040943145752,1.563918113708496,1.255672574043274,1.307046890258789,1.375545859336853,1.0673003196716309,1.1700488328933716,1.8036646842956543,2.111910343170166,2.0605359077453613,2.0605359077453613,2.1461598873138428,2.0434112548828125,2.0605359077453613,2.1461598873138428,2.0434112548828125,2.0776607990264893,1.8207894563674927,1.6837913990020752,1.5981676578521729,1.8036646842956543,1.5981676578521729],[2.231783628463745,2.248908281326294,2.214658737182617,1.837914228439331,1.9235379695892334,1.7009161710739136,1.7009161710739136,1.3584210872650146,1.7009161710739136,1.837914228439331,1.9749122858047485,1.6837913990020752,-1.3644148111343384,0.12543882429599762,0.7933042049407959,1.1700488328933716,1.5467933416366577,0.878928005695343,0.7761794924736023,0.7933042049407959,1.0159260034561157,1.1529240608215332,1.2385478019714355,0.1425635814666748,0.6049319505691528,0.6563062071800232,1.255672574043274,1.0673003196716309,1.4097954034805298,1.4782943725585938,1.5810428857803345,1.3926706314086914,1.6837913990020752,1.7009161710739136,1.6837913990020752,1.563918113708496,1.9235379695892334,2.0434112548828125,1.8207894563674927,2.1461598873138428,2.1632845401763916,1.9749122858047485,2.0091617107391357,1.906413197517395,2.1461598873138428,2.214658737182617,1.8721636533737183,2.0434112548828125,2.1461598873138428,2.1632845401763916,2.248908281326294,2.248908281326294,2.111910343170166,2.129034996032715,1.9235379695892334,2.1632845401763916,2.094785451889038,2.1461598873138428,2.111910343170166,2.0434112548828125,2.0605359077453613,2.129034996032715,2.0434112548828125,2.129034996032715,2.248908281326294,2.0605359077453613,2.1804091930389404,1.8892884254455566,2.1632845401763916,1.9920369386672974,2.129034996032715,1.9920369386672974,2.129034996032715,1.9749122858047485,2.248908281326294,1.9920369386672974,2.0605359077453613,2.0262866020202637,1.8892884254455566,2.1804091930389404,2.0091617107391357,1.7522904872894287,2.0091617107391357,1.7009161710739136,1.9406627416610718,2.214658737182617,2.111910343170166,2.0434112548828125,2.094785451889038,2.248908281326294,2.248908281326294,2.1975340843200684,2.0434112548828125,2.0434112548828125,2.0776607990264893,2.1461598873138428,2.248908281326294,2.248908281326294,1.8721636533737183,1.9920369386672974,2.0091617107391357,2.248908281326294,2.214658737182617,2.111910343170166,1.9406627416610718,2.094785451889038,1.837914228439331,1.9577875137329102,2.248908281326294,2.1804091930389404,1.9406627416610718,1.8550390005111694,1.9235379695892334,1.9749122858047485,2.1632845401763916,2.1461598873138428,1.8892884254455566,2.0434112548828125,1.8892884254455566,2.0091617107391357,1.8550390005111694,1.8550390005111694,2.0776607990264893,2.129034996032715,2.1975340843200684,2.1975340843200684,2.0605359077453613,2.0776607990264893,2.231783628463745,2.248908281326294,2.248908281326294,2.1632845401763916,1.9577875137329102,2.0605359077453613,2.1975340843200684,2.094785451889038,2.1804091930389404,2.129034996032715,2.248908281326294,2.1632845401763916,2.0605359077453613,1.9920369386672974,1.9749122858047485,2.0262866020202637,1.7522904872894287,1.8036646842956543,1.9235379695892334,1.837914228439331,2.094785451889038,1.8892884254455566,2.0776607990264893,1.9920369386672974,1.8721636533737183,1.9406627416610718,2.129034996032715,1.9406627416610718,2.1461598873138428,2.1632845401763916,2.0434112548828125,1.9920369386672974,2.214658737182617,2.1975340843200684,2.0605359077453613,2.231783628463745,2.0605359077453613,2.129034996032715,2.248908281326294,2.129034996032715,2.231783628463745,1.8207894563674927,2.111910343170166,2.111910343170166,1.9406627416610718,1.786539912223816,1.7522904872894287,1.7009161710739136,1.6324172019958496,1.718040943145752,1.5467933416366577,1.786539912223816,1.8036646842956543,1.906413197517395,1.9577875137329102,1.718040943145752,2.0776607990264893,2.214658737182617,2.0605359077453613,2.0262866020202637,2.214658737182617,2.248908281326294,2.094785451889038,1.8036646842956543,1.8721636533737183,1.5125439167022705,1.6324172019958496,1.444044828414917,1.4954191446304321,1.5981676578521729,1.9920369386672974,1.837914228439331,1.906413197517395,1.9749122858047485,1.5467933416366577,1.3926706314086914,1.1186745166778564,1.2385478019714355,1.2727973461151123,0.9645517468452454,1.3412963151931763,1.4782943725585938,1.9406627416610718,2.0091617107391357,2.0776607990264893,2.0434112548828125,2.094785451889038,2.129034996032715,2.0262866020202637,1.9920369386672974,2.0091617107391357,1.786539912223816,1.8892884254455566,1.8550390005111694,1.7009161710739136,1.7009161710739136],[2.1461598873138428,2.1461598873138428,2.0776607990264893,2.1461598873138428,1.9235379695892334,1.7351657152175903,1.3412963151931763,1.3926706314086914,1.101549744606018,1.7351657152175903,2.094785451889038,1.5296686887741089,-1.5014127492904663,-0.5595513582229614,0.7248051762580872,1.6495418548583984,1.444044828414917,1.1186745166778564,0.7933042049407959,0.9816765189170837,1.0844250917434692,0.9474270343780518,1.101549744606018,-0.3883037865161896,0.33093586564064026,0.36518537998199463,0.8618032336235046,1.101549744606018,1.375545859336853,1.3412963151931763,1.5296686887741089,1.3926706314086914,1.4954191446304321,1.5125439167022705,1.7522904872894287,1.7694151401519775,1.8036646842956543,1.6837913990020752,1.837914228439331,1.8892884254455566,2.1632845401763916,2.1632845401763916,2.1804091930389404,2.0091617107391357,2.0776607990264893,2.0776607990264893,2.111910343170166,2.214658737182617,2.248908281326294,1.8892884254455566,2.248908281326294,2.231783628463745,2.0091617107391357,1.9749122858047485,2.111910343170166,2.248908281326294,2.0262866020202637,2.0091617107391357,2.248908281326294,1.9577875137329102,2.0434112548828125,1.9235379695892334,2.1804091930389404,2.248908281326294,2.1975340843200684,2.248908281326294,1.8207894563674927,2.129034996032715,1.9920369386672974,2.1975340843200684,2.1804091930389404,2.1632845401763916,2.214658737182617,2.1975340843200684,2.0262866020202637,2.231783628463745,2.0091617107391357,2.1804091930389404,2.1632845401763916,1.9406627416610718,2.214658737182617,1.786539912223816,2.129034996032715,1.7351657152175903,2.111910343170166,2.214658737182617,2.0434112548828125,2.1804091930389404,2.1632845401763916,2.1461598873138428,1.9235379695892334,2.0776607990264893,1.9749122858047485,2.094785451889038,2.214658737182617,2.231783628463745,2.248908281326294,2.214658737182617,2.0434112548828125,1.6152924299240112,1.8892884254455566,2.0091617107391357,2.0776607990264893,1.9920369386672974,2.0434112548828125,2.1975340843200684,2.1804091930389404,2.1804091930389404,2.0091617107391357,1.906413197517395,1.8721636533737183,2.0262866020202637,2.0434112548828125,1.9920369386672974,2.1804091930389404,2.1804091930389404,1.9920369386672974,2.111910343170166,2.0776607990264893,1.9749122858047485,1.9406627416610718,1.8036646842956543,2.248908281326294,2.111910343170166,2.129034996032715,2.0776607990264893,2.248908281326294,1.9749122858047485,2.1804091930389404,1.8721636533737183,2.0605359077453613,2.1461598873138428,2.0605359077453613,2.1804091930389404,2.0776607990264893,2.0605359077453613,2.1975340843200684,2.1632845401763916,2.129034996032715,2.0605359077453613,2.0434112548828125,1.9406627416610718,2.111910343170166,2.1632845401763916,2.1632845401763916,2.0091617107391357,2.0605359077453613,1.9406627416610718,2.0091617107391357,1.9406627416610718,2.111910343170166,2.0434112548828125,1.8721636533737183,2.1461598873138428,1.9577875137329102,2.214658737182617,2.129034996032715,2.129034996032715,2.111910343170166,2.1461598873138428,2.1975340843200684,2.1804091930389404,2.1461598873138428,2.129034996032715,2.231783628463745,2.0605359077453613,2.1804091930389404,2.1804091930389404,2.248908281326294,2.1632845401763916,2.1461598873138428,1.718040943145752,1.7351657152175903,1.8892884254455566,1.6495418548583984,1.718040943145752,1.6666666269302368,1.786539912223816,1.6837913990020752,1.7351657152175903,1.7694151401519775,1.8550390005111694,1.8721636533737183,1.9920369386672974,2.0091617107391357,2.1975340843200684,2.0091617107391357,1.9920369386672974,2.0605359077453613,2.0776607990264893,1.9577875137329102,1.7351657152175903,1.8207894563674927,1.5981676578521729,1.4782943725585938,1.2727973461151123,1.6324172019958496,1.8550390005111694,1.6495418548583984,1.8892884254455566,1.7009161710739136,1.837914228439331,1.324171543121338,1.375545859336853,1.2214230298995972,1.2385478019714355,1.2042982578277588,1.1700488328933716,1.18717360496521,1.375545859336853,1.9920369386672974,2.1632845401763916,2.0091617107391357,2.129034996032715,2.111910343170166,2.0434112548828125,1.9920369386672974,1.8550390005111694,1.7351657152175903,1.7694151401519775,1.7694151401519775,1.8550390005111694,1.7009161710739136,1.7009161710739136],[2.248908281326294,2.231783628463745,2.129034996032715,2.1461598873138428,2.0776607990264893,1.718040943145752,1.5810428857803345,1.444044828414917,1.2214230298995972,1.0844250917434692,1.4269200563430786,1.8036646842956543,-1.2616662979125977,-0.30268001556396484,1.1529240608215332,1.4269200563430786,1.7351657152175903,1.324171543121338,1.033050775527954,0.878928005695343,0.7419299483299255,0.9645517468452454,1.0501755475997925,-0.40542855858802795,0.33093586564064026,0.6734309196472168,0.9303022623062134,1.1186745166778564,1.4269200563430786,1.307046890258789,1.3926706314086914,1.6495418548583984,1.4954191446304321,1.563918113708496,1.9749122858047485,1.9749122858047485,1.9577875137329102,2.0434112548828125,2.248908281326294,2.0434112548828125,2.0434112548828125,2.1804091930389404,2.094785451889038,2.0605359077453613,2.0605359077453613,2.129034996032715,2.1632845401763916,2.1632845401763916,2.1975340843200684,2.248908281326294,2.094785451889038,1.9920369386672974,2.231783628463745,2.248908281326294,2.094785451889038,1.9577875137329102,2.1804091930389404,2.111910343170166,1.906413197517395,2.248908281326294,2.248908281326294,2.231783628463745,2.214658737182617,1.906413197517395,2.0776607990264893,2.1461598873138428,2.094785451889038,2.248908281326294,2.248908281326294,2.0091617107391357,2.1632845401763916,2.094785451889038,1.8892884254455566,2.231783628463745,2.0434112548828125,2.1804091930389404,2.129034996032715,1.8036646842956543,2.0434112548828125,1.9920369386672974,2.0605359077453613,2.0091617107391357,2.1461598873138428,1.9235379695892334,1.9920369386672974,2.0091617107391357,2.248908281326294,2.0091617107391357,2.111910343170166,2.1804091930389404,2.248908281326294,2.231783628463745,2.248908281326294,2.248908281326294,2.214658737182617,2.1461598873138428,2.111910343170166,2.0434112548828125,2.0605359077453613,2.0434112548828125,1.7351657152175903,1.6666666269302368,2.0091617107391357,2.111910343170166,1.9749122858047485,2.0605359077453613,1.9406627416610718,2.0605359077453613,2.248908281326294,2.248908281326294,1.8550390005111694,1.9920369386672974,2.231783628463745,1.9577875137329102,2.094785451889038,2.1632845401763916,2.0605359077453613,2.0434112548828125,2.1804091930389404,1.9235379695892334,2.0776607990264893,2.0091617107391357,2.214658737182617,2.248908281326294,2.248908281326294,1.8721636533737183,1.9749122858047485,2.0434112548828125,2.248908281326294,1.9577875137329102,2.0091617107391357,1.9920369386672974,2.1461598873138428,2.094785451889038,2.1632845401763916,2.0605359077453613,2.129034996032715,2.129034996032715,2.094785451889038,2.111910343170166,2.0776607990264893,2.0776607990264893,1.8892884254455566,1.9577875137329102,1.9577875137329102,1.837914228439331,2.0776607990264893,2.1975340843200684,1.8892884254455566,1.9749122858047485,1.8550390005111694,1.9577875137329102,2.231783628463745,2.248908281326294,2.248908281326294,2.0605359077453613,2.214658737182617,2.231783628463745,1.906413197517395,2.248908281326294,2.1804091930389404,2.231783628463745,2.248908281326294,2.248908281326294,2.0262866020202637,2.248908281326294,2.214658737182617,2.129034996032715,2.0434112548828125,2.1975340843200684,2.094785451889038,2.0262866020202637,1.837914228439331,1.786539912223816,1.6152924299240112,1.786539912223816,1.6666666269302368,1.8550390005111694,1.8550390005111694,1.8550390005111694,1.8721636533737183,2.0262866020202637,2.0262866020202637,2.0434112548828125,2.0776607990264893,2.094785451889038,2.0434112548828125,2.129034996032715,1.9920369386672974,1.9749122858047485,1.8892884254455566,1.7694151401519775,1.5125439167022705,1.786539912223816,1.6324172019958496,1.6324172019958496,1.4954191446304321,1.9235379695892334,1.7009161710739136,1.9406627416610718,2.0776607990264893,1.6324172019958496,1.7351657152175903,1.6152924299240112,1.3584210872650146,1.3584210872650146,1.255672574043274,1.1529240608215332,0.8618032336235046,1.3926706314086914,1.7351657152175903,2.1804091930389404,2.1461598873138428,1.8892884254455566,2.0605359077453613,2.0605359077453613,2.0605359077453613,1.9577875137329102,1.906413197517395,1.9235379695892334,1.8892884254455566,1.9749122858047485,1.8036646842956543,1.6666666269302368],[2.1632845401763916,2.1461598873138428,2.1975340843200684,2.248908281326294,2.129034996032715,1.9749122858047485,1.5981676578521729,1.2899221181869507,1.1700488328933716,0.8104289770126343,0.8275537490844727,1.1529240608215332,-1.3472900390625,-0.18280674517154694,1.0159260034561157,1.4269200563430786,1.5810428857803345,1.2899221181869507,1.1529240608215332,1.255672574043274,0.6905556917190552,1.18717360496521,1.1186745166778564,-0.576676070690155,0.2795616090297699,0.9303022623062134,0.8960527181625366,1.2042982578277588,1.3584210872650146,1.6495418548583984,1.3584210872650146,1.4269200563430786,1.6495418548583984,1.837914228439331,1.718040943145752,1.9406627416610718,2.0605359077453613,2.0434112548828125,2.0434112548828125,1.9577875137329102,2.129034996032715,1.8892884254455566,2.094785451889038,1.9749122858047485,1.9920369386672974,2.0776607990264893,2.1804091930389404,1.9406627416610718,2.0091617107391357,2.248908281326294,2.214658737182617,2.1461598873138428,2.094785451889038,2.1632845401763916,1.8207894563674927,1.8892884254455566,2.0262866020202637,2.094785451889038,2.248908281326294,2.0434112548828125,1.7522904872894287,2.0262866020202637,1.906413197517395,2.111910343170166,2.094785451889038,2.248908281326294,2.248908281326294,1.9920369386672974,2.1975340843200684,1.9406627416610718,2.214658737182617,2.1975340843200684,2.248908281326294,2.231783628463745,2.1975340843200684,1.9406627416610718,2.111910343170166,2.129034996032715,1.5467933416366577,1.7009161710739136,2.1632845401763916,2.0262866020202637,1.906413197517395,2.248908281326294,2.0091617107391357,2.0091617107391357,2.248908281326294,2.1632845401763916,2.248908281326294,2.214658737182617,2.129034996032715,2.111910343170166,2.248908281326294,2.248908281326294,2.0776607990264893,2.248908281326294,1.9749122858047485,2.0776607990264893,1.906413197517395,1.6324172019958496,1.837914228439331,2.0091617107391357,1.906413197517395,2.0091617107391357,2.1461598873138428,1.9577875137329102,2.1632845401763916,2.1804091930389404,2.111910343170166,1.8550390005111694,1.786539912223816,2.0434112548828125,2.0091617107391357,1.8550390005111694,1.9920369386672974,2.0091617107391357,2.094785451889038,2.0262866020202637,2.0605359077453613,1.718040943145752,2.0605359077453613,2.111910343170166,1.906413197517395,2.0605359077453613,2.0091617107391357,2.1975340843200684,2.0262866020202637,2.1632845401763916,2.214658737182617,2.129034996032715,1.9235379695892334,2.0605359077453613,2.231783628463745,2.1975340843200684,2.0434112548828125,2.0605359077453613,2.0776607990264893,2.129034996032715,2.1632845401763916,1.9406627416610718,2.231783628463745,2.0434112548828125,1.837914228439331,1.8721636533737183,1.9577875137329102,1.9920369386672974,2.1804091930389404,2.1632845401763916,1.9577875137329102,2.1632845401763916,2.0776607990264893,2.0262866020202637,2.0605359077453613,2.0605359077453613,2.0776607990264893,2.248908281326294,2.129034996032715,2.214658737182617,2.094785451889038,2.248908281326294,2.1975340843200684,2.1975340843200684,2.111910343170166,2.248908281326294,2.0776607990264893,2.231783628463745,2.231783628463745,2.1461598873138428,2.0091617107391357,1.9749122858047485,1.6837913990020752,1.8892884254455566,1.718040943145752,1.8036646842956543,1.718040943145752,1.837914228439331,1.837914228439331,1.786539912223816,1.8892884254455566,1.8892884254455566,1.786539912223816,2.094785451889038,2.0605359077453613,2.0776607990264893,2.0262866020202637,2.0605359077453613,2.1461598873138428,1.9920369386672974,2.0091617107391357,1.837914228439331,2.0262866020202637,1.6495418548583984,1.6324172019958496,1.563918113708496,1.5981676578521729,1.3584210872650146,1.5981676578521729,1.5981676578521729,1.7522904872894287,1.906413197517395,1.5810428857803345,1.6324172019958496,1.444044828414917,1.3584210872650146,1.4269200563430786,1.1700488328933716,1.1529240608215332,1.1700488328933716,1.033050775527954,1.2042982578277588,1.5981676578521729,1.9406627416610718,2.094785451889038,2.111910343170166,1.9406627416610718,2.0776607990264893,2.094785451889038,2.0776607990264893,2.0091617107391357,1.6666666269302368,1.9235379695892334,1.837914228439331,1.7522904872894287,1.786539912223816],[2.129034996032715,2.248908281326294,2.1975340843200684,2.1804091930389404,2.0776607990264893,2.129034996032715,1.9577875137329102,1.9920369386672974,1.307046890258789,1.2899221181869507,0.5706824064254761,0.8446784615516663,-0.028683962300419807,0.19393783807754517,0.9645517468452454,0.9816765189170837,1.3926706314086914,1.0501755475997925,0.9988012909889221,0.878928005695343,0.7590547204017639,0.9645517468452454,0.9645517468452454,-0.42255330085754395,0.24531209468841553,0.36518537998199463,1.101549744606018,0.9303022623062134,1.255672574043274,1.307046890258789,1.1357992887496948,1.375545859336853,1.5296686887741089,1.5296686887741089,1.8036646842956543,1.7694151401519775,2.0091617107391357,1.906413197517395,2.1804091930389404,2.0262866020202637,1.9235379695892334,1.9406627416610718,2.1632845401763916,2.1975340843200684,2.214658737182617,1.8721636533737183,2.1804091930389404,2.0776607990264893,2.0434112548828125,2.248908281326294,2.248908281326294,2.231783628463745,1.8892884254455566,2.248908281326294,2.129034996032715,2.1461598873138428,2.0605359077453613,2.1632845401763916,2.111910343170166,2.111910343170166,2.248908281326294,1.8892884254455566,2.0605359077453613,2.214658737182617,2.0434112548828125,1.9920369386672974,2.0434112548828125,2.214658737182617,2.248908281326294,2.0605359077453613,1.9577875137329102,2.0262866020202637,2.1632845401763916,2.0434112548828125,2.094785451889038,1.9920369386672974,2.214658737182617,2.094785451889038,1.8550390005111694,2.248908281326294,2.231783628463745,2.248908281326294,2.248908281326294,1.9920369386672974,2.1461598873138428,2.248908281326294,2.094785451889038,2.0605359077453613,2.248908281326294,2.214658737182617,2.214658737182617,2.1975340843200684,2.248908281326294,2.214658737182617,2.0605359077453613,2.1804091930389404,2.0776607990264893,2.0091617107391357,1.8207894563674927,2.0262866020202637,1.8721636533737183,1.8036646842956543,1.9577875137329102,1.8550390005111694,1.9749122858047485,2.1632845401763916,2.0605359077453613,2.214658737182617,2.248908281326294,1.9920369386672974,1.7694151401519775,1.9920369386672974,2.111910343170166,2.1804091930389404,2.0262866020202637,2.094785451889038,2.1975340843200684,2.0776607990264893,2.1975340843200684,2.0434112548828125,1.8892884254455566,2.248908281326294,2.094785451889038,1.9749122858047485,2.094785451889038,2.0091617107391357,2.0091617107391357,2.0605359077453613,2.094785451889038,1.906413197517395,2.231783628463745,2.1461598873138428,2.0434112548828125,2.248908281326294,2.1461598873138428,1.9749122858047485,2.0434112548828125,1.9749122858047485,1.9749122858047485,2.0605359077453613,1.9920369386672974,1.906413197517395,1.8721636533737183,2.0434112548828125,1.9920369386672974,2.094785451889038,1.9749122858047485,2.1461598873138428,2.248908281326294,1.8892884254455566,1.9235379695892334,2.0776607990264893,2.1632845401763916,2.1632845401763916,2.248908281326294,2.248908281326294,2.231783628463745,2.1804091930389404,2.0434112548828125,2.129034996032715,2.248908281326294,2.248908281326294,2.248908281326294,2.111910343170166,2.094785451889038,2.094785451889038,2.111910343170166,1.8721636533737183,2.111910343170166,1.9749122858047485,1.718040943145752,1.8036646842956543,1.786539912223816,1.7694151401519775,1.6666666269302368,1.6837913990020752,1.5125439167022705,1.7009161710739136,1.8550390005111694,1.837914228439331,1.906413197517395,2.0434112548828125,2.111910343170166,2.1461598873138428,2.1804091930389404,2.0605359077453613,2.1975340843200684,2.1461598873138428,1.8036646842956543,1.837914228439331,1.8892884254455566,1.5810428857803345,1.6666666269302368,1.6666666269302368,1.4097954034805298,1.4611696004867554,1.5810428857803345,1.5981676578521729,1.9920369386672974,1.9577875137329102,1.7009161710739136,1.8550390005111694,1.8207894563674927,1.307046890258789,1.307046890258789,1.2214230298995972,1.2214230298995972,1.1700488328933716,1.101549744606018,0.9816765189170837,1.375545859336853,2.1461598873138428,2.0605359077453613,1.9406627416610718,1.9749122858047485,2.0091617107391357,2.1461598873138428,2.1804091930389404,2.0605359077453613,1.9920369386672974,2.0434112548828125,1.8036646842956543,1.6837913990020752,1.6666666269302368],[2.0262866020202637,2.1804091930389404,2.1975340843200684,2.094785451889038,2.129034996032715,2.1632845401763916,2.1804091930389404,1.8892884254455566,1.4269200563430786,1.3926706314086914,0.22818733751773834,0.6220566630363464,-0.11430773138999939,0.6391814351081848,1.101549744606018,0.7933042049407959,0.9816765189170837,1.1186745166778564,0.6049319505691528,0.7076804637908936,0.433684378862381,0.7248051762580872,0.9303022623062134,-0.13143248856067657,0.2795616090297699,0.48505866527557373,0.7076804637908936,1.2042982578277588,1.4097954034805298,1.1700488328933716,1.324171543121338,1.5125439167022705,1.6152924299240112,1.6495418548583984,1.7351657152175903,1.9406627416610718,2.0434112548828125,1.8036646842956543,1.8207894563674927,2.111910343170166,2.0605359077453613,1.9235379695892334,2.1461598873138428,2.248908281326294,2.1461598873138428,2.0434112548828125,2.248908281326294,2.231783628463745,1.8892884254455566,2.111910343170166,2.111910343170166,1.9749122858047485,2.111910343170166,1.8721636533737183,2.111910343170166,2.094785451889038,2.0434112548828125,2.129034996032715,2.1461598873138428,2.214658737182617,1.9577875137329102,2.248908281326294,2.1975340843200684,2.1461598873138428,1.9920369386672974,2.0434112548828125,2.1975340843200684,2.1804091930389404,2.0262866020202637,1.9749122858047485,1.906413197517395,2.0262866020202637,2.231783628463745,2.248908281326294,2.1975340843200684,2.214658737182617,1.9749122858047485,2.0091617107391357,2.0776607990264893,2.094785451889038,2.111910343170166,1.9406627416610718,2.0605359077453613,2.231783628463745,2.1632845401763916,2.1632845401763916,2.094785451889038,2.248908281326294,2.111910343170166,2.214658737182617,2.1975340843200684,2.248908281326294,2.1804091930389404,2.111910343170166,1.8721636533737183,2.248908281326294,2.1804091930389404,1.786539912223816,2.0605359077453613,1.906413197517395,1.7522904872894287,1.7522904872894287,2.0262866020202637,1.9577875137329102,2.231783628463745,2.248908281326294,2.129034996032715,2.214658737182617,2.1804091930389404,2.0605359077453613,1.8207894563674927,1.786539912223816,2.0262866020202637,2.214658737182617,2.0605359077453613,2.0776607990264893,2.248908281326294,2.248908281326294,2.0776607990264893,1.9235379695892334,1.8721636533737183,2.248908281326294,2.1461598873138428,2.1632845401763916,2.1804091930389404,1.8550390005111694,2.0091617107391357,1.9235379695892334,1.9920369386672974,2.111910343170166,2.1632845401763916,2.248908281326294,1.6495418548583984,2.0605359077453613,2.1804091930389404,1.9920369386672974,1.9749122858047485,2.094785451889038,2.0605359077453613,2.0605359077453613,1.8721636533737183,2.1632845401763916,1.9749122858047485,2.129034996032715,1.7694151401519775,1.8550390005111694,1.8892884254455566,2.1461598873138428,1.9749122858047485,2.1461598873138428,2.0605359077453613,1.9406627416610718,2.0605359077453613,2.248908281326294,2.248908281326294,2.248908281326294,2.248908281326294,2.231783628463745,2.0605359077453613,2.111910343170166,2.248908281326294,2.231783628463745,2.1632845401763916,2.1632845401763916,2.111910343170166,2.1975340843200684,1.906413197517395,2.111910343170166,2.111910343170166,1.9235379695892334,1.7522904872894287,1.9577875137329102,1.7694151401519775,1.7522904872894287,1.8036646842956543,1.8036646842956543,1.718040943145752,1.786539912223816,1.906413197517395,1.8721636533737183,1.9920369386672974,2.248908281326294,2.111910343170166,2.0091617107391357,2.248908281326294,2.214658737182617,2.1804091930389404,2.129034996032715,1.9235379695892334,1.837914228439331,1.8036646842956543,1.837914228439331,1.5296686887741089,1.324171543121338,1.6837913990020752,1.4954191446304321,1.5981676578521729,1.6666666269302368,1.7351657152175903,1.8036646842956543,2.0434112548828125,1.6837913990020752,1.5125439167022705,1.4954191446304321,1.1529240608215332,1.1357992887496948,1.2214230298995972,1.0844250917434692,1.0844250917434692,0.7419299483299255,1.3584210872650146,1.7351657152175903,2.0776607990264893,2.0091617107391357,2.094785451889038,2.1461598873138428,2.094785451889038,2.0434112548828125,2.0434112548828125,1.9406627416610718,2.0262866020202637,1.837914228439331,1.7009161710739136,1.7009161710739136],[2.0776607990264893,2.0434112548828125,2.111910343170166,2.214658737182617,2.0776607990264893,2.1632845401763916,2.1461598873138428,2.231783628463745,1.8892884254455566,1.4782943725585938,0.7076804637908936,0.5021833777427673,0.12543882429599762,0.9645517468452454,0.9988012909889221,0.5364329218864441,0.9816765189170837,0.878928005695343,0.399434894323349,0.2624368667602539,0.416559636592865,0.878928005695343,0.8275537490844727,0.19393783807754517,0.19393783807754517,0.24531209468841553,0.8446784615516663,1.0844250917434692,1.1700488328933716,1.375545859336853,1.5296686887741089,1.7694151401519775,1.4954191446304321,1.7522904872894287,1.9577875137329102,1.7522904872894287,2.0091617107391357,1.9920369386672974,2.0262866020202637,2.248908281326294,1.8892884254455566,2.1804091930389404,1.8721636533737183,1.9920369386672974,1.9920369386672974,2.1975340843200684,1.786539912223816,1.9920369386672974,1.8207894563674927,1.837914228439331,1.8550390005111694,2.111910343170166,1.9749122858047485,2.0434112548828125,2.0776607990264893,2.248908281326294,2.231783628463745,2.248908281326294,2.0434112548828125,2.0776607990264893,2.1461598873138428,2.1632845401763916,2.111910343170166,2.0262866020202637,2.0776607990264893,2.1804091930389404,2.1461598873138428,1.8892884254455566,2.1975340843200684,2.1804091930389404,2.1804091930389404,2.094785451889038,2.094785451889038,2.248908281326294,2.1975340843200684,2.214658737182617,2.1632845401763916,1.9577875137329102,2.094785451889038,1.906413197517395,2.248908281326294,1.9920369386672974,2.111910343170166,2.111910343170166,1.9577875137329102,2.1804091930389404,1.9406627416610718,2.248908281326294,2.231783628463745,2.1461598873138428,2.0776607990264893,2.111910343170166,2.0776607990264893,2.0605359077453613,1.9577875137329102,2.1804091930389404,2.0434112548828125,1.7522904872894287,2.0262866020202637,1.5467933416366577,1.5981676578521729,1.7522904872894287,2.0434112548828125,1.906413197517395,2.094785451889038,2.214658737182617,2.214658737182617,2.248908281326294,2.0434112548828125,1.8207894563674927,2.0434112548828125,2.1461598873138428,1.9920369386672974,2.248908281326294,2.111910343170166,2.248908281326294,1.9577875137329102,2.1632845401763916,2.248908281326294,2.1804091930389404,2.214658737182617,2.248908281326294,2.231783628463745,2.129034996032715,2.094785451889038,2.214658737182617,1.9235379695892334,1.7522904872894287,2.1632845401763916,2.0091617107391357,2.1632845401763916,2.094785451889038,2.0434112548828125,1.9577875137329102,2.0776607990264893,2.0262866020202637,1.9920369386672974,2.129034996032715,1.9749122858047485,2.0434112548828125,1.8892884254455566,2.1804091930389404,1.9577875137329102,2.1975340843200684,1.906413197517395,2.0776607990264893,1.8207894563674927,2.231783628463745,2.094785451889038,1.9749122858047485,1.9920369386672974,2.1632845401763916,2.0434112548828125,2.094785451889038,2.1975340843200684,2.1461598873138428,2.0434112548828125,2.111910343170166,2.0262866020202637,1.9920369386672974,2.1632845401763916,2.248908281326294,2.231783628463745,2.248908281326294,2.129034996032715,2.111910343170166,1.9920369386672974,1.9235379695892334,1.8036646842956543,1.7522904872894287,1.8550390005111694,1.8721636533737183,1.8036646842956543,1.9577875137329102,1.9235379695892334,1.7694151401519775,1.786539912223816,1.9406627416610718,1.906413197517395,2.1461598873138428,2.0776607990264893,1.9406627416610718,1.9920369386672974,1.9406627416610718,2.0434112548828125,2.1632845401763916,2.1461598873138428,2.1975340843200684,2.0434112548828125,1.8721636533737183,1.6666666269302368,1.6666666269302368,1.4782943725585938,1.4269200563430786,1.4782943725585938,1.3584210872650146,1.5467933416366577,2.129034996032715,1.7522904872894287,1.7009161710739136,1.6666666269302368,1.9920369386672974,1.5981676578521729,1.5125439167022705,1.2385478019714355,1.2042982578277588,1.0844250917434692,1.0673003196716309,0.9474270343780518,0.8275537490844727,1.2214230298995972,1.906413197517395,2.094785451889038,1.837914228439331,1.9749122858047485,1.9920369386672974,2.129034996032715,2.0262866020202637,2.111910343170166,2.0434112548828125,1.8207894563674927,1.786539912223816,1.6495418548583984,1.786539912223816],[1.8550390005111694,1.8036646842956543,1.9406627416610718,1.8892884254455566,2.129034996032715,2.1975340843200684,2.248908281326294,2.0605359077453613,1.9920369386672974,1.718040943145752,1.2042982578277588,0.5878071784973145,0.45080915093421936,1.0501755475997925,0.5021833777427673,0.36518537998199463,0.6391814351081848,0.6734309196472168,0.7933042049407959,0.6220566630363464,0.46793389320373535,0.3823101222515106,0.33093586564064026,0.22818733751773834,0.005565545056015253,0.433684378862381,0.8104289770126343,1.1700488328933716,1.0673003196716309,1.3926706314086914,1.6666666269302368,1.4954191446304321,1.5810428857803345,1.6837913990020752,1.7522904872894287,1.718040943145752,1.8550390005111694,1.8550390005111694,1.7522904872894287,2.231783628463745,2.0776607990264893,1.906413197517395,2.248908281326294,2.0091617107391357,2.0605359077453613,2.248908281326294,2.0605359077453613,2.094785451889038,2.1461598873138428,2.111910343170166,1.7694151401519775,2.248908281326294,2.1975340843200684,1.9749122858047485,2.248908281326294,2.1632845401763916,2.129034996032715,2.0605359077453613,1.9406627416610718,2.129034996032715,2.248908281326294,1.7009161710739136,2.0434112548828125,2.214658737182617,2.231783628463745,1.9235379695892334,2.094785451889038,1.8892884254455566,1.786539912223816,2.248908281326294,2.248908281326294,1.9920369386672974,2.231783628463745,2.1975340843200684,1.8207894563674927,1.8892884254455566,2.0605359077453613,1.8892884254455566,1.786539912223816,2.0091617107391357,2.0262866020202637,2.248908281326294,2.248908281326294,2.1804091930389404,1.9406627416610718,2.1975340843200684,2.214658737182617,2.0262866020202637,2.248908281326294,2.129034996032715,2.1632845401763916,2.0776607990264893,2.1632845401763916,2.231783628463745,2.0091617107391357,1.8892884254455566,1.8721636533737183,2.0434112548828125,1.9577875137329102,1.8892884254455566,1.786539912223816,1.9749122858047485,1.906413197517395,1.9920369386672974,2.111910343170166,1.9577875137329102,1.9577875137329102,1.8207894563674927,2.094785451889038,2.0605359077453613,2.129034996032715,2.1461598873138428,2.111910343170166,2.248908281326294,2.094785451889038,2.094785451889038,2.0605359077453613,1.9920369386672974,1.9749122858047485,2.1804091930389404,2.0605359077453613,2.0434112548828125,2.094785451889038,2.231783628463745,1.906413197517395,1.8207894563674927,1.8207894563674927,2.0605359077453613,2.094785451889038,2.1632845401763916,2.248908281326294,2.248908281326294,2.248908281326294,1.837914228439331,2.0262866020202637,2.0091617107391357,2.0605359077453613,1.9920369386672974,1.9920369386672974,2.0776607990264893,1.9235379695892334,1.9577875137329102,2.0091617107391357,1.8550390005111694,1.9235379695892334,2.1461598873138428,2.111910343170166,2.231783628463745,1.9749122858047485,2.248908281326294,2.248908281326294,2.0605359077453613,2.0262866020202637,2.0776607990264893,2.248908281326294,1.9920369386672974,2.129034996032715,2.248908281326294,2.0776607990264893,2.231783628463745,2.129034996032715,1.9577875137329102,1.9749122858047485,1.906413197517395,2.214658737182617,1.9235379695892334,1.9577875137329102,1.837914228439331,1.8207894563674927,2.1804091930389404,1.6324172019958496,1.6495418548583984,1.6495418548583984,1.563918113708496,1.8207894563674927,1.8892884254455566,1.7522904872894287,2.0434112548828125,1.6837913990020752,1.837914228439331,2.129034996032715,1.8721636533737183,2.094785451889038,2.129034996032715,2.214658737182617,2.0776607990264893,2.0605359077453613,1.8721636533737183,1.8036646842956543,1.7694151401519775,1.5296686887741089,1.8036646842956543,1.4954191446304321,1.3412963151931763,1.3926706314086914,1.563918113708496,1.324171543121338,1.5810428857803345,2.0091617107391357,1.7351657152175903,1.7351657152175903,1.6324172019958496,1.6666666269302368,1.4097954034805298,1.6152924299240112,1.2385478019714355,0.9645517468452454,1.18717360496521,1.0159260034561157,0.8960527181625366,0.878928005695343,1.6324172019958496,2.0262866020202637,2.0262866020202637,1.9749122858047485,1.9577875137329102,1.906413197517395,2.1461598873138428,1.9235379695892334,1.7522904872894287,1.8721636533737183,1.786539912223816,1.786539912223816,1.8892884254455566],[1.7522904872894287,1.8550390005111694,1.837914228439331,2.0262866020202637,1.837914228439331,2.1461598873138428,2.1975340843200684,2.248908281326294,2.231783628463745,1.837914228439331,1.5981676578521729,1.4097954034805298,0.5535576939582825,1.1357992887496948,0.433684378862381,0.17681308090686798,0.5706824064254761,0.7590547204017639,0.5878071784973145,0.7933042049407959,-0.08005822449922562,0.5878071784973145,-0.5081770420074463,0.3823101222515106,-0.3540542721748352,0.3823101222515106,0.913177490234375,0.9988012909889221,1.2214230298995972,1.307046890258789,1.2899221181869507,1.6152924299240112,1.5981676578521729,1.7009161710739136,1.6837913990020752,1.6666666269302368,1.906413197517395,2.0091617107391357,2.1461598873138428,1.8721636533737183,2.248908281326294,2.111910343170166,1.8207894563674927,2.231783628463745,1.906413197517395,1.9749122858047485,1.837914228439331,2.0776607990264893,2.248908281326294,2.1632845401763916,2.231783628463745,2.129034996032715,2.248908281326294,2.0776607990264893,2.094785451889038,2.0434112548828125,2.094785451889038,2.0605359077453613,2.1632845401763916,2.1975340843200684,1.786539912223816,2.231783628463745,2.248908281326294,2.129034996032715,1.9920369386672974,1.9749122858047485,1.8036646842956543,2.1804091930389404,2.129034996032715,1.786539912223816,2.0605359077453613,1.837914228439331,2.0434112548828125,1.9749122858047485,2.111910343170166,1.906413197517395,1.9235379695892334,2.248908281326294,2.248908281326294,2.1632845401763916,2.094785451889038,2.1632845401763916,2.094785451889038,2.0091617107391357,2.1804091930389404,2.231783628463745,2.0605359077453613,2.129034996032715,1.9406627416610718,2.094785451889038,2.248908281326294,2.111910343170166,2.129034996032715,2.1461598873138428,2.248908281326294,1.9749122858047485,1.906413197517395,1.8550390005111694,1.9406627416610718,1.6837913990020752,1.9749122858047485,1.7522904872894287,1.906413197517395,1.9749122858047485,2.111910343170166,2.1461598873138428,2.248908281326294,2.1804091930389404,1.718040943145752,2.129034996032715,2.0262866020202637,1.9920369386672974,2.231783628463745,2.248908281326294,2.0605359077453613,2.129034996032715,2.0434112548828125,2.0776607990264893,1.906413197517395,1.9749122858047485,2.129034996032715,2.1632845401763916,2.094785451889038,2.1975340843200684,1.8892884254455566,2.214658737182617,2.111910343170166,2.0776607990264893,2.129034996032715,2.248908281326294,1.9920369386672974,2.094785451889038,2.129034996032715,2.094785451889038,2.0776607990264893,2.248908281326294,2.0776607990264893,2.129034996032715,1.9577875137329102,1.9406627416610718,2.129034996032715,2.1632845401763916,2.1461598873138428,1.8721636533737183,2.0091617107391357,2.129034996032715,2.0605359077453613,2.1804091930389404,2.129034996032715,2.111910343170166,1.8207894563674927,2.0776607990264893,2.248908281326294,2.0434112548828125,2.111910343170166,1.8892884254455566,1.9577875137329102,2.1461598873138428,2.0776607990264893,2.0262866020202637,2.1804091930389404,1.9749122858047485,2.1975340843200684,1.9577875137329102,2.0776607990264893,2.0262866020202637,1.9235379695892334,1.8207894563674927,1.8892884254455566,1.906413197517395,1.786539912223816,1.718040943145752,1.906413197517395,1.9406627416610718,2.111910343170166,1.786539912223816,1.8036646842956543,1.9406627416610718,1.8207894563674927,2.1804091930389404,1.9406627416610718,2.214658737182617,2.1804091930389404,1.9920369386672974,1.9749122858047485,2.0605359077453613,2.0262866020202637,2.0434112548828125,2.0776607990264893,2.0091617107391357,1.9577875137329102,1.4611696004867554,1.5981676578521729,1.6666666269302368,1.6666666269302368,1.5981676578521729,1.6324172019958496,1.5981676578521729,1.8207894563674927,1.6324172019958496,1.718040943145752,1.8721636533737183,1.5467933416366577,1.324171543121338,1.2214230298995972,1.2727973461151123,1.1700488328933716,1.1529240608215332,0.9474270343780518,0.7933042049407959,0.9645517468452454,1.0673003196716309,2.0262866020202637,1.9749122858047485,1.8721636533737183,1.9406627416610718,2.0776607990264893,1.9920369386672974,1.906413197517395,1.9749122858047485,1.563918113708496,1.6837913990020752,1.7351657152175903,1.7351657152175903],[1.718040943145752,1.8550390005111694,1.563918113708496,1.6495418548583984,1.7694151401519775,1.6666666269302368,2.0434112548828125,2.129034996032715,2.1804091930389404,2.1632845401763916,1.7694151401519775,1.7694151401519775,0.24531209468841553,1.2042982578277588,0.416559636592865,-0.542426586151123,0.36518537998199463,0.7761794924736023,0.7419299483299255,0.22818733751773834,-0.06293346732854843,0.2795616090297699,-0.7136741280555725,0.21106259524822235,-0.0971829816699028,0.24531209468841553,0.8104289770126343,1.1357992887496948,1.1529240608215332,1.0673003196716309,1.4954191446304321,1.7351657152175903,1.5467933416366577,1.6495418548583984,1.8207894563674927,1.837914228439331,1.9577875137329102,1.8892884254455566,1.906413197517395,1.9920369386672974,1.9406627416610718,2.094785451889038,2.1975340843200684,2.0776607990264893,2.0776607990264893,2.111910343170166,2.1804091930389404,2.111910343170166,1.786539912223816,2.0091617107391357,2.248908281326294,2.1975340843200684,1.9577875137329102,2.0776607990264893,2.1804091930389404,2.0605359077453613,2.1975340843200684,2.0776607990264893,1.906413197517395,1.906413197517395,2.1461598873138428,1.9920369386672974,1.906413197517395,2.0605359077453613,1.9920369386672974,2.248908281326294,2.248908281326294,1.8892884254455566,1.8721636533737183,1.9749122858047485,2.129034996032715,2.129034996032715,2.1461598873138428,1.9920369386672974,2.094785451889038,2.129034996032715,2.248908281326294,2.0262866020202637,2.1461598873138428,2.0776607990264893,2.248908281326294,2.111910343170166,2.1804091930389404,1.9577875137329102,2.1804091930389404,2.094785451889038,2.1461598873138428,2.1632845401763916,1.9920369386672974,1.9920369386672974,2.248908281326294,2.214658737182617,2.0434112548828125,2.248908281326294,2.1804091930389404,1.837914228439331,2.094785451889038,1.8721636533737183,2.1632845401763916,2.0434112548828125,2.0605359077453613,1.8892884254455566,2.0605359077453613,1.906413197517395,2.129034996032715,2.0605359077453613,2.0262866020202637,1.9406627416610718,1.9920369386672974,2.0262866020202637,1.6666666269302368,2.0605359077453613,1.8207894563674927,2.094785451889038,2.1975340843200684,2.1804091930389404,2.111910343170166,2.111910343170166,2.0091617107391357,1.9577875137329102,2.0262866020202637,2.1804091930389404,2.231783628463745,2.0091617107391357,1.9749122858047485,1.9235379695892334,2.094785451889038,2.248908281326294,2.214658737182617,2.248908281326294,2.0605359077453613,2.0776607990264893,1.9577875137329102,2.214658737182617,2.214658737182617,2.248908281326294,2.111910343170166,2.0776607990264893,1.8892884254455566,2.111910343170166,1.786539912223816,1.9749122858047485,1.9749122858047485,1.8721636533737183,2.0605359077453613,1.9749122858047485,2.0605359077453613,2.0091617107391357,2.1461598873138428,1.9235379695892334,1.9235379695892334,2.129034996032715,2.1804091930389404,2.0262866020202637,2.1632845401763916,2.1804091930389404,2.094785451889038,2.0434112548828125,2.248908281326294,2.231783628463745,2.1632845401763916,2.248908281326294,2.0091617107391357,2.1461598873138428,2.1632845401763916,1.906413197517395,1.9749122858047485,2.1461598873138428,2.0262866020202637,1.786539912223816,1.4954191446304321,1.8207894563674927,1.7351657152175903,1.9749122858047485,1.8036646842956543,1.837914228439331,1.7351657152175903,1.9749122858047485,1.9749122858047485,1.9235379695892334,2.111910343170166,2.129034996032715,2.0605359077453613,2.0091617107391357,2.1461598873138428,2.0091617107391357,2.094785451889038,1.8550390005111694,1.7522904872894287,1.6666666269302368,1.8036646842956543,1.837914228439331,1.786539912223816,1.563918113708496,1.4097954034805298,1.563918113708496,1.563918113708496,1.9920369386672974,1.8207894563674927,1.5125439167022705,1.4097954034805298,1.6152924299240112,1.6495418548583984,1.3926706314086914,1.2385478019714355,1.1186745166778564,0.9645517468452454,1.1357992887496948,0.9474270343780518,1.0159260034561157,0.8618032336235046,1.1186745166778564,2.1632845401763916,1.8550390005111694,1.9235379695892334,1.906413197517395,2.0605359077453613,1.9577875137329102,1.7522904872894287,1.9235379695892334,1.906413197517395,1.7009161710739136,1.786539912223816,1.7522904872894287],[1.6837913990020752,1.906413197517395,1.7351657152175903,1.6666666269302368,1.7694151401519775,2.1461598873138428,1.906413197517395,1.9406627416610718,2.248908281326294,2.129034996032715,1.8892884254455566,2.1804091930389404,0.9474270343780518,0.9303022623062134,0.5535576939582825,-0.9534206986427307,0.6563062071800232,0.6905556917190552,0.6391814351081848,0.48505866527557373,-0.2170562595129013,0.10831406712532043,-0.9020463824272156,0.3823101222515106,-0.06293346732854843,0.36518537998199463,0.8960527181625366,0.9988012909889221,1.18717360496521,1.2214230298995972,1.2727973461151123,1.718040943145752,1.6152924299240112,1.9235379695892334,1.786539912223816,1.8721636533737183,1.563918113708496,1.8892884254455566,1.906413197517395,1.9749122858047485,1.837914228439331,1.9577875137329102,1.8721636533737183,2.0262866020202637,2.0091617107391357,2.248908281326294,1.7694151401519775,2.0262866020202637,2.094785451889038,1.9920369386672974,2.1804091930389404,2.248908281326294,2.1804091930389404,1.9749122858047485,2.0091617107391357,2.094785451889038,2.248908281326294,1.9235379695892334,1.9920369386672974,2.231783628463745,1.8892884254455566,1.9920369386672974,2.0434112548828125,2.248908281326294,2.094785451889038,2.248908281326294,2.0434112548828125,1.9577875137329102,2.0605359077453613,1.9749122858047485,1.9577875137329102,2.231783628463745,1.7522904872894287,1.9235379695892334,1.9577875137329102,2.0262866020202637,2.1461598873138428,2.248908281326294,2.111910343170166,2.1461598873138428,2.0776607990264893,2.111910343170166,1.8550390005111694,1.9920369386672974,2.094785451889038,2.0434112548828125,2.1461598873138428,2.0434112548828125,1.837914228439331,2.0776607990264893,2.1975340843200684,2.1632845401763916,2.1632845401763916,2.111910343170166,1.9577875137329102,1.8721636533737183,1.8036646842956543,1.786539912223816,1.9577875137329102,2.0605359077453613,2.1461598873138428,1.9749122858047485,2.094785451889038,1.9406627416610718,1.7522904872894287,1.906413197517395,2.094785451889038,1.8036646842956543,1.9920369386672974,1.7009161710739136,2.0262866020202637,2.0091617107391357,1.9577875137329102,2.0605359077453613,2.248908281326294,1.8721636533737183,2.214658737182617,2.1461598873138428,2.0091617107391357,1.8721636533737183,2.0776607990264893,2.248908281326294,2.214658737182617,1.9406627416610718,2.1461598873138428,1.8550390005111694,2.0262866020202637,1.8207894563674927,2.0776607990264893,2.0776607990264893,2.0091617107391357,2.0776607990264893,2.248908281326294,2.111910343170166,2.1461598873138428,2.1804091930389404,2.0605359077453613,1.906413197517395,1.906413197517395,1.9235379695892334,1.9749122858047485,1.7351657152175903,1.9406627416610718,2.111910343170166,2.1632845401763916,1.8207894563674927,2.1461598873138428,1.906413197517395,2.111910343170166,2.1461598873138428,2.0434112548828125,2.111910343170166,1.8892884254455566,1.9920369386672974,2.0776607990264893,2.1804091930389404,2.111910343170166,2.0091617107391357,2.1804091930389404,2.248908281326294,2.1632845401763916,2.248908281326294,2.0262866020202637,1.906413197517395,1.8721636533737183,1.7351657152175903,1.906413197517395,1.9577875137329102,1.9577875137329102,1.786539912223816,1.8207894563674927,1.786539912223816,1.6324172019958496,1.8036646842956543,1.8036646842956543,1.8550390005111694,2.094785451889038,2.0091617107391357,2.248908281326294,1.8550390005111694,2.111910343170166,2.1461598873138428,2.094785451889038,2.214658737182617,1.9577875137329102,2.1461598873138428,2.094785451889038,1.6666666269302368,1.7351657152175903,1.7694151401519775,1.9235379695892334,1.6495418548583984,1.5296686887741089,1.5810428857803345,1.8207894563674927,1.5467933416366577,1.4269200563430786,1.8550390005111694,1.6324172019958496,1.7009161710739136,1.6324172019958496,1.444044828414917,1.4954191446304321,1.4269200563430786,1.3584210872650146,1.2727973461151123,0.8446784615516663,1.2727973461151123,1.0673003196716309,0.7761794924736023,0.7933042049407959,1.0673003196716309,1.8036646842956543,1.837914228439331,1.8036646842956543,2.0776607990264893,2.0776607990264893,2.0091617107391357,2.0262866020202637,1.8550390005111694,1.9577875137329102,1.6666666269302368,1.7351657152175903,1.5981676578521729],[2.0091617107391357,1.7009161710739136,1.6324172019958496,1.5296686887741089,1.5981676578521729,1.8721636533737183,1.718040943145752,1.8892884254455566,2.0434112548828125,2.111910343170166,2.231783628463745,2.1461598873138428,1.2385478019714355,0.7590547204017639,0.33093586564064026,-0.7821731567382812,0.5535576939582825,0.12543882429599762,0.2966863512992859,0.6905556917190552,0.07406456023454666,-0.2341810017824173,-1.2787909507751465,0.5878071784973145,0.19393783807754517,0.6049319505691528,1.0844250917434692,0.9303022623062134,1.2214230298995972,1.5981676578521729,1.6495418548583984,1.7351657152175903,1.6324172019958496,1.7522904872894287,2.0605359077453613,2.0262866020202637,2.0776607990264893,1.8721636533737183,1.9920369386672974,2.0091617107391357,1.9406627416610718,1.7009161710739136,1.9406627416610718,1.8892884254455566,2.094785451889038,2.248908281326294,2.129034996032715,2.0091617107391357,1.9235379695892334,1.906413197517395,1.786539912223816,2.1804091930389404,2.1975340843200684,2.1461598873138428,2.248908281326294,2.1632845401763916,2.248908281326294,1.8721636533737183,1.8036646842956543,2.214658737182617,1.8036646842956543,2.0091617107391357,2.0434112548828125,2.0262866020202637,2.1461598873138428,2.1461598873138428,1.9235379695892334,2.094785451889038,2.0091617107391357,2.0091617107391357,2.0434112548828125,1.5810428857803345,2.094785451889038,2.248908281326294,2.0776607990264893,1.9406627416610718,2.094785451889038,2.231783628463745,2.111910343170166,1.9749122858047485,2.248908281326294,2.248908281326294,2.0776607990264893,2.1632845401763916,2.129034996032715,2.248908281326294,2.111910343170166,2.1632845401763916,2.1461598873138428,2.1804091930389404,2.111910343170166,2.1975340843200684,1.9749122858047485,1.7694151401519775,1.9406627416610718,2.1461598873138428,1.786539912223816,1.8550390005111694,2.0605359077453613,1.8721636533737183,1.8550390005111694,1.906413197517395,2.1804091930389404,2.094785451889038,1.8207894563674927,1.8721636533737183,1.906413197517395,2.094785451889038,2.0262866020202637,2.0776607990264893,2.0262866020202637,2.111910343170166,1.9920369386672974,2.0262866020202637,2.0776607990264893,2.129034996032715,2.094785451889038,1.9406627416610718,1.9406627416610718,1.9920369386672974,2.214658737182617,2.1461598873138428,2.0262866020202637,2.1804091930389404,1.8721636533737183,2.0776607990264893,1.7694151401519775,2.0434112548828125,2.0776607990264893,2.1975340843200684,2.248908281326294,2.1975340843200684,2.0605359077453613,1.9235379695892334,1.906413197517395,1.8550390005111694,2.0434112548828125,1.718040943145752,1.9235379695892334,2.0091617107391357,2.1804091930389404,1.906413197517395,2.1975340843200684,2.0434112548828125,1.9406627416610718,2.248908281326294,2.1804091930389404,2.0091617107391357,2.1461598873138428,1.9920369386672974,2.0776607990264893,2.1461598873138428,2.1975340843200684,2.1632845401763916,1.8892884254455566,2.214658737182617,2.248908281326294,2.1804091930389404,2.248908281326294,2.248908281326294,2.0605359077453613,2.111910343170166,2.0605359077453613,1.837914228439331,1.906413197517395,1.718040943145752,1.8550390005111694,1.7009161710739136,1.8721636533737183,1.718040943145752,1.718040943145752,1.8721636533737183,1.9406627416610718,1.837914228439331,1.8892884254455566,1.8892884254455566,1.9920369386672974,1.9920369386672974,2.0434112548828125,1.9577875137329102,2.1804091930389404,2.0434112548828125,2.0776607990264893,2.1975340843200684,1.8892884254455566,1.9235379695892334,2.111910343170166,2.214658737182617,1.7522904872894287,1.786539912223816,1.718040943145752,1.6837913990020752,1.5467933416366577,1.6837913990020752,1.255672574043274,1.7351657152175903,1.8721636533737183,1.7351657152175903,1.6152924299240112,1.255672574043274,1.7351657152175903,1.8550390005111694,1.4954191446304321,1.3584210872650146,1.2385478019714355,1.0673003196716309,1.1529240608215332,1.2727973461151123,0.9988012909889221,0.9303022623062134,0.7076804637908936,0.8104289770126343,1.4269200563430786,1.8207894563674927,1.9577875137329102,1.9577875137329102,1.906413197517395,2.0776607990264893,1.8550390005111694,2.0434112548828125,1.8207894563674927,1.7522904872894287,1.6666666269302368,1.8036646842956543],[1.9749122858047485,1.8721636533737183,1.9749122858047485,1.7009161710739136,1.7351657152175903,1.837914228439331,1.8892884254455566,1.4782943725585938,1.7694151401519775,1.906413197517395,1.9920369386672974,2.214658737182617,1.2727973461151123,0.7419299483299255,0.45080915093421936,-0.6794245839118958,0.7761794924736023,0.34806060791015625,-0.7479236125946045,0.8275537490844727,-0.43967804312705994,-0.542426586151123,-1.3986642360687256,0.22818733751773834,-0.08005822449922562,0.6391814351081848,1.0501755475997925,1.0159260034561157,1.18717360496521,1.2214230298995972,1.8207894563674927,2.0091617107391357,1.4782943725585938,2.129034996032715,2.1632845401763916,1.9577875137329102,1.8550390005111694,1.9920369386672974,1.9577875137329102,2.111910343170166,2.0091617107391357,1.8721636533737183,2.129034996032715,2.1804091930389404,2.111910343170166,1.7694151401519775,2.1461598873138428,2.214658737182617,2.1632845401763916,2.248908281326294,2.248908281326294,2.248908281326294,2.094785451889038,2.0434112548828125,1.9749122858047485,2.0776607990264893,1.8036646842956543,2.0434112548828125,2.129034996032715,1.6666666269302368,2.0434112548828125,1.9406627416610718,2.0434112548828125,2.129034996032715,1.8721636533737183,1.8036646842956543,1.9235379695892334,1.9235379695892334,1.9749122858047485,1.7351657152175903,1.9406627416610718,2.214658737182617,2.1632845401763916,2.0776607990264893,2.0262866020202637,2.0262866020202637,2.0262866020202637,2.0262866020202637,1.8550390005111694,2.0605359077453613,2.129034996032715,2.094785451889038,2.1804091930389404,2.0776607990264893,2.1804091930389404,2.0605359077453613,2.248908281326294,2.1461598873138428,2.1461598873138428,1.9920369386672974,2.111910343170166,2.248908281326294,2.094785451889038,1.786539912223816,1.8550390005111694,1.2899221181869507,1.7351657152175903,1.9406627416610718,1.9920369386672974,1.9577875137329102,2.111910343170166,2.0091617107391357,1.9235379695892334,1.9577875137329102,1.8721636533737183,2.1804091930389404,2.0262866020202637,1.8721636533737183,2.094785451889038,2.0776607990264893,1.786539912223816,2.0091617107391357,2.248908281326294,2.248908281326294,1.786539912223816,2.129034996032715,2.214658737182617,2.248908281326294,2.094785451889038,2.129034996032715,2.0776607990264893,2.248908281326294,2.1975340843200684,1.8721636533737183,1.8207894563674927,1.8207894563674927,1.9235379695892334,2.1632845401763916,1.837914228439331,1.9577875137329102,2.248908281326294,2.0091617107391357,2.111910343170166,1.8036646842956543,1.9406627416610718,2.0091617107391357,2.111910343170166,2.248908281326294,1.8892884254455566,1.9406627416610718,2.0262866020202637,1.906413197517395,1.9577875137329102,2.0776607990264893,2.248908281326294,1.9406627416610718,1.9920369386672974,1.9577875137329102,2.0091617107391357,2.0776607990264893,2.0776607990264893,2.1804091930389404,2.094785451889038,2.0262866020202637,2.248908281326294,2.1461598873138428,2.111910343170166,2.248908281326294,2.1804091930389404,1.8892884254455566,1.8550390005111694,2.129034996032715,2.0091617107391357,1.7522904872894287,2.094785451889038,1.906413197517395,1.9235379695892334,1.7351657152175903,1.718040943145752,1.8550390005111694,1.8721636533737183,2.0091617107391357,1.9406627416610718,1.718040943145752,2.111910343170166,2.1632845401763916,1.8207894563674927,1.9577875137329102,1.8550390005111694,2.1461598873138428,2.1975340843200684,2.1632845401763916,2.0434112548828125,2.1632845401763916,2.1632845401763916,1.9406627416610718,1.8721636533737183,1.7522904872894287,1.6495418548583984,1.5981676578521729,1.563918113708496,1.4097954034805298,1.6495418548583984,1.6837913990020752,1.4954191446304321,1.7351657152175903,1.7351657152175903,1.8892884254455566,1.8036646842956543,1.6666666269302368,1.563918113708496,1.444044828414917,1.6152924299240112,1.444044828414917,1.2042982578277588,1.1700488328933716,1.033050775527954,1.1186745166778564,0.9816765189170837,0.8618032336235046,0.7076804637908936,0.8275537490844727,1.3926706314086914,1.8721636533737183,1.837914228439331,1.906413197517395,2.0434112548828125,1.9235379695892334,2.0605359077453613,1.906413197517395,1.6837913990020752,1.7009161710739136,1.6666666269302368,1.6324172019958496],[1.906413197517395,1.8721636533737183,2.0434112548828125,1.5981676578521729,2.0776607990264893,1.906413197517395,1.5810428857803345,1.255672574043274,1.4782943725585938,1.6152924299240112,1.837914228439331,1.906413197517395,0.8275537490844727,0.7933042049407959,0.8446784615516663,-1.1760424375534058,0.9645517468452454,0.03981505334377289,-1.1760424375534058,0.24531209468841553,0.2795616090297699,-0.04580871760845184,-1.689785122871399,-0.19993150234222412,0.21106259524822235,1.033050775527954,1.2042982578277588,1.1357992887496948,1.4269200563430786,1.1186745166778564,1.837914228439331,1.6495418548583984,2.1632845401763916,2.0262866020202637,1.837914228439331,1.6495418548583984,1.9235379695892334,2.0605359077453613,2.0091617107391357,2.0434112548828125,2.1461598873138428,2.0091617107391357,2.094785451889038,2.1632845401763916,2.231783628463745,1.9749122858047485,2.0262866020202637,1.9920369386672974,2.111910343170166,1.9235379695892334,2.248908281326294,2.248908281326294,1.718040943145752,2.0605359077453613,1.9406627416610718,2.1804091930389404,2.1975340843200684,2.231783628463745,2.1461598873138428,2.0091617107391357,1.837914228439331,2.1632845401763916,2.231783628463745,1.8550390005111694,2.094785451889038,2.0434112548828125,2.1804091930389404,1.9235379695892334,1.906413197517395,1.837914228439331,2.0776607990264893,2.248908281326294,2.1804091930389404,1.9920369386672974,2.0262866020202637,2.094785451889038,1.9920369386672974,2.1461598873138428,1.9577875137329102,2.1461598873138428,2.1804091930389404,2.1632845401763916,2.111910343170166,2.231783628463745,2.248908281326294,2.1632845401763916,2.0605359077453613,2.0091617107391357,2.0091617107391357,2.1975340843200684,1.9235379695892334,1.9577875137329102,2.0434112548828125,1.8892884254455566,2.094785451889038,1.6837913990020752,2.129034996032715,2.231783628463745,1.9235379695892334,2.0434112548828125,1.8721636533737183,2.248908281326294,2.1975340843200684,1.906413197517395,1.8721636533737183,1.906413197517395,1.906413197517395,1.786539912223816,2.0605359077453613,1.9749122858047485,2.129034996032715,2.248908281326294,2.129034996032715,2.0434112548828125,1.9235379695892334,2.248908281326294,2.0434112548828125,2.129034996032715,2.0091617107391357,1.786539912223816,2.248908281326294,2.231783628463745,2.1804091930389404,2.1632845401763916,1.9920369386672974,1.9577875137329102,1.9406627416610718,2.111910343170166,2.248908281326294,2.248908281326294,2.1461598873138428,2.1804091930389404,2.0434112548828125,2.0605359077453613,2.1804091930389404,1.906413197517395,1.7009161710739136,2.0262866020202637,1.5810428857803345,1.9406627416610718,1.8550390005111694,2.111910343170166,1.8550390005111694,2.111910343170166,1.8892884254455566,2.0776607990264893,2.0776607990264893,2.214658737182617,2.0091617107391357,1.6666666269302368,2.0605359077453613,2.129034996032715,2.129034996032715,2.1461598873138428,1.9406627416610718,2.1975340843200684,2.0776607990264893,1.9577875137329102,2.1975340843200684,2.129034996032715,2.231783628463745,2.0091617107391357,2.111910343170166,1.9235379695892334,1.8036646842956543,1.9406627416610718,1.9920369386672974,2.0091617107391357,1.718040943145752,1.8550390005111694,1.7009161710739136,1.8550390005111694,1.9577875137329102,1.6152924299240112,2.0776607990264893,1.8036646842956543,1.7351657152175903,2.0262866020202637,2.214658737182617,1.9577875137329102,2.0262866020202637,2.0091617107391357,2.248908281326294,2.094785451889038,2.0776607990264893,1.9920369386672974,1.9235379695892334,1.8207894563674927,1.837914228439331,1.5125439167022705,1.5467933416366577,1.8892884254455566,1.9406627416610718,1.6837913990020752,1.6324172019958496,1.7351657152175903,1.9920369386672974,1.837914228439331,1.7522904872894287,1.6324172019958496,1.718040943145752,1.5981676578521729,1.4611696004867554,1.4782943725585938,1.2214230298995972,1.2899221181869507,0.9988012909889221,1.2727973461151123,1.2385478019714355,0.9303022623062134,0.7933042049407959,0.2966863512992859,1.2214230298995972,1.9406627416610718,1.7009161710739136,1.837914228439331,1.9235379695892334,1.9577875137329102,1.9577875137329102,1.9749122858047485,1.8721636533737183,1.8892884254455566,1.5981676578521729,1.4611696004867554],[2.0091617107391357,1.9406627416610718,1.9749122858047485,2.0262866020202637,1.9577875137329102,2.0776607990264893,1.906413197517395,1.5467933416366577,1.4954191446304321,1.4269200563430786,1.3926706314086914,1.4954191446304321,0.5878071784973145,0.9474270343780518,0.7419299483299255,-1.3644148111343384,0.7933042049407959,0.2795616090297699,-0.576676070690155,0.2966863512992859,0.5193081498146057,0.17681308090686798,-1.998030662536621,-0.8506721258163452,0.399434894323349,0.8275537490844727,1.2042982578277588,1.324171543121338,1.786539912223816,1.5981676578521729,2.0262866020202637,2.0091617107391357,2.0091617107391357,1.9920369386672974,1.906413197517395,1.8550390005111694,1.9577875137329102,1.9920369386672974,2.0605359077453613,2.214658737182617,2.0605359077453613,2.1461598873138428,1.8550390005111694,1.8207894563674927,2.214658737182617,2.1461598873138428,2.111910343170166,2.0776607990264893,1.8892884254455566,2.0091617107391357,2.111910343170166,2.248908281326294,2.0091617107391357,2.0605359077453613,2.1632845401763916,2.129034996032715,1.8892884254455566,1.8550390005111694,2.0091617107391357,2.1975340843200684,1.906413197517395,2.094785451889038,2.0262866020202637,2.1632845401763916,1.9406627416610718,2.0434112548828125,1.9577875137329102,1.9406627416610718,2.1975340843200684,2.0605359077453613,1.9406627416610718,1.9406627416610718,2.0434112548828125,1.8036646842956543,1.9406627416610718,1.718040943145752,2.1461598873138428,2.1804091930389404,2.248908281326294,2.094785451889038,2.094785451889038,2.248908281326294,2.1804091930389404,2.1975340843200684,1.9577875137329102,2.248908281326294,2.129034996032715,2.0776607990264893,2.248908281326294,2.248908281326294,1.8721636533737183,2.111910343170166,1.7522904872894287,1.6324172019958496,2.214658737182617,2.0605359077453613,1.8207894563674927,2.1461598873138428,1.9577875137329102,2.094785451889038,2.1461598873138428,2.129034996032715,1.8721636533737183,1.8036646842956543,1.8892884254455566,1.6837913990020752,2.0605359077453613,2.094785451889038,2.214658737182617,2.0091617107391357,2.0091617107391357,2.0605359077453613,2.1975340843200684,2.0262866020202637,2.0434112548828125,2.231783628463745,2.1975340843200684,1.9920369386672974,2.0776607990264893,2.0434112548828125,2.0776607990264893,2.248908281326294,2.1632845401763916,2.248908281326294,2.0091617107391357,1.9577875137329102,2.0091617107391357,2.111910343170166,2.1632845401763916,2.0262866020202637,2.248908281326294,2.111910343170166,2.129034996032715,2.0605359077453613,1.9577875137329102,1.8207894563674927,2.094785451889038,1.9920369386672974,2.1632845401763916,2.0776607990264893,1.8550390005111694,2.248908281326294,2.0776607990264893,2.0434112548828125,1.7009161710739136,1.8550390005111694,1.7694151401519775,2.0776607990264893,2.0091617107391357,2.0776607990264893,2.0262866020202637,2.129034996032715,2.1461598873138428,2.111910343170166,2.0262866020202637,2.1804091930389404,2.094785451889038,2.094785451889038,2.1804091930389404,2.1975340843200684,2.129034996032715,2.1461598873138428,2.0434112548828125,1.6495418548583984,1.8550390005111694,2.094785451889038,1.9406627416610718,1.6666666269302368,1.7351657152175903,1.837914228439331,1.9235379695892334,1.9920369386672974,1.786539912223816,1.8036646842956543,1.8550390005111694,1.7351657152175903,1.9406627416610718,1.9920369386672974,2.0605359077453613,2.0091617107391357,2.0605359077453613,1.9235379695892334,2.0776607990264893,1.9577875137329102,1.8550390005111694,1.9406627416610718,1.8036646842956543,1.6666666269302368,1.7009161710739136,1.718040943145752,1.6837913990020752,1.718040943145752,1.7009161710739136,1.718040943145752,1.8550390005111694,1.6152924299240112,1.5125439167022705,1.5125439167022705,1.7522904872894287,1.9235379695892334,1.7009161710739136,1.6837913990020752,1.4097954034805298,1.4954191446304321,1.2899221181869507,1.307046890258789,1.0844250917434692,0.7933042049407959,0.8104289770126343,0.913177490234375,0.7933042049407959,0.3823101222515106,1.1700488328933716,1.7522904872894287,1.9406627416610718,2.0776607990264893,1.9920369386672974,2.0776607990264893,1.9406627416610718,1.8721636533737183,1.8550390005111694,1.8892884254455566,1.7351657152175903,1.6495418548583984],[1.8207894563674927,1.8550390005111694,2.0434112548828125,1.9749122858047485,1.9920369386672974,1.8721636533737183,1.6152924299240112,1.4782943725585938,1.6837913990020752,1.307046890258789,1.5296686887741089,1.4782943725585938,0.8618032336235046,0.6049319505691528,0.19393783807754517,-0.8164226412773132,1.101549744606018,0.33093586564064026,0.2624368667602539,0.5193081498146057,0.6734309196472168,0.433684378862381,-2.032280206680298,-0.542426586151123,0.8960527181625366,0.9816765189170837,1.324171543121338,1.6495418548583984,1.9920369386672974,1.7522904872894287,1.9749122858047485,1.9577875137329102,2.0434112548828125,1.9749122858047485,1.9577875137329102,1.906413197517395,2.129034996032715,2.0262866020202637,1.9920369386672974,1.786539912223816,2.094785451889038,2.0434112548828125,1.8721636533737183,1.9406627416610718,2.1632845401763916,2.1804091930389404,1.6837913990020752,2.0262866020202637,2.248908281326294,2.094785451889038,2.0434112548828125,1.8036646842956543,1.9920369386672974,2.094785451889038,1.8721636533737183,2.1975340843200684,2.248908281326294,2.231783628463745,2.231783628463745,1.9406627416610718,2.0091617107391357,1.8892884254455566,2.0605359077453613,1.9235379695892334,2.0605359077453613,1.8550390005111694,1.906413197517395,2.1975340843200684,2.0262866020202637,2.0776607990264893,1.8036646842956543,1.8892884254455566,2.0776607990264893,2.111910343170166,1.6495418548583984,2.0091617107391357,2.0434112548828125,2.129034996032715,1.7694151401519775,1.8892884254455566,2.094785451889038,2.0091617107391357,2.0776607990264893,2.231783628463745,2.248908281326294,2.1461598873138428,1.9749122858047485,2.094785451889038,1.9749122858047485,1.718040943145752,2.111910343170166,2.1461598873138428,1.8892884254455566,2.0262866020202637,1.7694151401519775,2.248908281326294,2.0091617107391357,2.094785451889038,2.0434112548828125,1.9406627416610718,2.0091617107391357,2.094785451889038,2.1632845401763916,2.0605359077453613,1.8892884254455566,1.837914228439331,1.8550390005111694,2.0262866020202637,1.9749122858047485,2.0091617107391357,1.9235379695892334,2.248908281326294,2.214658737182617,2.0776607990264893,1.9749122858047485,2.1975340843200684,2.214658737182617,1.9406627416610718,2.0262866020202637,1.9235379695892334,2.214658737182617,2.248908281326294,2.1632845401763916,2.0262866020202637,2.0434112548828125,1.9749122858047485,2.0434112548828125,2.0434112548828125,1.9406627416610718,1.8721636533737183,2.111910343170166,2.129034996032715,2.248908281326294,2.094785451889038,2.248908281326294,2.0091617107391357,2.111910343170166,1.906413197517395,2.129034996032715,1.8892884254455566,2.0434112548828125,2.214658737182617,1.8892884254455566,2.0091617107391357,2.111910343170166,2.248908281326294,1.906413197517395,2.094785451889038,2.0262866020202637,2.094785451889038,2.111910343170166,2.0091617107391357,2.0605359077453613,2.1632845401763916,1.837914228439331,2.0605359077453613,2.214658737182617,2.1804091930389404,2.1804091930389404,2.0605359077453613,2.094785451889038,1.718040943145752,1.9577875137329102,1.8550390005111694,1.9235379695892334,1.8207894563674927,1.563918113708496,1.4611696004867554,1.7351657152175903,1.8721636533737183,1.7694151401519775,1.9920369386672974,2.129034996032715,2.0776607990264893,2.094785451889038,2.248908281326294,2.0434112548828125,2.094785451889038,1.9920369386672974,2.0434112548828125,2.0091617107391357,1.9577875137329102,1.9235379695892334,1.9235379695892334,2.129034996032715,1.9235379695892334,1.8207894563674927,1.7009161710739136,1.7009161710739136,1.7009161710739136,1.3584210872650146,1.563918113708496,1.7009161710739136,1.6495418548583984,1.837914228439331,1.563918113708496,1.5125439167022705,1.6495418548583984,1.6837913990020752,1.5125439167022705,1.5981676578521729,1.4269200563430786,1.718040943145752,1.4954191446304321,1.255672574043274,1.033050775527954,1.0844250917434692,0.9988012909889221,1.0844250917434692,1.033050775527954,0.6391814351081848,0.2966863512992859,1.033050775527954,1.7694151401519775,1.8721636533737183,1.9406627416610718,1.9577875137329102,1.9235379695892334,1.9920369386672974,1.9577875137329102,1.6495418548583984,1.6837913990020752,1.7009161710739136,1.5981676578521729],[1.9406627416610718,1.8036646842956543,2.0434112548828125,2.0262866020202637,1.9406627416610718,1.9749122858047485,1.9406627416610718,1.8892884254455566,1.7351657152175903,1.255672574043274,1.786539912223816,1.2385478019714355,0.9474270343780518,0.6049319505691528,-0.028683962300419807,0.19393783807754517,1.307046890258789,0.8275537490844727,0.6905556917190552,0.21106259524822235,0.433684378862381,0.3823101222515106,-1.6212860345840454,0.36518537998199463,1.0159260034561157,1.1357992887496948,1.4611696004867554,2.0091617107391357,1.9577875137329102,2.094785451889038,2.0776607990264893,1.906413197517395,2.0262866020202637,1.9577875137329102,1.9920369386672974,2.1804091930389404,2.094785451889038,2.248908281326294,1.8892884254455566,2.248908281326294,2.111910343170166,2.0776607990264893,2.248908281326294,2.1632845401763916,2.0776607990264893,2.0776607990264893,2.248908281326294,2.0262866020202637,2.111910343170166,2.0605359077453613,2.0605359077453613,2.111910343170166,2.1804091930389404,1.9235379695892334,1.9920369386672974,2.248908281326294,1.9235379695892334,2.248908281326294,2.0605359077453613,2.129034996032715,1.9749122858047485,2.129034996032715,1.9749122858047485,1.906413197517395,1.8207894563674927,2.1461598873138428,1.9235379695892334,1.9235379695892334,2.129034996032715,1.8036646842956543,1.8550390005111694,1.9749122858047485,2.111910343170166,2.0262866020202637,2.0091617107391357,2.129034996032715,2.1975340843200684,2.0605359077453613,2.0605359077453613,1.9577875137329102,2.0434112548828125,2.129034996032715,2.231783628463745,2.094785451889038,2.231783628463745,2.248908281326294,2.214658737182617,2.231783628463745,2.0091617107391357,2.094785451889038,1.9406627416610718,2.0776607990264893,2.0262866020202637,1.9406627416610718,1.9577875137329102,2.0605359077453613,1.9406627416610718,2.1461598873138428,1.9749122858047485,2.129034996032715,1.9235379695892334,1.9749122858047485,2.0434112548828125,1.837914228439331,1.8721636533737183,1.8550390005111694,1.8550390005111694,1.837914228439331,2.248908281326294,1.9235379695892334,2.111910343170166,2.0605359077453613,1.837914228439331,2.0434112548828125,2.094785451889038,2.0605359077453613,1.9235379695892334,2.0605359077453613,2.1632845401763916,2.1975340843200684,2.0434112548828125,2.111910343170166,2.248908281326294,2.0605359077453613,2.248908281326294,1.7522904872894287,1.9577875137329102,1.6837913990020752,2.0091617107391357,2.1804091930389404,2.1975340843200684,2.1461598873138428,2.094785451889038,2.111910343170166,1.7351657152175903,2.0262866020202637,2.0605359077453613,1.9235379695892334,1.7009161710739136,1.9577875137329102,2.1804091930389404,2.111910343170166,1.9577875137329102,2.248908281326294,1.8721636533737183,2.094785451889038,2.0605359077453613,1.9920369386672974,2.0776607990264893,2.0605359077453613,2.214658737182617,2.1804091930389404,2.111910343170166,2.0091617107391357,2.214658737182617,2.248908281326294,1.906413197517395,2.0091617107391357,2.248908281326294,2.1632845401763916,2.1632845401763916,2.094785451889038,2.0776607990264893,2.094785451889038,1.9749122858047485,2.0091617107391357,1.786539912223816,1.6666666269302368,1.8550390005111694,1.8036646842956543,1.6837913990020752,1.8892884254455566,1.7522904872894287,1.6666666269302368,1.8892884254455566,1.9235379695892334,2.094785451889038,1.8892884254455566,2.0776607990264893,2.0605359077453613,2.111910343170166,1.9577875137329102,2.1975340843200684,1.7694151401519775,2.0091617107391357,1.7694151401519775,1.8892884254455566,1.786539912223816,2.094785451889038,1.8892884254455566,1.5296686887741089,1.563918113708496,1.8036646842956543,1.4097954034805298,1.837914228439331,1.8892884254455566,1.8036646842956543,1.8207894563674927,1.7351657152175903,1.6495418548583984,1.4269200563430786,1.7351657152175903,1.375545859336853,1.255672574043274,1.2385478019714355,1.1529240608215332,1.0673003196716309,1.0159260034561157,0.7076804637908936,0.7761794924736023,0.913177490234375,0.7761794924736023,0.6734309196472168,1.6152924299240112,1.7694151401519775,2.094785451889038,1.8721636533737183,1.9749122858047485,1.906413197517395,1.9235379695892334,1.8721636533737183,1.9920369386672974,1.4954191446304321,1.8207894563674927],[1.7694151401519775,1.906413197517395,1.8036646842956543,1.906413197517395,1.9920369386672974,1.9920369386672974,2.0434112548828125,1.8550390005111694,1.6495418548583984,1.4782943725585938,1.4611696004867554,1.5125439167022705,1.1529240608215332,0.9303022623062134,-0.6965493559837341,0.7076804637908936,1.1357992887496948,0.21106259524822235,0.1425635814666748,-0.6109256148338318,0.33093586564064026,0.36518537998199463,-0.5253018140792847,0.8618032336235046,1.255672574043274,1.444044828414917,1.5810428857803345,1.906413197517395,2.0262866020202637,2.0434112548828125,1.8892884254455566,1.9406627416610718,2.0605359077453613,2.094785451889038,2.0605359077453613,2.248908281326294,2.111910343170166,2.248908281326294,2.1975340843200684,2.0262866020202637,1.9406627416610718,1.9920369386672974,2.0091617107391357,2.248908281326294,2.1632845401763916,2.214658737182617,2.0605359077453613,2.248908281326294,1.9577875137329102,1.9749122858047485,2.0091617107391357,1.786539912223816,2.0605359077453613,2.214658737182617,1.9406627416610718,2.1804091930389404,2.1461598873138428,2.129034996032715,1.9406627416610718,1.9406627416610718,1.9235379695892334,2.1804091930389404,1.7009161710739136,2.0091617107391357,2.1975340843200684,2.231783628463745,1.9235379695892334,2.1975340843200684,2.1461598873138428,2.0776607990264893,1.8721636533737183,1.837914228439331,1.9235379695892334,1.9577875137329102,2.129034996032715,1.8721636533737183,1.9749122858047485,2.0262866020202637,1.9577875137329102,1.9577875137329102,2.129034996032715,2.0776607990264893,2.0091617107391357,2.094785451889038,2.1975340843200684,2.231783628463745,2.1461598873138428,2.1632845401763916,1.8550390005111694,1.9920369386672974,2.231783628463745,2.1975340843200684,2.248908281326294,1.9920369386672974,2.0434112548828125,2.0605359077453613,1.837914228439331,1.9577875137329102,1.9235379695892334,1.9577875137329102,1.9749122858047485,2.0262866020202637,1.9749122858047485,1.9577875137329102,2.0091617107391357,1.718040943145752,1.8892884254455566,2.0262866020202637,2.111910343170166,2.1804091930389404,2.1632845401763916,2.0605359077453613,2.214658737182617,2.0434112548828125,2.0776607990264893,2.1632845401763916,2.0434112548828125,2.1632845401763916,2.0091617107391357,1.9235379695892334,2.1975340843200684,1.9920369386672974,2.248908281326294,2.214658737182617,2.248908281326294,1.9235379695892334,1.5981676578521729,2.214658737182617,2.248908281326294,2.094785451889038,2.0434112548828125,1.906413197517395,1.9749122858047485,1.9577875137329102,2.0262866020202637,2.129034996032715,2.111910343170166,2.111910343170166,1.9920369386672974,1.906413197517395,1.8892884254455566,2.129034996032715,1.906413197517395,1.9406627416610718,2.094785451889038,2.1804091930389404,2.111910343170166,1.7351657152175903,1.8036646842956543,2.0605359077453613,2.0091617107391357,2.0605359077453613,2.1975340843200684,1.9406627416610718,2.231783628463745,2.094785451889038,2.248908281326294,2.248908281326294,1.9577875137329102,2.0605359077453613,2.0262866020202637,2.111910343170166,1.9577875137329102,1.8207894563674927,1.6495418548583984,1.8036646842956543,1.718040943145752,1.6837913990020752,1.718040943145752,1.8550390005111694,1.9749122858047485,1.9235379695892334,1.906413197517395,1.8892884254455566,1.9749122858047485,2.0091617107391357,2.1632845401763916,2.1804091930389404,2.0605359077453613,1.8721636533737183,2.1804091930389404,1.906413197517395,1.9235379695892334,1.718040943145752,1.6495418548583984,1.5810428857803345,2.0776607990264893,1.8892884254455566,1.7522904872894287,1.718040943145752,1.837914228439331,1.8550390005111694,1.718040943145752,1.5981676578521729,1.4611696004867554,1.6152924299240112,2.0262866020202637,1.6152924299240112,1.906413197517395,1.3584210872650146,1.8036646842956543,1.6324172019958496,1.718040943145752,1.3926706314086914,1.5125439167022705,1.033050775527954,1.0673003196716309,1.101549744606018,0.913177490234375,0.8446784615516663,0.6905556917190552,-0.3369295299053192,0.8960527181625366,1.7522904872894287,1.8036646842956543,1.7694151401519775,1.8550390005111694,1.9235379695892334,1.8207894563674927,1.837914228439331,1.906413197517395,1.7351657152175903,1.563918113708496,1.7351657152175903],[1.6495418548583984,1.9235379695892334,1.8207894563674927,1.837914228439331,1.6495418548583984,1.7694151401519775,1.837914228439331,1.8036646842956543,1.9577875137329102,1.8892884254455566,1.4611696004867554,1.3412963151931763,1.4782943725585938,0.2795616090297699,-1.3130404949188232,0.46793389320373535,1.0673003196716309,0.2624368667602539,-1.227416753768921,-1.5014127492904663,-0.3711790442466736,0.10831406712532043,0.6905556917190552,1.2214230298995972,1.5125439167022705,1.9749122858047485,1.9406627416610718,1.9920369386672974,2.129034996032715,2.0262866020202637,2.0262866020202637,2.248908281326294,1.8550390005111694,2.111910343170166,2.094785451889038,1.7522904872894287,2.0605359077453613,2.248908281326294,2.0091617107391357,2.0262866020202637,2.129034996032715,2.248908281326294,2.0262866020202637,2.094785451889038,2.0605359077453613,2.0605359077453613,2.0262866020202637,2.094785451889038,2.0605359077453613,2.0605359077453613,2.1461598873138428,2.1804091930389404,2.0262866020202637,2.094785451889038,2.0776607990264893,2.0091617107391357,2.0434112548828125,2.0262866020202637,1.8207894563674927,2.0091617107391357,1.9749122858047485,1.906413197517395,2.1461598873138428,1.906413197517395,2.094785451889038,2.248908281326294,2.248908281326294,2.0605359077453613,2.111910343170166,2.1632845401763916,2.0776607990264893,1.9406627416610718,2.214658737182617,2.0262866020202637,2.0605359077453613,1.906413197517395,2.0776607990264893,2.0091617107391357,2.248908281326294,2.0605359077453613,2.0605359077453613,2.0091617107391357,2.0776607990264893,2.0434112548828125,2.111910343170166,1.8207894563674927,1.7351657152175903,1.837914228439331,2.111910343170166,1.8721636533737183,1.837914228439331,2.0091617107391357,2.094785451889038,2.094785451889038,1.9406627416610718,2.248908281326294,2.214658737182617,1.9577875137329102,2.231783628463745,2.094785451889038,1.8036646842956543,2.0091617107391357,2.0434112548828125,2.0434112548828125,1.8721636533737183,1.9920369386672974,1.8550390005111694,1.9749122858047485,2.0091617107391357,2.1804091930389404,2.0605359077453613,2.248908281326294,2.214658737182617,2.0776607990264893,2.0262866020202637,2.248908281326294,2.0605359077453613,1.9920369386672974,1.7009161710739136,1.8721636533737183,2.231783628463745,1.8892884254455566,2.111910343170166,1.9920369386672974,1.8721636533737183,1.9749122858047485,2.0605359077453613,2.214658737182617,2.1461598873138428,2.1975340843200684,2.0262866020202637,2.094785451889038,1.7694151401519775,2.111910343170166,2.1804091930389404,2.094785451889038,1.9406627416610718,2.214658737182617,1.9920369386672974,2.0605359077453613,1.8892884254455566,1.9406627416610718,2.1804091930389404,2.111910343170166,2.094785451889038,2.0262866020202637,2.129034996032715,1.7522904872894287,2.0605359077453613,1.8892884254455566,2.111910343170166,2.0262866020202637,2.0605359077453613,2.1632845401763916,2.0776607990264893,2.248908281326294,2.248908281326294,2.0776607990264893,2.1632845401763916,2.1975340843200684,2.0262866020202637,2.129034996032715,1.7009161710739136,1.9749122858047485,1.9920369386672974,1.8892884254455566,1.9577875137329102,1.8892884254455566,1.6837913990020752,1.8550390005111694,1.8721636533737183,1.9406627416610718,1.9577875137329102,2.0091617107391357,1.9920369386672974,2.0434112548828125,1.786539912223816,1.9235379695892334,1.7522904872894287,2.0434112548828125,1.906413197517395,1.9235379695892334,1.837914228439331,1.7522904872894287,1.8550390005111694,1.9235379695892334,1.906413197517395,1.6152924299240112,1.9577875137329102,1.9406627416610718,1.5981676578521729,1.5125439167022705,1.5810428857803345,1.6495418548583984,1.6837913990020752,1.5981676578521729,1.718040943145752,1.6666666269302368,1.6152924299240112,1.6324172019958496,1.7694151401519775,1.6495418548583984,1.4097954034805298,1.4954191446304321,1.3412963151931763,1.1700488328933716,1.255672574043274,0.9474270343780518,0.7248051762580872,0.6220566630363464,0.5878071784973145,0.22818733751773834,0.5021833777427673,1.4782943725585938,1.6666666269302368,1.7694151401519775,1.9577875137329102,1.7694151401519775,1.7694151401519775,1.9235379695892334,1.7522904872894287,1.6495418548583984,1.4611696004867554,1.6837913990020752],[1.786539912223816,1.8036646842956543,1.4611696004867554,2.0605359077453613,1.9406627416610718,2.1461598873138428,2.0605359077453613,1.9577875137329102,1.8550390005111694,1.7694151401519775,2.0262866020202637,1.4269200563430786,1.1529240608215332,0.6734309196472168,0.12543882429599762,0.416559636592865,0.7933042049407959,0.7248051762580872,-1.0561691522598267,-1.3130404949188232,0.22818733751773834,0.8446784615516663,1.307046890258789,1.5296686887741089,1.837914228439331,1.9749122858047485,2.0091617107391357,2.111910343170166,2.1632845401763916,2.0776607990264893,2.248908281326294,2.248908281326294,2.0605359077453613,2.214658737182617,2.0262866020202637,1.9749122858047485,2.1975340843200684,2.248908281326294,2.1461598873138428,2.1804091930389404,2.1461598873138428,2.111910343170166,2.1975340843200684,2.1975340843200684,2.0776607990264893,2.129034996032715,2.1975340843200684,2.0262866020202637,2.094785451889038,2.0605359077453613,2.094785451889038,1.9749122858047485,2.0091617107391357,1.9920369386672974,2.111910343170166,2.1804091930389404,1.906413197517395,2.129034996032715,2.1975340843200684,2.0605359077453613,1.9920369386672974,2.0091617107391357,1.5810428857803345,2.1975340843200684,2.1461598873138428,1.8892884254455566,1.837914228439331,1.7522904872894287,2.111910343170166,2.0434112548828125,1.8892884254455566,2.0091617107391357,2.0262866020202637,2.231783628463745,2.094785451889038,1.8721636533737183,2.1975340843200684,1.9749122858047485,2.0434112548828125,1.8036646842956543,1.9577875137329102,2.0605359077453613,2.1632845401763916,2.248908281326294,2.129034996032715,2.0434112548828125,2.248908281326294,2.1804091930389404,1.7694151401519775,2.129034996032715,1.8550390005111694,2.0605359077453613,1.9920369386672974,2.0776607990264893,1.8550390005111694,2.094785451889038,1.8721636533737183,2.0605359077453613,2.1975340843200684,2.094785451889038,2.0776607990264893,1.6495418548583984,2.0262866020202637,2.0262866020202637,1.9577875137329102,1.9749122858047485,1.6152924299240112,1.8036646842956543,1.9920369386672974,1.9749122858047485,2.0605359077453613,2.129034996032715,1.7522904872894287,2.0434112548828125,2.1804091930389404,1.9920369386672974,2.129034996032715,1.9920369386672974,1.8550390005111694,1.9235379695892334,2.0262866020202637,2.1804091930389404,2.111910343170166,1.9406627416610718,1.8207894563674927,1.8036646842956543,2.094785451889038,1.9749122858047485,2.1632845401763916,1.9577875137329102,2.1632845401763916,1.9235379695892334,2.0262866020202637,1.837914228439331,2.0262866020202637,2.111910343170166,2.129034996032715,1.9749122858047485,1.8036646842956543,1.9749122858047485,2.0434112548828125,2.094785451889038,2.0262866020202637,2.0776607990264893,2.0605359077453613,1.8721636533737183,2.129034996032715,1.9920369386672974,1.9235379695892334,1.9235379695892334,1.9920369386672974,2.1632845401763916,2.094785451889038,2.1632845401763916,2.129034996032715,1.906413197517395,2.0091617107391357,2.248908281326294,2.129034996032715,2.0776607990264893,1.837914228439331,1.9577875137329102,2.1975340843200684,1.7009161710739136,2.0262866020202637,1.7522904872894287,1.7522904872894287,1.786539912223816,1.6324172019958496,2.0776607990264893,1.786539912223816,1.906413197517395,1.906413197517395,1.6837913990020752,1.9577875137329102,1.8550390005111694,1.7522904872894287,1.9920369386672974,2.129034996032715,1.8550390005111694,1.6495418548583984,1.906413197517395,2.111910343170166,2.0776607990264893,2.111910343170166,1.6837913990020752,1.6495418548583984,1.563918113708496,1.786539912223816,1.5125439167022705,1.7522904872894287,1.8036646842956543,1.7694151401519775,1.7694151401519775,1.7694151401519775,1.5810428857803345,1.7351657152175903,1.6837913990020752,1.5467933416366577,1.3926706314086914,1.2899221181869507,1.4611696004867554,1.563918113708496,1.7009161710739136,1.375545859336853,1.3584210872650146,1.3926706314086914,1.1700488328933716,0.9816765189170837,0.5193081498146057,0.2624368667602539,0.07406456023454666,0.36518537998199463,1.2727973461151123,1.6837913990020752,1.837914228439331,1.9235379695892334,2.0605359077453613,1.9406627416610718,1.9406627416610718,1.9406627416610718,1.6837913990020752,1.5467933416366577,1.324171543121338],[1.6837913990020752,1.8892884254455566,1.7009161710739136,1.6837913990020752,1.6495418548583984,1.8207894563674927,1.8721636533737183,2.094785451889038,1.9920369386672974,2.0605359077453613,1.7694151401519775,1.8721636533737183,1.5125439167022705,1.5810428857803345,0.8618032336235046,0.7248051762580872,0.34806060791015625,0.09118931740522385,-0.8677968978881836,-0.8335474133491516,0.7076804637908936,1.101549744606018,1.6666666269302368,1.9749122858047485,1.9406627416610718,2.0434112548828125,2.0091617107391357,2.0262866020202637,2.1461598873138428,2.1975340843200684,2.214658737182617,1.9406627416610718,2.248908281326294,2.0605359077453613,2.094785451889038,2.129034996032715,1.906413197517395,1.9749122858047485,2.1975340843200684,2.111910343170166,1.9235379695892334,2.0776607990264893,1.9235379695892334,2.0434112548828125,2.214658737182617,2.248908281326294,1.9235379695892334,2.111910343170166,2.0605359077453613,2.231783628463745,2.248908281326294,2.111910343170166,2.1461598873138428,1.8550390005111694,2.214658737182617,1.9749122858047485,2.1632845401763916,2.094785451889038,2.0776607990264893,1.8207894563674927,2.0605359077453613,2.0091617107391357,2.0776607990264893,1.9577875137329102,2.0605359077453613,2.094785451889038,2.1804091930389404,2.094785451889038,2.248908281326294,1.837914228439331,2.1632845401763916,2.1804091930389404,2.0262866020202637,2.248908281326294,2.248908281326294,2.1804091930389404,2.111910343170166,2.0776607990264893,2.1975340843200684,2.248908281326294,1.9749122858047485,2.0434112548828125,2.111910343170166,2.248908281326294,2.0776607990264893,2.0605359077453613,2.1461598873138428,2.0776607990264893,2.1804091930389404,2.0262866020202637,1.906413197517395,1.9406627416610718,2.0434112548828125,1.9749122858047485,1.8036646842956543,2.0262866020202637,2.0262866020202637,1.9749122858047485,2.0776607990264893,2.111910343170166,1.9235379695892334,1.837914228439331,2.0434112548828125,1.906413197517395,2.111910343170166,1.9920369386672974,1.7522904872894287,1.7351657152175903,1.9749122858047485,2.129034996032715,2.1461598873138428,1.9577875137329102,1.9749122858047485,2.248908281326294,2.1975340843200684,2.0776607990264893,1.9577875137329102,1.906413197517395,1.8892884254455566,1.9577875137329102,2.214658737182617,2.129034996032715,2.1804091930389404,1.6666666269302368,1.8036646842956543,1.7351657152175903,1.8036646842956543,2.0776607990264893,1.9920369386672974,2.1632845401763916,1.9920369386672974,2.1632845401763916,1.786539912223816,2.0091617107391357,2.111910343170166,2.1804091930389404,2.1632845401763916,1.9920369386672974,1.9749122858047485,1.9577875137329102,2.231783628463745,2.0091617107391357,1.9920369386672974,1.9406627416610718,2.0091617107391357,2.111910343170166,2.094785451889038,2.094785451889038,2.0262866020202637,2.214658737182617,1.8892884254455566,2.0605359077453613,1.8892884254455566,2.1975340843200684,1.9577875137329102,2.0605359077453613,1.906413197517395,2.214658737182617,1.9406627416610718,2.0776607990264893,2.1804091930389404,2.1461598873138428,1.9235379695892334,1.8036646842956543,1.6495418548583984,1.8892884254455566,1.8550390005111694,1.786539912223816,1.8207894563674927,1.7009161710739136,2.214658737182617,1.9577875137329102,2.0776607990264893,2.1975340843200684,2.111910343170166,1.8892884254455566,2.0262866020202637,2.111910343170166,2.0434112548828125,2.1632845401763916,1.837914228439331,1.7694151401519775,2.0091617107391357,1.5810428857803345,1.8721636533737183,1.563918113708496,1.6837913990020752,1.4954191446304321,1.375545859336853,1.7351657152175903,1.8207894563674927,1.5467933416366577,1.5810428857803345,1.8721636533737183,1.786539912223816,1.6152924299240112,1.5981676578521729,1.837914228439331,1.2385478019714355,1.6495418548583984,1.5810428857803345,1.6837913990020752,1.8036646842956543,1.2042982578277588,1.307046890258789,1.307046890258789,1.4611696004867554,1.1529240608215332,1.1357992887496948,0.6563062071800232,0.433684378862381,0.056939806789159775,0.21106259524822235,1.375545859336853,1.6152924299240112,1.8036646842956543,1.837914228439331,1.8892884254455566,1.8036646842956543,1.7522904872894287,1.5810428857803345,1.718040943145752,1.6152924299240112,1.444044828414917],[1.9920369386672974,1.9577875137329102,1.6666666269302368,1.8207894563674927,1.7351657152175903,2.0262866020202637,1.8550390005111694,1.9749122858047485,1.8721636533737183,1.7694151401519775,2.0776607990264893,1.6666666269302368,1.5467933416366577,1.6495418548583984,1.4954191446304321,1.0159260034561157,0.7419299483299255,0.3823101222515106,-0.4568028151988983,0.7590547204017639,0.9303022623062134,1.18717360496521,1.6666666269302368,1.9920369386672974,1.9749122858047485,2.111910343170166,2.248908281326294,2.1975340843200684,2.0262866020202637,2.1632845401763916,2.1975340843200684,2.248908281326294,2.214658737182617,2.1632845401763916,2.248908281326294,2.1975340843200684,2.248908281326294,2.129034996032715,2.1632845401763916,1.837914228439331,2.1461598873138428,1.9920369386672974,2.248908281326294,2.248908281326294,2.231783628463745,2.0434112548828125,2.1804091930389404,1.9920369386672974,2.248908281326294,2.094785451889038,2.0434112548828125,2.1461598873138428,1.9406627416610718,2.1461598873138428,2.1632845401763916,2.129034996032715,1.9577875137329102,1.8892884254455566,1.8721636533737183,2.248908281326294,1.906413197517395,2.248908281326294,2.129034996032715,2.248908281326294,1.9406627416610718,2.1461598873138428,2.1975340843200684,2.1975340843200684,2.1975340843200684,2.1632845401763916,2.1975340843200684,2.0262866020202637,2.1975340843200684,2.231783628463745,2.248908281326294,2.0776607990264893,2.0605359077453613,1.9749122858047485,2.0605359077453613,1.8550390005111694,2.0434112548828125,2.0262866020202637,2.1975340843200684,2.0776607990264893,2.248908281326294,2.0434112548828125,2.094785451889038,2.1632845401763916,2.0434112548828125,2.0434112548828125,1.786539912223816,1.8892884254455566,2.0091617107391357,2.0262866020202637,2.129034996032715,2.111910343170166,2.248908281326294,2.0262866020202637,2.1632845401763916,2.0434112548828125,2.1461598873138428,1.8892884254455566,1.7351657152175903,1.6666666269302368,1.9577875137329102,2.1632845401763916,1.786539912223816,1.8550390005111694,1.9749122858047485,2.129034996032715,2.0776607990264893,2.0776607990264893,2.0776607990264893,1.8721636533737183,1.8036646842956543,2.0776607990264893,2.129034996032715,1.9577875137329102,1.7694151401519775,1.786539912223816,2.1975340843200684,1.9749122858047485,2.0262866020202637,1.9577875137329102,2.129034996032715,1.6666666269302368,1.8550390005111694,2.0262866020202637,2.0091617107391357,2.129034996032715,1.7522904872894287,2.1975340843200684,1.9749122858047485,2.0434112548828125,2.248908281326294,2.0776607990264893,1.9406627416610718,2.0605359077453613,1.9749122858047485,1.9577875137329102,1.9577875137329102,2.231783628463745,2.0262866020202637,2.0776607990264893,2.231783628463745,2.1804091930389404,1.8207894563674927,2.1632845401763916,1.9577875137329102,1.7694151401519775,2.248908281326294,2.0776607990264893,2.0434112548828125,2.0605359077453613,2.094785451889038,2.248908281326294,2.1632845401763916,2.248908281326294,2.1632845401763916,1.8892884254455566,1.7009161710739136,1.8892884254455566,1.9235379695892334,1.8036646842956543,1.8721636533737183,2.0434112548828125,1.9920369386672974,1.906413197517395,1.9749122858047485,1.7522904872894287,1.8550390005111694,1.837914228439331,2.0091617107391357,1.786539912223816,1.8892884254455566,1.9920369386672974,2.0434112548828125,1.8892884254455566,1.9577875137329102,1.9920369386672974,1.8207894563674927,2.231783628463745,1.8721636533737183,2.0262866020202637,1.6324172019958496,1.5981676578521729,1.6324172019958496,2.0605359077453613,1.6495418548583984,1.5981676578521729,1.7009161710739136,1.444044828414917,1.7351657152175903,1.9235379695892334,1.837914228439331,1.4097954034805298,1.4782943725585938,2.111910343170166,1.7522904872894287,1.7522904872894287,1.4097954034805298,1.5810428857803345,1.3926706314086914,1.4269200563430786,1.2727973461151123,1.5125439167022705,0.913177490234375,0.8960527181625366,1.0673003196716309,0.7076804637908936,0.3823101222515106,0.1425635814666748,-0.01155920885503292,1.2042982578277588,1.718040943145752,1.6495418548583984,1.7694151401519775,1.9920369386672974,1.718040943145752,1.8721636533737183,1.7009161710739136,1.6152924299240112,1.6495418548583984,1.307046890258789],[1.8550390005111694,1.718040943145752,1.5296686887741089,1.906413197517395,1.8036646842956543,1.7694151401519775,1.7694151401519775,1.7694151401519775,1.9406627416610718,2.0776607990264893,1.9577875137329102,1.8207894563674927,1.563918113708496,1.8036646842956543,1.5981676578521729,1.4782943725585938,1.5981676578521729,1.18717360496521,0.6391814351081848,1.5296686887741089,1.3412963151931763,1.5467933416366577,1.7522904872894287,1.9235379695892334,2.0776607990264893,2.1632845401763916,2.248908281326294,2.248908281326294,2.094785451889038,2.214658737182617,2.214658737182617,1.8892884254455566,2.129034996032715,2.0605359077453613,2.0605359077453613,2.1632845401763916,1.9920369386672974,2.0605359077453613,1.837914228439331,2.248908281326294,2.111910343170166,1.9920369386672974,1.9749122858047485,2.231783628463745,2.214658737182617,2.248908281326294,2.0776607990264893,2.0262866020202637,1.718040943145752,2.094785451889038,2.1632845401763916,2.0776607990264893,2.094785451889038,1.8721636533737183,1.9235379695892334,1.906413197517395,2.0091617107391357,1.8036646842956543,1.906413197517395,2.0776607990264893,2.0262866020202637,1.8550390005111694,1.9406627416610718,1.8207894563674927,2.0776607990264893,1.8207894563674927,1.906413197517395,1.9577875137329102,1.8721636533737183,1.9920369386672974,1.9577875137329102,2.248908281326294,2.248908281326294,2.0605359077453613,2.1804091930389404,2.1804091930389404,2.1461598873138428,2.1461598873138428,1.9749122858047485,2.0434112548828125,1.8207894563674927,2.111910343170166,2.094785451889038,2.248908281326294,2.0776607990264893,2.0262866020202637,2.0434112548828125,2.0262866020202637,2.1975340843200684,2.1632845401763916,2.094785451889038,2.111910343170166,1.9406627416610718,2.094785451889038,2.094785451889038,2.248908281326294,2.094785451889038,2.248908281326294,2.0605359077453613,2.214658737182617,2.0776607990264893,1.7009161710739136,1.7351657152175903,1.9920369386672974,2.1632845401763916,2.1975340843200684,1.9577875137329102,1.7522904872894287,1.9406627416610718,2.0776607990264893,1.906413197517395,1.786539912223816,1.8550390005111694,2.0262866020202637,1.9920369386672974,2.0776607990264893,1.563918113708496,1.7522904872894287,1.6152924299240112,2.231783628463745,2.214658737182617,2.214658737182617,2.1804091930389404,1.9920369386672974,1.837914228439331,1.6666666269302368,1.9577875137329102,1.9749122858047485,1.7694151401519775,1.8550390005111694,1.9406627416610718,1.786539912223816,2.0262866020202637,1.906413197517395,1.8892884254455566,2.0091617107391357,1.906413197517395,2.0776607990264893,1.9920369386672974,1.9235379695892334,2.1632845401763916,1.8207894563674927,2.1804091930389404,1.906413197517395,2.248908281326294,2.1804091930389404,2.1975340843200684,2.0605359077453613,2.129034996032715,1.8892884254455566,2.111910343170166,1.9235379695892334,2.129034996032715,2.129034996032715,1.9406627416610718,2.0262866020202637,1.8721636533737183,1.9749122858047485,2.0605359077453613,2.111910343170166,2.0776607990264893,1.9406627416610718,1.7522904872894287,2.0091617107391357,1.6152924299240112,1.8207894563674927,1.718040943145752,1.7522904872894287,2.0091617107391357,2.0091617107391357,1.837914228439331,2.1461598873138428,1.9235379695892334,2.1461598873138428,2.111910343170166,1.8721636533737183,2.214658737182617,1.8036646842956543,1.9235379695892334,2.0605359077453613,1.718040943145752,1.6495418548583984,1.786539912223816,1.9406627416610718,1.6837913990020752,1.7351657152175903,1.6324172019958496,1.7694151401519775,1.8721636533737183,1.5810428857803345,1.4782943725585938,1.2727973461151123,1.8036646842956543,1.6152924299240112,1.2727973461151123,1.7009161710739136,1.6837913990020752,1.4269200563430786,1.6495418548583984,1.718040943145752,1.5296686887741089,1.6495418548583984,1.3584210872650146,1.4097954034805298,1.324171543121338,1.18717360496521,1.1529240608215332,1.1529240608215332,1.0159260034561157,0.9816765189170837,0.6220566630363464,-0.028683962300419807,-0.08005822449922562,1.2214230298995972,1.6495418548583984,1.718040943145752,1.6666666269302368,1.906413197517395,1.837914228439331,1.9749122858047485,1.8036646842956543,1.7351657152175903,1.444044828414917,1.3926706314086914],[1.8721636533737183,1.8892884254455566,1.7522904872894287,1.7694151401519775,1.6324172019958496,1.906413197517395,1.8207894563674927,1.7694151401519775,1.9920369386672974,1.906413197517395,1.9406627416610718,2.1461598873138428,1.9920369386672974,1.8207894563674927,1.5296686887741089,1.5296686887741089,1.6324172019958496,1.2042982578277588,1.444044828414917,1.5296686887741089,1.3584210872650146,1.6152924299240112,1.8550390005111694,2.0776607990264893,2.0776607990264893,2.248908281326294,2.1975340843200684,2.231783628463745,2.1804091930389404,2.0605359077453613,2.111910343170166,2.231783628463745,2.1632845401763916,2.1632845401763916,2.1461598873138428,2.129034996032715,2.129034996032715,1.906413197517395,2.248908281326294,2.0605359077453613,2.0262866020202637,2.129034996032715,2.0605359077453613,2.1804091930389404,2.0262866020202637,2.0091617107391357,2.094785451889038,2.0434112548828125,2.1632845401763916,1.786539912223816,2.0091617107391357,1.837914228439331,2.1461598873138428,1.9577875137329102,1.9749122858047485,2.129034996032715,2.0434112548828125,1.9920369386672974,2.129034996032715,2.248908281326294,1.8207894563674927,2.0091617107391357,2.0605359077453613,1.8550390005111694,2.094785451889038,2.248908281326294,2.248908281326294,2.1632845401763916,2.0434112548828125,2.248908281326294,1.7522904872894287,2.0434112548828125,2.1632845401763916,2.248908281326294,1.9577875137329102,1.9920369386672974,2.1975340843200684,2.248908281326294,2.1975340843200684,1.8892884254455566,2.094785451889038,2.0091617107391357,2.1804091930389404,2.231783628463745,1.9920369386672974,1.9749122858047485,2.248908281326294,1.9920369386672974,2.0776607990264893,2.094785451889038,2.129034996032715,2.0091617107391357,1.837914228439331,1.9749122858047485,2.0262866020202637,2.248908281326294,2.214658737182617,1.9577875137329102,2.231783628463745,2.0434112548828125,2.0776607990264893,1.8207894563674927,1.7351657152175903,1.9577875137329102,1.9406627416610718,1.9577875137329102,1.8721636533737183,2.0434112548828125,2.0434112548828125,2.0091617107391357,1.8207894563674927,1.8721636533737183,2.0262866020202637,1.906413197517395,1.9920369386672974,2.214658737182617,2.1804091930389404,1.9235379695892334,2.0776607990264893,1.9577875137329102,2.1804091930389404,2.1975340843200684,1.837914228439331,1.9406627416610718,1.8892884254455566,1.8036646842956543,1.444044828414917,2.0434112548828125,1.8036646842956543,2.0434112548828125,2.0605359077453613,1.9749122858047485,2.1632845401763916,1.837914228439331,2.094785451889038,2.129034996032715,1.9406627416610718,2.1804091930389404,2.0605359077453613,1.718040943145752,2.0776607990264893,2.0776607990264893,2.111910343170166,1.9920369386672974,2.1461598873138428,2.1975340843200684,2.0434112548828125,1.9749122858047485,2.0434112548828125,2.0262866020202637,1.837914228439331,2.1461598873138428,1.8721636533737183,2.1632845401763916,1.6666666269302368,2.0091617107391357,2.111910343170166,2.0091617107391357,2.0776607990264893,1.7694151401519775,2.0776607990264893,2.0434112548828125,2.1461598873138428,1.9749122858047485,2.0091617107391357,1.8036646842956543,1.786539912223816,2.0776607990264893,1.7351657152175903,1.906413197517395,1.8207894563674927,1.786539912223816,1.8892884254455566,1.8550390005111694,1.718040943145752,1.9577875137329102,2.0262866020202637,1.8207894563674927,2.1975340843200684,1.7351657152175903,1.6152924299240112,1.8721636533737183,1.8550390005111694,1.6837913990020752,1.8721636533737183,1.7522904872894287,1.5981676578521729,1.8207894563674927,1.8036646842956543,1.8207894563674927,1.3584210872650146,1.6837913990020752,1.6324172019958496,1.6837913990020752,1.563918113708496,2.1461598873138428,1.5125439167022705,1.5810428857803345,1.7522904872894287,1.4782943725585938,1.4097954034805298,1.4782943725585938,1.444044828414917,1.307046890258789,0.7761794924736023,1.4097954034805298,1.2385478019714355,0.9816765189170837,0.9816765189170837,0.6391814351081848,0.8104289770126343,0.36518537998199463,-0.18280674517154694,0.8446784615516663,1.4954191446304321,1.3412963151931763,1.5296686887741089,1.6324172019958496,1.8892884254455566,1.5125439167022705,1.5981676578521729,1.4097954034805298,1.2214230298995972,0.9645517468452454],[1.7522904872894287,1.7009161710739136,1.6666666269302368,1.6666666269302368,1.5467933416366577,1.7522904872894287,1.8207894563674927,1.7522904872894287,1.906413197517395,2.0091617107391357,2.0434112548828125,1.8892884254455566,1.7522904872894287,1.9235379695892334,1.906413197517395,1.6666666269302368,1.8550390005111694,1.4954191446304321,1.4954191446304321,1.6837913990020752,1.563918113708496,1.6666666269302368,1.718040943145752,1.906413197517395,2.214658737182617,2.0262866020202637,2.1461598873138428,2.111910343170166,2.1461598873138428,2.1461598873138428,2.231783628463745,2.0605359077453613,2.248908281326294,2.129034996032715,2.0605359077453613,2.129034996032715,2.214658737182617,2.111910343170166,2.094785451889038,2.1804091930389404,2.111910343170166,2.0262866020202637,2.0434112548828125,2.1461598873138428,2.0605359077453613,2.1461598873138428,1.906413197517395,1.718040943145752,2.0091617107391357,2.111910343170166,1.7009161710739136,1.9577875137329102,2.094785451889038,2.231783628463745,2.231783628463745,2.248908281326294,2.0776607990264893,1.9577875137329102,1.8892884254455566,2.0605359077453613,1.9577875137329102,1.9406627416610718,2.111910343170166,2.0262866020202637,2.0262866020202637,2.214658737182617,1.9577875137329102,2.0605359077453613,2.0262866020202637,1.8036646842956543,2.248908281326294,2.0434112548828125,2.0605359077453613,1.9920369386672974,1.8207894563674927,1.9920369386672974,2.0434112548828125,1.8892884254455566,2.1804091930389404,2.0262866020202637,1.9749122858047485,2.0605359077453613,1.9920369386672974,1.9920369386672974,2.1461598873138428,2.1804091930389404,2.0605359077453613,1.8892884254455566,2.214658737182617,2.248908281326294,2.0605359077453613,1.9920369386672974,1.906413197517395,2.1975340843200684,2.1975340843200684,1.9577875137329102,2.248908281326294,1.8721636533737183,1.9577875137329102,2.0091617107391357,1.837914228439331,1.8892884254455566,2.094785451889038,2.1632845401763916,2.111910343170166,2.0434112548828125,1.9577875137329102,1.9406627416610718,1.8036646842956543,2.0091617107391357,1.7694151401519775,2.0434112548828125,2.129034996032715,2.094785451889038,2.1804091930389404,2.0262866020202637,2.0091617107391357,1.9749122858047485,1.6324172019958496,1.8550390005111694,2.111910343170166,2.111910343170166,2.0262866020202637,1.9920369386672974,1.718040943145752,1.837914228439331,1.8721636533737183,1.906413197517395,1.906413197517395,1.9920369386672974,2.0091617107391357,2.1804091930389404,2.0434112548828125,1.906413197517395,1.9235379695892334,1.9577875137329102,2.129034996032715,2.0605359077453613,2.111910343170166,1.837914228439331,2.129034996032715,1.906413197517395,1.9577875137329102,1.9406627416610718,2.1461598873138428,2.1632845401763916,2.248908281326294,2.111910343170166,2.0434112548828125,2.129034996032715,2.129034996032715,2.0434112548828125,2.248908281326294,2.0091617107391357,1.837914228439331,2.214658737182617,1.8550390005111694,2.0262866020202637,2.0434112548828125,1.9406627416610718,1.5467933416366577,1.9749122858047485,1.9920369386672974,1.8721636533737183,1.8721636533737183,1.8550390005111694,1.8721636533737183,1.9406627416610718,1.906413197517395,2.0091617107391357,1.9749122858047485,1.837914228439331,1.8036646842956543,1.9749122858047485,2.248908281326294,2.0091617107391357,1.718040943145752,1.9749122858047485,1.6152924299240112,2.1461598873138428,2.0091617107391357,2.0605359077453613,1.718040943145752,1.7351657152175903,1.7351657152175903,1.6152924299240112,1.8892884254455566,1.8550390005111694,1.837914228439331,1.6666666269302368,1.6152924299240112,1.9577875137329102,1.5467933416366577,2.094785451889038,1.5810428857803345,1.2214230298995972,1.4269200563430786,1.7009161710739136,1.7522904872894287,1.718040943145752,1.2727973461151123,1.7009161710739136,1.563918113708496,1.6152924299240112,1.255672574043274,1.3584210872650146,1.3584210872650146,1.2214230298995972,1.2385478019714355,1.101549744606018,0.9474270343780518,0.6734309196472168,0.03981505334377289,0.7933042049407959,1.5467933416366577,1.4611696004867554,1.255672574043274,0.8446784615516663,1.2214230298995972,1.2385478019714355,0.7248051762580872,0.5193081498146057,0.22818733751773834,-0.3540542721748352]],[[-1.580532193183899,-1.5630252361297607,-1.492997169494629,-1.5280112028121948,-1.6155462265014648,-1.4054621458053589,-1.492997169494629,-1.5980392694473267,-1.4229692220687866,-1.6855741739273071,-1.4229692220687866,-1.4754902124404907,-1.4404761791229248,-1.3179271221160889,-1.580532193183899,-1.4229692220687866,-1.4404761791229248,-1.5980392694473267,-1.5105042457580566,-1.545518159866333,-1.4754902124404907,-1.4754902124404907,-1.3354341983795166,-1.492997169494629,-1.4229692220687866,-1.2654061317443848,-1.3179271221160889,-1.4754902124404907,-1.4229692220687866,-1.457983136177063,-1.3704482316970825,-1.5105042457580566,-1.4229692220687866,-1.4404761791229248,-1.4404761791229248,-1.2478991746902466,-1.3879551887512207,-1.3704482316970825,-1.5105042457580566,-1.3529411554336548,-1.5980392694473267,-1.5105042457580566,-1.457983136177063,-1.3704482316970825,-1.3529411554336548,-1.5280112028121948,-1.545518159866333,-1.2654061317443848,-1.3354341983795166,-1.5280112028121948,-1.4754902124404907,-1.4754902124404907,-1.3704482316970825,-1.4404761791229248,-1.4404761791229248,-1.4229692220687866,-1.3179271221160889,-1.4054621458053589,-1.4404761791229248,-1.3879551887512207,-1.4404761791229248,-1.5630252361297607,-1.3354341983795166,-1.492997169494629,-1.3529411554336548,-1.3879551887512207,-1.3704482316970825,-1.3354341983795166,-1.5105042457580566,-1.4404761791229248,-1.2478991746902466,-1.545518159866333,-1.3354341983795166,-1.3704482316970825,-1.3179271221160889,-1.3704482316970825,-1.3179271221160889,-1.3004201650619507,-1.3529411554336548,-1.4404761791229248,-1.3354341983795166,-1.580532193183899,-1.4229692220687866,-1.3704482316970825,-1.4054621458053589,-1.3879551887512207,-1.3004201650619507,-1.457983136177063,-1.0378150939941406,-1.4404761791229248,-1.3354341983795166,-1.3879551887512207,-1.3704482316970825,-1.5105042457580566,-1.3704482316970825,-1.4054621458053589,-1.4054621458053589,-1.4054621458053589,-1.2128851413726807,-1.4054621458053589,-1.3004201650619507,-1.3354341983795166,-1.4054621458053589,-1.4404761791229248,-1.6855741739273071,-1.2829132080078125,-1.5105042457580566,-1.4754902124404907,-1.4229692220687866,-1.5630252361297607,-1.633053183555603,-1.545518159866333,-1.492997169494629,-1.2654061317443848,-1.457983136177063,-1.5105042457580566,-1.5630252361297607,-1.4054621458053589,-1.580532193183899,-1.545518159866333,-1.4054621458053589,-1.580532193183899,-1.5280112028121948,-1.6155462265014648,-1.755602240562439,-1.457983136177063,-1.5630252361297607,-1.5630252361297607,-1.668067216873169,-1.580532193183899,-1.5105042457580566,-1.808123230934143,-1.5980392694473267,-1.6505602598190308,-1.492997169494629,-1.668067216873169,-1.6855741739273071,-1.720588207244873,-1.633053183555603,-1.633053183555603,-1.6855741739273071,-1.5980392694473267,-1.668067216873169,-1.7906162738800049,-1.7731091976165771,-1.755602240562439,-1.7906162738800049,-1.9131652116775513,-1.8256303071975708,-1.668067216873169,-1.755602240562439,-1.8606442213058472,-1.7906162738800049,-1.7906162738800049,-1.7030812501907349,-1.8606442213058472,-1.8256303071975708,-1.808123230934143,-1.9131652116775513,-1.8256303071975708,-1.878151297569275,-1.755602240562439,-1.7906162738800049,-1.755602240562439,-1.8256303071975708,-1.8606442213058472,-1.843137264251709,-1.878151297569275,-1.7731091976165771,-1.878151297569275,-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-2.018207311630249,-2.018207311630249,-1.895658254623413,-1.965686321258545,-1.878151297569275,-1.895658254623413,-1.9131652116775513,-1.8606442213058472,-1.808123230934143,-1.983193278312683,-1.7906162738800049,-1.930672287940979,-1.930672287940979,-1.755602240562439,-1.878151297569275,-1.8256303071975708,-1.6505602598190308,-1.7906162738800049,-1.8256303071975708,-1.6855741739273071,-1.6855741739273071,-1.843137264251709,-1.6505602598190308,-1.6505602598190308,-1.633053183555603,-1.7731091976165771,-1.720588207244873,-1.7731091976165771,-1.7731091976165771,-1.7380952835083008,-1.6505602598190308,-1.7906162738800049,-1.6505602598190308,-1.843137264251709,-1.668067216873169,-1.878151297569275,-1.633053183555603,-1.7380952835083008,-1.5980392694473267,-1.895658254623413,-1.8606442213058472,-1.668067216873169,-1.6855741739273071,-1.878151297569275,-1.7731091976165771,-1.7380952835083008,-1.7906162738800049,-1.8256303071975708,-1.7906162738800049,-1.755602240562439,-1.7380952835083008],[-1.4229692220687866,-1.6155462265014648,-1.457983136177063,-1.4229692220687866,-1.4229692220687866,-1.6155462265014648,-1.4754902124404907,-1.457983136177063,-1.457983136177063,-1.5280112028121948,-1.457983136177063,-1.3529411554336548,-1.3179271221160889,-1.3179271221160889,-1.2478991746902466,-1.3529411554336548,-1.633053183555603,-1.2829132080078125,-1.457983136177063,-1.3879551887512207,-1.3529411554336548,-1.4754902124404907,-1.5105042457580566,-1.4229692220687866,-1.2829132080078125,-1.457983136177063,-1.5280112028121948,-1.4054621458053589,-1.457983136177063,-1.3004201650619507,-1.4054621458053589,-1.2829132080078125,-1.545518159866333,-1.4054621458053589,-1.457983136177063,-1.3354341983795166,-1.3179271221160889,-1.3354341983795166,-1.3704482316970825,-1.4404761791229248,-1.4054621458053589,-1.457983136177063,-1.3354341983795166,-1.457983136177063,-1.492997169494629,-1.3529411554336548,-1.6505602598190308,-1.3179271221160889,-1.3704482316970825,-1.3354341983795166,-1.3529411554336548,-1.580532193183899,-1.3704482316970825,-1.3179271221160889,-1.5105042457580566,-1.3354341983795166,-1.5280112028121948,-1.3179271221160889,-1.1253501176834106,-1.2654061317443848,-1.3879551887512207,-1.1253501176834106,-1.2478991746902466,-1.1253501176834106,-1.3004201650619507,-1.4229692220687866,-1.2478991746902466,-1.5105042457580566,-1.4054621458053589,-1.4229692220687866,-1.2128851413726807,-1.2654061317443848,-1.2829132080078125,-1.3704482316970825,-1.2654061317443848,-1.2303920984268188,-1.1603641510009766,-1.1778711080551147,-1.1778711080551147,-1.3354341983795166,-1.3704482316970825,-1.3179271221160889,-1.1953781843185425,-1.2303920984268188,-1.2654061317443848,-1.4404761791229248,-1.580532193183899,-1.4754902124404907,-1.5105042457580566,-1.4229692220687866,-1.2654061317443848,-1.457983136177063,-1.2829132080078125,-1.3179271221160889,-1.3529411554336548,-1.3179271221160889,-1.2128851413726807,-1.4054621458053589,-1.3179271221160889,-1.3529411554336548,-1.4404761791229248,-1.2829132080078125,-1.3179271221160889,-1.3179271221160889,-1.5980392694473267,-1.4054621458053589,-1.3004201650619507,-1.3879551887512207,-1.3354341983795166,-1.4404761791229248,-1.3879551887512207,-1.5105042457580566,-1.492997169494629,-1.5630252361297607,-1.492997169494629,-1.3179271221160889,-1.4054621458053589,-1.492997169494629,-1.5105042457580566,-1.457983136177063,-1.5280112028121948,-1.5630252361297607,-1.457983136177063,-1.5105042457580566,-1.6855741739273071,-1.4054621458053589,-1.545518159866333,-1.4754902124404907,-1.5630252361297607,-1.7030812501907349,-1.5980392694473267,-1.5280112028121948,-1.545518159866333,-1.4754902124404907,-1.4054621458053589,-1.6855741739273071,-1.755602240562439,-1.5630252361297607,-1.7731091976165771,-1.8256303071975708,-1.6155462265014648,-1.843137264251709,-1.7731091976165771,-1.7030812501907349,-1.843137264251709,-1.8256303071975708,-1.843137264251709,-1.6855741739273071,-1.6505602598190308,-1.720588207244873,-1.808123230934143,-1.7030812501907349,-1.843137264251709,-1.755602240562439,-1.8256303071975708,-1.720588207244873,-1.878151297569275,-1.808123230934143,-1.7906162738800049,-1.7380952835083008,-1.808123230934143,-1.808123230934143,-1.7731091976165771,-1.808123230934143,-1.7906162738800049,-1.8606442213058472,-1.7731091976165771,-1.9131652116775513,-1.965686321258545,-1.843137264251709,-1.983193278312683,-2.0357143878936768,-2.0357143878936768,-1.9131652116775513,-2.018207311630249,-1.895658254623413,-1.8256303071975708,-1.9481792449951172,-1.878151297569275,-1.983193278312683,-1.8606442213058472,-1.7906162738800049,-1.808123230934143,-1.668067216873169,-1.8606442213058472,-1.7380952835083008,-1.755602240562439,-1.7731091976165771,-1.7731091976165771,-1.5630252361297607,-1.7380952835083008,-1.7731091976165771,-1.7030812501907349,-1.6505602598190308,-1.7731091976165771,-1.6855741739273071,-1.580532193183899,-1.720588207244873,-1.7380952835083008,-1.8256303071975708,-1.7030812501907349,-1.6855741739273071,-1.755602240562439,-1.808123230934143,-1.7731091976165771,-1.7731091976165771,-1.843137264251709,-1.633053183555603,-1.8606442213058472,-1.6505602598190308,-1.6855741739273071,-1.720588207244873,-1.6505602598190308,-1.7030812501907349,-1.668067216873169,-1.8256303071975708,-1.7906162738800049,-1.7380952835083008,-1.7380952835083008,-1.843137264251709,-1.6855741739273071,-1.755602240562439,-1.720588207244873,-1.6505602598190308],[-1.7030812501907349,-1.6155462265014648,-1.6505602598190308,-1.580532193183899,-1.4404761791229248,-1.4229692220687866,-1.492997169494629,-1.5980392694473267,-1.4404761791229248,-1.4054621458053589,-1.5280112028121948,-1.457983136177063,-1.3704482316970825,-1.4404761791229248,-1.5630252361297607,-1.3179271221160889,-1.3354341983795166,-1.5280112028121948,-1.457983136177063,-1.2654061317443848,-1.4229692220687866,-1.2654061317443848,-1.4054621458053589,-1.3179271221160889,-1.3879551887512207,-1.4054621458053589,-1.3704482316970825,-1.4754902124404907,-1.5280112028121948,-1.457983136177063,-1.5105042457580566,-1.4404761791229248,-1.3354341983795166,-1.3529411554336548,-1.2829132080078125,-1.3354341983795166,-1.3354341983795166,-1.3529411554336548,-1.3879551887512207,-1.3004201650619507,-1.3529411554336548,-1.3529411554336548,-1.4754902124404907,-1.4054621458053589,-1.3354341983795166,-1.3179271221160889,-1.3004201650619507,-1.3529411554336548,-1.2303920984268188,-1.2478991746902466,-1.3704482316970825,-1.3529411554336548,-1.633053183555603,-1.3179271221160889,-1.3704482316970825,-1.3354341983795166,-1.5105042457580566,-1.3354341983795166,-1.2829132080078125,-1.1253501176834106,-1.3004201650619507,-1.2654061317443848,-1.2829132080078125,-1.2654061317443848,-1.3529411554336548,-1.1428571939468384,-1.4404761791229248,-1.5280112028121948,-1.4404761791229248,-1.2654061317443848,-1.5105042457580566,-1.492997169494629,-1.3354341983795166,-1.3354341983795166,-1.3879551887512207,-1.3704482316970825,-1.2654061317443848,-1.2478991746902466,-1.3179271221160889,-1.3704482316970825,-1.3529411554336548,-1.3004201650619507,-1.4229692220687866,-1.492997169494629,-1.4229692220687866,-1.3704482316970825,-1.3004201650619507,-1.3704482316970825,-1.2829132080078125,-1.3004201650619507,-1.3179271221160889,-1.2303920984268188,-1.4404761791229248,-1.3004201650619507,-1.2829132080078125,-1.457983136177063,-1.3354341983795166,-1.545518159866333,-1.1428571939468384,-1.2303920984268188,-1.3354341983795166,-1.4054621458053589,-1.2829132080078125,-1.5630252361297607,-1.492997169494629,-1.5630252361297607,-1.5280112028121948,-1.3529411554336548,-1.4404761791229248,-1.2829132080078125,-1.5280112028121948,-1.2829132080078125,-1.5630252361297607,-1.4404761791229248,-1.4404761791229248,-1.4754902124404907,-1.4754902124404907,-1.4404761791229248,-1.4229692220687866,-1.3704482316970825,-1.492997169494629,-1.492997169494629,-1.545518159866333,-1.6505602598190308,-1.4754902124404907,-1.5280112028121948,-1.5280112028121948,-1.5980392694473267,-1.4754902124404907,-1.4404761791229248,-1.492997169494629,-1.5280112028121948,-1.580532193183899,-1.5280112028121948,-1.5980392694473267,-1.5630252361297607,-1.808123230934143,-1.7906162738800049,-1.7380952835083008,-1.5630252361297607,-1.7380952835083008,-1.7030812501907349,-1.6505602598190308,-1.6855741739273071,-1.7380952835083008,-1.7906162738800049,-1.7030812501907349,-1.720588207244873,-1.843137264251709,-1.7380952835083008,-1.7030812501907349,-1.7906162738800049,-1.878151297569275,-1.755602240562439,-1.755602240562439,-1.930672287940979,-1.668067216873169,-1.720588207244873,-1.7731091976165771,-1.755602240562439,-1.7906162738800049,-1.8606442213058472,-1.843137264251709,-1.7731091976165771,-1.7731091976165771,-1.755602240562439,-1.930672287940979,-1.755602240562439,-2.0357143878936768,-2.0007002353668213,-2.0357143878936768,-2.0357143878936768,-1.983193278312683,-1.8256303071975708,-1.930672287940979,-2.018207311630249,-1.878151297569275,-1.7906162738800049,-1.930672287940979,-1.878151297569275,-1.8606442213058472,-1.8256303071975708,-1.6855741739273071,-2.0357143878936768,-1.843137264251709,-1.7731091976165771,-1.808123230934143,-1.7380952835083008,-1.7906162738800049,-1.808123230934143,-1.7380952835083008,-1.720588207244873,-1.755602240562439,-1.633053183555603,-1.668067216873169,-1.6505602598190308,-1.5980392694473267,-1.7731091976165771,-1.5980392694473267,-1.668067216873169,-1.720588207244873,-1.7906162738800049,-1.808123230934143,-1.668067216873169,-1.720588207244873,-1.7380952835083008,-1.720588207244873,-1.7731091976165771,-1.7030812501907349,-1.7731091976165771,-1.6155462265014648,-1.895658254623413,-1.720588207244873,-1.808123230934143,-1.8256303071975708,-1.930672287940979,-1.8256303071975708,-1.930672287940979,-1.9481792449951172,-1.5280112028121948,-1.8606442213058472,-1.8256303071975708,-1.8256303071975708,-1.9131652116775513],[-1.5280112028121948,-1.5280112028121948,-1.3704482316970825,-1.492997169494629,-1.668067216873169,-1.4054621458053589,-1.580532193183899,-1.545518159866333,-1.545518159866333,-1.4404761791229248,-1.580532193183899,-1.580532193183899,-1.5280112028121948,-1.492997169494629,-1.3004201650619507,-1.4229692220687866,-1.4404761791229248,-1.4404761791229248,-1.3704482316970825,-1.2128851413726807,-1.3354341983795166,-1.4054621458053589,-1.4054621458053589,-1.4054621458053589,-1.492997169494629,-1.580532193183899,-1.4404761791229248,-1.4754902124404907,-1.545518159866333,-1.3529411554336548,-1.4229692220687866,-1.5630252361297607,-1.457983136177063,-1.5630252361297607,-1.3879551887512207,-1.1953781843185425,-1.3179271221160889,-1.4054621458053589,-1.3354341983795166,-1.1253501176834106,-1.492997169494629,-1.668067216873169,-1.2654061317443848,-1.4404761791229248,-1.2829132080078125,-1.5105042457580566,-1.4404761791229248,-1.457983136177063,-1.492997169494629,-1.2654061317443848,-1.3879551887512207,-1.4754902124404907,-1.3179271221160889,-1.3879551887512207,-1.2478991746902466,-1.2478991746902466,-1.3179271221160889,-1.3704482316970825,-1.2829132080078125,-1.4229692220687866,-1.4229692220687866,-1.3004201650619507,-1.6155462265014648,-1.1778711080551147,-1.4404761791229248,-1.3529411554336548,-1.4229692220687866,-1.2478991746902466,-1.4229692220687866,-1.3879551887512207,-1.2654061317443848,-1.1778711080551147,-1.3354341983795166,-1.3529411554336548,-1.1428571939468384,-1.2654061317443848,-1.2829132080078125,-1.3879551887512207,-1.3004201650619507,-1.2303920984268188,-1.5105042457580566,-1.3179271221160889,-1.3704482316970825,-1.2128851413726807,-1.3179271221160889,-1.3704482316970825,-1.2829132080078125,-1.3179271221160889,-1.4404761791229248,-1.3704482316970825,-1.4229692220687866,-1.1778711080551147,-1.3004201650619507,-1.3179271221160889,-1.2128851413726807,-1.2829132080078125,-1.3354341983795166,-1.2829132080078125,-1.3529411554336548,-1.3529411554336548,-1.3004201650619507,-1.3879551887512207,-1.492997169494629,-1.4054621458053589,-1.3529411554336548,-1.4404761791229248,-1.5980392694473267,-1.4054621458053589,-1.4754902124404907,-1.5980392694473267,-1.5105042457580566,-1.545518159866333,-1.4229692220687866,-1.3529411554336548,-1.3354341983795166,-1.4229692220687866,-1.4229692220687866,-1.5105042457580566,-1.3354341983795166,-1.6505602598190308,-1.4754902124404907,-1.545518159866333,-1.5280112028121948,-1.580532193183899,-1.457983136177063,-1.5630252361297607,-1.4754902124404907,-1.5280112028121948,-1.4754902124404907,-1.4054621458053589,-1.720588207244873,-1.545518159866333,-1.720588207244873,-1.755602240562439,-1.633053183555603,-1.5630252361297607,-1.8256303071975708,-1.720588207244873,-1.668067216873169,-1.668067216873169,-1.6855741739273071,-1.6155462265014648,-1.878151297569275,-1.7906162738800049,-1.755602240562439,-1.7030812501907349,-1.6505602598190308,-1.7030812501907349,-1.755602240562439,-1.878151297569275,-1.6855741739273071,-1.808123230934143,-1.6155462265014648,-1.755602240562439,-1.8606442213058472,-1.7030812501907349,-1.720588207244873,-1.7906162738800049,-1.7380952835083008,-1.7906162738800049,-1.808123230934143,-1.7906162738800049,-1.7380952835083008,-1.808123230934143,-1.878151297569275,-1.7380952835083008,-1.8606442213058472,-1.9481792449951172,-2.0357143878936768,-1.965686321258545,-1.965686321258545,-2.0357143878936768,-1.9481792449951172,-1.8606442213058472,-1.878151297569275,-1.930672287940979,-1.965686321258545,-1.9131652116775513,-1.843137264251709,-1.808123230934143,-1.8256303071975708,-1.808123230934143,-1.6505602598190308,-1.7731091976165771,-1.668067216873169,-1.633053183555603,-1.808123230934143,-1.808123230934143,-1.808123230934143,-1.8256303071975708,-1.7030812501907349,-1.808123230934143,-1.7030812501907349,-1.668067216873169,-1.6505602598190308,-1.755602240562439,-1.7030812501907349,-1.7731091976165771,-1.7906162738800049,-1.668067216873169,-1.8606442213058472,-1.7380952835083008,-1.6855741739273071,-1.6505602598190308,-1.7731091976165771,-1.668067216873169,-1.633053183555603,-1.7731091976165771,-1.668067216873169,-1.843137264251709,-1.7731091976165771,-1.6155462265014648,-1.720588207244873,-1.8256303071975708,-1.8256303071975708,-1.720588207244873,-1.6855741739273071,-1.755602240562439,-1.720588207244873,-1.668067216873169,-1.878151297569275,-1.843137264251709,-1.7731091976165771,-1.668067216873169],[-1.580532193183899,-1.7731091976165771,-1.4404761791229248,-1.633053183555603,-1.5280112028121948,-1.492997169494629,-1.668067216873169,-1.5105042457580566,-1.580532193183899,-1.4054621458053589,-1.4754902124404907,-1.3879551887512207,-1.4754902124404907,-1.3879551887512207,-1.3354341983795166,-1.3879551887512207,-1.3704482316970825,-1.1953781843185425,-1.3354341983795166,-1.4054621458053589,-1.1603641510009766,-1.3704482316970825,-1.4229692220687866,-1.3879551887512207,-1.3354341983795166,-1.580532193183899,-1.4229692220687866,-1.3704482316970825,-1.580532193183899,-1.5105042457580566,-1.4229692220687866,-1.5105042457580566,-1.2128851413726807,-1.6155462265014648,-1.2829132080078125,-1.2478991746902466,-1.2128851413726807,-1.4054621458053589,-1.3704482316970825,-1.1778711080551147,-1.6505602598190308,-1.1953781843185425,-1.2478991746902466,-1.2829132080078125,-1.4229692220687866,-1.492997169494629,-1.3704482316970825,-1.4054621458053589,-1.3879551887512207,-1.2128851413726807,-1.2478991746902466,-1.2654061317443848,-1.6855741739273071,-1.3354341983795166,-1.2128851413726807,-1.3704482316970825,-1.1253501176834106,-1.2654061317443848,-1.457983136177063,-1.2303920984268188,-1.1778711080551147,-1.3529411554336548,-1.4229692220687866,-1.2478991746902466,-1.2654061317443848,-1.3879551887512207,-1.2303920984268188,-1.2303920984268188,-1.2128851413726807,-1.3529411554336548,-1.545518159866333,-1.3179271221160889,-1.3179271221160889,-1.3529411554336548,-1.3004201650619507,-1.3879551887512207,-1.3354341983795166,-1.4229692220687866,-1.3529411554336548,-1.4404761791229248,-1.6155462265014648,-1.5105042457580566,-1.0903360843658447,-1.3004201650619507,-1.457983136177063,-1.3354341983795166,-1.2478991746902466,-1.3354341983795166,-1.3704482316970825,-1.3529411554336548,-1.3179271221160889,-1.4054621458053589,-1.457983136177063,-1.4054621458053589,-1.2303920984268188,-1.4054621458053589,-1.3004201650619507,-1.1603641510009766,-1.2478991746902466,-1.4404761791229248,-1.492997169494629,-1.492997169494629,-1.5105042457580566,-1.5630252361297607,-1.5630252361297607,-1.457983136177063,-1.5630252361297607,-1.3879551887512207,-1.6155462265014648,-1.492997169494629,-1.3354341983795166,-1.5280112028121948,-1.4054621458053589,-1.4404761791229248,-1.492997169494629,-1.5280112028121948,-1.457983136177063,-1.5105042457580566,-1.3879551887512207,-1.4754902124404907,-1.668067216873169,-1.5630252361297607,-1.5280112028121948,-1.457983136177063,-1.4054621458053589,-1.6155462265014648,-1.545518159866333,-1.580532193183899,-1.4229692220687866,-1.3529411554336548,-1.668067216873169,-1.6505602598190308,-1.5630252361297607,-1.668067216873169,-1.7380952835083008,-1.7906162738800049,-1.7380952835083008,-1.7030812501907349,-1.8256303071975708,-1.7030812501907349,-1.7380952835083008,-1.5980392694473267,-1.7906162738800049,-1.7731091976165771,-1.720588207244873,-1.7906162738800049,-1.6855741739273071,-1.808123230934143,-1.755602240562439,-1.7380952835083008,-1.7906162738800049,-1.7731091976165771,-1.7380952835083008,-1.720588207244873,-1.8256303071975708,-1.6855741739273071,-1.8256303071975708,-1.808123230934143,-1.8256303071975708,-1.7030812501907349,-1.6855741739273071,-1.755602240562439,-1.7380952835083008,-1.7906162738800049,-1.808123230934143,-1.930672287940979,-1.7906162738800049,-2.0357143878936768,-1.7906162738800049,-1.965686321258545,-2.018207311630249,-2.0357143878936768,-1.983193278312683,-1.9131652116775513,-1.9131652116775513,-1.8606442213058472,-1.965686321258545,-1.930672287940979,-1.755602240562439,-1.895658254623413,-1.843137264251709,-1.930672287940979,-1.7731091976165771,-1.6855741739273071,-1.6855741739273071,-1.843137264251709,-1.6855741739273071,-1.7731091976165771,-1.720588207244873,-1.5980392694473267,-1.633053183555603,-1.720588207244873,-1.668067216873169,-1.755602240562439,-1.7030812501907349,-1.5980392694473267,-1.8256303071975708,-1.755602240562439,-1.668067216873169,-1.755602240562439,-1.6855741739273071,-1.720588207244873,-1.6155462265014648,-1.5105042457580566,-1.755602240562439,-1.6505602598190308,-1.8256303071975708,-1.6505602598190308,-1.808123230934143,-1.843137264251709,-1.895658254623413,-1.9481792449951172,-1.7906162738800049,-1.633053183555603,-1.7030812501907349,-1.808123230934143,-1.7906162738800049,-1.720588207244873,-1.755602240562439,-1.808123230934143,-1.7906162738800049,-1.755602240562439,-1.668067216873169,-1.7731091976165771],[-1.5980392694473267,-1.545518159866333,-1.3879551887512207,-1.6505602598190308,-1.4404761791229248,-1.5280112028121948,-1.4754902124404907,-1.580532193183899,-1.633053183555603,-1.3879551887512207,-1.5280112028121948,-1.492997169494629,-1.3354341983795166,-1.3179271221160889,-1.4054621458053589,-1.4754902124404907,-1.4754902124404907,-1.2654061317443848,-1.580532193183899,-1.3879551887512207,-1.4404761791229248,-1.4229692220687866,-1.5280112028121948,-1.4404761791229248,-1.457983136177063,-1.3879551887512207,-1.3179271221160889,-1.457983136177063,-1.492997169494629,-1.4054621458053589,-1.5280112028121948,-1.3704482316970825,-1.457983136177063,-1.4229692220687866,-1.2303920984268188,-1.3879551887512207,-1.5105042457580566,-1.3704482316970825,-1.457983136177063,-1.3179271221160889,-1.3179271221160889,-1.5280112028121948,-1.4404761791229248,-1.3179271221160889,-1.457983136177063,-1.545518159866333,-1.4054621458053589,-1.4054621458053589,-1.5280112028121948,-1.580532193183899,-1.2829132080078125,-1.5105042457580566,-1.3179271221160889,-1.3704482316970825,-1.3354341983795166,-1.5280112028121948,-1.3354341983795166,-1.457983136177063,-1.3354341983795166,-1.1428571939468384,-1.3704482316970825,-1.2654061317443848,-1.492997169494629,-1.492997169494629,-1.5105042457580566,-1.3879551887512207,-1.4054621458053589,-1.2478991746902466,-1.2478991746902466,-1.457983136177063,-1.2303920984268188,-1.4054621458053589,-1.3179271221160889,-1.2829132080078125,-1.2478991746902466,-1.4404761791229248,-1.2128851413726807,-1.2128851413726807,-1.1428571939468384,-1.4054621458053589,-1.3354341983795166,-1.1778711080551147,-1.2829132080078125,-1.492997169494629,-1.3529411554336548,-1.3354341983795166,-1.5105042457580566,-1.3529411554336548,-1.4404761791229248,-1.457983136177063,-1.545518159866333,-1.4054621458053589,-1.3179271221160889,-1.4229692220687866,-1.3704482316970825,-1.3529411554336548,-1.4229692220687866,-1.4404761791229248,-1.5280112028121948,-1.3529411554336548,-1.4754902124404907,-1.4054621458053589,-1.2478991746902466,-1.5630252361297607,-1.4229692220687866,-1.3879551887512207,-1.5105042457580566,-1.492997169494629,-1.545518159866333,-1.457983136177063,-1.633053183555603,-1.580532193183899,-1.5280112028121948,-1.4404761791229248,-1.545518159866333,-1.3354341983795166,-1.545518159866333,-1.580532193183899,-1.633053183555603,-1.6855741739273071,-1.545518159866333,-1.4404761791229248,-1.5980392694473267,-1.5630252361297607,-1.2829132080078125,-1.755602240562439,-1.580532193183899,-1.633053183555603,-1.7030812501907349,-1.7906162738800049,-1.6505602598190308,-1.7380952835083008,-1.6855741739273071,-1.720588207244873,-1.755602240562439,-1.7030812501907349,-1.720588207244873,-1.755602240562439,-1.7030812501907349,-1.7380952835083008,-1.7731091976165771,-1.8256303071975708,-1.6855741739273071,-1.7030812501907349,-1.755602240562439,-1.755602240562439,-1.8256303071975708,-1.7731091976165771,-1.895658254623413,-1.808123230934143,-1.808123230934143,-1.668067216873169,-1.6505602598190308,-1.7030812501907349,-1.668067216873169,-1.8606442213058472,-1.668067216873169,-1.7030812501907349,-1.6855741739273071,-1.6155462265014648,-1.843137264251709,-1.8256303071975708,-1.9131652116775513,-1.843137264251709,-1.755602240562439,-1.720588207244873,-2.018207311630249,-1.930672287940979,-2.018207311630249,-2.0357143878936768,-2.0357143878936768,-2.018207311630249,-1.843137264251709,-1.9481792449951172,-1.930672287940979,-1.895658254623413,-1.9481792449951172,-1.808123230934143,-1.930672287940979,-1.843137264251709,-1.7906162738800049,-1.8256303071975708,-1.895658254623413,-1.878151297569275,-1.7906162738800049,-1.633053183555603,-1.7030812501907349,-1.5980392694473267,-1.720588207244873,-1.580532193183899,-1.6855741739273071,-1.7030812501907349,-1.668067216873169,-1.8256303071975708,-1.6855741739273071,-1.6505602598190308,-1.5105042457580566,-1.580532193183899,-1.7030812501907349,-1.580532193183899,-1.755602240562439,-1.755602240562439,-1.7030812501907349,-1.7906162738800049,-1.720588207244873,-1.7906162738800049,-1.7380952835083008,-1.7731091976165771,-1.878151297569275,-1.7731091976165771,-1.720588207244873,-1.808123230934143,-1.7731091976165771,-1.6505602598190308,-1.8256303071975708,-1.720588207244873,-1.9131652116775513,-1.633053183555603,-1.8606442213058472,-1.7030812501907349,-1.7380952835083008,-1.7906162738800049,-1.7380952835083008,-1.755602240562439],[-1.6855741739273071,-1.545518159866333,-1.6505602598190308,-1.580532193183899,-1.5280112028121948,-1.5105042457580566,-1.580532193183899,-1.545518159866333,-1.545518159866333,-1.457983136177063,-1.457983136177063,-1.4054621458053589,-1.3879551887512207,-1.3179271221160889,-1.5980392694473267,-1.580532193183899,-1.3879551887512207,-1.5630252361297607,-1.457983136177063,-1.3704482316970825,-1.457983136177063,-1.3179271221160889,-1.3179271221160889,-1.4754902124404907,-1.492997169494629,-1.2654061317443848,-1.3879551887512207,-1.3529411554336548,-1.4229692220687866,-1.2478991746902466,-1.4054621458053589,-1.4054621458053589,-1.3179271221160889,-1.457983136177063,-1.3704482316970825,-1.5630252361297607,-1.4754902124404907,-1.3354341983795166,-1.5105042457580566,-1.457983136177063,-1.3004201650619507,-1.4229692220687866,-1.3879551887512207,-1.5980392694473267,-1.4229692220687866,-1.492997169494629,-1.2654061317443848,-1.3704482316970825,-1.3704482316970825,-1.3529411554336548,-1.5280112028121948,-1.4054621458053589,-1.3529411554336548,-1.3879551887512207,-1.492997169494629,-1.2478991746902466,-1.5105042457580566,-1.3004201650619507,-1.4404761791229248,-1.3879551887512207,-1.2128851413726807,-1.3529411554336548,-1.492997169494629,-1.4404761791229248,-1.3879551887512207,-1.3879551887512207,-1.4054621458053589,-1.2478991746902466,-1.3354341983795166,-1.492997169494629,-1.3704482316970825,-1.4054621458053589,-1.4229692220687866,-1.3179271221160889,-1.457983136177063,-1.3529411554336548,-1.3704482316970825,-1.3179271221160889,-1.5630252361297607,-1.3179271221160889,-1.4404761791229248,-1.3704482316970825,-1.3529411554336548,-1.4754902124404907,-1.492997169494629,-1.3179271221160889,-1.3179271221160889,-1.3704482316970825,-1.3179271221160889,-1.457983136177063,-1.6855741739273071,-1.3004201650619507,-1.4754902124404907,-1.3704482316970825,-1.4054621458053589,-1.3179271221160889,-1.5280112028121948,-1.633053183555603,-1.6855741739273071,-1.3704482316970825,-1.457983136177063,-1.3879551887512207,-1.545518159866333,-1.4404761791229248,-1.6505602598190308,-1.457983136177063,-1.492997169494629,-1.4754902124404907,-1.4229692220687866,-1.545518159866333,-1.457983136177063,-1.580532193183899,-1.5105042457580566,-1.5280112028121948,-1.5630252361297607,-1.4404761791229248,-1.5105042457580566,-1.668067216873169,-1.5105042457580566,-1.457983136177063,-1.545518159866333,-1.3879551887512207,-1.457983136177063,-1.457983136177063,-1.3179271221160889,-1.5980392694473267,-1.5630252361297607,-1.6505602598190308,-1.6505602598190308,-1.7030812501907349,-1.9481792449951172,-1.6855741739273071,-1.7731091976165771,-1.7030812501907349,-1.5980392694473267,-1.808123230934143,-1.7906162738800049,-1.6855741739273071,-1.7380952835083008,-1.7906162738800049,-1.6855741739273071,-1.720588207244873,-1.7731091976165771,-1.7906162738800049,-1.930672287940979,-1.808123230934143,-1.668067216873169,-1.7731091976165771,-1.7030812501907349,-1.808123230934143,-1.808123230934143,-1.668067216873169,-1.7380952835083008,-1.720588207244873,-1.7030812501907349,-1.668067216873169,-1.6505602598190308,-1.7731091976165771,-1.808123230934143,-1.9131652116775513,-1.843137264251709,-1.755602240562439,-1.7380952835083008,-1.7731091976165771,-1.895658254623413,-1.9131652116775513,-1.965686321258545,-1.9481792449951172,-2.0007002353668213,-2.0007002353668213,-2.0357143878936768,-1.9481792449951172,-2.0357143878936768,-1.9481792449951172,-1.983193278312683,-2.018207311630249,-1.895658254623413,-1.930672287940979,-1.895658254623413,-1.755602240562439,-1.9481792449951172,-1.808123230934143,-1.895658254623413,-1.755602240562439,-1.755602240562439,-1.808123230934143,-1.720588207244873,-1.843137264251709,-1.7731091976165771,-1.7731091976165771,-1.7906162738800049,-1.7380952835083008,-1.7731091976165771,-1.7030812501907349,-1.7380952835083008,-1.6505602598190308,-1.878151297569275,-1.7906162738800049,-1.6155462265014648,-1.6505602598190308,-1.6505602598190308,-1.7380952835083008,-1.8256303071975708,-1.720588207244873,-1.7380952835083008,-1.8256303071975708,-1.7030812501907349,-1.755602240562439,-1.7906162738800049,-1.895658254623413,-1.878151297569275,-1.808123230934143,-1.720588207244873,-1.7380952835083008,-1.9481792449951172,-1.720588207244873,-1.7030812501907349,-1.808123230934143,-1.7731091976165771,-1.8256303071975708,-1.8256303071975708,-1.668067216873169,-1.668067216873169,-1.633053183555603],[-1.843137264251709,-1.633053183555603,-1.545518159866333,-1.7380952835083008,-1.668067216873169,-1.6155462265014648,-1.4229692220687866,-1.5980392694473267,-1.4229692220687866,-1.5630252361297607,-1.668067216873169,-1.3179271221160889,-1.492997169494629,-1.492997169494629,-1.492997169494629,-1.4754902124404907,-1.3879551887512207,-1.3879551887512207,-1.5105042457580566,-1.3529411554336548,-1.5280112028121948,-1.3704482316970825,-1.3179271221160889,-1.3529411554336548,-1.3879551887512207,-1.1953781843185425,-1.668067216873169,-1.3179271221160889,-1.5280112028121948,-1.3354341983795166,-1.4229692220687866,-1.6505602598190308,-1.3879551887512207,-1.3004201650619507,-1.4754902124404907,-1.2654061317443848,-1.4754902124404907,-1.580532193183899,-1.5105042457580566,-1.3704482316970825,-1.3529411554336548,-1.4054621458053589,-1.3879551887512207,-1.5980392694473267,-1.580532193183899,-1.5105042457580566,-1.3879551887512207,-1.580532193183899,-1.457983136177063,-1.4054621458053589,-1.3004201650619507,-1.4754902124404907,-1.492997169494629,-1.4229692220687866,-1.2128851413726807,-1.3354341983795166,-1.2303920984268188,-1.2829132080078125,-1.3879551887512207,-1.3179271221160889,-1.3879551887512207,-1.3354341983795166,-1.3004201650619507,-1.3179271221160889,-1.4229692220687866,-1.2128851413726807,-1.3179271221160889,-1.2303920984268188,-1.3354341983795166,-1.3354341983795166,-1.2478991746902466,-1.3179271221160889,-1.4229692220687866,-1.3529411554336548,-1.4229692220687866,-1.4404761791229248,-1.3879551887512207,-1.3704482316970825,-1.3879551887512207,-1.4404761791229248,-1.2829132080078125,-1.2478991746902466,-1.5105042457580566,-1.4229692220687866,-1.4054621458053589,-1.4054621458053589,-1.3879551887512207,-1.4054621458053589,-1.3879551887512207,-1.4054621458053589,-1.5630252361297607,-1.4229692220687866,-1.3354341983795166,-1.545518159866333,-1.6855741739273071,-1.4229692220687866,-1.5105042457580566,-1.5980392694473267,-1.492997169494629,-1.3179271221160889,-1.457983136177063,-1.492997169494629,-1.4229692220687866,-1.4754902124404907,-1.5105042457580566,-1.4229692220687866,-1.3704482316970825,-1.4404761791229248,-1.7030812501907349,-1.580532193183899,-1.457983136177063,-1.4754902124404907,-1.5280112028121948,-1.5980392694473267,-1.492997169494629,-1.4754902124404907,-1.4229692220687866,-1.5630252361297607,-1.3354341983795166,-1.5630252361297607,-1.4754902124404907,-1.633053183555603,-1.6505602598190308,-1.492997169494629,-1.633053183555603,-1.7380952835083008,-1.895658254623413,-1.755602240562439,-1.720588207244873,-1.6505602598190308,-1.7030812501907349,-1.8606442213058472,-1.720588207244873,-1.6855741739273071,-1.6505602598190308,-1.7380952835083008,-1.8606442213058472,-1.6855741739273071,-1.808123230934143,-1.668067216873169,-1.720588207244873,-1.755602240562439,-1.7380952835083008,-1.808123230934143,-1.720588207244873,-1.8256303071975708,-1.8606442213058472,-1.755602240562439,-1.843137264251709,-1.843137264251709,-1.7906162738800049,-1.930672287940979,-1.720588207244873,-2.0007002353668213,-1.878151297569275,-1.668067216873169,-1.6505602598190308,-1.8606442213058472,-1.8256303071975708,-1.895658254623413,-1.7380952835083008,-1.895658254623413,-1.930672287940979,-1.965686321258545,-2.0007002353668213,-2.0357143878936768,-2.0357143878936768,-2.0007002353668213,-1.983193278312683,-1.965686321258545,-2.0357143878936768,-2.0357143878936768,-1.9481792449951172,-1.965686321258545,-2.018207311630249,-1.8606442213058472,-1.9131652116775513,-1.9131652116775513,-1.7906162738800049,-1.808123230934143,-1.808123230934143,-1.7906162738800049,-1.720588207244873,-1.720588207244873,-1.6505602598190308,-1.668067216873169,-1.6855741739273071,-1.7380952835083008,-1.7731091976165771,-1.720588207244873,-1.7731091976165771,-1.6505602598190308,-1.720588207244873,-1.7030812501907349,-1.6505602598190308,-1.720588207244873,-1.808123230934143,-1.6855741739273071,-1.755602240562439,-1.5980392694473267,-1.5630252361297607,-1.6855741739273071,-1.7906162738800049,-1.7731091976165771,-1.755602240562439,-1.755602240562439,-1.8256303071975708,-1.895658254623413,-1.843137264251709,-1.965686321258545,-1.720588207244873,-1.720588207244873,-1.930672287940979,-1.9131652116775513,-1.633053183555603,-1.7030812501907349,-1.7380952835083008,-1.808123230934143,-1.930672287940979,-1.7731091976165771,-1.808123230934143,-1.843137264251709,-1.7906162738800049,-1.878151297569275],[-1.6855741739273071,-1.580532193183899,-1.7906162738800049,-1.668067216873169,-1.6155462265014648,-1.6855741739273071,-1.7030812501907349,-1.4404761791229248,-1.6855741739273071,-1.492997169494629,-1.5105042457580566,-1.5280112028121948,-1.633053183555603,-1.633053183555603,-1.545518159866333,-1.4754902124404907,-1.457983136177063,-1.6155462265014648,-1.2829132080078125,-1.1953781843185425,-1.580532193183899,-1.3529411554336548,-1.2829132080078125,-1.4754902124404907,-1.580532193183899,-1.3704482316970825,-1.3179271221160889,-1.3704482316970825,-1.3529411554336548,-1.5105042457580566,-1.4754902124404907,-1.4754902124404907,-1.5630252361297607,-1.7380952835083008,-1.3529411554336548,-1.3354341983795166,-1.3529411554336548,-1.4229692220687866,-1.4229692220687866,-1.4054621458053589,-1.5630252361297607,-1.5105042457580566,-1.3879551887512207,-1.3879551887512207,-1.4754902124404907,-1.545518159866333,-1.492997169494629,-1.5980392694473267,-1.2654061317443848,-1.5630252361297607,-1.3879551887512207,-1.5105042457580566,-1.4754902124404907,-1.1953781843185425,-1.3529411554336548,-1.3529411554336548,-1.4404761791229248,-1.2128851413726807,-1.3179271221160889,-1.633053183555603,-1.2654061317443848,-1.2478991746902466,-1.3879551887512207,-1.457983136177063,-1.3179271221160889,-1.457983136177063,-1.3529411554336548,-1.457983136177063,-1.492997169494629,-1.545518159866333,-1.492997169494629,-1.4229692220687866,-1.492997169494629,-1.2829132080078125,-1.4054621458053589,-1.492997169494629,-1.4754902124404907,-1.4754902124404907,-1.2478991746902466,-1.3179271221160889,-1.4054621458053589,-1.4054621458053589,-1.3704482316970825,-1.2654061317443848,-1.4404761791229248,-1.4229692220687866,-1.5280112028121948,-1.4229692220687866,-1.3529411554336548,-1.4054621458053589,-1.4229692220687866,-1.5280112028121948,-1.4754902124404907,-1.4404761791229248,-1.4754902124404907,-1.2654061317443848,-1.4229692220687866,-1.5105042457580566,-1.4229692220687866,-1.5980392694473267,-1.5105042457580566,-1.2829132080078125,-1.6155462265014648,-1.720588207244873,-1.3879551887512207,-1.4754902124404907,-1.4754902124404907,-1.6155462265014648,-1.545518159866333,-1.4404761791229248,-1.4754902124404907,-1.4229692220687866,-1.545518159866333,-1.5280112028121948,-1.4754902124404907,-1.4754902124404907,-1.5280112028121948,-1.5105042457580566,-1.580532193183899,-1.668067216873169,-1.580532193183899,-1.7030812501907349,-1.6155462265014648,-1.7030812501907349,-1.6855741739273071,-1.6155462265014648,-1.755602240562439,-1.720588207244873,-1.6155462265014648,-1.668067216873169,-1.720588207244873,-1.878151297569275,-1.633053183555603,-1.8606442213058472,-1.8606442213058472,-1.8606442213058472,-1.720588207244873,-1.7906162738800049,-1.720588207244873,-1.808123230934143,-1.755602240562439,-1.930672287940979,-1.895658254623413,-1.668067216873169,-1.808123230934143,-1.895658254623413,-1.8606442213058472,-1.9131652116775513,-1.6855741739273071,-1.7731091976165771,-1.755602240562439,-1.755602240562439,-1.8256303071975708,-1.878151297569275,-1.7030812501907349,-1.8256303071975708,-1.9481792449951172,-1.755602240562439,-1.668067216873169,-1.8256303071975708,-1.9131652116775513,-1.9131652116775513,-1.965686321258545,-1.9481792449951172,-1.965686321258545,-2.0357143878936768,-1.983193278312683,-2.0007002353668213,-2.0357143878936768,-2.018207311630249,-1.9481792449951172,-2.0357143878936768,-1.878151297569275,-1.983193278312683,-1.9131652116775513,-2.018207311630249,-1.8606442213058472,-1.8606442213058472,-1.7731091976165771,-1.6855741739273071,-1.8256303071975708,-1.9131652116775513,-1.755602240562439,-1.720588207244873,-1.843137264251709,-1.6855741739273071,-1.633053183555603,-1.6855741739273071,-1.755602240562439,-1.755602240562439,-1.808123230934143,-1.5630252361297607,-1.7731091976165771,-1.633053183555603,-1.6505602598190308,-1.6855741739273071,-1.7030812501907349,-1.668067216873169,-1.7731091976165771,-1.7030812501907349,-1.6505602598190308,-1.668067216873169,-1.7030812501907349,-1.633053183555603,-1.580532193183899,-1.808123230934143,-1.720588207244873,-1.668067216873169,-1.895658254623413,-1.8256303071975708,-1.7380952835083008,-1.7906162738800049,-1.7906162738800049,-1.7731091976165771,-1.720588207244873,-1.878151297569275,-1.8256303071975708,-1.7906162738800049,-1.7731091976165771,-1.878151297569275,-1.7906162738800049,-1.6505602598190308,-1.895658254623413,-1.580532193183899],[-1.878151297569275,-1.7030812501907349,-1.633053183555603,-1.6855741739273071,-1.580532193183899,-1.5630252361297607,-1.6155462265014648,-1.6155462265014648,-1.5280112028121948,-1.580532193183899,-1.5980392694473267,-1.5105042457580566,-1.580532193183899,-1.5630252361297607,-1.5280112028121948,-1.6155462265014648,-1.7380952835083008,-1.4054621458053589,-1.6505602598190308,-1.5630252361297607,-1.3879551887512207,-1.4404761791229248,-1.2654061317443848,-1.4404761791229248,-1.5280112028121948,-1.545518159866333,-1.3354341983795166,-1.457983136177063,-1.5105042457580566,-1.4229692220687866,-1.4404761791229248,-1.3354341983795166,-1.5630252361297607,-1.492997169494629,-1.5980392694473267,-1.3704482316970825,-1.2303920984268188,-1.3704482316970825,-1.3529411554336548,-1.4229692220687866,-1.755602240562439,-1.545518159866333,-1.7380952835083008,-1.4229692220687866,-1.4229692220687866,-1.4054621458053589,-1.457983136177063,-1.5105042457580566,-1.4229692220687866,-1.4054621458053589,-1.3004201650619507,-1.5105042457580566,-1.580532193183899,-1.4229692220687866,-1.4054621458053589,-1.3879551887512207,-1.5280112028121948,-1.633053183555603,-1.3179271221160889,-1.4404761791229248,-1.3704482316970825,-1.4054621458053589,-1.4404761791229248,-1.5980392694473267,-1.633053183555603,-1.6155462265014648,-1.457983136177063,-1.4754902124404907,-1.3704482316970825,-1.6505602598190308,-1.4754902124404907,-1.3879551887512207,-1.492997169494629,-1.492997169494629,-1.3879551887512207,-1.3004201650619507,-1.492997169494629,-1.3354341983795166,-1.633053183555603,-1.3879551887512207,-1.3879551887512207,-1.492997169494629,-1.457983136177063,-1.5280112028121948,-1.580532193183899,-1.4754902124404907,-1.633053183555603,-1.6155462265014648,-1.4229692220687866,-1.3004201650619507,-1.3879551887512207,-1.5280112028121948,-1.457983136177063,-1.580532193183899,-1.4404761791229248,-1.4754902124404907,-1.2654061317443848,-1.580532193183899,-1.545518159866333,-1.4229692220687866,-1.5280112028121948,-1.4404761791229248,-1.668067216873169,-1.457983136177063,-1.4404761791229248,-1.545518159866333,-1.5280112028121948,-1.3529411554336548,-1.4404761791229248,-1.668067216873169,-1.5105042457580566,-1.545518159866333,-1.6855741739273071,-1.580532193183899,-1.492997169494629,-1.5980392694473267,-1.5280112028121948,-1.5280112028121948,-1.6155462265014648,-1.4404761791229248,-1.5630252361297607,-1.7030812501907349,-1.843137264251709,-1.720588207244873,-1.843137264251709,-1.668067216873169,-1.720588207244873,-1.878151297569275,-1.7380952835083008,-1.8606442213058472,-1.6505602598190308,-1.720588207244873,-1.6855741739273071,-1.895658254623413,-1.843137264251709,-1.7906162738800049,-1.843137264251709,-1.8256303071975708,-1.720588207244873,-1.8606442213058472,-1.843137264251709,-1.843137264251709,-1.843137264251709,-1.9131652116775513,-1.7906162738800049,-1.808123230934143,-1.668067216873169,-1.7380952835083008,-1.6505602598190308,-1.808123230934143,-1.755602240562439,-1.7906162738800049,-1.895658254623413,-1.7731091976165771,-1.843137264251709,-1.895658254623413,-1.808123230934143,-1.808123230934143,-1.9481792449951172,-1.843137264251709,-1.808123230934143,-1.843137264251709,-1.755602240562439,-1.9481792449951172,-1.8606442213058472,-2.0357143878936768,-1.895658254623413,-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-2.0007002353668213,-1.9131652116775513,-2.0007002353668213,-1.965686321258545,-1.9481792449951172,-1.878151297569275,-1.8256303071975708,-1.895658254623413,-1.843137264251709,-1.808123230934143,-1.930672287940979,-1.7906162738800049,-1.8606442213058472,-1.755602240562439,-1.808123230934143,-1.7380952835083008,-1.9131652116775513,-1.7380952835083008,-1.720588207244873,-1.633053183555603,-1.720588207244873,-1.720588207244873,-1.6855741739273071,-1.7906162738800049,-1.7906162738800049,-1.6155462265014648,-1.5980392694473267,-1.7380952835083008,-1.6505602598190308,-1.720588207244873,-1.808123230934143,-1.7731091976165771,-1.7380952835083008,-1.808123230934143,-1.7731091976165771,-1.7380952835083008,-1.8606442213058472,-1.755602240562439,-1.5980392694473267,-1.6855741739273071,-1.7731091976165771,-1.7731091976165771,-1.808123230934143,-1.7731091976165771,-1.7380952835083008,-1.878151297569275,-1.808123230934143,-1.720588207244873,-1.9481792449951172,-1.8606442213058472,-1.843137264251709,-1.808123230934143,-1.720588207244873,-1.6505602598190308],[-1.965686321258545,-1.7731091976165771,-1.633053183555603,-1.843137264251709,-1.843137264251709,-1.5280112028121948,-1.5630252361297607,-1.6155462265014648,-1.6155462265014648,-1.808123230934143,-1.457983136177063,-1.457983136177063,-1.3179271221160889,-1.6155462265014648,-1.492997169494629,-1.4054621458053589,-1.492997169494629,-1.5105042457580566,-1.492997169494629,-1.633053183555603,-1.6505602598190308,-1.457983136177063,-1.4229692220687866,-1.3704482316970825,-1.4054621458053589,-1.4229692220687866,-1.6505602598190308,-1.4054621458053589,-1.5630252361297607,-1.5280112028121948,-1.3354341983795166,-1.3704482316970825,-1.5105042457580566,-1.4054621458053589,-1.2829132080078125,-1.3529411554336548,-1.633053183555603,-1.4754902124404907,-1.3704482316970825,-1.720588207244873,-1.4754902124404907,-1.5630252361297607,-1.492997169494629,-1.4229692220687866,-1.3879551887512207,-1.545518159866333,-1.6855741739273071,-1.2829132080078125,-1.5980392694473267,-1.5280112028121948,-1.6155462265014648,-1.5105042457580566,-1.5280112028121948,-1.5105042457580566,-1.3529411554336548,-1.4229692220687866,-1.4229692220687866,-1.5105042457580566,-1.4054621458053589,-1.6505602598190308,-1.545518159866333,-1.3879551887512207,-1.3354341983795166,-1.5630252361297607,-1.4229692220687866,-1.2829132080078125,-1.4054621458053589,-1.2829132080078125,-1.3879551887512207,-1.3179271221160889,-1.3004201650619507,-1.3704482316970825,-1.492997169494629,-1.3179271221160889,-1.633053183555603,-1.3879551887512207,-1.3354341983795166,-1.2478991746902466,-1.4404761791229248,-1.3879551887512207,-1.4404761791229248,-1.4229692220687866,-1.3879551887512207,-1.5980392694473267,-1.580532193183899,-1.3179271221160889,-1.4229692220687866,-1.4404761791229248,-1.5280112028121948,-1.5105042457580566,-1.4754902124404907,-1.5630252361297607,-1.457983136177063,-1.4229692220687866,-1.492997169494629,-1.3879551887512207,-1.4404761791229248,-1.3179271221160889,-1.545518159866333,-1.5630252361297607,-1.545518159866333,-1.4754902124404907,-1.4754902124404907,-1.5280112028121948,-1.6505602598190308,-1.633053183555603,-1.4754902124404907,-1.5280112028121948,-1.5280112028121948,-1.580532193183899,-1.5105042457580566,-1.5630252361297607,-1.6505602598190308,-1.633053183555603,-1.633053183555603,-1.5105042457580566,-1.580532193183899,-1.4054621458053589,-1.6855741739273071,-1.720588207244873,-1.7380952835083008,-1.7030812501907349,-1.7030812501907349,-1.755602240562439,-1.843137264251709,-1.7731091976165771,-1.6855741739273071,-1.7906162738800049,-1.6855741739273071,-1.7030812501907349,-1.7380952835083008,-1.668067216873169,-1.720588207244873,-1.843137264251709,-1.6855741739273071,-1.7731091976165771,-1.895658254623413,-1.668067216873169,-1.843137264251709,-1.843137264251709,-1.965686321258545,-1.720588207244873,-1.720588207244873,-1.7906162738800049,-1.8256303071975708,-1.808123230934143,-1.7906162738800049,-1.7731091976165771,-1.7030812501907349,-1.878151297569275,-1.878151297569275,-1.843137264251709,-1.7380952835083008,-1.895658254623413,-1.808123230934143,-1.7731091976165771,-1.8606442213058472,-1.8606442213058472,-1.9481792449951172,-1.895658254623413,-1.9131652116775513,-1.8606442213058472,-1.965686321258545,-1.843137264251709,-1.965686321258545,-1.983193278312683,-2.0357143878936768,-2.0357143878936768,-2.0007002353668213,-1.983193278312683,-2.0357143878936768,-1.983193278312683,-2.0357143878936768,-1.965686321258545,-1.895658254623413,-1.9481792449951172,-1.9481792449951172,-1.8256303071975708,-1.8256303071975708,-1.843137264251709,-1.930672287940979,-1.7380952835083008,-1.808123230934143,-1.8606442213058472,-1.668067216873169,-1.6155462265014648,-1.457983136177063,-1.7380952835083008,-1.720588207244873,-1.7380952835083008,-1.6855741739273071,-1.7030812501907349,-1.7030812501907349,-1.6855741739273071,-1.7906162738800049,-1.843137264251709,-1.808123230934143,-1.6505602598190308,-1.8256303071975708,-1.633053183555603,-1.633053183555603,-1.6855741739273071,-1.755602240562439,-1.6155462265014648,-1.7731091976165771,-1.7030812501907349,-1.7906162738800049,-1.808123230934143,-1.755602240562439,-1.755602240562439,-1.7731091976165771,-1.7906162738800049,-1.755602240562439,-1.878151297569275,-1.808123230934143,-1.7030812501907349,-1.895658254623413,-1.7731091976165771,-1.843137264251709,-1.808123230934143,-1.895658254623413,-1.7731091976165771,-1.7380952835083008,-1.6855741739273071],[-1.878151297569275,-1.9481792449951172,-1.668067216873169,-1.720588207244873,-1.720588207244873,-1.668067216873169,-1.7030812501907349,-1.457983136177063,-1.580532193183899,-1.5630252361297607,-1.5980392694473267,-1.7030812501907349,-1.6155462265014648,-1.4404761791229248,-1.5630252361297607,-1.5105042457580566,-1.5280112028121948,-1.6155462265014648,-1.545518159866333,-1.457983136177063,-1.3004201650619507,-1.4754902124404907,-1.4404761791229248,-1.3004201650619507,-1.5280112028121948,-1.3529411554336548,-1.7030812501907349,-1.668067216873169,-1.4754902124404907,-1.4404761791229248,-1.580532193183899,-1.633053183555603,-1.720588207244873,-1.5980392694473267,-1.3879551887512207,-1.5630252361297607,-1.5280112028121948,-1.3354341983795166,-1.457983136177063,-1.5105042457580566,-1.492997169494629,-1.2478991746902466,-1.492997169494629,-1.5280112028121948,-1.5105042457580566,-1.3354341983795166,-1.3879551887512207,-1.4229692220687866,-1.580532193183899,-1.545518159866333,-1.4754902124404907,-1.4754902124404907,-1.5630252361297607,-1.3879551887512207,-1.6155462265014648,-1.3879551887512207,-1.545518159866333,-1.3879551887512207,-1.6155462265014648,-1.2829132080078125,-1.5280112028121948,-1.5280112028121948,-1.5980392694473267,-1.4229692220687866,-1.492997169494629,-1.6505602598190308,-1.3354341983795166,-1.5630252361297607,-1.4404761791229248,-1.4754902124404907,-1.580532193183899,-1.6155462265014648,-1.5280112028121948,-1.668067216873169,-1.492997169494629,-1.5630252361297607,-1.4404761791229248,-1.6155462265014648,-1.2128851413726807,-1.3704482316970825,-1.4054621458053589,-1.633053183555603,-1.4754902124404907,-1.457983136177063,-1.5280112028121948,-1.5630252361297607,-1.580532193183899,-1.3879551887512207,-1.3879551887512207,-1.4754902124404907,-1.5105042457580566,-1.3529411554336548,-1.4054621458053589,-1.4229692220687866,-1.4404761791229248,-1.5980392694473267,-1.4404761791229248,-1.668067216873169,-1.3354341983795166,-1.5105042457580566,-1.545518159866333,-1.4404761791229248,-1.5280112028121948,-1.633053183555603,-1.3879551887512207,-1.4754902124404907,-1.4229692220687866,-1.545518159866333,-1.545518159866333,-1.492997169494629,-1.668067216873169,-1.4754902124404907,-1.492997169494629,-1.6155462265014648,-1.6155462265014648,-1.6155462265014648,-1.5280112028121948,-1.7380952835083008,-1.755602240562439,-1.720588207244873,-1.5980392694473267,-1.7030812501907349,-1.755602240562439,-1.5105042457580566,-1.7030812501907349,-1.7030812501907349,-1.843137264251709,-1.668067216873169,-1.895658254623413,-1.9481792449951172,-1.8256303071975708,-1.7906162738800049,-1.7906162738800049,-1.7380952835083008,-1.843137264251709,-1.8606442213058472,-1.7030812501907349,-1.878151297569275,-1.7731091976165771,-1.8256303071975708,-1.755602240562439,-1.9131652116775513,-1.6855741739273071,-1.720588207244873,-1.7906162738800049,-1.7731091976165771,-1.7731091976165771,-1.755602240562439,-1.8256303071975708,-1.843137264251709,-1.6855741739273071,-1.7906162738800049,-1.668067216873169,-1.7731091976165771,-1.8256303071975708,-1.808123230934143,-1.843137264251709,-1.808123230934143,-1.808123230934143,-1.895658254623413,-1.8606442213058472,-1.930672287940979,-1.8256303071975708,-1.9481792449951172,-1.930672287940979,-2.0007002353668213,-2.0357143878936768,-2.0357143878936768,-1.965686321258545,-1.965686321258545,-1.983193278312683,-2.018207311630249,-2.0357143878936768,-2.0007002353668213,-1.930672287940979,-1.930672287940979,-2.0007002353668213,-1.8256303071975708,-1.755602240562439,-1.843137264251709,-1.755602240562439,-1.755602240562439,-1.7380952835083008,-1.755602240562439,-1.8606442213058472,-1.7380952835083008,-1.808123230934143,-1.7731091976165771,-1.6855741739273071,-1.6505602598190308,-1.895658254623413,-1.720588207244873,-1.7731091976165771,-1.6505602598190308,-1.633053183555603,-1.7731091976165771,-1.6505602598190308,-1.755602240562439,-1.7906162738800049,-1.720588207244873,-1.7380952835083008,-1.9131652116775513,-1.8256303071975708,-1.6505602598190308,-1.668067216873169,-1.720588207244873,-1.7906162738800049,-1.878151297569275,-1.7906162738800049,-1.930672287940979,-1.8256303071975708,-1.843137264251709,-1.843137264251709,-1.808123230934143,-1.7906162738800049,-1.7380952835083008,-1.7380952835083008,-1.843137264251709,-1.668067216873169,-1.7906162738800049,-1.755602240562439,-1.545518159866333,-1.878151297569275,-1.843137264251709],[-1.9481792449951172,-1.8606442213058472,-1.878151297569275,-1.8256303071975708,-1.720588207244873,-1.633053183555603,-1.720588207244873,-1.7030812501907349,-1.7906162738800049,-1.668067216873169,-1.545518159866333,-1.5630252361297607,-1.580532193183899,-1.4404761791229248,-1.5980392694473267,-1.545518159866333,-1.492997169494629,-1.580532193183899,-1.5105042457580566,-1.7030812501907349,-1.6505602598190308,-1.492997169494629,-1.4054621458053589,-1.5980392694473267,-1.5105042457580566,-1.4054621458053589,-1.4754902124404907,-1.457983136177063,-1.5630252361297607,-1.492997169494629,-1.4404761791229248,-1.5105042457580566,-1.457983136177063,-1.457983136177063,-1.6155462265014648,-1.755602240562439,-1.580532193183899,-1.5105042457580566,-1.5105042457580566,-1.3704482316970825,-1.4404761791229248,-1.6155462265014648,-1.492997169494629,-1.5280112028121948,-1.4229692220687866,-1.4404761791229248,-1.4404761791229248,-1.5630252361297607,-1.5980392694473267,-1.720588207244873,-1.3879551887512207,-1.5980392694473267,-1.457983136177063,-1.3704482316970825,-1.4229692220687866,-1.6155462265014648,-1.5105042457580566,-1.4054621458053589,-1.3529411554336548,-1.5630252361297607,-1.5630252361297607,-1.668067216873169,-1.4754902124404907,-1.4754902124404907,-1.4404761791229248,-1.457983136177063,-1.545518159866333,-1.492997169494629,-1.5630252361297607,-1.492997169494629,-1.5980392694473267,-1.3004201650619507,-1.492997169494629,-1.457983136177063,-1.545518159866333,-1.5280112028121948,-1.492997169494629,-1.4054621458053589,-1.5280112028121948,-1.492997169494629,-1.5280112028121948,-1.4404761791229248,-1.5630252361297607,-1.4229692220687866,-1.3529411554336548,-1.5630252361297607,-1.457983136177063,-1.457983136177063,-1.5280112028121948,-1.545518159866333,-1.4754902124404907,-1.5105042457580566,-1.3529411554336548,-1.4404761791229248,-1.5105042457580566,-1.5105042457580566,-1.4404761791229248,-1.5630252361297607,-1.3879551887512207,-1.492997169494629,-1.3879551887512207,-1.5630252361297607,-1.4054621458053589,-1.5105042457580566,-1.492997169494629,-1.545518159866333,-1.5980392694473267,-1.4754902124404907,-1.5630252361297607,-1.545518159866333,-1.4404761791229248,-1.5280112028121948,-1.5630252361297607,-1.6505602598190308,-1.7030812501907349,-1.7030812501907349,-1.7380952835083008,-1.7731091976165771,-1.7906162738800049,-1.7030812501907349,-1.8256303071975708,-1.6505602598190308,-1.720588207244873,-1.7731091976165771,-1.878151297569275,-1.8606442213058472,-1.6505602598190308,-1.7030812501907349,-1.7380952835083008,-1.6505602598190308,-1.720588207244873,-1.7906162738800049,-1.5980392694473267,-1.7380952835083008,-1.7731091976165771,-1.7030812501907349,-1.7380952835083008,-1.7906162738800049,-1.7731091976165771,-1.755602240562439,-1.878151297569275,-1.808123230934143,-1.7731091976165771,-1.7380952835083008,-1.8606442213058472,-1.8606442213058472,-1.8606442213058472,-1.7030812501907349,-1.720588207244873,-1.843137264251709,-1.9481792449951172,-1.755602240562439,-1.808123230934143,-1.808123230934143,-1.8256303071975708,-1.878151297569275,-1.843137264251709,-1.808123230934143,-1.9131652116775513,-1.9131652116775513,-1.9481792449951172,-1.965686321258545,-1.9131652116775513,-1.930672287940979,-1.5980392694473267,-1.5280112028121948,-1.3529411554336548,-1.2303920984268188,-1.1078431606292725,-1.8606442213058472,-1.895658254623413,-1.843137264251709,-2.0007002353668213,-2.0357143878936768,-2.0357143878936768,-1.8606442213058472,-1.878151297569275,-1.930672287940979,-1.808123230934143,-1.9131652116775513,-1.930672287940979,-1.668067216873169,-1.808123230934143,-1.7906162738800049,-1.8606442213058472,-1.9131652116775513,-1.7380952835083008,-1.808123230934143,-1.720588207244873,-1.9131652116775513,-1.6855741739273071,-1.7380952835083008,-1.7030812501907349,-1.7731091976165771,-1.808123230934143,-1.633053183555603,-1.8256303071975708,-1.843137264251709,-1.755602240562439,-1.7030812501907349,-1.6155462265014648,-1.668067216873169,-1.668067216873169,-1.8606442213058472,-1.9131652116775513,-1.5980392694473267,-1.755602240562439,-1.720588207244873,-1.7906162738800049,-1.843137264251709,-1.7906162738800049,-1.7380952835083008,-1.7731091976165771,-1.8606442213058472,-1.633053183555603,-1.9481792449951172,-1.8256303071975708,-1.8606442213058472,-1.930672287940979,-1.7731091976165771,-1.843137264251709,-1.895658254623413,-1.8256303071975708,-1.8256303071975708],[-1.8606442213058472,-1.8606442213058472,-1.8256303071975708,-1.843137264251709,-1.843137264251709,-1.7731091976165771,-1.7731091976165771,-1.755602240562439,-1.6155462265014648,-1.6505602598190308,-1.6155462265014648,-1.633053183555603,-1.720588207244873,-1.6505602598190308,-1.5280112028121948,-1.633053183555603,-1.545518159866333,-1.457983136177063,-1.4404761791229248,-1.633053183555603,-1.4754902124404907,-1.3704482316970825,-1.545518159866333,-1.5280112028121948,-1.457983136177063,-1.5980392694473267,-1.5280112028121948,-1.6155462265014648,-1.3529411554336548,-1.4229692220687866,-1.492997169494629,-1.492997169494629,-1.4054621458053589,-1.5980392694473267,-1.4229692220687866,-1.633053183555603,-1.492997169494629,-1.492997169494629,-1.492997169494629,-1.4404761791229248,-1.4054621458053589,-1.1428571939468384,-1.5105042457580566,-1.5280112028121948,-1.4754902124404907,-1.3704482316970825,-1.5280112028121948,-1.633053183555603,-1.5980392694473267,-1.668067216873169,-1.5980392694473267,-1.720588207244873,-1.4404761791229248,-1.580532193183899,-1.5105042457580566,-1.5280112028121948,-1.545518159866333,-1.6505602598190308,-1.457983136177063,-1.6155462265014648,-1.5280112028121948,-1.5280112028121948,-1.545518159866333,-1.5105042457580566,-1.457983136177063,-1.668067216873169,-1.545518159866333,-1.4754902124404907,-1.4054621458053589,-1.457983136177063,-1.5280112028121948,-1.545518159866333,-1.492997169494629,-1.3354341983795166,-1.4754902124404907,-1.633053183555603,-1.668067216873169,-1.4754902124404907,-1.4054621458053589,-1.6505602598190308,-1.3704482316970825,-1.3354341983795166,-1.580532193183899,-1.3704482316970825,-1.3179271221160889,-1.580532193183899,-1.3704482316970825,-1.5980392694473267,-1.633053183555603,-1.5630252361297607,-1.7030812501907349,-1.5980392694473267,-1.5630252361297607,-1.4754902124404907,-1.580532193183899,-1.457983136177063,-1.633053183555603,-1.545518159866333,-1.5280112028121948,-1.3529411554336548,-1.4754902124404907,-1.4404761791229248,-1.5105042457580566,-1.5280112028121948,-1.5630252361297607,-1.492997169494629,-1.545518159866333,-1.4054621458053589,-1.5280112028121948,-1.5280112028121948,-1.5630252361297607,-1.5630252361297607,-1.808123230934143,-1.720588207244873,-1.580532193183899,-1.8606442213058472,-1.7731091976165771,-1.668067216873169,-1.6855741739273071,-1.7380952835083008,-1.7380952835083008,-1.808123230934143,-1.7380952835083008,-1.8256303071975708,-1.6155462265014648,-1.8256303071975708,-1.7030812501907349,-1.843137264251709,-1.720588207244873,-1.7380952835083008,-1.9481792449951172,-1.720588207244873,-1.843137264251709,-1.755602240562439,-1.755602240562439,-1.7731091976165771,-1.843137264251709,-1.6855741739273071,-1.7030812501907349,-1.7906162738800049,-1.7380952835083008,-1.7030812501907349,-1.843137264251709,-1.7731091976165771,-1.755602240562439,-1.8256303071975708,-1.8606442213058472,-1.8256303071975708,-1.8606442213058472,-1.720588207244873,-1.720588207244873,-1.755602240562439,-1.895658254623413,-1.7906162738800049,-1.843137264251709,-1.9131652116775513,-1.9481792449951172,-1.930672287940979,-1.983193278312683,-1.9481792449951172,-2.018207311630249,-2.0357143878936768,-2.0007002353668213,-1.1253501176834106,-1.457983136177063,-1.1778711080551147,-1.0028011798858643,-0.9327731132507324,-0.4425770342350006,-1.6855741739273071,-1.7906162738800049,-2.018207311630249,-2.018207311630249,-1.930672287940979,-1.983193278312683,-2.0357143878936768,-1.983193278312683,-1.8606442213058472,-1.8606442213058472,-1.983193278312683,-1.808123230934143,-1.843137264251709,-1.755602240562439,-1.5980392694473267,-1.7380952835083008,-1.895658254623413,-1.878151297569275,-1.9131652116775513,-1.7380952835083008,-1.720588207244873,-1.7030812501907349,-1.8256303071975708,-1.7731091976165771,-1.5630252361297607,-1.8256303071975708,-1.8256303071975708,-2.0007002353668213,-1.6855741739273071,-1.6505602598190308,-1.7731091976165771,-1.7380952835083008,-1.7030812501907349,-1.7731091976165771,-1.545518159866333,-1.6505602598190308,-1.8606442213058472,-1.668067216873169,-1.7380952835083008,-1.808123230934143,-1.8606442213058472,-1.7906162738800049,-1.7906162738800049,-1.7380952835083008,-1.7380952835083008,-1.9481792449951172,-1.9131652116775513,-1.8256303071975708,-1.983193278312683,-1.895658254623413,-1.7906162738800049,-1.878151297569275,-1.8606442213058472,-1.895658254623413,-1.7731091976165771],[-2.0007002353668213,-1.9131652116775513,-1.9481792449951172,-1.895658254623413,-1.808123230934143,-1.7731091976165771,-1.808123230934143,-1.7380952835083008,-1.7380952835083008,-1.5105042457580566,-1.7731091976165771,-1.580532193183899,-1.720588207244873,-1.5105042457580566,-1.457983136177063,-1.6855741739273071,-1.5630252361297607,-1.492997169494629,-1.6505602598190308,-1.5630252361297607,-1.545518159866333,-1.5105042457580566,-1.6855741739273071,-1.5630252361297607,-1.5105042457580566,-1.6155462265014648,-1.6505602598190308,-1.5980392694473267,-1.6155462265014648,-1.6155462265014648,-1.492997169494629,-1.3354341983795166,-1.5280112028121948,-1.5280112028121948,-1.6155462265014648,-1.5280112028121948,-1.6155462265014648,-1.6855741739273071,-1.633053183555603,-1.4054621458053589,-1.4229692220687866,-1.3879551887512207,-1.457983136177063,-1.720588207244873,-1.4054621458053589,-1.492997169494629,-1.6855741739273071,-1.5280112028121948,-1.3529411554336548,-1.5105042457580566,-1.6155462265014648,-1.5105042457580566,-1.668067216873169,-1.4754902124404907,-1.580532193183899,-1.668067216873169,-1.5105042457580566,-1.545518159866333,-1.3354341983795166,-1.5630252361297607,-1.4229692220687866,-1.5630252361297607,-1.6155462265014648,-1.5280112028121948,-1.5630252361297607,-1.545518159866333,-1.492997169494629,-1.580532193183899,-1.4754902124404907,-1.545518159866333,-1.6505602598190308,-1.545518159866333,-1.5630252361297607,-1.4229692220687866,-1.4754902124404907,-1.492997169494629,-1.5280112028121948,-1.5280112028121948,-1.6505602598190308,-1.633053183555603,-1.580532193183899,-1.5630252361297607,-1.7030812501907349,-1.3704482316970825,-1.633053183555603,-1.668067216873169,-1.4754902124404907,-1.5105042457580566,-1.5105042457580566,-1.633053183555603,-1.4229692220687866,-1.545518159866333,-1.4754902124404907,-1.492997169494629,-1.545518159866333,-1.6505602598190308,-1.5105042457580566,-1.4754902124404907,-1.7731091976165771,-1.6155462265014648,-1.6155462265014648,-1.580532193183899,-1.3879551887512207,-1.5980392694473267,-1.668067216873169,-1.668067216873169,-1.668067216873169,-1.633053183555603,-1.7731091976165771,-1.720588207244873,-1.7030812501907349,-1.668067216873169,-1.7030812501907349,-1.755602240562439,-1.7030812501907349,-1.668067216873169,-1.6505602598190308,-1.7731091976165771,-1.7030812501907349,-1.7731091976165771,-1.7030812501907349,-1.6505602598190308,-1.7731091976165771,-1.755602240562439,-1.8256303071975708,-1.7906162738800049,-1.457983136177063,-1.808123230934143,-1.7030812501907349,-1.808123230934143,-1.9481792449951172,-1.668067216873169,-1.6855741739273071,-1.7906162738800049,-1.7731091976165771,-1.755602240562439,-1.843137264251709,-1.7380952835083008,-1.7906162738800049,-1.755602240562439,-1.7030812501907349,-1.8256303071975708,-1.668067216873169,-1.755602240562439,-1.6855741739273071,-1.7030812501907349,-1.8256303071975708,-1.755602240562439,-1.808123230934143,-1.930672287940979,-1.808123230934143,-1.930672287940979,-1.9131652116775513,-1.983193278312683,-1.9131652116775513,-2.0007002353668213,-2.0357143878936768,-2.018207311630249,-1.983193278312683,-1.983193278312683,-1.965686321258545,-1.9131652116775513,-1.633053183555603,-1.2829132080078125,-1.843137264251709,-0.37254902720451355,-0.47759103775024414,-0.9852941036224365,-0.7051820755004883,-0.9852941036224365,-1.0728291273117065,-0.5301120281219482,-0.37254902720451355,-1.2303920984268188,-1.4229692220687866,-1.1428571939468384,-1.965686321258545,-2.0007002353668213,-1.930672287940979,-1.965686321258545,-2.0357143878936768,-1.843137264251709,-1.7906162738800049,-1.7906162738800049,-1.7731091976165771,-1.8256303071975708,-1.7030812501907349,-1.6505602598190308,-1.930672287940979,-1.6505602598190308,-1.7380952835083008,-1.545518159866333,-1.7906162738800049,-1.580532193183899,-1.720588207244873,-1.8606442213058472,-1.7380952835083008,-1.633053183555603,-1.7906162738800049,-1.7906162738800049,-1.755602240562439,-1.7380952835083008,-1.7030812501907349,-1.7030812501907349,-1.6155462265014648,-1.720588207244873,-1.8256303071975708,-1.7906162738800049,-1.808123230934143,-1.720588207244873,-1.7030812501907349,-1.755602240562439,-1.843137264251709,-1.7906162738800049,-1.7030812501907349,-1.7906162738800049,-1.843137264251709,-1.7731091976165771,-1.983193278312683,-1.8256303071975708,-1.808123230934143,-1.7906162738800049,-1.755602240562439,-1.9131652116775513],[-1.9481792449951172,-1.9131652116775513,-1.930672287940979,-1.878151297569275,-1.930672287940979,-1.9131652116775513,-1.808123230934143,-1.668067216873169,-1.755602240562439,-1.6505602598190308,-1.6505602598190308,-1.6155462265014648,-1.6155462265014648,-1.7906162738800049,-1.5630252361297607,-1.6155462265014648,-1.545518159866333,-1.7030812501907349,-1.668067216873169,-1.545518159866333,-1.4054621458053589,-1.4404761791229248,-1.5105042457580566,-1.633053183555603,-1.5980392694473267,-1.580532193183899,-1.4754902124404907,-1.4054621458053589,-1.492997169494629,-1.457983136177063,-1.5280112028121948,-1.457983136177063,-1.6855741739273071,-1.5280112028121948,-1.633053183555603,-1.5105042457580566,-1.545518159866333,-1.5630252361297607,-1.545518159866333,-1.633053183555603,-1.492997169494629,-1.5280112028121948,-1.492997169494629,-1.5980392694473267,-1.5980392694473267,-1.492997169494629,-1.4229692220687866,-1.6155462265014648,-1.6155462265014648,-1.545518159866333,-1.7906162738800049,-1.580532193183899,-1.5105042457580566,-1.6505602598190308,-1.6505602598190308,-1.755602240562439,-1.492997169494629,-1.6855741739273071,-1.6155462265014648,-1.580532193183899,-1.6155462265014648,-1.5105042457580566,-1.5280112028121948,-1.545518159866333,-1.5980392694473267,-1.720588207244873,-1.4754902124404907,-1.3179271221160889,-1.5105042457580566,-1.580532193183899,-1.633053183555603,-1.668067216873169,-1.7380952835083008,-1.4754902124404907,-1.4054621458053589,-1.6155462265014648,-1.5630252361297607,-1.3704482316970825,-1.545518159866333,-1.5980392694473267,-1.7030812501907349,-1.6505602598190308,-1.6155462265014648,-1.457983136177063,-1.580532193183899,-1.6505602598190308,-1.4404761791229248,-1.5630252361297607,-1.7030812501907349,-1.4404761791229248,-1.580532193183899,-1.580532193183899,-1.4404761791229248,-1.492997169494629,-1.7380952835083008,-1.5105042457580566,-1.457983136177063,-1.5980392694473267,-1.580532193183899,-1.668067216873169,-1.6155462265014648,-1.7030812501907349,-1.668067216873169,-1.5630252361297607,-1.720588207244873,-1.545518159866333,-1.7380952835083008,-1.720588207244873,-1.5105042457580566,-1.6505602598190308,-1.7731091976165771,-1.755602240562439,-1.668067216873169,-1.633053183555603,-1.7380952835083008,-1.755602240562439,-1.7030812501907349,-1.6155462265014648,-1.7380952835083008,-1.7731091976165771,-1.7906162738800049,-1.6855741739273071,-1.7906162738800049,-1.4754902124404907,-1.8256303071975708,-1.808123230934143,-1.7380952835083008,-1.545518159866333,-1.6855741739273071,-1.7906162738800049,-1.895658254623413,-1.720588207244873,-1.720588207244873,-1.843137264251709,-1.878151297569275,-1.7906162738800049,-1.8256303071975708,-1.7030812501907349,-1.7030812501907349,-1.7380952835083008,-1.808123230934143,-1.6855741739273071,-1.808123230934143,-1.7380952835083008,-1.7731091976165771,-1.755602240562439,-1.7906162738800049,-1.755602240562439,-1.843137264251709,-1.8256303071975708,-1.8256303071975708,-1.7731091976165771,-2.0357143878936768,-2.0007002353668213,-1.7030812501907349,-2.0357143878936768,-2.0357143878936768,-1.3004201650619507,-1.3879551887512207,-1.965686321258545,-1.7731091976165771,-1.7906162738800049,-1.5980392694473267,-1.4404761791229248,-1.1078431606292725,-0.6176470518112183,-0.5126050710678101,-0.9502801299095154,-1.808123230934143,-1.0378150939941406,-0.8802521228790283,-0.6351540684700012,-1.1253501176834106,-1.0028011798858643,-1.1778711080551147,-0.6701680421829224,-1.5980392694473267,-1.5980392694473267,-2.0357143878936768,-1.983193278312683,-1.668067216873169,-2.018207311630249,-1.9131652116775513,-1.8606442213058472,-1.7731091976165771,-1.7731091976165771,-1.930672287940979,-1.5630252361297607,-1.7030812501907349,-1.7731091976165771,-1.668067216873169,-1.668067216873169,-1.8256303071975708,-1.755602240562439,-1.8606442213058472,-1.755602240562439,-1.580532193183899,-1.668067216873169,-1.755602240562439,-1.6155462265014648,-1.7380952835083008,-1.7731091976165771,-1.6505602598190308,-1.668067216873169,-1.755602240562439,-1.843137264251709,-1.7030812501907349,-1.633053183555603,-1.668067216873169,-1.720588207244873,-1.9131652116775513,-1.7030812501907349,-1.720588207244873,-1.895658254623413,-1.843137264251709,-1.7380952835083008,-1.755602240562439,-1.8606442213058472,-1.7731091976165771,-1.7906162738800049,-1.755602240562439,-1.808123230934143,-1.9131652116775513,-1.7030812501907349],[-1.965686321258545,-1.983193278312683,-1.895658254623413,-1.983193278312683,-1.895658254623413,-1.878151297569275,-1.843137264251709,-1.808123230934143,-1.6155462265014648,-1.7030812501907349,-1.6155462265014648,-1.8256303071975708,-1.5105042457580566,-1.580532193183899,-1.545518159866333,-1.6855741739273071,-1.7030812501907349,-1.4754902124404907,-1.4754902124404907,-1.5630252361297607,-1.580532193183899,-1.580532193183899,-1.5280112028121948,-1.5105042457580566,-1.4229692220687866,-1.5105042457580566,-1.6155462265014648,-1.5980392694473267,-1.5280112028121948,-1.4229692220687866,-1.580532193183899,-1.6505602598190308,-1.545518159866333,-1.5980392694473267,-1.545518159866333,-1.5105042457580566,-1.545518159866333,-1.7030812501907349,-1.5280112028121948,-1.4754902124404907,-1.668067216873169,-1.580532193183899,-1.580532193183899,-1.633053183555603,-1.580532193183899,-1.720588207244873,-1.755602240562439,-1.6505602598190308,-1.492997169494629,-1.545518159866333,-1.6505602598190308,-1.5280112028121948,-1.545518159866333,-1.668067216873169,-1.5980392694473267,-1.580532193183899,-1.5105042457580566,-1.5980392694473267,-1.5980392694473267,-1.6855741739273071,-1.545518159866333,-1.4054621458053589,-1.668067216873169,-1.7380952835083008,-1.5630252361297607,-1.633053183555603,-1.4754902124404907,-1.5280112028121948,-1.4054621458053589,-1.580532193183899,-1.7030812501907349,-1.6855741739273071,-1.492997169494629,-1.4054621458053589,-1.3704482316970825,-1.4754902124404907,-1.457983136177063,-1.580532193183899,-1.5280112028121948,-1.5630252361297607,-1.6155462265014648,-1.720588207244873,-1.492997169494629,-1.580532193183899,-1.6855741739273071,-1.4054621458053589,-1.580532193183899,-1.545518159866333,-1.633053183555603,-1.6505602598190308,-1.5630252361297607,-1.7380952835083008,-1.6855741739273071,-1.545518159866333,-1.633053183555603,-1.5630252361297607,-1.6505602598190308,-1.545518159866333,-1.492997169494629,-1.5980392694473267,-1.5280112028121948,-1.492997169494629,-1.5630252361297607,-1.6155462265014648,-1.545518159866333,-1.808123230934143,-1.755602240562439,-1.6155462265014648,-1.7380952835083008,-1.7380952835083008,-1.6155462265014648,-1.5280112028121948,-1.668067216873169,-1.7380952835083008,-1.6155462265014648,-1.6155462265014648,-1.7731091976165771,-1.7731091976165771,-1.7906162738800049,-1.808123230934143,-1.6505602598190308,-1.7380952835083008,-1.7380952835083008,-1.878151297569275,-1.633053183555603,-1.6855741739273071,-1.755602240562439,-1.6505602598190308,-1.7030812501907349,-1.755602240562439,-1.7030812501907349,-1.720588207244873,-1.878151297569275,-1.6855741739273071,-1.6855741739273071,-1.7906162738800049,-1.720588207244873,-1.720588207244873,-1.7380952835083008,-1.8256303071975708,-1.668067216873169,-1.7380952835083008,-1.6855741739273071,-1.8256303071975708,-1.843137264251709,-1.808123230934143,-1.808123230934143,-1.7906162738800049,-1.7731091976165771,-2.0357143878936768,-1.983193278312683,-2.0357143878936768,-1.965686321258545,-1.843137264251709,-1.983193278312683,-1.6155462265014648,-1.1603641510009766,-0.8452380895614624,-1.2478991746902466,-1.7030812501907349,-1.633053183555603,-1.7380952835083008,-1.895658254623413,-1.0553221702575684,-0.47759103775024414,-0.5476190447807312,-0.07492997497320175,-1.0378150939941406,-1.2478991746902466,-1.3879551887512207,-0.4075630307197571,-0.8802521228790283,-0.7051820755004883,-1.4229692220687866,-1.0728291273117065,-0.6526610851287842,-1.0203081369400024,-1.3354341983795166,-1.4229692220687866,-1.7030812501907349,-1.8256303071975708,-2.0007002353668213,-1.965686321258545,-1.895658254623413,-1.895658254623413,-1.9131652116775513,-1.9131652116775513,-1.6855741739273071,-1.895658254623413,-1.755602240562439,-1.7380952835083008,-1.895658254623413,-1.755602240562439,-1.720588207244873,-1.7906162738800049,-1.7906162738800049,-1.8256303071975708,-1.930672287940979,-1.668067216873169,-1.6505602598190308,-1.755602240562439,-1.7030812501907349,-1.7380952835083008,-1.7030812501907349,-1.6855741739273071,-1.6855741739273071,-1.8606442213058472,-1.8256303071975708,-1.895658254623413,-1.633053183555603,-1.720588207244873,-1.7906162738800049,-1.878151297569275,-1.6505602598190308,-1.7731091976165771,-1.808123230934143,-1.7906162738800049,-1.8606442213058472,-1.8256303071975708,-1.8606442213058472,-1.8256303071975708,-1.808123230934143,-1.7731091976165771,-1.983193278312683],[-1.965686321258545,-2.0007002353668213,-1.983193278312683,-1.895658254623413,-1.983193278312683,-1.965686321258545,-1.8606442213058472,-1.7731091976165771,-1.895658254623413,-1.8256303071975708,-1.8256303071975708,-1.720588207244873,-1.5105042457580566,-1.6855741739273071,-1.5980392694473267,-1.492997169494629,-1.5630252361297607,-1.6505602598190308,-1.6855741739273071,-1.6155462265014648,-1.5630252361297607,-1.5105042457580566,-1.5280112028121948,-1.4404761791229248,-1.5630252361297607,-1.492997169494629,-1.6155462265014648,-1.633053183555603,-1.6505602598190308,-1.4754902124404907,-1.5630252361297607,-1.5980392694473267,-1.545518159866333,-1.4054621458053589,-1.4054621458053589,-1.545518159866333,-1.5280112028121948,-1.545518159866333,-1.4754902124404907,-1.3879551887512207,-1.755602240562439,-1.5630252361297607,-1.4054621458053589,-1.580532193183899,-1.580532193183899,-1.4404761791229248,-1.545518159866333,-1.5105042457580566,-1.6505602598190308,-1.6855741739273071,-1.5280112028121948,-1.6855741739273071,-1.6855741739273071,-1.755602240562439,-1.5105042457580566,-1.4229692220687866,-1.633053183555603,-1.720588207244873,-1.668067216873169,-1.668067216873169,-1.633053183555603,-1.545518159866333,-1.5630252361297607,-1.7906162738800049,-1.633053183555603,-1.545518159866333,-1.7380952835083008,-1.457983136177063,-1.7731091976165771,-1.5980392694473267,-1.5280112028121948,-1.7731091976165771,-1.4229692220687866,-1.545518159866333,-1.5630252361297607,-1.668067216873169,-1.5980392694473267,-1.6155462265014648,-1.5280112028121948,-1.720588207244873,-1.6505602598190308,-1.668067216873169,-1.633053183555603,-1.5980392694473267,-1.580532193183899,-1.808123230934143,-1.668067216873169,-1.7380952835083008,-1.5980392694473267,-1.633053183555603,-1.6855741739273071,-1.668067216873169,-1.6505602598190308,-1.5980392694473267,-1.7380952835083008,-1.492997169494629,-1.720588207244873,-1.545518159866333,-1.6505602598190308,-1.633053183555603,-1.5630252361297607,-1.6855741739273071,-1.5980392694473267,-1.7030812501907349,-1.668067216873169,-1.6505602598190308,-1.5980392694473267,-1.7380952835083008,-1.7030812501907349,-1.808123230934143,-1.668067216873169,-1.6155462265014648,-1.808123230934143,-1.6855741739273071,-1.755602240562439,-1.6855741739273071,-1.6855741739273071,-1.6855741739273071,-1.755602240562439,-1.6855741739273071,-1.7731091976165771,-1.6855741739273071,-1.720588207244873,-1.7731091976165771,-1.7906162738800049,-1.7030812501907349,-1.878151297569275,-1.7380952835083008,-1.8606442213058472,-1.843137264251709,-1.8606442213058472,-1.7731091976165771,-1.8256303071975708,-1.895658254623413,-1.7906162738800049,-1.720588207244873,-1.7906162738800049,-1.755602240562439,-1.7906162738800049,-1.8606442213058472,-1.808123230934143,-1.755602240562439,-1.808123230934143,-1.9481792449951172,-2.0357143878936768,-1.8606442213058472,-1.878151297569275,-2.0357143878936768,-2.0357143878936768,-1.965686321258545,-2.018207311630249,-1.983193278312683,-1.720588207244873,-1.5280112028121948,-1.0028011798858643,-0.8977590799331665,-1.1428571939468384,-1.6155462265014648,-1.878151297569275,-1.7380952835083008,-1.9481792449951172,-1.0203081369400024,-1.545518159866333,-1.492997169494629,-0.8277310729026794,-0.7401960492134094,-0.07492997497320175,-0.5476190447807312,-0.9852941036224365,-2.018207311630249,-1.1428571939468384,-0.7401960492134094,-0.47759103775024414,-1.1428571939468384,-1.1253501176834106,-1.1428571939468384,-0.7226890921592712,-0.6176470518112183,-0.6351540684700012,-1.2303920984268188,-1.8256303071975708,-2.018207311630249,-1.930672287940979,-1.965686321258545,-1.9481792449951172,-1.895658254623413,-1.7731091976165771,-2.0357143878936768,-1.7906162738800049,-1.755602240562439,-1.9481792449951172,-1.5980392694473267,-1.580532193183899,-1.720588207244873,-1.5980392694473267,-1.5105042457580566,-1.843137264251709,-1.808123230934143,-1.6855741739273071,-1.8256303071975708,-1.7380952835083008,-1.808123230934143,-1.720588207244873,-1.7731091976165771,-1.7906162738800049,-1.7731091976165771,-1.7380952835083008,-1.7906162738800049,-1.895658254623413,-1.7030812501907349,-1.755602240562439,-1.930672287940979,-1.7731091976165771,-2.0007002353668213,-1.808123230934143,-1.7906162738800049,-1.878151297569275,-1.7731091976165771,-1.895658254623413,-1.8256303071975708,-1.7906162738800049,-1.755602240562439,-1.755602240562439,-1.7731091976165771],[-1.983193278312683,-1.9131652116775513,-2.0357143878936768,-1.983193278312683,-1.983193278312683,-1.878151297569275,-1.7380952835083008,-1.8256303071975708,-1.7906162738800049,-1.8256303071975708,-1.720588207244873,-1.633053183555603,-1.6505602598190308,-1.6505602598190308,-1.633053183555603,-1.3879551887512207,-1.755602240562439,-1.7731091976165771,-1.6505602598190308,-1.7030812501907349,-1.633053183555603,-1.7030812501907349,-1.5105042457580566,-1.633053183555603,-1.4754902124404907,-1.580532193183899,-1.5630252361297607,-1.5630252361297607,-1.5280112028121948,-1.6155462265014648,-1.6855741739273071,-1.633053183555603,-1.5980392694473267,-1.5980392694473267,-1.3879551887512207,-1.5980392694473267,-1.7030812501907349,-1.668067216873169,-1.6155462265014648,-1.633053183555603,-1.668067216873169,-1.4754902124404907,-1.5980392694473267,-1.755602240562439,-1.7030812501907349,-1.5980392694473267,-1.580532193183899,-1.6505602598190308,-1.492997169494629,-1.7731091976165771,-1.6505602598190308,-1.5105042457580566,-1.6505602598190308,-1.5980392694473267,-1.5980392694473267,-1.843137264251709,-1.7906162738800049,-1.7030812501907349,-1.6505602598190308,-1.6505602598190308,-1.5980392694473267,-1.5980392694473267,-1.5980392694473267,-1.6155462265014648,-1.5980392694473267,-1.755602240562439,-1.755602240562439,-1.668067216873169,-1.808123230934143,-1.6155462265014648,-1.6505602598190308,-1.6855741739273071,-1.633053183555603,-1.720588207244873,-1.633053183555603,-1.5980392694473267,-1.545518159866333,-1.4754902124404907,-1.580532193183899,-1.7030812501907349,-1.7906162738800049,-1.6155462265014648,-1.580532193183899,-1.633053183555603,-1.5280112028121948,-1.580532193183899,-1.6855741739273071,-1.6855741739273071,-1.808123230934143,-1.6505602598190308,-1.580532193183899,-1.5980392694473267,-1.668067216873169,-1.5105042457580566,-1.5105042457580566,-1.633053183555603,-1.7731091976165771,-1.3879551887512207,-1.5980392694473267,-1.5105042457580566,-1.5105042457580566,-1.545518159866333,-1.7030812501907349,-1.5630252361297607,-1.545518159866333,-1.7906162738800049,-1.6155462265014648,-1.580532193183899,-1.808123230934143,-1.720588207244873,-1.720588207244873,-1.755602240562439,-1.6855741739273071,-1.808123230934143,-1.7030812501907349,-1.7731091976165771,-1.668067216873169,-1.755602240562439,-1.755602240562439,-1.7731091976165771,-1.7731091976165771,-1.7731091976165771,-1.755602240562439,-1.8606442213058472,-1.8606442213058472,-1.7380952835083008,-1.7906162738800049,-1.668067216873169,-1.633053183555603,-1.7731091976165771,-1.895658254623413,-1.7906162738800049,-1.7906162738800049,-1.7380952835083008,-1.843137264251709,-1.7906162738800049,-1.668067216873169,-1.808123230934143,-1.8256303071975708,-1.7906162738800049,-1.6505602598190308,-1.808123230934143,-1.808123230934143,-1.8256303071975708,-1.808123230934143,-1.9481792449951172,-2.018207311630249,-1.9481792449951172,-2.0357143878936768,-1.895658254623413,-1.4054621458053589,-1.1428571939468384,-0.4075630307197571,-1.545518159866333,-0.21498599648475647,-0.16246499121189117,-0.9327731132507324,-1.580532193183899,-1.4754902124404907,-1.668067216873169,0.13515406847000122,-1.2303920984268188,-1.668067216873169,-1.9481792449951172,-1.3179271221160889,-1.9481792449951172,-1.1428571939468384,0.4327731132507324,-0.47759103775024414,-0.09243697673082352,-0.4425770342350006,-1.633053183555603,-1.4054621458053589,-0.47759103775024414,-0.8627451062202454,-1.0728291273117065,-1.0553221702575684,-0.03991596773266792,-0.16246499121189117,-0.33753502368927,-0.8452380895614624,-1.808123230934143,-1.9131652116775513,-2.0357143878936768,-1.930672287940979,-1.878151297569275,-1.9481792449951172,-1.9131652116775513,-1.808123230934143,-1.878151297569275,-1.843137264251709,-2.0007002353668213,-1.895658254623413,-1.7380952835083008,-1.755602240562439,-1.720588207244873,-1.878151297569275,-1.6855741739273071,-1.755602240562439,-1.7380952835083008,-1.668067216873169,-1.7906162738800049,-1.6505602598190308,-1.7380952835083008,-1.843137264251709,-1.9131652116775513,-1.7731091976165771,-1.720588207244873,-1.720588207244873,-1.843137264251709,-1.7731091976165771,-1.8606442213058472,-1.965686321258545,-1.755602240562439,-1.720588207244873,-1.878151297569275,-1.843137264251709,-1.8606442213058472,-1.8256303071975708,-1.8256303071975708,-1.9131652116775513,-1.895658254623413,-2.0007002353668213,-1.7906162738800049],[-2.018207311630249,-2.018207311630249,-1.983193278312683,-1.965686321258545,-1.965686321258545,-1.983193278312683,-1.878151297569275,-1.878151297569275,-1.878151297569275,-1.808123230934143,-1.7906162738800049,-1.6855741739273071,-1.6855741739273071,-1.7380952835083008,-1.668067216873169,-1.7380952835083008,-1.545518159866333,-1.7380952835083008,-1.5105042457580566,-1.7030812501907349,-1.6155462265014648,-1.6155462265014648,-1.6505602598190308,-1.633053183555603,-1.492997169494629,-1.668067216873169,-1.6155462265014648,-1.4404761791229248,-1.6155462265014648,-1.545518159866333,-1.5280112028121948,-1.580532193183899,-1.5280112028121948,-1.5980392694473267,-1.6155462265014648,-1.580532193183899,-1.4054621458053589,-1.580532193183899,-1.5280112028121948,-1.720588207244873,-1.4404761791229248,-1.5280112028121948,-1.6505602598190308,-1.5980392694473267,-1.457983136177063,-1.5280112028121948,-1.6855741739273071,-1.7030812501907349,-1.720588207244873,-1.5105042457580566,-1.5105042457580566,-1.6155462265014648,-1.545518159866333,-1.720588207244873,-1.5980392694473267,-1.633053183555603,-1.668067216873169,-1.633053183555603,-1.5980392694473267,-1.6505602598190308,-1.7380952835083008,-1.720588207244873,-1.668067216873169,-1.633053183555603,-1.580532193183899,-1.5980392694473267,-1.5630252361297607,-1.545518159866333,-1.5980392694473267,-1.808123230934143,-1.7731091976165771,-1.5630252361297607,-1.5630252361297607,-1.720588207244873,-1.633053183555603,-1.545518159866333,-1.5630252361297607,-1.4404761791229248,-1.668067216873169,-1.6505602598190308,-1.492997169494629,-1.5280112028121948,-1.4404761791229248,-1.7731091976165771,-1.5980392694473267,-1.4754902124404907,-1.545518159866333,-1.5980392694473267,-1.545518159866333,-1.5280112028121948,-1.580532193183899,-1.5630252361297607,-1.457983136177063,-1.7906162738800049,-1.6505602598190308,-1.580532193183899,-1.5630252361297607,-1.5630252361297607,-1.5630252361297607,-1.6155462265014648,-1.668067216873169,-1.6855741739273071,-1.545518159866333,-1.6505602598190308,-1.668067216873169,-1.6505602598190308,-1.6155462265014648,-1.6155462265014648,-1.7731091976165771,-1.7906162738800049,-1.6505602598190308,-1.7380952835083008,-1.8256303071975708,-1.7380952835083008,-1.6155462265014648,-1.7380952835083008,-1.7731091976165771,-1.6505602598190308,-1.7906162738800049,-1.755602240562439,-1.755602240562439,-1.843137264251709,-1.7731091976165771,-1.7906162738800049,-1.8256303071975708,-1.755602240562439,-1.6855741739273071,-1.7030812501907349,-1.7030812501907349,-1.668067216873169,-1.878151297569275,-1.6505602598190308,-1.808123230934143,-1.6505602598190308,-1.6855741739273071,-1.7906162738800049,-1.9131652116775513,-1.755602240562439,-1.843137264251709,-1.808123230934143,-1.8256303071975708,-1.878151297569275,-1.8606442213058472,-1.930672287940979,-2.0007002353668213,-2.0357143878936768,-1.895658254623413,-1.930672287940979,-1.0378150939941406,-1.3354341983795166,-0.8627451062202454,-1.2128851413726807,0.31022408604621887,-0.5301120281219482,-0.23249299824237823,-0.6001400351524353,0.450280100107193,-1.2128851413726807,-0.6526610851287842,-0.21498599648475647,-0.8277310729026794,-0.4425770342350006,-0.28501400351524353,-1.1253501176834106,-0.8102241158485413,-1.2654061317443848,-1.2829132080078125,0.0476190485060215,-0.5126050710678101,-0.4075630307197571,-0.9677870869636536,-0.03991596773266792,-0.7752100825309753,-0.21498599648475647,-0.8102241158485413,-0.8277310729026794,-1.3354341983795166,-0.6176470518112183,-0.25,-0.10994397848844528,-0.5301120281219482,-1.457983136177063,-1.5980392694473267,-1.9481792449951172,-1.895658254623413,-1.965686321258545,-2.0007002353668213,-1.843137264251709,-1.843137264251709,-1.930672287940979,-1.843137264251709,-1.755602240562439,-1.8256303071975708,-1.8606442213058472,-1.7731091976165771,-1.8606442213058472,-1.843137264251709,-1.7731091976165771,-1.7030812501907349,-1.7906162738800049,-1.8256303071975708,-1.720588207244873,-1.8256303071975708,-1.7030812501907349,-1.720588207244873,-1.808123230934143,-1.895658254623413,-1.720588207244873,-1.843137264251709,-1.843137264251709,-1.7731091976165771,-1.8256303071975708,-1.7731091976165771,-1.843137264251709,-1.7380952835083008,-1.843137264251709,-1.633053183555603,-1.9131652116775513,-1.895658254623413,-1.930672287940979,-1.8606442213058472,-1.983193278312683,-1.8606442213058472,-1.878151297569275],[-2.018207311630249,-2.018207311630249,-1.983193278312683,-2.0357143878936768,-1.930672287940979,-1.9481792449951172,-1.983193278312683,-1.930672287940979,-1.878151297569275,-1.9131652116775513,-1.8256303071975708,-1.8606442213058472,-1.843137264251709,-1.755602240562439,-1.7380952835083008,-1.668067216873169,-1.808123230934143,-1.580532193183899,-1.5980392694473267,-1.6505602598190308,-1.580532193183899,-1.5630252361297607,-1.6505602598190308,-1.5280112028121948,-1.7380952835083008,-1.5630252361297607,-1.580532193183899,-1.545518159866333,-1.492997169494629,-1.5630252361297607,-1.492997169494629,-1.7030812501907349,-1.4754902124404907,-1.633053183555603,-1.755602240562439,-1.5630252361297607,-1.580532193183899,-1.7380952835083008,-1.5280112028121948,-1.580532193183899,-1.5105042457580566,-1.5280112028121948,-1.5105042457580566,-1.5630252361297607,-1.580532193183899,-1.6855741739273071,-1.5980392694473267,-1.5980392694473267,-1.720588207244873,-1.545518159866333,-1.6505602598190308,-1.7906162738800049,-1.5980392694473267,-1.6855741739273071,-1.7906162738800049,-1.5980392694473267,-1.5980392694473267,-1.7731091976165771,-1.6505602598190308,-1.5280112028121948,-1.6505602598190308,-1.7030812501907349,-1.6855741739273071,-1.720588207244873,-1.7380952835083008,-1.720588207244873,-1.808123230934143,-1.5280112028121948,-1.5630252361297607,-1.633053183555603,-1.755602240562439,-1.5980392694473267,-1.545518159866333,-1.492997169494629,-1.5105042457580566,-1.5630252361297607,-1.755602240562439,-1.9131652116775513,-1.668067216873169,-1.7731091976165771,-1.5980392694473267,-1.5630252361297607,-1.7380952835083008,-1.633053183555603,-1.6155462265014648,-1.6155462265014648,-1.545518159866333,-1.6155462265014648,-1.668067216873169,-1.668067216873169,-1.7030812501907349,-1.580532193183899,-1.545518159866333,-1.4754902124404907,-1.4404761791229248,-1.545518159866333,-1.4054621458053589,-1.633053183555603,-1.7906162738800049,-1.668067216873169,-1.6155462265014648,-1.720588207244873,-1.5980392694473267,-1.7731091976165771,-1.7030812501907349,-1.668067216873169,-1.755602240562439,-1.808123230934143,-1.755602240562439,-1.7731091976165771,-1.755602240562439,-1.6855741739273071,-1.843137264251709,-1.7030812501907349,-1.808123230934143,-1.808123230934143,-1.755602240562439,-1.6855741739273071,-1.7380952835083008,-1.755602240562439,-1.7380952835083008,-1.8606442213058472,-1.755602240562439,-1.720588207244873,-1.7731091976165771,-1.7030812501907349,-1.7030812501907349,-1.7030812501907349,-1.8256303071975708,-1.9131652116775513,-1.6505602598190308,-1.7906162738800049,-1.7030812501907349,-1.9481792449951172,-1.668067216873169,-1.895658254623413,-1.8606442213058472,-1.930672287940979,-1.895658254623413,-1.7030812501907349,-1.878151297569275,-1.8606442213058472,-2.0007002353668213,-1.9481792449951172,-1.808123230934143,-2.0007002353668213,-2.018207311630249,-1.2303920984268188,-1.1428571939468384,-0.28501400351524353,0.15266107022762299,0.5903361439704895,-0.9152660965919495,0.41526609659194946,0.06512605398893356,0.2401960790157318,-0.32002800703048706,-0.7927170991897583,0.08263305574655533,-0.5826330780982971,-1.1953781843185425,-1.2829132080078125,-0.07492997497320175,-0.5126050710678101,-0.5126050710678101,-1.1253501176834106,-0.7051820755004883,-1.1778711080551147,0.5378151535987854,0.22268907725811005,-0.47759103775024414,-0.05742296949028969,-1.1953781843185425,-0.9852941036224365,-1.2303920984268188,-1.1778711080551147,-0.6876750588417053,-0.7226890921592712,-0.03991596773266792,-0.21498599648475647,-0.09243697673082352,-0.5126050710678101,-0.9152660965919495,-1.843137264251709,-1.843137264251709,-1.843137264251709,-2.0357143878936768,-1.9481792449951172,-1.895658254623413,-1.9131652116775513,-1.843137264251709,-1.843137264251709,-1.9131652116775513,-1.878151297569275,-1.808123230934143,-1.8256303071975708,-1.7380952835083008,-1.7731091976165771,-1.755602240562439,-1.8256303071975708,-1.7731091976165771,-1.878151297569275,-2.0007002353668213,-1.895658254623413,-1.720588207244873,-1.7380952835083008,-1.6855741739273071,-1.8606442213058472,-1.7030812501907349,-1.755602240562439,-1.8606442213058472,-1.808123230934143,-1.878151297569275,-1.8606442213058472,-1.8256303071975708,-1.7906162738800049,-1.8606442213058472,-1.7906162738800049,-1.7906162738800049,-1.843137264251709,-1.808123230934143,-1.755602240562439,-1.7906162738800049,-1.7731091976165771],[-2.0357143878936768,-2.018207311630249,-2.018207311630249,-2.018207311630249,-2.018207311630249,-2.0357143878936768,-1.930672287940979,-2.018207311630249,-2.018207311630249,-1.930672287940979,-1.9481792449951172,-1.9481792449951172,-1.878151297569275,-1.878151297569275,-1.8606442213058472,-1.668067216873169,-1.808123230934143,-1.6505602598190308,-1.7731091976165771,-1.5980392694473267,-1.6505602598190308,-1.6855741739273071,-1.5980392694473267,-1.755602240562439,-1.6855741739273071,-1.6505602598190308,-1.668067216873169,-1.6155462265014648,-1.5280112028121948,-1.545518159866333,-1.755602240562439,-1.5980392694473267,-1.668067216873169,-1.633053183555603,-1.580532193183899,-1.6155462265014648,-1.545518159866333,-1.633053183555603,-1.7380952835083008,-1.580532193183899,-1.7731091976165771,-1.5980392694473267,-1.6155462265014648,-1.633053183555603,-1.5280112028121948,-1.492997169494629,-1.6155462265014648,-1.7030812501907349,-1.720588207244873,-1.755602240562439,-1.5630252361297607,-1.6855741739273071,-1.6505602598190308,-1.5980392694473267,-1.7731091976165771,-1.755602240562439,-1.6505602598190308,-1.755602240562439,-1.8606442213058472,-1.6855741739273071,-1.668067216873169,-1.720588207244873,-1.8256303071975708,-1.668067216873169,-1.7380952835083008,-1.7731091976165771,-1.6505602598190308,-1.8256303071975708,-1.7030812501907349,-1.5980392694473267,-1.545518159866333,-1.580532193183899,-1.668067216873169,-1.720588207244873,-1.633053183555603,-1.633053183555603,-1.7030812501907349,-1.7030812501907349,-1.5980392694473267,-1.755602240562439,-1.7030812501907349,-1.545518159866333,-1.5980392694473267,-1.5105042457580566,-1.633053183555603,-1.7030812501907349,-1.580532193183899,-1.633053183555603,-1.6155462265014648,-1.545518159866333,-1.668067216873169,-1.7030812501907349,-1.668067216873169,-1.6855741739273071,-1.668067216873169,-1.5280112028121948,-1.633053183555603,-1.5980392694473267,-1.6855741739273071,-1.7380952835083008,-1.7380952835083008,-1.755602240562439,-1.755602240562439,-1.808123230934143,-1.6855741739273071,-1.7030812501907349,-1.8256303071975708,-1.755602240562439,-1.755602240562439,-1.720588207244873,-1.6505602598190308,-1.7380952835083008,-1.7030812501907349,-1.808123230934143,-1.965686321258545,-1.720588207244873,-1.7030812501907349,-1.668067216873169,-1.6855741739273071,-1.7380952835083008,-1.668067216873169,-1.843137264251709,-1.6505602598190308,-1.7380952835083008,-1.7030812501907349,-1.7906162738800049,-1.808123230934143,-1.9131652116775513,-1.808123230934143,-1.7906162738800049,-1.7906162738800049,-1.965686321258545,-1.7906162738800049,-1.895658254623413,-1.878151297569275,-1.843137264251709,-1.878151297569275,-1.895658254623413,-1.808123230934143,-1.895658254623413,-1.930672287940979,-1.965686321258545,-2.018207311630249,-2.0357143878936768,-1.9481792449951172,-1.1603641510009766,0.22268907725811005,-0.3550420105457306,-0.8627451062202454,-0.03991596773266792,-0.6701680421829224,0.4852941036224365,-0.47759103775024414,-0.4425770342350006,-0.05742296949028969,-0.5651260614395142,-1.3529411554336548,-1.3529411554336548,-0.7752100825309753,-0.7577030658721924,-0.8627451062202454,-0.4950980246067047,-0.21498599648475647,-0.28501400351524353,0.4852941036224365,0.32773110270500183,-0.6001400351524353,-0.4075630307197571,0.32773110270500183,0.0476190485060215,0.1001400575041771,0.6953781247138977,-0.5826330780982971,-0.33753502368927,-1.457983136177063,-1.580532193183899,-1.1253501176834106,-1.1253501176834106,-0.09243697673082352,0.13515406847000122,-0.4425770342350006,-1.1603641510009766,-0.4075630307197571,-1.0028011798858643,-1.1078431606292725,-1.895658254623413,-1.6155462265014648,-1.9131652116775513,-1.965686321258545,-1.9481792449951172,-2.0007002353668213,-1.9481792449951172,-1.9131652116775513,-1.878151297569275,-1.8256303071975708,-1.843137264251709,-1.878151297569275,-1.930672287940979,-1.930672287940979,-1.843137264251709,-1.930672287940979,-1.5980392694473267,-1.843137264251709,-1.8606442213058472,-1.878151297569275,-1.7380952835083008,-1.9131652116775513,-1.878151297569275,-1.8256303071975708,-1.843137264251709,-1.8606442213058472,-1.895658254623413,-1.808123230934143,-1.983193278312683,-1.9131652116775513,-1.7731091976165771,-1.965686321258545,-1.7906162738800049,-1.843137264251709,-1.808123230934143,-1.843137264251709,-1.8256303071975708,-1.895658254623413,-1.930672287940979],[-2.0357143878936768,-2.018207311630249,-2.0357143878936768,-2.018207311630249,-2.0007002353668213,-2.018207311630249,-1.8606442213058472,-2.018207311630249,-2.0357143878936768,-2.0357143878936768,-2.0007002353668213,-2.0357143878936768,-1.930672287940979,-2.018207311630249,-1.9481792449951172,-1.895658254623413,-1.7380952835083008,-1.7731091976165771,-1.7731091976165771,-1.5630252361297607,-1.755602240562439,-1.755602240562439,-1.7380952835083008,-1.633053183555603,-1.6855741739273071,-1.580532193183899,-1.755602240562439,-1.6505602598190308,-1.6855741739273071,-1.7380952835083008,-1.5630252361297607,-1.633053183555603,-1.668067216873169,-1.7731091976165771,-1.8256303071975708,-1.457983136177063,-1.720588207244873,-1.6155462265014648,-1.457983136177063,-1.6855741739273071,-1.633053183555603,-1.7030812501907349,-1.633053183555603,-1.7906162738800049,-1.720588207244873,-1.755602240562439,-1.7030812501907349,-1.6855741739273071,-1.8606442213058472,-1.6855741739273071,-1.668067216873169,-1.7030812501907349,-1.7380952835083008,-1.7906162738800049,-1.7030812501907349,-1.545518159866333,-1.8606442213058472,-1.7731091976165771,-1.895658254623413,-1.633053183555603,-1.7731091976165771,-1.6505602598190308,-1.808123230934143,-1.720588207244873,-1.7030812501907349,-1.668067216873169,-1.720588207244873,-1.720588207244873,-1.6855741739273071,-1.5980392694473267,-1.5980392694473267,-1.5980392694473267,-1.7731091976165771,-1.808123230934143,-1.7731091976165771,-1.5980392694473267,-1.5980392694473267,-1.580532193183899,-1.5980392694473267,-1.7906162738800049,-1.6155462265014648,-1.720588207244873,-1.720588207244873,-1.7030812501907349,-1.668067216873169,-1.720588207244873,-1.580532193183899,-1.5980392694473267,-1.895658254623413,-1.7731091976165771,-1.7380952835083008,-1.668067216873169,-1.9131652116775513,-1.843137264251709,-1.580532193183899,-1.7030812501907349,-1.6855741739273071,-1.755602240562439,-1.755602240562439,-1.930672287940979,-1.720588207244873,-1.8256303071975708,-1.9481792449951172,-1.8256303071975708,-1.7731091976165771,-1.843137264251709,-1.7030812501907349,-1.930672287940979,-1.6505602598190308,-1.6155462265014648,-1.8606442213058472,-1.8256303071975708,-1.878151297569275,-1.808123230934143,-1.7906162738800049,-1.808123230934143,-1.7731091976165771,-1.7030812501907349,-1.755602240562439,-1.6855741739273071,-1.7906162738800049,-1.878151297569275,-1.878151297569275,-1.6155462265014648,-1.7731091976165771,-1.668067216873169,-1.7906162738800049,-1.8256303071975708,-1.808123230934143,-1.8256303071975708,-1.878151297569275,-1.843137264251709,-1.7906162738800049,-1.9481792449951172,-1.8606442213058472,-1.8256303071975708,-1.895658254623413,-1.8256303071975708,-2.0007002353668213,-1.9481792449951172,-1.895658254623413,-1.930672287940979,-2.0007002353668213,-1.9131652116775513,-1.965686321258545,-1.3879551887512207,-0.6526610851287842,-0.8977590799331665,0.27521008253097534,-0.4075630307197571,-0.3550420105457306,-0.10994397848844528,-0.37254902720451355,-1.457983136177063,-1.2654061317443848,-1.2654061317443848,-1.4054621458053589,-1.4054621458053589,-1.1428571939468384,-1.5280112028121948,-0.8277310729026794,-0.5126050710678101,-0.9152660965919495,-0.1449579894542694,-0.0049019609577953815,0.030112044885754585,0.13515406847000122,-0.23249299824237823,-0.7752100825309753,-0.7401960492134094,-1.2478991746902466,0.2927170991897583,0.2401960790157318,-1.6855741739273071,-1.1778711080551147,-1.1953781843185425,-1.0903360843658447,-0.6001400351524353,0.22268907725811005,-0.12745098769664764,-0.32002800703048706,-0.8802521228790283,-0.37254902720451355,-1.457983136177063,-1.1428571939468384,-1.7380952835083008,-0.8102241158485413,-1.7906162738800049,-1.878151297569275,-1.895658254623413,-1.965686321258545,-1.8256303071975708,-1.983193278312683,-1.983193278312683,-1.895658254623413,-1.895658254623413,-1.9131652116775513,-1.808123230934143,-1.7731091976165771,-1.7030812501907349,-1.8606442213058472,-1.8256303071975708,-1.9481792449951172,-1.7731091976165771,-1.8606442213058472,-1.808123230934143,-1.8256303071975708,-1.930672287940979,-1.7030812501907349,-1.895658254623413,-1.7731091976165771,-1.9131652116775513,-1.7906162738800049,-1.7906162738800049,-1.720588207244873,-1.843137264251709,-1.8256303071975708,-1.7731091976165771,-1.7380952835083008,-1.930672287940979,-2.0357143878936768,-1.9481792449951172,-1.965686321258545,-1.9131652116775513],[-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-2.018207311630249,-1.965686321258545,-2.0357143878936768,-1.965686321258545,-1.930672287940979,-1.983193278312683,-2.0357143878936768,-1.930672287940979,-1.983193278312683,-1.965686321258545,-2.0007002353668213,-1.895658254623413,-1.965686321258545,-1.965686321258545,-1.895658254623413,-1.930672287940979,-1.808123230934143,-1.7906162738800049,-1.895658254623413,-1.8606442213058472,-1.6855741739273071,-1.720588207244873,-1.5630252361297607,-1.5980392694473267,-1.720588207244873,-1.5280112028121948,-1.6155462265014648,-1.6505602598190308,-1.580532193183899,-1.668067216873169,-1.7731091976165771,-1.6505602598190308,-1.5980392694473267,-1.808123230934143,-1.755602240562439,-1.808123230934143,-1.633053183555603,-1.668067216873169,-1.633053183555603,-1.580532193183899,-1.7380952835083008,-1.6855741739273071,-1.6855741739273071,-1.7906162738800049,-1.7380952835083008,-1.843137264251709,-1.720588207244873,-1.7906162738800049,-1.7731091976165771,-1.6505602598190308,-1.755602240562439,-1.808123230934143,-1.720588207244873,-1.7906162738800049,-1.720588207244873,-1.808123230934143,-1.843137264251709,-1.8606442213058472,-1.755602240562439,-1.7731091976165771,-1.7906162738800049,-1.720588207244873,-1.7030812501907349,-1.7030812501907349,-1.7030812501907349,-1.668067216873169,-1.6855741739273071,-1.8256303071975708,-1.6855741739273071,-1.720588207244873,-1.668067216873169,-1.720588207244873,-1.720588207244873,-1.668067216873169,-1.7906162738800049,-1.8256303071975708,-1.7030812501907349,-1.755602240562439,-1.755602240562439,-1.7030812501907349,-1.7731091976165771,-1.755602240562439,-1.755602240562439,-1.7380952835083008,-1.878151297569275,-1.878151297569275,-1.7380952835083008,-1.895658254623413,-1.8256303071975708,-1.668067216873169,-1.7731091976165771,-1.7380952835083008,-1.7906162738800049,-1.8256303071975708,-1.808123230934143,-1.7731091976165771,-1.843137264251709,-1.6155462265014648,-1.668067216873169,-1.7380952835083008,-1.8256303071975708,-1.7380952835083008,-1.720588207244873,-1.7731091976165771,-1.878151297569275,-1.8606442213058472,-1.8256303071975708,-1.808123230934143,-1.7731091976165771,-1.808123230934143,-1.843137264251709,-1.878151297569275,-1.8256303071975708,-1.7380952835083008,-1.720588207244873,-1.9131652116775513,-1.7906162738800049,-1.895658254623413,-1.8256303071975708,-1.7731091976165771,-1.8256303071975708,-1.9481792449951172,-1.755602240562439,-1.878151297569275,-1.7380952835083008,-1.8606442213058472,-1.8606442213058472,-1.9131652116775513,-1.808123230934143,-1.8256303071975708,-1.6855741739273071,-1.8256303071975708,-1.983193278312683,-1.983193278312683,-1.9481792449951172,-1.983193278312683,-2.0357143878936768,-1.983193278312683,-2.018207311630249,-1.3704482316970825,-0.8627451062202454,-0.9852941036224365,0.15266107022762299,-0.7226890921592712,-1.0203081369400024,-0.23249299824237823,-0.5476190447807312,-1.545518159866333,-1.3004201650619507,-1.4054621458053589,-0.9502801299095154,-2.0357143878936768,-1.1428571939468384,-1.668067216873169,-1.7380952835083008,-0.9152660965919495,-1.1078431606292725,-1.1428571939468384,-1.1078431606292725,-0.5476190447807312,-0.8102241158485413,0.31022408604621887,0.32773110270500183,0.5203081369400024,0.0476190485060215,-0.6351540684700012,-1.1078431606292725,-0.37254902720451355,0.5728291273117065,-0.07492997497320175,-0.9327731132507324,-1.6505602598190308,-1.5280112028121948,-0.37254902720451355,0.15266107022762299,-0.10994397848844528,0.5203081369400024,-1.0028011798858643,0.18767507374286652,-1.0203081369400024,-1.0728291273117065,-0.8627451062202454,-1.1253501176834106,-1.6855741739273071,-1.9131652116775513,-1.878151297569275,-2.0357143878936768,-2.0357143878936768,-2.0007002353668213,-1.983193278312683,-1.808123230934143,-1.930672287940979,-1.9131652116775513,-1.843137264251709,-1.843137264251709,-1.7380952835083008,-1.9481792449951172,-1.8606442213058472,-1.7906162738800049,-1.843137264251709,-1.8256303071975708,-1.843137264251709,-1.9131652116775513,-1.8256303071975708,-1.878151297569275,-1.8606442213058472,-1.9131652116775513,-1.808123230934143,-1.878151297569275,-1.808123230934143,-1.843137264251709,-1.843137264251709,-1.7906162738800049,-1.7906162738800049,-1.9481792449951172,-1.895658254623413,-1.8256303071975708,-1.720588207244873,-1.7906162738800049,-1.965686321258545],[-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-2.018207311630249,-1.930672287940979,-1.895658254623413,-1.9131652116775513,-1.983193278312683,-1.930672287940979,-1.9131652116775513,-1.930672287940979,-1.983193278312683,-1.878151297569275,-1.965686321258545,-2.018207311630249,-2.0357143878936768,-1.965686321258545,-1.9481792449951172,-1.8606442213058472,-1.9481792449951172,-1.965686321258545,-1.930672287940979,-1.9131652116775513,-1.930672287940979,-1.8606442213058472,-1.9131652116775513,-1.7731091976165771,-1.7380952835083008,-1.7380952835083008,-1.6855741739273071,-1.668067216873169,-1.808123230934143,-1.5280112028121948,-1.808123230934143,-1.7030812501907349,-1.7030812501907349,-1.7380952835083008,-1.580532193183899,-1.7030812501907349,-1.808123230934143,-1.808123230934143,-1.720588207244873,-1.7906162738800049,-1.843137264251709,-1.7731091976165771,-1.7731091976165771,-1.7906162738800049,-1.8256303071975708,-1.755602240562439,-1.878151297569275,-1.7906162738800049,-1.808123230934143,-1.8256303071975708,-1.7030812501907349,-1.720588207244873,-1.720588207244873,-1.8256303071975708,-1.7380952835083008,-1.8256303071975708,-1.895658254623413,-1.7380952835083008,-1.8606442213058472,-1.6505602598190308,-1.7030812501907349,-1.755602240562439,-1.808123230934143,-1.808123230934143,-1.843137264251709,-1.878151297569275,-1.755602240562439,-1.668067216873169,-1.7731091976165771,-1.7030812501907349,-1.8256303071975708,-1.668067216873169,-1.7380952835083008,-1.808123230934143,-1.808123230934143,-1.8256303071975708,-1.7906162738800049,-1.7030812501907349,-1.755602240562439,-1.7030812501907349,-1.7731091976165771,-1.8606442213058472,-1.9481792449951172,-1.9131652116775513,-1.720588207244873,-1.7731091976165771,-1.808123230934143,-1.895658254623413,-1.7380952835083008,-1.8256303071975708,-1.755602240562439,-1.8256303071975708,-1.720588207244873,-1.878151297569275,-1.895658254623413,-1.8606442213058472,-1.878151297569275,-1.878151297569275,-1.808123230934143,-1.720588207244873,-1.720588207244873,-1.895658254623413,-1.843137264251709,-1.9131652116775513,-1.8256303071975708,-1.7380952835083008,-1.9481792449951172,-1.808123230934143,-1.7731091976165771,-1.7906162738800049,-1.808123230934143,-1.8256303071975708,-1.7380952835083008,-1.808123230934143,-1.983193278312683,-1.808123230934143,-1.843137264251709,-1.7731091976165771,-1.7731091976165771,-1.8606442213058472,-1.8606442213058472,-1.843137264251709,-1.8606442213058472,-1.843137264251709,-1.8606442213058472,-1.930672287940979,-1.930672287940979,-1.878151297569275,-1.895658254623413,-1.7380952835083008,-2.0357143878936768,-2.018207311630249,-1.9131652116775513,-1.9481792449951172,-2.018207311630249,-2.0007002353668213,-1.965686321258545,-2.018207311630249,-1.983193278312683,0.31022408604621887,0.4327731132507324,0.17016807198524475,-0.0049019609577953815,0.030112044885754585,-0.7051820755004883,-0.7752100825309753,-1.4229692220687866,-1.545518159866333,-1.3354341983795166,-1.3704482316970825,-1.5105042457580566,-0.6526610851287842,-1.3354341983795166,-1.2478991746902466,-1.0903360843658447,-1.0728291273117065,-0.8802521228790283,-0.6176470518112183,-0.6876750588417053,-1.2128851413726807,-0.33753502368927,-0.4075630307197571,0.2927170991897583,0.6953781247138977,0.8354341983795166,0.3977591097354889,-1.7906162738800049,-0.4950980246067047,-0.7401960492134094,-0.21498599648475647,1.1155462265014648,-0.23249299824237823,0.6778711676597595,-0.03991596773266792,-0.16246499121189117,0.8004201650619507,-0.03991596773266792,-1.1953781843185425,0.25770309567451477,-0.9852941036224365,-1.4229692220687866,-0.16246499121189117,0.012605042196810246,-0.9502801299095154,-1.1953781843185425,-1.0903360843658447,-1.720588207244873,-1.9131652116775513,-2.0357143878936768,-1.895658254623413,-1.895658254623413,-1.983193278312683,-1.878151297569275,-1.965686321258545,-1.930672287940979,-1.755602240562439,-1.878151297569275,-1.843137264251709,-1.7906162738800049,-1.878151297569275,-1.8256303071975708,-1.8256303071975708,-1.8256303071975708,-1.9481792449951172,-1.930672287940979,-1.7731091976165771,-1.878151297569275,-1.8606442213058472,-1.930672287940979,-1.8606442213058472,-1.808123230934143,-1.878151297569275,-1.895658254623413,-1.808123230934143,-1.8606442213058472,-1.8606442213058472,-1.9481792449951172,-1.8606442213058472,-1.843137264251709,-1.7380952835083008],[-2.0357143878936768,-2.018207311630249,-2.018207311630249,-2.0357143878936768,-1.965686321258545,-1.9131652116775513,-1.9481792449951172,-1.930672287940979,-1.9131652116775513,-1.930672287940979,-1.9131652116775513,-1.9481792449951172,-1.895658254623413,-1.9131652116775513,-1.9481792449951172,-1.9131652116775513,-1.8606442213058472,-1.895658254623413,-1.895658254623413,-1.930672287940979,-1.9481792449951172,-1.895658254623413,-1.9481792449951172,-1.895658254623413,-1.983193278312683,-1.9131652116775513,-1.930672287940979,-2.018207311630249,-1.9131652116775513,-1.878151297569275,-1.895658254623413,-1.580532193183899,-1.843137264251709,-1.7030812501907349,-1.580532193183899,-1.7906162738800049,-1.808123230934143,-1.843137264251709,-1.930672287940979,-1.7380952835083008,-1.878151297569275,-1.7731091976165771,-1.930672287940979,-1.808123230934143,-1.7906162738800049,-1.878151297569275,-1.9131652116775513,-1.9481792449951172,-1.7906162738800049,-1.808123230934143,-1.7906162738800049,-2.0007002353668213,-1.8606442213058472,-1.7906162738800049,-1.895658254623413,-1.9131652116775513,-1.8256303071975708,-1.808123230934143,-1.843137264251709,-1.7380952835083008,-1.895658254623413,-1.9131652116775513,-1.7906162738800049,-1.808123230934143,-1.808123230934143,-1.8606442213058472,-1.9481792449951172,-1.843137264251709,-1.6505602598190308,-1.755602240562439,-1.7731091976165771,-1.7380952835083008,-1.755602240562439,-1.7906162738800049,-1.8606442213058472,-1.8256303071975708,-1.8256303071975708,-1.8256303071975708,-1.930672287940979,-1.843137264251709,-1.843137264251709,-1.930672287940979,-1.843137264251709,-1.8606442213058472,-1.7906162738800049,-1.878151297569275,-1.9131652116775513,-1.843137264251709,-1.843137264251709,-1.930672287940979,-1.878151297569275,-1.895658254623413,-1.843137264251709,-1.8256303071975708,-1.878151297569275,-1.843137264251709,-1.633053183555603,-2.0007002353668213,-2.0357143878936768,-2.0357143878936768,-1.6855741739273071,-1.8256303071975708,-1.843137264251709,-1.895658254623413,-1.843137264251709,-1.668067216873169,-1.8256303071975708,-1.8606442213058472,-1.808123230934143,-1.843137264251709,-1.7731091976165771,-1.9481792449951172,-1.7906162738800049,-1.8606442213058472,-1.930672287940979,-1.930672287940979,-1.8606442213058472,-1.9131652116775513,-1.808123230934143,-1.8256303071975708,-1.9481792449951172,-2.0357143878936768,-1.9481792449951172,-1.808123230934143,-1.755602240562439,-1.9131652116775513,-1.878151297569275,-1.7731091976165771,-1.9481792449951172,-1.930672287940979,-1.8606442213058472,-1.895658254623413,-2.0007002353668213,-1.9131652116775513,-2.0357143878936768,-2.0357143878936768,-1.983193278312683,-2.0357143878936768,-1.983193278312683,-2.018207311630249,-2.0357143878936768,-2.0357143878936768,-0.8627451062202454,-1.0728291273117065,-0.8977590799331665,-0.28501400351524353,-0.12745098769664764,0.6078431606292725,-0.28501400351524353,-1.6505602598190308,-1.6855741739273071,-1.6155462265014648,-1.720588207244873,-0.9502801299095154,-1.0028011798858643,-1.0903360843658447,-1.580532193183899,-1.1078431606292725,-1.0728291273117065,-0.42507001757621765,0.2927170991897583,-0.5301120281219482,-1.1778711080551147,-0.7752100825309753,-0.5126050710678101,-0.1974789947271347,0.5203081369400024,1.168067216873169,0.41526609659194946,0.7654061913490295,-0.1974789947271347,-0.9152660965919495,-0.9152660965919495,-1.0553221702575684,-1.0203081369400024,-0.6876750588417053,-0.09243697673082352,0.41526609659194946,1.2030812501907349,0.3977591097354889,-0.0049019609577953815,-0.33753502368927,0.030112044885754585,0.11764705926179886,-1.2478991746902466,-0.09243697673082352,0.27521008253097534,-1.1428571939468384,-0.1449579894542694,-0.6001400351524353,-1.545518159866333,-1.0903360843658447,-1.4229692220687866,-2.0007002353668213,-1.895658254623413,-2.0357143878936768,-2.0357143878936768,-1.9131652116775513,-1.8606442213058472,-1.8606442213058472,-1.878151297569275,-1.878151297569275,-2.0007002353668213,-1.843137264251709,-1.9131652116775513,-1.808123230934143,-1.9131652116775513,-1.9131652116775513,-1.930672287940979,-1.8606442213058472,-1.9131652116775513,-1.895658254623413,-1.808123230934143,-1.930672287940979,-1.965686321258545,-1.878151297569275,-2.0007002353668213,-1.930672287940979,-1.9481792449951172,-1.930672287940979,-1.7731091976165771,-1.983193278312683,-1.8256303071975708,-1.9131652116775513],[-2.0357143878936768,-2.0007002353668213,-2.0007002353668213,-2.0357143878936768,-1.930672287940979,-1.878151297569275,-1.8606442213058472,-1.9481792449951172,-1.755602240562439,-2.018207311630249,-1.983193278312683,-1.8256303071975708,-1.983193278312683,-1.9131652116775513,-1.930672287940979,-1.8256303071975708,-1.8606442213058472,-1.9481792449951172,-1.7030812501907349,-1.7906162738800049,-1.843137264251709,-1.843137264251709,-1.808123230934143,-1.7906162738800049,-1.878151297569275,-1.930672287940979,-1.895658254623413,-1.878151297569275,-1.878151297569275,-2.0007002353668213,-1.930672287940979,-1.878151297569275,-1.6855741739273071,-1.9131652116775513,-1.965686321258545,-1.930672287940979,-1.8256303071975708,-1.9131652116775513,-1.843137264251709,-1.7906162738800049,-1.930672287940979,-1.983193278312683,-1.965686321258545,-1.843137264251709,-1.895658254623413,-1.843137264251709,-1.983193278312683,-1.965686321258545,-1.8256303071975708,-1.808123230934143,-1.9481792449951172,-1.9131652116775513,-1.895658254623413,-1.895658254623413,-1.8256303071975708,-1.895658254623413,-1.895658254623413,-2.0357143878936768,-1.930672287940979,-1.878151297569275,-1.983193278312683,-1.7731091976165771,-1.878151297569275,-1.755602240562439,-1.878151297569275,-1.983193278312683,-1.755602240562439,-1.878151297569275,-1.755602240562439,-1.8606442213058472,-1.895658254623413,-1.7380952835083008,-1.965686321258545,-1.930672287940979,-2.0357143878936768,-1.808123230934143,-1.843137264251709,-1.808123230934143,-1.895658254623413,-1.7906162738800049,-1.7731091976165771,-1.9131652116775513,-1.983193278312683,-2.0357143878936768,-1.7906162738800049,-1.930672287940979,-1.878151297569275,-1.965686321258545,-2.0007002353668213,-1.8606442213058472,-2.0357143878936768,-1.843137264251709,-1.7380952835083008,-1.965686321258545,-1.7380952835083008,-2.0357143878936768,-0.3550420105457306,0.9929971694946289,1.7457983493804932,1.395658254623413,0.030112044885754585,-1.895658254623413,-1.808123230934143,-1.720588207244873,-1.9131652116775513,-1.8606442213058472,-1.8606442213058472,-1.878151297569275,-1.843137264251709,-1.895658254623413,-1.9131652116775513,-1.930672287940979,-1.930672287940979,-1.878151297569275,-1.8606442213058472,-1.9131652116775513,-2.0007002353668213,-1.8606442213058472,-1.895658254623413,-1.9481792449951172,-1.983193278312683,-1.878151297569275,-1.8256303071975708,-1.878151297569275,-1.878151297569275,-1.8256303071975708,-1.895658254623413,-1.983193278312683,-1.9131652116775513,-1.9131652116775513,-2.0007002353668213,-1.9131652116775513,-1.843137264251709,-2.018207311630249,-2.0007002353668213,-2.0007002353668213,-2.018207311630249,-2.0357143878936768,-1.983193278312683,-1.983193278312683,-1.895658254623413,-0.7226890921592712,-0.3025210201740265,0.08263305574655533,0.3452380895614624,-0.6001400351524353,0.6778711676597595,-0.4075630307197571,0.15266107022762299,-0.8102241158485413,-1.1428571939468384,-1.720588207244873,-1.457983136177063,-0.6526610851287842,-1.3529411554336548,-1.0203081369400024,-1.3354341983795166,-1.1078431606292725,-0.7226890921592712,-0.8802521228790283,-1.1778711080551147,-0.23249299824237823,-1.1428571939468384,-0.9852941036224365,-0.8277310729026794,-0.4950980246067047,-0.32002800703048706,0.2927170991897583,-0.23249299824237823,0.9404761791229248,-0.7401960492134094,0.9579831957817078,0.20518207550048828,0.13515406847000122,1.1505602598190308,0.9404761791229248,-0.28501400351524353,0.1001400575041771,0.22268907725811005,0.4327731132507324,-0.05742296949028969,0.5203081369400024,-0.3550420105457306,-0.25,-2.018207311630249,-0.5826330780982971,-0.10994397848844528,-0.1449579894542694,0.4852941036224365,-0.03991596773266792,-0.03991596773266792,-1.3529411554336548,-1.7030812501907349,-1.4229692220687866,-0.9327731132507324,-1.457983136177063,-1.9481792449951172,-2.0357143878936768,-2.0357143878936768,-1.983193278312683,-1.878151297569275,-1.930672287940979,-2.0357143878936768,-1.755602240562439,-1.930672287940979,-2.0357143878936768,-1.965686321258545,-1.895658254623413,-1.9481792449951172,-2.0007002353668213,-1.9481792449951172,-1.9131652116775513,-1.895658254623413,-1.7906162738800049,-1.843137264251709,-1.9131652116775513,-1.878151297569275,-1.930672287940979,-1.983193278312683,-1.895658254623413,-1.930672287940979,-1.983193278312683,-1.895658254623413,-1.8256303071975708],[-2.0357143878936768,-2.0007002353668213,-2.0357143878936768,-2.018207311630249,-2.018207311630249,-1.8606442213058472,-1.878151297569275,-1.8606442213058472,-1.843137264251709,-1.930672287940979,-2.0357143878936768,-1.895658254623413,-1.8256303071975708,-1.843137264251709,-1.8256303071975708,-1.843137264251709,-1.8606442213058472,-1.7906162738800049,-1.8256303071975708,-1.965686321258545,-1.7906162738800049,-1.843137264251709,-1.808123230934143,-1.7906162738800049,-1.7906162738800049,-1.720588207244873,-1.878151297569275,-1.7380952835083008,-1.7906162738800049,-1.8606442213058472,-1.843137264251709,-1.930672287940979,-1.9131652116775513,-1.843137264251709,-1.9131652116775513,-1.878151297569275,-1.9131652116775513,-1.965686321258545,-1.878151297569275,-1.878151297569275,-1.895658254623413,-1.843137264251709,-1.9131652116775513,-1.965686321258545,-1.9131652116775513,-1.9481792449951172,-1.930672287940979,-1.895658254623413,-1.930672287940979,-1.965686321258545,-2.018207311630249,-1.8256303071975708,-1.8606442213058472,-2.0357143878936768,-1.965686321258545,-1.8606442213058472,-1.9131652116775513,-1.7906162738800049,-1.843137264251709,-1.878151297569275,-1.7906162738800049,-1.9481792449951172,-1.8606442213058472,-1.878151297569275,-1.878151297569275,-1.8256303071975708,-1.7731091976165771,-1.808123230934143,-1.878151297569275,-1.843137264251709,-1.8606442213058472,-1.930672287940979,-1.9481792449951172,-1.755602240562439,-1.808123230934143,-1.7906162738800049,-1.878151297569275,-1.965686321258545,-2.018207311630249,-1.930672287940979,-2.018207311630249,-2.0357143878936768,-2.018207311630249,-1.8606442213058472,-1.930672287940979,-1.8256303071975708,-1.895658254623413,-1.7906162738800049,-1.3354341983795166,-1.808123230934143,-1.7906162738800049,-1.5630252361297607,-1.9481792449951172,-1.8256303071975708,0.11764705926179886,1.8858543634414673,1.6582633256912231,1.6232492923736572,1.8333333730697632,1.9733893871307373,2.0084033012390137,-1.6855741739273071,-1.895658254623413,-1.965686321258545,-1.8606442213058472,-1.9481792449951172,-1.8606442213058472,-1.843137264251709,-1.8606442213058472,-1.930672287940979,-1.965686321258545,-1.9131652116775513,-1.965686321258545,-1.9481792449951172,-1.9131652116775513,-1.895658254623413,-1.895658254623413,-1.930672287940979,-1.9481792449951172,-1.9131652116775513,-1.983193278312683,-1.930672287940979,-1.8606442213058472,-1.808123230934143,-1.930672287940979,-1.878151297569275,-1.8606442213058472,-1.895658254623413,-1.965686321258545,-1.930672287940979,-1.9481792449951172,-2.0357143878936768,-2.0357143878936768,-1.983193278312683,-2.018207311630249,-2.018207311630249,-2.0357143878936768,-2.0357143878936768,-2.018207311630249,-2.0357143878936768,-2.0357143878936768,-1.4754902124404907,-0.1449579894542694,0.5728291273117065,-0.5651260614395142,0.41526609659194946,-0.23249299824237823,0.31022408604621887,-1.0903360843658447,-1.0203081369400024,-1.4754902124404907,-0.26750701665878296,-1.1253501176834106,-0.4600840210914612,-1.3529411554336548,-1.6505602598190308,-0.8102241158485413,-0.5301120281219482,-0.7577030658721924,-1.0203081369400024,-0.5651260614395142,-0.9677870869636536,0.27521008253097534,-1.1078431606292725,-0.8277310729026794,-0.8102241158485413,0.32773110270500183,0.5553221106529236,1.2380952835083008,0.9929971694946289,2.0259103775024414,0.4852941036224365,0.7829131484031677,0.8879551887512207,0.2927170991897583,-0.3900560140609741,0.4327731132507324,-0.7401960492134094,-0.28501400351524353,0.38025209307670593,0.25770309567451477,-0.09243697673082352,0.18767507374286652,0.6078431606292725,-1.1778711080551147,-0.32002800703048706,-0.07492997497320175,-0.33753502368927,0.5728291273117065,0.0476190485060215,-0.32002800703048706,0.0476190485060215,-1.4404761791229248,-1.0903360843658447,-1.0378150939941406,-0.9852941036224365,-1.4229692220687866,-1.965686321258545,-2.0357143878936768,-1.7380952835083008,-1.930672287940979,-2.0357143878936768,-2.018207311630249,-1.8606442213058472,-1.983193278312683,-1.8606442213058472,-1.843137264251709,-1.8606442213058472,-1.878151297569275,-1.878151297569275,-1.895658254623413,-1.965686321258545,-1.895658254623413,-1.9131652116775513,-1.9131652116775513,-1.895658254623413,-1.965686321258545,-1.930672287940979,-1.9131652116775513,-1.9131652116775513,-1.878151297569275,-1.983193278312683,-1.808123230934143,-1.983193278312683],[-2.018207311630249,-2.0007002353668213,-2.0007002353668213,-1.9481792449951172,-1.983193278312683,-1.9131652116775513,-2.018207311630249,-1.878151297569275,-1.983193278312683,-1.878151297569275,-1.983193278312683,-1.7906162738800049,-1.8606442213058472,-1.7731091976165771,-1.8606442213058472,-1.755602240562439,-1.7731091976165771,-1.6505602598190308,-1.8256303071975708,-1.808123230934143,-1.7731091976165771,-1.7731091976165771,-1.8606442213058472,-1.7380952835083008,-1.720588207244873,-1.7731091976165771,-1.720588207244873,-1.808123230934143,-1.720588207244873,-1.6855741739273071,-1.7906162738800049,-1.808123230934143,-1.755602240562439,-1.8256303071975708,-1.7906162738800049,-1.7731091976165771,-1.720588207244873,-1.808123230934143,-1.843137264251709,-1.878151297569275,-1.843137264251709,-1.8606442213058472,-1.878151297569275,-1.8256303071975708,-1.895658254623413,-1.8606442213058472,-1.7380952835083008,-1.930672287940979,-1.930672287940979,-1.7380952835083008,-1.808123230934143,-1.895658254623413,-1.755602240562439,-1.983193278312683,-1.930672287940979,-1.8606442213058472,-2.018207311630249,-1.8606442213058472,-1.895658254623413,-1.983193278312683,-1.930672287940979,-1.965686321258545,-1.965686321258545,-2.0357143878936768,-2.0357143878936768,-1.8606442213058472,-2.018207311630249,-1.9481792449951172,-1.895658254623413,-2.0007002353668213,-1.983193278312683,-1.965686321258545,-1.983193278312683,-2.0007002353668213,-2.0357143878936768,-1.9481792449951172,-1.965686321258545,-1.895658254623413,-1.965686321258545,-1.983193278312683,-1.9481792449951172,-2.0357143878936768,-1.3004201650619507,-1.5105042457580566,-1.6155462265014648,-1.1253501176834106,-1.4229692220687866,-1.8606442213058472,-0.7752100825309753,-0.8977590799331665,-0.02240896411240101,-0.02240896411240101,0.27521008253097534,2.3585433959960938,1.255602240562439,1.430672287940979,1.2731091976165771,1.8508403301239014,1.9558823108673096,2.2710084915161133,2.0084033012390137,-0.26750701665878296,-1.930672287940979,-1.9131652116775513,-1.965686321258545,-1.983193278312683,-1.9481792449951172,-1.9131652116775513,-1.9131652116775513,-1.983193278312683,-1.930672287940979,-1.930672287940979,-2.0357143878936768,-1.965686321258545,-2.0007002353668213,-2.0007002353668213,-1.983193278312683,-1.965686321258545,-1.983193278312683,-1.9481792449951172,-2.0007002353668213,-1.983193278312683,-1.9131652116775513,-2.0357143878936768,-1.983193278312683,-2.018207311630249,-2.018207311630249,-1.9481792449951172,-2.0007002353668213,-1.983193278312683,-2.0007002353668213,-1.965686321258545,-2.018207311630249,-2.018207311630249,-2.0007002353668213,-2.0357143878936768,-2.018207311630249,-2.0357143878936768,-2.0357143878936768,-1.983193278312683,-0.8627451062202454,-0.1974789947271347,-1.0903360843658447,-0.09243697673082352,0.1001400575041771,0.15266107022762299,-0.9852941036224365,0.4327731132507324,0.11764705926179886,0.18767507374286652,-0.37254902720451355,-0.8277310729026794,-1.0903360843658447,-1.1603641510009766,-0.8277310729026794,-0.9677870869636536,-0.9852941036224365,-1.2478991746902466,-0.3025210201740265,-1.1078431606292725,-1.1428571939468384,-1.1603641510009766,-0.8277310729026794,-0.42507001757621765,-1.0378150939941406,-1.5630252361297607,0.7303921580314636,0.5203081369400024,1.378151297569275,0.8879551887512207,0.41526609659194946,1.1155462265014648,0.20518207550048828,0.8179271817207336,0.22268907725811005,0.17016807198524475,-0.10994397848844528,-1.0728291273117065,-0.7752100825309753,-0.28501400351524353,0.17016807198524475,0.3452380895614624,0.4852941036224365,-0.7927170991897583,-1.6505602598190308,-1.0728291273117065,-0.7577030658721924,-0.0049019609577953815,-0.4600840210914612,-0.02240896411240101,-0.8452380895614624,-0.03991596773266792,-1.3529411554336548,-0.7752100825309753,-0.5826330780982971,-0.8102241158485413,-0.26750701665878296,-1.930672287940979,-1.965686321258545,-1.3354341983795166,-1.6155462265014648,-1.965686321258545,-1.6155462265014648,-1.668067216873169,-1.0028011798858643,0.1001400575041771,-0.8277310729026794,-1.6155462265014648,-1.983193278312683,-2.0357143878936768,-2.018207311630249,-2.018207311630249,-2.018207311630249,-1.930672287940979,-1.965686321258545,-1.930672287940979,-1.983193278312683,-1.9481792449951172,-1.878151297569275,-1.9131652116775513,-1.9481792449951172,-2.0357143878936768,-1.9131652116775513,-1.895658254623413],[-2.0007002353668213,-1.9481792449951172,-2.018207311630249,-1.9131652116775513,-2.0007002353668213,-1.8606442213058472,-1.9481792449951172,-1.9481792449951172,-1.808123230934143,-1.808123230934143,-1.965686321258545,-1.843137264251709,-1.843137264251709,-1.7030812501907349,-1.6855741739273071,-1.930672287940979,-1.8256303071975708,-1.7731091976165771,-1.7380952835083008,-1.7906162738800049,-1.633053183555603,-1.720588207244873,-1.668067216873169,-1.7030812501907349,-1.878151297569275,-1.720588207244873,-1.6855741739273071,-1.7731091976165771,-1.6505602598190308,-1.7731091976165771,-1.5980392694473267,-1.720588207244873,-1.633053183555603,-1.7030812501907349,-1.720588207244873,-1.7731091976165771,-1.843137264251709,-1.6505602598190308,-1.7906162738800049,-1.6505602598190308,-1.5980392694473267,-1.7030812501907349,-1.720588207244873,-1.8256303071975708,-1.843137264251709,-1.843137264251709,-1.8256303071975708,-1.7731091976165771,-1.6505602598190308,-1.8606442213058472,-1.8606442213058472,-1.8256303071975708,-1.9131652116775513,-1.843137264251709,-1.7380952835083008,-1.843137264251709,-1.6855741739273071,-1.878151297569275,-1.878151297569275,-1.7731091976165771,-1.843137264251709,-1.983193278312683,-1.9481792449951172,-1.7380952835083008,-1.8256303071975708,-1.965686321258545,-1.9481792449951172,-1.9481792449951172,-1.895658254623413,-1.8606442213058472,-1.9131652116775513,-1.965686321258545,-1.930672287940979,-1.895658254623413,-1.930672287940979,-1.9131652116775513,-1.878151297569275,-1.9481792449951172,-1.895658254623413,-1.1253501176834106,-0.3025210201740265,-1.8256303071975708,0.5553221106529236,0.5553221106529236,0.41526609659194946,0.31022408604621887,-0.12745098769664764,-0.8452380895614624,-0.3550420105457306,-0.12745098769664764,0.5553221106529236,-0.3900560140609741,-1.4229692220687866,0.7829131484031677,1.378151297569275,1.2030812501907349,0.31022408604621887,2.113445281982422,2.2009804248809814,2.235994338989258,1.7457983493804932,-1.580532193183899,-1.9481792449951172,-2.0357143878936768,-2.018207311630249,-1.983193278312683,-1.9481792449951172,-1.983193278312683,-2.018207311630249,-1.983193278312683,-1.983193278312683,-2.0357143878936768,-1.930672287940979,-1.965686321258545,-1.9481792449951172,-1.930672287940979,-1.9481792449951172,-2.0357143878936768,-2.018207311630249,-1.930672287940979,-1.9131652116775513,-1.983193278312683,-2.018207311630249,-2.018207311630249,-1.983193278312683,-2.0007002353668213,-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-1.9481792449951172,-2.0357143878936768,-2.0357143878936768,-2.0007002353668213,-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-2.0007002353668213,-2.0357143878936768,0.27521008253097534,0.9404761791229248,0.27521008253097534,-0.7927170991897583,0.3977591097354889,0.5553221106529236,0.06512605398893356,-0.25,1.7282912731170654,0.5203081369400024,-0.0049019609577953815,0.9579831957817078,-1.5980392694473267,-1.0903360843658447,-1.1078431606292725,0.1001400575041771,-0.6701680421829224,-1.3179271221160889,-0.8277310729026794,-0.7051820755004883,-0.47759103775024414,-0.8977590799331665,-1.3879551887512207,-1.1428571939468384,-0.5651260614395142,-0.8802521228790283,-1.633053183555603,-0.33753502368927,0.030112044885754585,0.11764705926179886,1.045518159866333,0.1001400575041771,1.133053183555603,-0.4075630307197571,0.2927170991897583,-0.8102241158485413,0.5553221106529236,-0.42507001757621765,-0.7401960492134094,-1.0553221702575684,-0.3025210201740265,-0.5651260614395142,0.0476190485060215,0.08263305574655533,0.38025209307670593,-1.7906162738800049,-1.5105042457580566,-1.0553221702575684,-1.3354341983795166,-0.42507001757621765,-0.17997199296951294,-0.47759103775024414,-0.5651260614395142,-1.0203081369400024,-1.3354341983795166,-0.7226890921592712,-0.4950980246067047,-0.6001400351524353,-1.457983136177063,-1.7906162738800049,-1.895658254623413,-1.8606442213058472,-1.6155462265014648,-1.4229692220687866,-1.1778711080551147,-1.0203081369400024,-0.16246499121189117,-1.5630252361297607,-1.2478991746902466,-1.7380952835083008,-1.983193278312683,-1.9481792449951172,-2.0007002353668213,-1.9481792449951172,-2.0357143878936768,-2.0007002353668213,-1.965686321258545,-2.0357143878936768,-2.018207311630249,-1.9481792449951172,-1.965686321258545,-2.0007002353668213,-1.965686321258545,-1.843137264251709,-1.930672287940979],[-1.983193278312683,-1.9481792449951172,-1.930672287940979,-2.0357143878936768,-1.983193278312683,-1.9131652116775513,-1.8256303071975708,-1.7030812501907349,-1.6155462265014648,-1.720588207244873,-1.7030812501907349,-1.8256303071975708,-1.808123230934143,-1.6155462265014648,-1.755602240562439,-1.7906162738800049,-1.808123230934143,-1.8256303071975708,-1.843137264251709,-1.7731091976165771,-1.633053183555603,-1.5980392694473267,-1.755602240562439,-1.720588207244873,-1.6155462265014648,-1.6155462265014648,-1.7030812501907349,-1.7030812501907349,-1.8256303071975708,-1.808123230934143,-1.580532193183899,-1.633053183555603,-1.668067216873169,-1.7030812501907349,-1.7731091976165771,-1.7030812501907349,-1.5980392694473267,-1.7030812501907349,-1.720588207244873,-1.8606442213058472,-1.668067216873169,-1.843137264251709,-1.7380952835083008,-1.6855741739273071,-1.633053183555603,-1.808123230934143,-1.6855741739273071,-1.7906162738800049,-1.720588207244873,-1.7906162738800049,-1.7731091976165771,-1.7906162738800049,-1.7030812501907349,-1.720588207244873,-1.7030812501907349,-1.878151297569275,-1.808123230934143,-1.720588207244873,-1.7906162738800049,-1.895658254623413,-1.8606442213058472,-1.7731091976165771,-1.895658254623413,-1.930672287940979,-1.878151297569275,-1.8256303071975708,-1.755602240562439,-1.9481792449951172,-1.9131652116775513,-1.878151297569275,-1.8606442213058472,-1.8256303071975708,-1.8256303071975708,-1.9481792449951172,-1.930672287940979,-1.9481792449951172,-1.7380952835083008,-1.983193278312683,-1.2303920984268188,0.5903361439704895,0.8354341983795166,-0.05742296949028969,1.1855741739273071,1.2906162738800049,0.8529411554336548,0.3452380895614624,0.20518207550048828,-0.8627451062202454,-0.25,0.38025209307670593,0.18767507374286652,0.3977591097354889,1.693277359008789,0.7654061913490295,-0.32002800703048706,1.7633053064346313,1.0980392694473267,2.288515329360962,2.1484594345092773,2.235994338989258,1.2731091976165771,-2.0357143878936768,-1.930672287940979,-1.983193278312683,-1.9481792449951172,-1.965686321258545,-2.0357143878936768,-2.0357143878936768,-2.018207311630249,-2.0007002353668213,-2.018207311630249,-2.0007002353668213,-1.983193278312683,-2.0357143878936768,-2.018207311630249,-2.018207311630249,-2.0357143878936768,-2.018207311630249,-2.0007002353668213,-2.018207311630249,-2.018207311630249,-2.0007002353668213,-2.0357143878936768,-1.983193278312683,-2.018207311630249,-2.0357143878936768,-2.0007002353668213,-2.0357143878936768,-2.018207311630249,-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-2.018207311630249,-2.0357143878936768,-2.0357143878936768,-1.930672287940979,-1.983193278312683,0.4852941036224365,0.4327731132507324,-0.05742296949028969,-0.37254902720451355,-0.25,-1.0028011798858643,-1.4404761791229248,-0.7927170991897583,-0.4600840210914612,-0.26750701665878296,0.9229691624641418,0.2927170991897583,-0.7401960492134094,0.5903361439704895,0.27521008253097534,-1.0553221702575684,-1.3529411554336548,-0.25,-1.5980392694473267,-0.12745098769664764,-1.0203081369400024,-0.7927170991897583,-0.7051820755004883,-0.33753502368927,-0.5826330780982971,-0.8977590799331665,-1.668067216873169,-1.3004201650619507,-0.7577030658721924,0.41526609659194946,0.15266107022762299,0.7829131484031677,0.4852941036224365,1.430672287940979,0.9054622054100037,-0.33753502368927,-0.09243697673082352,-0.6526610851287842,-0.42507001757621765,-0.9852941036224365,-0.8627451062202454,-0.1449579894542694,-1.0378150939941406,-0.5301120281219482,0.20518207550048828,-1.1603641510009766,-0.9327731132507324,-1.5630252361297607,-1.1953781843185425,-1.1953781843185425,-0.7752100825309753,-0.9677870869636536,-0.21498599648475647,0.15266107022762299,-0.7226890921592712,-0.5476190447807312,-0.8627451062202454,0.2401960790157318,-0.8452380895614624,-1.0728291273117065,-0.9327731132507324,-0.6001400351524353,-1.1428571939468384,-1.5105042457580566,-0.8452380895614624,-1.1078431606292725,-0.3550420105457306,0.08263305574655533,0.3977591097354889,-1.2654061317443848,-1.5280112028121948,-1.5630252361297607,-1.720588207244873,-1.9131652116775513,-1.9131652116775513,-1.878151297569275,-1.7731091976165771,-2.018207311630249,-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-1.930672287940979],[-1.930672287940979,-2.018207311630249,-1.930672287940979,-2.018207311630249,-1.843137264251709,-1.9481792449951172,-1.7731091976165771,-1.843137264251709,-1.7030812501907349,-1.580532193183899,-1.5980392694473267,-1.7906162738800049,-1.7380952835083008,-1.7380952835083008,-1.7030812501907349,-1.7030812501907349,-1.6505602598190308,-1.6855741739273071,-1.545518159866333,-1.720588207244873,-1.720588207244873,-1.6155462265014648,-1.633053183555603,-1.668067216873169,-1.720588207244873,-1.7030812501907349,-1.720588207244873,-1.6155462265014648,-1.580532193183899,-1.7731091976165771,-1.6855741739273071,-1.5280112028121948,-1.7030812501907349,-1.7380952835083008,-1.668067216873169,-1.720588207244873,-1.7731091976165771,-1.755602240562439,-1.6855741739273071,-1.7030812501907349,-1.5980392694473267,-1.7030812501907349,-1.755602240562439,-1.7731091976165771,-1.720588207244873,-1.808123230934143,-1.7030812501907349,-1.7380952835083008,-1.8256303071975708,-1.545518159866333,-1.808123230934143,-1.5980392694473267,-1.7380952835083008,-1.8256303071975708,-1.7731091976165771,-1.7030812501907349,-1.755602240562439,-1.7731091976165771,-1.808123230934143,-1.808123230934143,-1.7380952835083008,-1.720588207244873,-1.843137264251709,-1.895658254623413,-1.755602240562439,-1.808123230934143,-1.9131652116775513,-1.7906162738800049,-1.7906162738800049,-1.878151297569275,-1.8606442213058472,-1.878151297569275,-1.843137264251709,-1.843137264251709,-1.7731091976165771,-1.843137264251709,-1.895658254623413,-1.4054621458053589,0.25770309567451477,0.9054622054100037,1.2030812501907349,0.32773110270500183,1.518207311630249,1.6407562494277954,1.1855741739273071,0.7829131484031677,0.6428571343421936,-0.17997199296951294,-0.1974789947271347,0.7829131484031677,-0.6001400351524353,0.6253501176834106,1.0980392694473267,0.15266107022762299,-0.1974789947271347,1.1155462265014648,1.5707283020019531,2.113445281982422,2.0259103775024414,1.9208683967590332,1.9383753538131714,-1.808123230934143,-2.018207311630249,-1.9131652116775513,-1.930672287940979,-1.895658254623413,-1.983193278312683,-2.018207311630249,-2.0357143878936768,-1.983193278312683,-1.983193278312683,-1.983193278312683,-1.930672287940979,-1.983193278312683,-1.983193278312683,-1.9481792449951172,-1.965686321258545,-1.965686321258545,-1.983193278312683,-2.0357143878936768,-2.0357143878936768,-2.0007002353668213,-1.983193278312683,-2.0357143878936768,-2.018207311630249,-1.983193278312683,-2.0007002353668213,-2.018207311630249,-2.018207311630249,-2.018207311630249,-2.0357143878936768,-2.018207311630249,-2.018207311630249,-2.0357143878936768,-2.0007002353668213,-2.0357143878936768,-2.0357143878936768,-1.983193278312683,0.5378151535987854,0.6778711676597595,0.0476190485060215,-1.2478991746902466,-1.3179271221160889,-0.8977590799331665,-1.1778711080551147,-1.1253501176834106,-1.0903360843658447,-0.5301120281219482,0.6428571343421936,-0.09243697673082352,0.5728291273117065,0.6953781247138977,1.255602240562439,-0.05742296949028969,-0.3550420105457306,-0.07492997497320175,-0.6176470518112183,-0.5826330780982971,-0.3550420105457306,0.450280100107193,-0.16246499121189117,-1.2654061317443848,-0.26750701665878296,-0.9327731132507324,-1.633053183555603,-1.2128851413726807,-0.8102241158485413,-0.23249299824237823,-0.26750701665878296,-0.17997199296951294,0.7303921580314636,0.9229691624641418,1.2731091976165771,-0.6701680421829224,0.31022408604621887,-0.6701680421829224,-0.21498599648475647,-0.5301120281219482,-0.9327731132507324,-0.7226890921592712,-1.4229692220687866,-0.9677870869636536,-0.33753502368927,-0.4950980246067047,-1.3879551887512207,-1.3704482316970825,-1.7380952835083008,-0.6526610851287842,-0.8277310729026794,-0.8452380895614624,-1.0203081369400024,-0.9502801299095154,-0.09243697673082352,-0.8452380895614624,-1.0903360843658447,-0.1974789947271347,-0.03991596773266792,-0.8277310729026794,-0.6876750588417053,-0.47759103775024414,0.17016807198524475,-1.545518159866333,-1.2829132080078125,-1.3704482316970825,-0.8277310729026794,-0.5651260614395142,-0.4950980246067047,-0.6876750588417053,-1.633053183555603,-1.755602240562439,-1.9131652116775513,-1.895658254623413,-1.930672287940979,-1.9131652116775513,-1.808123230934143,-2.0357143878936768,-2.0007002353668213,-1.965686321258545,-2.0357143878936768,-2.018207311630249,-1.965686321258545,-2.0007002353668213,-2.0007002353668213,-2.0357143878936768],[-2.0007002353668213,-1.895658254623413,-1.878151297569275,-1.983193278312683,-1.9131652116775513,-1.983193278312683,-1.7906162738800049,-1.7380952835083008,-1.6155462265014648,-1.7030812501907349,-1.633053183555603,-1.5980392694473267,-1.633053183555603,-1.755602240562439,-1.6505602598190308,-1.755602240562439,-1.6855741739273071,-1.720588207244873,-1.6505602598190308,-1.6155462265014648,-1.545518159866333,-1.633053183555603,-1.7030812501907349,-1.6855741739273071,-1.668067216873169,-1.8256303071975708,-1.6855741739273071,-1.668067216873169,-1.7906162738800049,-1.633053183555603,-1.7380952835083008,-1.6505602598190308,-1.580532193183899,-1.580532193183899,-1.6505602598190308,-1.6505602598190308,-1.545518159866333,-1.7030812501907349,-1.7906162738800049,-1.6155462265014648,-1.8606442213058472,-1.5280112028121948,-1.6855741739273071,-1.633053183555603,-1.5980392694473267,-1.6155462265014648,-1.5280112028121948,-1.7030812501907349,-1.843137264251709,-1.6505602598190308,-1.633053183555603,-1.755602240562439,-1.808123230934143,-1.580532193183899,-1.720588207244873,-1.720588207244873,-1.7380952835083008,-1.7731091976165771,-1.7731091976165771,-1.8606442213058472,-1.895658254623413,-1.668067216873169,-1.6155462265014648,-1.720588207244873,-1.755602240562439,-1.7906162738800049,-1.8256303071975708,-1.8606442213058472,-1.808123230934143,-1.720588207244873,-1.7380952835083008,-1.7030812501907349,-1.7380952835083008,-1.7906162738800049,-1.7731091976165771,-1.8256303071975708,-1.6505602598190308,-0.09243697673082352,0.5903361439704895,1.1155462265014648,1.5882352590560913,0.5553221106529236,1.605742335319519,1.395658254623413,1.220588207244873,0.9579831957817078,0.6078431606292725,-0.28501400351524353,0.11764705926179886,0.5903361439704895,-0.28501400351524353,-0.09243697673082352,-0.26750701665878296,1.430672287940979,0.8529411554336548,-0.32002800703048706,2.113445281982422,2.218487501144409,2.0609242916107178,1.2731091976165771,-0.9327731132507324,-1.965686321258545,-2.0007002353668213,-2.0357143878936768,-2.0007002353668213,-1.9481792449951172,-2.0007002353668213,-2.018207311630249,-2.0007002353668213,-1.965686321258545,-1.930672287940979,-1.9481792449951172,-1.9131652116775513,-2.0007002353668213,-1.965686321258545,-2.0007002353668213,-2.018207311630249,-2.018207311630249,-2.018207311630249,-1.965686321258545,-1.965686321258545,-2.0357143878936768,-1.9481792449951172,-1.983193278312683,-2.0007002353668213,-1.983193278312683,-2.018207311630249,-1.965686321258545,-1.983193278312683,-2.0007002353668213,-2.0007002353668213,-1.965686321258545,-1.930672287940979,-1.9481792449951172,-2.0357143878936768,-1.965686321258545,-1.720588207244873,-0.8802521228790283,0.18767507374286652,0.7478991746902466,-0.6526610851287842,-1.2478991746902466,-1.7380952835083008,-1.1428571939468384,-1.5980392694473267,-0.4600840210914612,-1.3354341983795166,-0.6876750588417053,0.7128851413726807,-0.12745098769664764,0.8354341983795166,0.41526609659194946,0.8879551887512207,1.255602240562439,0.6953781247138977,-0.6351540684700012,-1.843137264251709,-1.5630252361297607,0.8529411554336548,-0.4425770342350006,0.13515406847000122,-0.6351540684700012,-0.07492997497320175,-0.8627451062202454,-0.9152660965919495,-1.5280112028121948,-0.9152660965919495,-0.8977590799331665,0.4327731132507324,0.22268907725811005,0.7654061913490295,0.6078431606292725,1.1855741739273071,-0.26750701665878296,-0.37254902720451355,-1.1603641510009766,-0.6351540684700012,-0.9852941036224365,-0.6701680421829224,-0.7226890921592712,-0.6176470518112183,-0.9152660965919495,0.20518207550048828,-0.3900560140609741,-1.5980392694473267,-1.720588207244873,-1.1953781843185425,-1.2128851413726807,-1.1778711080551147,-1.0728291273117065,-1.0728291273117065,-1.4404761791229248,-0.8802521228790283,-1.3879551887512207,-1.4404761791229248,-0.10994397848844528,-1.1603641510009766,-1.1953781843185425,0.08263305574655533,-0.10994397848844528,0.32773110270500183,0.36274510622024536,-0.37254902720451355,-1.0028011798858643,-0.7577030658721924,-0.6001400351524353,-0.5301120281219482,-0.9152660965919495,-1.668067216873169,-1.545518159866333,-1.930672287940979,-1.7906162738800049,-1.6855741739273071,-1.895658254623413,-1.755602240562439,-1.8606442213058472,-2.0007002353668213,-2.0007002353668213,-2.0007002353668213,-2.0357143878936768,-2.0007002353668213,-2.0357143878936768,-1.983193278312683,-1.965686321258545],[-1.9481792449951172,-1.930672287940979,-1.930672287940979,-1.965686321258545,-1.8256303071975708,-1.9481792449951172,-1.8256303071975708,-1.7380952835083008,-1.7380952835083008,-1.755602240562439,-1.720588207244873,-1.6505602598190308,-1.7906162738800049,-1.843137264251709,-1.545518159866333,-1.6505602598190308,-1.720588207244873,-1.492997169494629,-1.7030812501907349,-1.580532193183899,-1.5980392694473267,-1.668067216873169,-1.6855741739273071,-1.5980392694473267,-1.633053183555603,-1.4754902124404907,-1.808123230934143,-1.668067216873169,-1.6155462265014648,-1.6855741739273071,-1.6155462265014648,-1.580532193183899,-1.5280112028121948,-1.878151297569275,-1.7906162738800049,-1.6155462265014648,-1.7030812501907349,-1.5980392694473267,-1.6155462265014648,-1.668067216873169,-1.668067216873169,-1.8256303071975708,-1.5105042457580566,-1.6855741739273071,-1.4754902124404907,-1.668067216873169,-1.580532193183899,-1.5630252361297607,-1.5105042457580566,-1.7030812501907349,-1.633053183555603,-1.580532193183899,-1.492997169494629,-1.7380952835083008,-1.7030812501907349,-1.580532193183899,-1.720588207244873,-1.633053183555603,-1.668067216873169,-1.755602240562439,-1.7030812501907349,-1.7906162738800049,-1.6855741739273071,-1.633053183555603,-1.7906162738800049,-1.843137264251709,-1.7731091976165771,-1.843137264251709,-1.7906162738800049,-1.720588207244873,-1.8606442213058472,-1.843137264251709,-1.808123230934143,-1.633053183555603,-1.6505602598190308,-1.755602240562439,-1.930672287940979,0.5203081369400024,2.1834733486175537,1.553221344947815,0.8704481720924377,1.1505602598190308,1.7107843160629272,1.6232492923736572,1.168067216873169,1.3256303071975708,0.20518207550048828,0.17016807198524475,0.18767507374286652,-0.0049019609577953815,-0.4950980246067047,-1.2654061317443848,-0.5301120281219482,1.0105042457580566,0.46778711676597595,0.31022408604621887,1.9908963441848755,2.165966272354126,1.6757702827453613,0.31022408604621887,-2.0007002353668213,-2.018207311630249,-1.983193278312683,-1.9481792449951172,-1.8606442213058472,-2.018207311630249,-1.930672287940979,-1.9481792449951172,-1.9131652116775513,-1.930672287940979,-2.0007002353668213,-1.965686321258545,-1.9481792449951172,-1.9131652116775513,-1.930672287940979,-1.965686321258545,-1.930672287940979,-1.9481792449951172,-1.9131652116775513,-1.983193278312683,-1.965686321258545,-1.9481792449951172,-1.965686321258545,-1.965686321258545,-1.965686321258545,-1.930672287940979,-1.965686321258545,-2.0007002353668213,-1.965686321258545,-1.983193278312683,-1.983193278312683,-1.9481792449951172,-1.965686321258545,-1.983193278312683,-1.8606442213058472,-2.0357143878936768,-1.8256303071975708,0.8704481720924377,-1.1253501176834106,0.2401960790157318,-1.1428571939468384,-1.5980392694473267,-1.3704482316970825,-1.1603641510009766,-1.4404761791229248,-1.0028011798858643,-1.545518159866333,-0.9677870869636536,0.3452380895614624,0.31022408604621887,0.8179271817207336,-0.3550420105457306,0.8004201650619507,0.7303921580314636,0.15266107022762299,0.5553221106529236,0.7478991746902466,0.8879551887512207,1.378151297569275,0.9929971694946289,0.5203081369400024,-0.7226890921592712,0.3452380895614624,-1.1953781843185425,-1.755602240562439,-1.1603641510009766,-0.7226890921592712,-0.9852941036224365,-0.3900560140609741,-0.3900560140609741,0.6603641510009766,-0.03991596773266792,0.4327731132507324,-0.4075630307197571,-1.1253501176834106,-1.1953781843185425,-1.457983136177063,-0.6351540684700012,0.20518207550048828,-1.1778711080551147,-1.1953781843185425,-1.1603641510009766,-0.07492997497320175,-0.03991596773266792,-1.6855741739273071,-1.2829132080078125,-1.4054621458053589,-0.9327731132507324,-1.0203081369400024,-1.7380952835083008,-0.6526610851287842,-1.4754902124404907,-1.3004201650619507,-0.32002800703048706,-1.3704482316970825,-0.8102241158485413,-0.23249299824237823,-0.9852941036224365,-0.5826330780982971,-0.28501400351524353,-0.26750701665878296,-0.0049019609577953815,-0.28501400351524353,-0.25,-0.9677870869636536,-1.3004201650619507,-1.0903360843658447,-1.5630252361297607,-1.580532193183899,-1.808123230934143,-1.6855741739273071,-1.7030812501907349,-1.3879551887512207,-1.5630252361297607,-1.983193278312683,-1.930672287940979,-1.983193278312683,-2.018207311630249,-1.965686321258545,-2.018207311630249,-1.9481792449951172,-1.8606442213058472,-1.9481792449951172,-1.895658254623413],[-1.9131652116775513,-1.8606442213058472,-1.983193278312683,-1.965686321258545,-1.720588207244873,-1.965686321258545,-1.7906162738800049,-1.8256303071975708,-1.6855741739273071,-1.5630252361297607,-1.720588207244873,-1.8256303071975708,-1.5980392694473267,-1.5105042457580566,-1.668067216873169,-1.6155462265014648,-1.4054621458053589,-1.580532193183899,-1.720588207244873,-1.755602240562439,-1.7030812501907349,-1.633053183555603,-1.6155462265014648,-1.5630252361297607,-1.7906162738800049,-1.580532193183899,-1.545518159866333,-1.668067216873169,-1.7380952835083008,-1.5630252361297607,-1.6505602598190308,-1.5105042457580566,-1.720588207244873,-1.7380952835083008,-1.5105042457580566,-1.5105042457580566,-1.6855741739273071,-1.7731091976165771,-1.668067216873169,-1.5630252361297607,-1.6855741739273071,-1.8256303071975708,-1.930672287940979,-1.7030812501907349,-1.7906162738800049,-1.7030812501907349,-1.492997169494629,-1.5105042457580566,-1.545518159866333,-1.5980392694473267,-1.4404761791229248,-1.6505602598190308,-1.5105042457580566,-1.6505602598190308,-1.580532193183899,-1.6155462265014648,-1.6855741739273071,-1.9481792449951172,-1.930672287940979,-1.755602240562439,-1.7030812501907349,-1.8256303071975708,-1.7906162738800049,-1.6855741739273071,-1.8256303071975708,-1.8256303071975708,-1.843137264251709,-1.668067216873169,-1.720588207244873,-1.878151297569275,-1.720588207244873,-1.5980392694473267,-1.3879551887512207,-0.6876750588417053,-0.7577030658721924,-0.8802521228790283,0.030112044885754585,2.4285714626312256,2.218487501144409,2.165966272354126,0.9579831957817078,1.4131652116775513,1.8333333730697632,1.5357142686843872,1.2731091976165771,1.343137264251709,-0.05742296949028969,0.22268907725811005,0.06512605398893356,-0.17997199296951294,-0.32002800703048706,-1.2303920984268188,0.012605042196810246,0.4327731132507324,0.6778711676597595,0.41526609659194946,1.4481792449951172,1.9208683967590332,0.5553221106529236,0.0476190485060215,-1.895658254623413,-1.9131652116775513,-1.930672287940979,-1.895658254623413,-1.983193278312683,-1.930672287940979,-1.878151297569275,-1.8256303071975708,-2.0357143878936768,-1.930672287940979,-1.965686321258545,-1.930672287940979,-1.878151297569275,-1.930672287940979,-1.965686321258545,-1.9131652116775513,-1.930672287940979,-1.895658254623413,-1.983193278312683,-1.983193278312683,-1.9481792449951172,-1.965686321258545,-1.965686321258545,-2.0357143878936768,-2.018207311630249,-2.0007002353668213,-2.018207311630249,-1.965686321258545,-2.0007002353668213,-1.965686321258545,-1.930672287940979,-1.983193278312683,-1.983193278312683,-2.0007002353668213,-2.0007002353668213,-1.9481792449951172,0.5028011202812195,-0.4075630307197571,-1.5105042457580566,-1.0028011798858643,-1.3879551887512207,-1.457983136177063,-1.1078431606292725,-1.4229692220687866,-1.0903360843658447,-0.7752100825309753,-1.1078431606292725,-0.8977590799331665,-0.8277310729026794,0.5903361439704895,1.9383753538131714,0.9579831957817078,0.7654061913490295,2.1309523582458496,1.465686321258545,0.6253501176834106,0.9754902124404907,-0.3900560140609741,0.9404761791229248,0.5728291273117065,0.06512605398893356,0.7654061913490295,0.8179271817207336,-0.6176470518112183,-1.4229692220687866,-1.4229692220687866,-0.7051820755004883,-0.7752100825309753,-0.8452380895614624,-0.7051820755004883,-0.32002800703048706,0.9579831957817078,-0.8627451062202454,-0.7226890921592712,-0.5126050710678101,-1.545518159866333,-1.1253501176834106,0.22268907725811005,-0.37254902720451355,-1.3004201650619507,-0.7927170991897583,-1.2128851413726807,0.17016807198524475,-0.8452380895614624,-1.0903360843658447,-1.3179271221160889,-1.2128851413726807,-1.668067216873169,-1.3879551887512207,-1.720588207244873,-1.3179271221160889,-1.492997169494629,-1.2654061317443848,-1.2829132080078125,-1.580532193183899,-1.2478991746902466,-0.9502801299095154,-1.2303920984268188,-0.8277310729026794,-0.0049019609577953815,0.5378151535987854,0.030112044885754585,0.012605042196810246,0.030112044885754585,-0.4075630307197571,-1.0553221702575684,-1.0378150939941406,-1.1603641510009766,-1.7731091976165771,-2.0357143878936768,-1.9131652116775513,-1.8606442213058472,-1.668067216873169,-1.4229692220687866,-1.545518159866333,-1.7030812501907349,-1.7906162738800049,-2.0007002353668213,-1.965686321258545,-2.0007002353668213,-1.9131652116775513,-1.755602240562439,-1.930672287940979,-1.8256303071975708],[-1.983193278312683,-1.9131652116775513,-1.930672287940979,-2.0357143878936768,-1.6155462265014648,-1.9131652116775513,-1.6855741739273071,-1.7380952835083008,-1.6855741739273071,-1.6855741739273071,-1.5280112028121948,-1.668067216873169,-1.580532193183899,-1.7906162738800049,-1.755602240562439,-1.6855741739273071,-1.668067216873169,-1.668067216873169,-1.5980392694473267,-1.545518159866333,-1.720588207244873,-1.545518159866333,-1.6155462265014648,-1.7380952835083008,-1.4754902124404907,-1.5280112028121948,-1.668067216873169,-1.5630252361297607,-1.720588207244873,-1.7380952835083008,-1.843137264251709,-1.4054621458053589,-1.2654061317443848,-0.5651260614395142,-0.12745098769664764,0.450280100107193,0.7829131484031677,1.133053183555603,1.483193278312683,1.5707283020019531,1.7633053064346313,1.430672287940979,1.5357142686843872,1.2030812501907349,1.308123230934143,1.2030812501907349,1.5357142686843872,1.4131652116775513,1.3256303071975708,1.220588207244873,1.605742335319519,1.430672287940979,1.5357142686843872,1.3606442213058472,1.378151297569275,1.255602240562439,1.4131652116775513,1.343137264251709,1.133053183555603,0.2401960790157318,-1.7906162738800049,-1.895658254623413,-1.7380952835083008,-1.878151297569275,-1.8256303071975708,-1.808123230934143,-1.808123230934143,-1.7731091976165771,-1.6855741739273071,-1.878151297569275,-0.8627451062202454,0.1001400575041771,0.450280100107193,0.7128851413726807,0.9229691624641418,0.3977591097354889,0.6603641510009766,1.2380952835083008,1.9208683967590332,2.1834733486175537,1.5707283020019531,0.7829131484031677,1.7457983493804932,1.2906162738800049,1.2030812501907349,1.5707283020019531,0.7128851413726807,-0.4600840210914612,0.4852941036224365,-0.3025210201740265,-0.3550420105457306,-0.4600840210914612,0.1001400575041771,0.5903361439704895,0.6078431606292725,0.31022408604621887,-0.10994397848844528,0.25770309567451477,0.15266107022762299,-1.7906162738800049,-1.9481792449951172,-2.0007002353668213,-1.983193278312683,-1.9131652116775513,-1.930672287940979,-1.878151297569275,-1.895658254623413,-1.9481792449951172,-1.9481792449951172,-1.878151297569275,-1.9481792449951172,-2.0007002353668213,-1.878151297569275,-1.9481792449951172,-1.843137264251709,-1.930672287940979,-1.895658254623413,-1.9131652116775513,-1.983193278312683,-1.965686321258545,-1.8256303071975708,-1.9481792449951172,-2.0357143878936768,-2.0357143878936768,-2.0007002353668213,-2.0007002353668213,-1.8606442213058472,-1.930672287940979,-1.9131652116775513,-1.930672287940979,-1.965686321258545,-1.878151297569275,-1.878151297569275,-1.9131652116775513,-2.018207311630249,0.6428571343421936,-1.0903360843658447,-1.0203081369400024,-1.5980392694473267,-1.545518159866333,-1.7030812501907349,-1.2654061317443848,-1.2128851413726807,-1.0203081369400024,-0.9677870869636536,-0.7226890921592712,-0.3025210201740265,-0.16246499121189117,0.5553221106529236,0.8704481720924377,1.2030812501907349,1.3256303071975708,0.9404761791229248,0.5028011202812195,0.7829131484031677,0.8879551887512207,0.36274510622024536,0.9579831957817078,1.2030812501907349,0.6603641510009766,0.6603641510009766,0.32773110270500183,0.5903361439704895,-1.1778711080551147,-0.23249299824237823,-1.0378150939941406,-1.0378150939941406,-0.6351540684700012,-0.8802521228790283,-1.1428571939468384,-0.7577030658721924,-0.03991596773266792,0.13515406847000122,-0.21498599648475647,-1.1778711080551147,-0.6526610851287842,-0.8102241158485413,0.27521008253097534,-0.5826330780982971,-1.2128851413726807,0.1001400575041771,-0.9327731132507324,-0.7577030658721924,-0.26750701665878296,-0.21498599648475647,-1.5105042457580566,-1.0203081369400024,-1.2478991746902466,-1.0378150939941406,0.012605042196810246,-0.26750701665878296,-1.3354341983795166,-0.8627451062202454,-0.6526610851287842,-1.720588207244873,-0.8627451062202454,-0.6176470518112183,-1.4229692220687866,-1.0378150939941406,-0.17997199296951294,0.38025209307670593,0.0476190485060215,-0.3025210201740265,-0.0049019609577953815,-0.3025210201740265,-0.28501400351524353,-0.07492997497320175,-0.3550420105457306,-0.28501400351524353,-0.3900560140609741,-0.8452380895614624,-0.9677870869636536,-1.580532193183899,-1.9131652116775513,-1.983193278312683,-1.4404761791229248,-1.930672287940979,-2.0007002353668213,-2.0357143878936768,-2.018207311630249,-1.9481792449951172,-1.6855741739273071,-1.545518159866333,-2.018207311630249],[-1.965686321258545,-1.9131652116775513,-1.8256303071975708,-1.965686321258545,-1.7030812501907349,-1.983193278312683,-1.6155462265014648,-1.720588207244873,-1.6155462265014648,-1.6505602598190308,-1.6855741739273071,-1.668067216873169,-1.633053183555603,-1.5630252361297607,-1.6855741739273071,-1.580532193183899,-1.580532193183899,-1.668067216873169,-1.7380952835083008,-1.5280112028121948,-1.720588207244873,-1.4229692220687866,-1.5630252361297607,-1.5980392694473267,-1.8606442213058472,-1.668067216873169,-1.2128851413726807,-0.5651260614395142,0.31022408604621887,0.8879551887512207,1.4131652116775513,1.430672287940979,1.5882352590560913,1.7282912731170654,1.6232492923736572,1.6407562494277954,1.5882352590560913,1.4481792449951172,0.4852941036224365,0.5553221106529236,0.8354341983795166,1.133053183555603,0.9579831957817078,1.5882352590560913,1.0280112028121948,1.7107843160629272,0.1001400575041771,0.4327731132507324,0.6253501176834106,1.045518159866333,1.395658254623413,1.6232492923736572,1.5007002353668213,1.465686321258545,1.395658254623413,1.4481792449951172,1.5357142686843872,1.4131652116775513,1.308123230934143,1.133053183555603,0.13515406847000122,-1.878151297569275,-1.8606442213058472,-1.878151297569275,-1.8606442213058472,-1.843137264251709,-1.755602240562439,-1.8606442213058472,-1.7731091976165771,-1.2128851413726807,0.17016807198524475,0.9404761791229248,0.9404761791229248,0.7128851413726807,0.8179271817207336,0.9404761791229248,0.9229691624641418,0.13515406847000122,0.9579831957817078,1.7107843160629272,1.8683472871780396,0.6078431606292725,1.3256303071975708,1.483193278312683,1.0980392694473267,1.8508403301239014,1.4481792449951172,-1.7380952835083008,-0.10994397848844528,-0.5476190447807312,-0.8277310729026794,-0.42507001757621765,-1.3354341983795166,0.3452380895614624,1.378151297569275,1.220588207244873,-0.9677870869636536,-1.1603641510009766,-1.2303920984268188,-1.983193278312683,-2.0357143878936768,-1.930672287940979,-1.930672287940979,-1.9131652116775513,-1.9131652116775513,-2.0007002353668213,-1.9481792449951172,-1.9481792449951172,-1.9131652116775513,-1.9131652116775513,-1.9131652116775513,-1.8256303071975708,-1.895658254623413,-1.930672287940979,-1.930672287940979,-1.843137264251709,-1.895658254623413,-1.895658254623413,-1.930672287940979,-1.930672287940979,-2.0357143878936768,-1.9131652116775513,-1.4054621458053589,-0.4950980246067047,-0.4600840210914612,-0.32002800703048706,-1.1078431606292725,-2.018207311630249,-1.8256303071975708,-1.9131652116775513,-1.965686321258545,-1.965686321258545,-1.9131652116775513,-2.0007002353668213,-0.10994397848844528,-1.633053183555603,-1.2303920984268188,-0.8277310729026794,-1.5105042457580566,-1.0728291273117065,-1.4054621458053589,-0.7401960492134094,-0.8627451062202454,-0.25,0.9229691624641418,-0.6701680421829224,0.46778711676597595,1.045518159866333,0.22268907725811005,1.308123230934143,1.1505602598190308,-0.0049019609577953815,0.41526609659194946,0.5028011202812195,1.0105042457580566,1.0630252361297607,0.41526609659194946,0.8529411554336548,1.133053183555603,-0.07492997497320175,-0.3550420105457306,-0.3025210201740265,-0.1449579894542694,-0.12745098769664764,-0.6001400351524353,-0.6351540684700012,-1.3704482316970825,-1.3004201650619507,-1.1603641510009766,-0.9152660965919495,-0.1974789947271347,-0.5301120281219482,0.7303921580314636,0.012605042196810246,-0.6351540684700012,-0.32002800703048706,-0.23249299824237823,-1.3004201650619507,-0.16246499121189117,-0.5651260614395142,-1.3529411554336548,0.0476190485060215,-0.10994397848844528,0.6078431606292725,0.0476190485060215,-0.4600840210914612,-0.9852941036224365,-1.6155462265014648,-1.6855741739273071,-0.42507001757621765,0.31022408604621887,0.030112044885754585,-0.3550420105457306,-1.1953781843185425,-0.8277310729026794,-0.4950980246067047,-0.17997199296951294,-1.5280112028121948,-1.895658254623413,-0.4600840210914612,0.31022408604621887,0.13515406847000122,-0.4075630307197571,-0.8977590799331665,-0.4600840210914612,-0.6001400351524353,-0.09243697673082352,-0.26750701665878296,-0.17997199296951294,-0.3025210201740265,-0.12745098769664764,-0.42507001757621765,-0.5301120281219482,-1.3529411554336548,-2.0007002353668213,-1.965686321258545,-1.965686321258545,-2.0357143878936768,-2.018207311630249,-2.0357143878936768,-1.930672287940979,-1.720588207244873,-1.7906162738800049,-1.755602240562439],[-2.018207311630249,-1.9481792449951172,-1.965686321258545,-2.018207311630249,-1.4229692220687866,-1.930672287940979,-1.7030812501907349,-1.7030812501907349,-1.7030812501907349,-1.633053183555603,-1.633053183555603,-1.5105042457580566,-1.6505602598190308,-1.545518159866333,-1.4754902124404907,-1.5980392694473267,-1.3529411554336548,-1.580532193183899,-1.5630252361297607,-1.6505602598190308,-1.8256303071975708,-1.4054621458053589,-0.5651260614395142,0.2401960790157318,0.9579831957817078,1.308123230934143,1.5882352590560913,1.4481792449951172,1.5357142686843872,1.483193278312683,1.378151297569275,1.518207311630249,1.378151297569275,1.045518159866333,1.080532193183899,0.6603641510009766,1.6407562494277954,1.5882352590560913,0.8179271817207336,-0.9327731132507324,1.0630252361297607,0.4327731132507324,1.3606442213058472,0.41526609659194946,1.465686321258545,0.8704481720924377,1.2030812501907349,1.255602240562439,1.0280112028121948,1.693277359008789,1.5882352590560913,1.5357142686843872,1.5882352590560913,1.5357142686843872,1.5007002353668213,1.430672287940979,1.693277359008789,1.518207311630249,1.3606442213058472,1.0280112028121948,0.7303921580314636,-1.9131652116775513,-1.9131652116775513,-1.878151297569275,-1.8256303071975708,-1.843137264251709,-1.9131652116775513,-1.9131652116775513,-1.843137264251709,-0.7927170991897583,0.36274510622024536,1.2030812501907349,1.395658254623413,1.1505602598190308,1.308123230934143,1.1155462265014648,0.8529411554336548,0.18767507374286652,0.13515406847000122,0.9754902124404907,1.430672287940979,1.2380952835083008,1.395658254623413,1.3606442213058472,1.080532193183899,2.39355731010437,1.3606442213058472,-0.12745098769664764,-1.6155462265014648,-0.8977590799331665,-0.3900560140609741,-0.8102241158485413,-1.3529411554336548,-0.8627451062202454,-0.03991596773266792,0.9404761791229248,0.41526609659194946,-1.6155462265014648,-1.983193278312683,-2.0357143878936768,-2.018207311630249,-1.9481792449951172,-1.9481792449951172,-1.930672287940979,-1.965686321258545,-2.0357143878936768,-1.8606442213058472,-1.930672287940979,-1.9481792449951172,-1.9131652116775513,-1.895658254623413,-1.930672287940979,-1.930672287940979,-1.895658254623413,-1.895658254623413,-1.878151297569275,-1.9131652116775513,-1.895658254623413,-1.808123230934143,-1.895658254623413,-1.930672287940979,-1.3354341983795166,-0.32002800703048706,-0.32002800703048706,0.030112044885754585,-0.16246499121189117,0.11764705926179886,-0.6176470518112183,-1.930672287940979,-1.9481792449951172,-2.0007002353668213,-1.983193278312683,-1.965686321258545,-0.4600840210914612,0.32773110270500183,-1.6155462265014648,-1.2303920984268188,-0.9677870869636536,-1.7731091976165771,-1.2478991746902466,-0.8452380895614624,-1.4754902124404907,0.8879551887512207,0.36274510622024536,0.2927170991897583,0.6253501176834106,0.3452380895614624,1.2906162738800049,0.9054622054100037,1.4131652116775513,1.133053183555603,0.36274510622024536,-0.3550420105457306,0.5728291273117065,0.5028011202812195,0.17016807198524475,-0.07492997497320175,0.8704481720924377,0.6953781247138977,-0.28501400351524353,-1.0378150939941406,-0.9152660965919495,-1.3354341983795166,-1.0028011798858643,-0.6351540684700012,-0.6876750588417053,-0.7752100825309753,-1.1078431606292725,-0.7927170991897583,-0.9677870869636536,-1.0728291273117065,-0.09243697673082352,0.17016807198524475,-0.28501400351524353,0.3452380895614624,-1.1253501176834106,-0.1449579894542694,0.36274510622024536,0.2401960790157318,-0.8802521228790283,0.6428571343421936,-0.3900560140609741,0.8179271817207336,1.2906162738800049,0.5028011202812195,-0.12745098769664764,-0.7752100825309753,-0.7226890921592712,-0.33753502368927,-0.33753502368927,-0.17997199296951294,0.012605042196810246,-0.1974789947271347,-1.0203081369400024,-1.492997169494629,-0.09243697673082352,-0.9677870869636536,-1.878151297569275,-1.7030812501907349,-0.16246499121189117,0.18767507374286652,0.36274510622024536,-0.9327731132507324,-0.1974789947271347,-1.3179271221160889,0.20518207550048828,-0.28501400351524353,-0.21498599648475647,-0.10994397848844528,-0.05742296949028969,-0.07492997497320175,-0.33753502368927,-0.02240896411240101,-0.3025210201740265,-0.37254902720451355,-1.6155462265014648,-2.0007002353668213,-2.0357143878936768,-2.018207311630249,-1.9481792449951172,-1.9481792449951172,-1.8256303071975708,-1.7906162738800049,-1.7380952835083008],[-1.7731091976165771,-1.9131652116775513,-1.9131652116775513,-1.930672287940979,-1.4754902124404907,-2.0357143878936768,-1.580532193183899,-1.7380952835083008,-1.633053183555603,-1.4229692220687866,-1.492997169494629,-1.5630252361297607,-1.4754902124404907,-1.3529411554336548,-1.720588207244873,-1.4229692220687866,-1.492997169494629,-1.7030812501907349,-1.0728291273117065,0.4327731132507324,1.2380952835083008,1.693277359008789,1.605742335319519,1.430672287940979,1.553221344947815,1.8333333730697632,1.343137264251709,1.8333333730697632,1.395658254623413,0.9579831957817078,1.693277359008789,1.080532193183899,1.693277359008789,0.8004201650619507,0.7128851413726807,1.5357142686843872,1.0980392694473267,1.255602240562439,1.518207311630249,2.0084033012390137,1.7983193397521973,1.8158262968063354,1.780812382698059,1.8858543634414673,1.8858543634414673,1.6582633256912231,1.7633053064346313,1.6582633256912231,1.7107843160629272,1.5357142686843872,1.7633053064346313,1.5707283020019531,1.6582633256912231,1.6582633256912231,1.6757702827453613,1.553221344947815,1.6232492923736572,1.553221344947815,1.343137264251709,0.9754902124404907,0.6778711676597595,-2.0007002353668213,-1.9131652116775513,-1.8606442213058472,-1.965686321258545,-1.7731091976165771,-1.843137264251709,-1.9131652116775513,-1.2303920984268188,-0.7226890921592712,0.5903361439704895,0.8879551887512207,1.168067216873169,1.378151297569275,1.378151297569275,1.308123230934143,1.045518159866333,0.3977591097354889,-0.4075630307197571,0.012605042196810246,1.0105042457580566,1.045518159866333,1.0980392694473267,1.5882352590560913,1.5882352590560913,1.9383753538131714,1.045518159866333,0.8704481720924377,0.32773110270500183,-1.633053183555603,-0.5126050710678101,-0.7401960492134094,-1.0728291273117065,-1.1778711080551147,-0.4950980246067047,-0.05742296949028969,0.5553221106529236,-1.7030812501907349,-1.843137264251709,-1.9481792449951172,-1.878151297569275,-1.895658254623413,-1.965686321258545,-2.018207311630249,-1.965686321258545,-1.878151297569275,-1.965686321258545,-1.965686321258545,-1.9131652116775513,-1.9131652116775513,-1.9481792449951172,-1.930672287940979,-1.895658254623413,-1.930672287940979,-2.018207311630249,-1.895658254623413,-1.878151297569275,-1.878151297569275,-1.8256303071975708,-1.965686321258545,-2.0357143878936768,-0.17997199296951294,-0.09243697673082352,-0.23249299824237823,-0.23249299824237823,-0.16246499121189117,0.06512605398893356,-0.1449579894542694,-1.5630252361297607,-2.0357143878936768,-1.930672287940979,-1.983193278312683,-1.720588207244873,-0.16246499121189117,-1.1078431606292725,-1.4054621458053589,-1.0378150939941406,-0.6526610851287842,-1.2829132080078125,-0.8627451062202454,-0.3550420105457306,-1.4054621458053589,0.06512605398893356,1.7633053064346313,1.045518159866333,1.080532193183899,1.5707283020019531,0.41526609659194946,1.308123230934143,1.430672287940979,1.0630252361297607,-0.02240896411240101,-0.6876750588417053,-0.3550420105457306,-0.05742296949028969,-0.25,-0.26750701665878296,0.030112044885754585,0.13515406847000122,0.6778711676597595,-0.5126050710678101,-0.4425770342350006,-0.9327731132507324,-0.5826330780982971,-0.7577030658721924,-1.668067216873169,-0.6176470518112183,-1.633053183555603,-0.6526610851287842,-0.8977590799331665,-1.3004201650619507,-0.8452380895614624,-0.10994397848844528,0.31022408604621887,-0.09243697673082352,1.045518159866333,-0.42507001757621765,-0.1449579894542694,0.6428571343421936,-0.02240896411240101,-1.0203081369400024,-0.5301120281219482,0.20518207550048828,0.6078431606292725,0.1001400575041771,-0.17997199296951294,-0.0049019609577953815,-0.02240896411240101,-0.9502801299095154,-0.6526610851287842,0.06512605398893356,0.5203081369400024,0.36274510622024536,-1.0203081369400024,-0.6526610851287842,-0.5476190447807312,-1.0903360843658447,-1.5980392694473267,-1.6505602598190308,-0.21498599648475647,0.0476190485060215,0.17016807198524475,-1.3704482316970825,-0.9152660965919495,-1.1078431606292725,0.15266107022762299,0.11764705926179886,0.32773110270500183,-0.02240896411240101,0.22268907725811005,0.38025209307670593,0.06512605398893356,0.27521008253097534,-0.05742296949028969,0.13515406847000122,-0.28501400351524353,-1.545518159866333,-1.3704482316970825,-1.755602240562439,-2.0357143878936768,-1.5280112028121948,-1.808123230934143,-1.6505602598190308,-1.7906162738800049],[-1.8606442213058472,-1.808123230934143,-1.668067216873169,-1.9481792449951172,-1.4754902124404907,-1.9131652116775513,-1.668067216873169,-1.545518159866333,-1.545518159866333,-1.633053183555603,-1.457983136177063,-1.6505602598190308,-1.492997169494629,-1.4054621458053589,-1.4404761791229248,-1.3179271221160889,-1.545518159866333,1.4481792449951172,1.6407562494277954,1.518207311630249,1.5882352590560913,1.6407562494277954,1.483193278312683,1.5357142686843872,0.7829131484031677,1.133053183555603,0.5903361439704895,1.2731091976165771,1.4131652116775513,1.2906162738800049,-0.7226890921592712,-1.0903360843658447,1.3256303071975708,1.0280112028121948,1.133053183555603,0.6778711676597595,0.4852941036224365,1.553221344947815,1.518207311630249,1.343137264251709,1.483193278312683,1.7457983493804932,1.693277359008789,1.605742335319519,1.693277359008789,1.6407562494277954,1.5882352590560913,1.9033613204956055,1.553221344947815,1.5707283020019531,1.7457983493804932,1.7457983493804932,1.7457983493804932,1.7457983493804932,1.7282912731170654,1.5707283020019531,1.5707283020019531,1.465686321258545,1.2380952835083008,1.045518159866333,0.8529411554336548,-1.9481792449951172,-1.895658254623413,-1.808123230934143,-1.9481792449951172,-1.878151297569275,-1.5280112028121948,-0.7752100825309753,-1.0553221702575684,-0.4950980246067047,-0.6701680421829224,0.27521008253097534,0.3452380895614624,0.6953781247138977,0.9579831957817078,0.9579831957817078,1.1855741739273071,1.1505602598190308,0.32773110270500183,-0.42507001757621765,0.22268907725811005,0.5903361439704895,0.9054622054100037,1.5007002353668213,1.7633053064346313,1.9383753538131714,0.4327731132507324,1.4481792449951172,1.4481792449951172,-0.8277310729026794,-1.1778711080551147,-1.2654061317443848,-1.1603641510009766,-1.0903360843658447,-1.4229692220687866,-1.457983136177063,0.22268907725811005,-1.1603641510009766,-1.878151297569275,-1.878151297569275,-2.018207311630249,-2.0357143878936768,-1.9481792449951172,-1.9131652116775513,-1.9481792449951172,-1.983193278312683,-1.843137264251709,-1.9131652116775513,-2.018207311630249,-1.8606442213058472,-1.930672287940979,-1.930672287940979,-1.983193278312683,-1.895658254623413,-1.8606442213058472,-1.9131652116775513,-1.965686321258545,-1.808123230934143,-2.018207311630249,-1.895658254623413,-0.7226890921592712,-0.21498599648475647,0.20518207550048828,-0.03991596773266792,0.25770309567451477,-0.6001400351524353,-0.28501400351524353,0.030112044885754585,-0.10994397848844528,-1.9481792449951172,-1.9131652116775513,-1.930672287940979,-2.0007002353668213,0.9404761791229248,0.030112044885754585,0.13515406847000122,-0.9677870869636536,-0.07492997497320175,-0.37254902720451355,-1.0203081369400024,0.11764705926179886,-0.07492997497320175,0.13515406847000122,1.9733893871307373,1.0630252361297607,1.553221344947815,0.7654061913490295,0.9929971694946289,1.4481792449951172,0.9754902124404907,0.3977591097354889,0.17016807198524475,-0.1974789947271347,-0.5126050710678101,-0.4425770342350006,-0.47759103775024414,0.18767507374286652,-0.25,0.25770309567451477,0.25770309567451477,-0.42507001757621765,-0.23249299824237823,-0.4075630307197571,-0.5126050710678101,0.18767507374286652,-1.0378150939941406,-0.5301120281219482,-0.26750701665878296,0.030112044885754585,-0.6701680421829224,-0.6001400351524353,-1.1603641510009766,0.15266107022762299,0.7829131484031677,-0.33753502368927,-0.28501400351524353,-0.47759103775024414,1.2030812501907349,1.0105042457580566,1.693277359008789,1.8683472871780396,0.8179271817207336,1.133053183555603,1.2380952835083008,0.5203081369400024,0.46778711676597595,0.5903361439704895,0.25770309567451477,0.3977591097354889,-1.3879551887512207,0.6953781247138977,0.6428571343421936,-0.02240896411240101,-0.7577030658721924,-0.7577030658721924,0.3977591097354889,-0.8802521228790283,-1.878151297569275,-1.580532193183899,-0.17997199296951294,0.7303921580314636,0.18767507374286652,-0.4950980246067047,-1.0553221702575684,-0.1449579894542694,0.5378151535987854,0.012605042196810246,0.2401960790157318,0.31022408604621887,0.18767507374286652,0.22268907725811005,0.2401960790157318,1.0630252361297607,0.8004201650619507,0.6953781247138977,0.4327731132507324,0.41526609659194946,0.4852941036224365,0.3977591097354889,0.6078431606292725,-0.32002800703048706,-1.0378150939941406,-1.633053183555603,-1.633053183555603],[-1.7906162738800049,-1.983193278312683,-1.983193278312683,-2.0357143878936768,-1.2654061317443848,-1.843137264251709,-1.7030812501907349,-1.5630252361297607,-1.5980392694473267,-1.545518159866333,-1.580532193183899,-1.4054621458053589,-1.545518159866333,-1.5630252361297607,-1.3179271221160889,-1.6855741739273071,2.0784313678741455,1.7282912731170654,1.7457983493804932,1.518207311630249,0.9579831957817078,1.8158262968063354,1.780812382698059,1.6757702827453613,1.2030812501907349,1.3606442213058472,0.4852941036224365,1.7107843160629272,1.255602240562439,1.9033613204956055,0.18767507374286652,-1.492997169494629,1.693277359008789,1.8508403301239014,1.8508403301239014,1.483193278312683,1.6757702827453613,2.1309523582458496,1.693277359008789,0.22268907725811005,1.7457983493804932,1.605742335319519,1.7633053064346313,1.465686321258545,1.395658254623413,1.6232492923736572,0.9929971694946289,0.4327731132507324,1.6232492923736572,1.168067216873169,1.7107843160629272,1.780812382698059,1.7457983493804932,1.6757702827453613,1.6407562494277954,1.7107843160629272,1.8508403301239014,1.605742335319519,1.553221344947815,1.2731091976165771,0.9579831957817078,-1.7030812501907349,-1.895658254623413,-1.878151297569275,-1.668067216873169,-1.4404761791229248,-0.23249299824237823,-0.07492997497320175,-1.1778711080551147,-0.09243697673082352,-0.9677870869636536,-0.42507001757621765,0.012605042196810246,0.5553221106529236,0.7303921580314636,0.9579831957817078,1.2731091976165771,1.693277359008789,1.308123230934143,1.0280112028121948,1.0280112028121948,0.5553221106529236,0.5378151535987854,1.308123230934143,1.7457983493804932,1.553221344947815,0.012605042196810246,1.1505602598190308,1.6757702827453613,0.41526609659194946,-1.8256303071975708,-1.5280112028121948,-0.16246499121189117,-1.3354341983795166,-1.0553221702575684,-0.9502801299095154,-1.580532193183899,-1.1078431606292725,-1.3354341983795166,-2.0007002353668213,-1.965686321258545,-1.9131652116775513,-1.965686321258545,-2.0007002353668213,-1.9481792449951172,-1.9131652116775513,-1.983193278312683,-1.9131652116775513,-1.895658254623413,-1.878151297569275,-1.9131652116775513,-1.9481792449951172,-1.895658254623413,-1.878151297569275,-1.9131652116775513,-1.930672287940979,-1.8606442213058472,-2.0357143878936768,-1.983193278312683,-2.018207311630249,-0.09243697673082352,-0.1449579894542694,-0.5476190447807312,-0.4075630307197571,-0.23249299824237823,0.13515406847000122,0.08263305574655533,-0.5301120281219482,-0.21498599648475647,-2.0357143878936768,-2.0007002353668213,-1.8256303071975708,-0.05742296949028969,0.6603641510009766,0.11764705926179886,-0.17997199296951294,-0.9502801299095154,0.13515406847000122,-0.03991596773266792,0.6428571343421936,-0.02240896411240101,0.36274510622024536,0.6078431606292725,1.6757702827453613,0.4852941036224365,1.465686321258545,0.5553221106529236,0.6253501176834106,0.6078431606292725,0.8879551887512207,-0.10994397848844528,-0.6351540684700012,-0.7927170991897583,-0.02240896411240101,-0.32002800703048706,-0.6526610851287842,0.6078431606292725,-0.7051820755004883,0.1001400575041771,-0.9677870869636536,-0.32002800703048706,-0.7752100825309753,0.5728291273117065,0.08263305574655533,-0.28501400351524353,-0.7752100825309753,-1.1253501176834106,-0.17997199296951294,-0.26750701665878296,-0.4950980246067047,0.20518207550048828,-1.5280112028121948,-1.0378150939941406,-0.1974789947271347,1.080532193183899,0.17016807198524475,0.31022408604621887,0.5553221106529236,1.6407562494277954,1.3606442213058472,1.343137264251709,0.5378151535987854,0.5203081369400024,1.255602240562439,1.780812382698059,1.378151297569275,0.7829131484031677,0.9404761791229248,0.31022408604621887,-0.5301120281219482,0.15266107022762299,0.3977591097354889,-0.16246499121189117,-0.9852941036224365,-0.23249299824237823,-0.03991596773266792,-1.1078431606292725,-1.457983136177063,-1.6855741739273071,0.36274510622024536,0.25770309567451477,-0.0049019609577953815,-0.25,-0.3550420105457306,0.27521008253097534,0.27521008253097534,-0.0049019609577953815,-0.03991596773266792,0.22268907725811005,0.31022408604621887,0.25770309567451477,0.36274510622024536,0.5203081369400024,0.9929971694946289,1.1505602598190308,0.7303921580314636,1.1855741739273071,0.9579831957817078,0.5903361439704895,0.7654061913490295,0.1001400575041771,-0.4075630307197571,-0.23249299824237823,-1.3529411554336548],[-1.8606442213058472,-1.9131652116775513,-1.8256303071975708,-2.018207311630249,-1.4404761791229248,-2.018207311630249,-1.5980392694473267,-1.633053183555603,-1.5980392694473267,-1.7731091976165771,-1.457983136177063,-1.580532193183899,-1.3879551887512207,-1.5980392694473267,-1.492997169494629,0.25770309567451477,1.8333333730697632,1.553221344947815,0.2927170991897583,1.308123230934143,1.7633053064346313,1.5007002353668213,1.780812382698059,1.7457983493804932,1.7107843160629272,1.5882352590560913,1.483193278312683,1.8333333730697632,1.6232492923736572,1.780812382698059,1.255602240562439,1.9033613204956055,1.780812382698059,0.7303921580314636,1.7107843160629272,1.3606442213058472,1.5007002353668213,1.9908963441848755,1.5707283020019531,1.8683472871780396,1.045518159866333,1.6407562494277954,1.168067216873169,1.0980392694473267,1.1855741739273071,0.9579831957817078,0.5028011202812195,1.4131652116775513,0.9929971694946289,1.780812382698059,1.8158262968063354,1.7983193397521973,1.7983193397521973,1.8158262968063354,1.8333333730697632,1.8158262968063354,1.780812382698059,1.7457983493804932,1.5007002353668213,1.168067216873169,0.8879551887512207,-1.9481792449951172,-2.0007002353668213,-1.755602240562439,-0.6876750588417053,0.18767507374286652,-0.5826330780982971,-0.28501400351524353,-0.4075630307197571,0.31022408604621887,0.18767507374286652,0.2927170991897583,-0.4075630307197571,-0.1974789947271347,0.46778711676597595,0.8879551887512207,0.7303921580314636,1.3606442213058472,1.5007002353668213,1.5707283020019531,1.168067216873169,1.0105042457580566,0.7303921580314636,1.0280112028121948,1.0280112028121948,0.8704481720924377,0.27521008253097534,0.32773110270500183,0.8704481720924377,1.0980392694473267,-0.0049019609577953815,-1.2128851413726807,-0.28501400351524353,-1.0553221702575684,-1.3004201650619507,-0.9327731132507324,-1.3179271221160889,-1.0903360843658447,-0.5301120281219482,-1.633053183555603,-1.965686321258545,-2.0007002353668213,-1.983193278312683,-1.983193278312683,-1.895658254623413,-1.878151297569275,-1.895658254623413,-1.983193278312683,-1.965686321258545,-1.9131652116775513,-2.018207311630249,-1.7906162738800049,-1.930672287940979,-1.808123230934143,-1.843137264251709,-1.8256303071975708,-1.895658254623413,-1.965686321258545,-1.9481792449951172,-1.965686321258545,0.2401960790157318,0.15266107022762299,0.18767507374286652,0.32773110270500183,0.2927170991897583,0.25770309567451477,-0.07492997497320175,-0.8977590799331665,0.08263305574655533,-2.0357143878936768,-1.983193278312683,-1.3354341983795166,0.6778711676597595,0.8354341983795166,-0.28501400351524353,-0.42507001757621765,0.27521008253097534,-0.21498599648475647,-0.3025210201740265,0.6253501176834106,0.7654061913490295,0.32773110270500183,1.0980392694473267,1.0630252361297607,0.8179271817207336,0.8354341983795166,0.7654061913490295,0.08263305574655533,0.36274510622024536,0.2401960790157318,-0.1974789947271347,-0.7927170991897583,-0.3025210201740265,-0.9677870869636536,-0.26750701665878296,-1.0903360843658447,-0.6001400351524353,0.32773110270500183,-1.2829132080078125,-1.4229692220687866,-0.7401960492134094,-0.23249299824237823,-0.4425770342350006,-0.4600840210914612,-0.42507001757621765,-0.9327731132507324,-0.7051820755004883,-0.7752100825309753,0.8354341983795166,-0.6526610851287842,-0.4950980246067047,-0.6526610851287842,-0.47759103775024414,-0.5126050710678101,0.6253501176834106,0.3977591097354889,1.465686321258545,1.168067216873169,1.308123230934143,1.5707283020019531,1.780812382698059,1.605742335319519,1.8158262968063354,1.5357142686843872,1.5882352590560913,1.2731091976165771,1.2731091976165771,0.9579831957817078,0.9229691624641418,-0.3900560140609741,0.030112044885754585,1.0280112028121948,0.46778711676597595,-0.26750701665878296,-0.07492997497320175,0.450280100107193,-0.4075630307197571,-1.580532193183899,-0.5126050710678101,0.31022408604621887,0.22268907725811005,0.0476190485060215,-0.28501400351524353,0.15266107022762299,0.0476190485060215,-0.09243697673082352,-0.3900560140609741,-0.09243697673082352,0.3977591097354889,0.25770309567451477,0.36274510622024536,0.9579831957817078,0.2927170991897583,1.1505602598190308,0.9754902124404907,1.0280112028121948,0.9229691624641418,1.0980392694473267,1.1855741739273071,0.9054622054100037,-0.02240896411240101,1.045518159866333,0.7128851413726807,-0.47759103775024414],[-1.7731091976165771,-2.0357143878936768,-1.843137264251709,-2.0357143878936768,-1.4404761791229248,-1.878151297569275,-1.457983136177063,-1.3529411554336548,-1.5630252361297607,-1.5280112028121948,-1.580532193183899,-1.492997169494629,-1.4754902124404907,-1.3704482316970825,-1.492997169494629,1.7107843160629272,0.2927170991897583,-2.0357143878936768,1.8158262968063354,1.8333333730697632,1.5357142686843872,1.7983193397521973,1.9908963441848755,1.465686321258545,0.4327731132507324,1.8858543634414673,1.3256303071975708,1.8158262968063354,2.288515329360962,1.2731091976165771,0.9579831957817078,1.8858543634414673,0.38025209307670593,-1.1953781843185425,1.7107843160629272,1.378151297569275,1.2906162738800049,1.8158262968063354,1.2906162738800049,1.308123230934143,1.6232492923736572,1.7983193397521973,1.7983193397521973,1.9033613204956055,1.7457983493804932,1.9033613204956055,1.780812382698059,1.8158262968063354,1.8683472871780396,1.7633053064346313,1.7633053064346313,1.8683472871780396,1.780812382698059,1.780812382698059,1.7983193397521973,1.8158262968063354,1.6757702827453613,1.605742335319519,1.6407562494277954,1.3606442213058472,1.1155462265014648,-2.018207311630249,-1.0728291273117065,-0.6001400351524353,0.22268907725811005,0.18767507374286652,0.5028011202812195,0.17016807198524475,-1.2829132080078125,-0.33753502368927,0.5553221106529236,0.6253501176834106,0.27521008253097534,0.22268907725811005,-0.0049019609577953815,-0.17997199296951294,0.8179271817207336,0.15266107022762299,1.080532193183899,1.343137264251709,1.7107843160629272,1.5707283020019531,1.220588207244873,0.7303921580314636,0.450280100107193,1.168067216873169,1.1855741739273071,1.0980392694473267,0.0476190485060215,0.450280100107193,1.255602240562439,0.5378151535987854,-1.930672287940979,-1.1603641510009766,-1.545518159866333,-1.3354341983795166,-1.0028011798858643,-1.808123230934143,-1.668067216873169,-1.7731091976165771,-2.0357143878936768,-1.983193278312683,-1.983193278312683,-1.9481792449951172,-1.9481792449951172,-1.9481792449951172,-1.9131652116775513,-1.843137264251709,-1.808123230934143,-1.895658254623413,-1.9481792449951172,-1.8256303071975708,-1.878151297569275,-1.8606442213058472,-1.895658254623413,-1.895658254623413,-1.9481792449951172,-1.930672287940979,-1.7906162738800049,-2.018207311630249,0.20518207550048828,0.3977591097354889,0.36274510622024536,0.5378151535987854,0.41526609659194946,0.5728291273117065,0.32773110270500183,0.1001400575041771,0.06512605398893356,-1.7906162738800049,-1.4229692220687866,0.8879551887512207,0.5728291273117065,0.9229691624641418,0.5028011202812195,-0.4600840210914612,0.2927170991897583,0.4852941036224365,-0.17997199296951294,0.0476190485060215,0.9929971694946289,-0.1974789947271347,0.6953781247138977,0.6078431606292725,0.2927170991897583,0.7478991746902466,0.13515406847000122,-0.1974789947271347,-0.12745098769664764,0.3452380895614624,0.4327731132507324,-0.47759103775024414,-0.28501400351524353,0.6078431606292725,-1.1078431606292725,-1.1778711080551147,0.36274510622024536,-1.0728291273117065,-0.5651260614395142,-1.1953781843185425,-0.6176470518112183,0.6603641510009766,-0.4075630307197571,-1.1953781843185425,-1.0903360843658447,0.15266107022762299,-0.7577030658721924,-0.5126050710678101,-0.6701680421829224,-0.33753502368927,-0.1974789947271347,0.012605042196810246,0.8004201650619507,-0.6526610851287842,-0.6526610851287842,0.450280100107193,-0.3900560140609741,0.6953781247138977,1.080532193183899,1.5007002353668213,0.9929971694946289,1.395658254623413,1.465686321258545,1.378151297569275,1.1855741739273071,0.8529411554336548,1.168067216873169,0.9579831957817078,0.8704481720924377,0.012605042196810246,0.11764705926179886,0.5203081369400024,-0.23249299824237823,-0.7226890921592712,0.030112044885754585,0.4852941036224365,-0.6526610851287842,-0.9677870869636536,0.3452380895614624,0.08263305574655533,-0.9852941036224365,-0.07492997497320175,0.22268907725811005,-0.3025210201740265,-0.0049019609577953815,-0.3550420105457306,-0.8277310729026794,-0.5476190447807312,0.08263305574655533,0.0476190485060215,0.2927170991897583,0.5203081369400024,0.46778711676597595,0.9054622054100037,1.0980392694473267,1.080532193183899,1.0280112028121948,1.0280112028121948,1.080532193183899,0.8354341983795166,0.6778711676597595,0.9579831957817078,0.5028011202812195,-1.0203081369400024],[-1.843137264251709,-2.0357143878936768,-1.7906162738800049,-1.9481792449951172,-1.3004201650619507,-2.0007002353668213,-1.5280112028121948,-1.4404761791229248,-1.4754902124404907,-1.5630252361297607,-1.5105042457580566,-1.4754902124404907,-1.4229692220687866,-1.457983136177063,-1.6155462265014648,1.378151297569275,1.2906162738800049,1.6582633256912231,1.553221344947815,1.9733893871307373,1.0980392694473267,1.8158262968063354,1.8683472871780396,1.2906162738800049,2.0259103775024414,1.2030812501907349,1.2030812501907349,1.8858543634414673,2.165966272354126,0.6953781247138977,1.2380952835083008,1.7457983493804932,1.0105042457580566,0.32773110270500183,1.7633053064346313,1.8333333730697632,1.7633053064346313,1.9208683967590332,1.553221344947815,-0.09243697673082352,1.9558823108673096,1.553221344947815,1.8333333730697632,1.9733893871307373,1.9383753538131714,2.0259103775024414,1.6757702827453613,1.9733893871307373,1.5007002353668213,1.4481792449951172,1.8683472871780396,1.8508403301239014,1.780812382698059,1.7983193397521973,1.7633053064346313,1.7633053064346313,1.7983193397521973,1.7282912731170654,1.518207311630249,1.378151297569275,0.8354341983795166,-1.878151297569275,-1.755602240562439,-1.5630252361297607,0.06512605398893356,0.7654061913490295,0.7128851413726807,0.06512605398893356,-1.2654061317443848,0.15266107022762299,0.5203081369400024,-0.6701680421829224,-0.6526610851287842,-0.9152660965919495,-0.7226890921592712,-0.33753502368927,0.20518207550048828,0.3977591097354889,0.5203081369400024,0.450280100107193,0.2401960790157318,1.2731091976165771,1.0280112028121948,0.9404761791229248,0.6253501176834106,1.045518159866333,0.6428571343421936,1.220588207244873,1.6232492923736572,-1.0203081369400024,1.4131652116775513,1.378151297569275,-0.5476190447807312,-1.4229692220687866,-0.8802521228790283,-1.0553221702575684,-0.9677870869636536,-1.3179271221160889,-0.7226890921592712,-1.7731091976165771,-1.7380952835083008,-1.8606442213058472,-2.0007002353668213,-1.9481792449951172,-1.9481792449951172,-1.9131652116775513,-1.9131652116775513,-1.8606442213058472,-1.930672287940979,-1.8256303071975708,-1.8606442213058472,-1.9131652116775513,-1.843137264251709,-1.9131652116775513,-1.8256303071975708,-1.7731091976165771,-1.843137264251709,-1.9131652116775513,-1.878151297569275,-2.0357143878936768,0.18767507374286652,0.5203081369400024,0.5378151535987854,0.6078431606292725,0.6428571343421936,0.7829131484031677,0.6778711676597595,0.030112044885754585,-0.23249299824237823,-1.1428571939468384,-0.5476190447807312,1.343137264251709,2.1484594345092773,1.343137264251709,-0.17997199296951294,-0.42507001757621765,0.4327731132507324,-0.42507001757621765,-0.3025210201740265,0.13515406847000122,0.5728291273117065,0.25770309567451477,0.11764705926179886,0.012605042196810246,0.06512605398893356,0.5378151535987854,0.7128851413726807,0.13515406847000122,0.012605042196810246,0.6078431606292725,-0.05742296949028969,0.7303921580314636,-0.03991596773266792,-0.6526610851287842,-0.6526610851287842,0.11764705926179886,0.17016807198524475,-0.5651260614395142,0.012605042196810246,0.4852941036224365,0.27521008253097534,0.7829131484031677,0.46778711676597595,-0.28501400351524353,0.030112044885754585,-0.09243697673082352,0.2401960790157318,-0.42507001757621765,-0.7226890921592712,-0.21498599648475647,0.8704481720924377,-0.9327731132507324,0.18767507374286652,0.11764705926179886,-0.26750701665878296,-0.02240896411240101,1.378151297569275,0.4852941036224365,0.8179271817207336,1.343137264251709,0.9754902124404907,0.8004201650619507,1.2731091976165771,1.430672287940979,1.5007002353668213,1.518207311630249,1.0980392694473267,0.9404761791229248,0.7303921580314636,0.08263305574655533,-0.5651260614395142,-0.3025210201740265,-0.6001400351524353,-1.1778711080551147,-0.1449579894542694,0.2927170991897583,-1.2303920984268188,-0.47759103775024414,0.31022408604621887,-0.4425770342350006,-0.5126050710678101,0.012605042196810246,0.8879551887512207,0.7654061913490295,0.012605042196810246,-1.5105042457580566,-1.1253501176834106,-1.0728291273117065,-0.07492997497320175,-0.6001400351524353,-0.28501400351524353,0.38025209307670593,0.22268907725811005,1.0980392694473267,0.8004201650619507,1.080532193183899,1.0280112028121948,1.0980392694473267,1.343137264251709,1.220588207244873,1.2380952835083008,0.8529411554336548,0.6428571343421936,0.6778711676597595],[-1.965686321258545,-1.878151297569275,-1.930672287940979,-2.0007002353668213,-1.4754902124404907,-2.018207311630249,-1.4229692220687866,-1.3529411554336548,-1.492997169494629,-1.5280112028121948,-1.5630252361297607,-1.3879551887512207,-1.2654061317443848,-1.4054621458053589,-0.3900560140609741,1.9558823108673096,1.8858543634414673,1.9558823108673096,1.5707283020019531,1.255602240562439,1.8858543634414673,1.7633053064346313,1.8508403301239014,1.9033613204956055,1.7457983493804932,1.553221344947815,0.8004201650619507,1.9208683967590332,1.553221344947815,1.255602240562439,1.6757702827453613,1.4131652116775513,1.780812382698059,1.6582633256912231,1.7107843160629272,2.1309523582458496,1.5357142686843872,1.378151297569275,1.7282912731170654,2.0609242916107178,1.7633053064346313,1.9558823108673096,1.8683472871780396,1.430672287940979,1.4481792449951172,1.0980392694473267,0.9579831957817078,1.2380952835083008,1.518207311630249,0.9929971694946289,1.8333333730697632,1.8858543634414673,1.8683472871780396,1.8158262968063354,1.7282912731170654,1.7107843160629272,1.7633053064346313,1.7457983493804932,1.553221344947815,0.13515406847000122,-1.9131652116775513,-0.33753502368927,-1.0378150939941406,-1.3354341983795166,-0.3025210201740265,0.6428571343421936,0.4327731132507324,-0.26750701665878296,-0.0049019609577953815,0.5553221106529236,0.5728291273117065,0.3452380895614624,0.06512605398893356,-0.07492997497320175,0.36274510622024536,0.32773110270500183,0.4327731132507324,1.045518159866333,0.7654061913490295,0.6078431606292725,0.5903361439704895,0.6778711676597595,0.5728291273117065,0.8529411554336548,0.31022408604621887,0.9754902124404907,0.6078431606292725,0.5028011202812195,1.6582633256912231,0.0476190485060215,1.6757702827453613,1.553221344947815,0.38025209307670593,-1.843137264251709,-0.8452380895614624,-1.6155462265014648,-1.7030812501907349,-1.5630252361297607,-0.5301120281219482,-0.7226890921592712,-1.808123230934143,-1.668067216873169,-1.843137264251709,-1.8606442213058472,-1.8606442213058472,-1.930672287940979,-1.843137264251709,-2.0357143878936768,-2.0007002353668213,-1.9481792449951172,-1.808123230934143,-1.983193278312683,-1.843137264251709,-1.930672287940979,-1.8256303071975708,-1.930672287940979,-1.965686321258545,-1.895658254623413,-1.7906162738800049,-2.018207311630249,0.6953781247138977,0.5728291273117065,0.5028011202812195,0.9054622054100037,-0.03991596773266792,-0.02240896411240101,0.8179271817207336,-0.02240896411240101,-0.8277310729026794,-0.02240896411240101,0.27521008253097534,0.9929971694946289,1.1155462265014648,0.9929971694946289,0.36274510622024536,0.36274510622024536,0.41526609659194946,-0.32002800703048706,-0.05742296949028969,-0.16246499121189117,0.20518207550048828,-0.1449579894542694,0.36274510622024536,0.20518207550048828,0.0476190485060215,-0.12745098769664764,0.7478991746902466,0.08263305574655533,0.31022408604621887,0.6778711676597595,-0.4075630307197571,0.2401960790157318,0.8179271817207336,0.9754902124404907,0.32773110270500183,0.15266107022762299,0.9929971694946289,0.46778711676597595,-0.8977590799331665,0.6078431606292725,-0.28501400351524353,-0.4425770342350006,0.20518207550048828,0.9929971694946289,-0.5826330780982971,0.4852941036224365,0.5028011202812195,-0.6701680421829224,0.5553221106529236,0.08263305574655533,0.25770309567451477,-0.8802521228790283,-0.02240896411240101,0.7829131484031677,0.9579831957817078,0.8354341983795166,1.0630252361297607,1.7457983493804932,1.255602240562439,1.0630252361297607,1.483193278312683,1.9033613204956055,1.6407562494277954,1.168067216873169,1.080532193183899,1.553221344947815,1.518207311630249,0.8004201650619507,0.8179271817207336,0.13515406847000122,-1.0378150939941406,-0.02240896411240101,-0.8102241158485413,-1.0553221702575684,-0.6001400351524353,-0.6526610851287842,-0.5126050710678101,-0.16246499121189117,-0.32002800703048706,0.2927170991897583,-0.07492997497320175,0.46778711676597595,0.8879551887512207,0.9054622054100037,0.9754902124404907,0.450280100107193,-0.8452380895614624,-1.580532193183899,-1.2303920984268188,-0.5301120281219482,-0.3550420105457306,0.11764705926179886,-0.33753502368927,0.450280100107193,0.8004201650619507,0.5028011202812195,0.6778711676597595,1.1505602598190308,1.168067216873169,1.4131652116775513,0.9404761791229248,0.8004201650619507,0.9054622054100037,0.9404761791229248],[-1.983193278312683,-1.983193278312683,-1.965686321258545,-1.983193278312683,-1.4054621458053589,-1.878151297569275,-1.4054621458053589,-1.2654061317443848,-1.4229692220687866,-1.4754902124404907,-1.4054621458053589,-1.4054621458053589,-1.3179271221160889,-1.2829132080078125,0.030112044885754585,1.9383753538131714,1.7983193397521973,1.8858543634414673,1.7983193397521973,1.7983193397521973,1.8333333730697632,1.9383753538131714,2.0084033012390137,1.395658254623413,0.5378151535987854,1.7457983493804932,1.8333333730697632,1.7983193397521973,1.6232492923736572,1.9908963441848755,0.8004201650619507,-0.7927170991897583,1.553221344947815,1.8333333730697632,1.7457983493804932,1.4481792449951172,1.2030812501907349,1.465686321258545,1.9733893871307373,1.5357142686843872,1.8158262968063354,1.518207311630249,1.6757702827453613,1.9558823108673096,0.6778711676597595,1.220588207244873,0.5378151535987854,1.5882352590560913,1.430672287940979,1.9558823108673096,1.8158262968063354,1.7983193397521973,1.8158262968063354,1.8158262968063354,1.7983193397521973,1.605742335319519,1.080532193183899,0.18767507374286652,-1.3179271221160889,-2.0007002353668213,-0.21498599648475647,1.045518159866333,-0.28501400351524353,-1.2128851413726807,-1.1603641510009766,0.5203081369400024,0.11764705926179886,0.2927170991897583,-0.6351540684700012,-0.17997199296951294,0.17016807198524475,0.36274510622024536,-0.25,-0.10994397848844528,0.5903361439704895,0.41526609659194946,0.7128851413726807,0.3977591097354889,0.46778711676597595,0.7303921580314636,0.8704481720924377,0.9404761791229248,0.9229691624641418,0.7303921580314636,0.7478991746902466,0.9229691624641418,0.450280100107193,0.36274510622024536,1.2731091976165771,1.255602240562439,1.553221344947815,1.7983193397521973,-0.5301120281219482,-1.7030812501907349,-0.37254902720451355,-0.7927170991897583,-1.3879551887512207,-1.0728291273117065,-0.6001400351524353,-1.4054621458053589,-0.8277310729026794,-1.7731091976165771,-1.983193278312683,-2.0357143878936768,-1.878151297569275,-1.8606442213058472,-1.8256303071975708,-1.8256303071975708,-1.895658254623413,-1.965686321258545,-1.878151297569275,-1.8606442213058472,-1.843137264251709,-1.8606442213058472,-1.9131652116775513,-1.878151297569275,-1.878151297569275,-1.7731091976165771,-2.0357143878936768,-1.668067216873169,-0.47759103775024414,0.22268907725811005,-0.7577030658721924,0.6953781247138977,0.06512605398893356,-1.2654061317443848,0.9054622054100037,-0.09243697673082352,-1.1778711080551147,-0.4600840210914612,0.9579831957817078,0.8354341983795166,1.2731091976165771,1.1855741739273071,0.32773110270500183,0.46778711676597595,0.5378151535987854,-0.3550420105457306,-0.33753502368927,-0.8102241158485413,-0.3900560140609741,-0.21498599648475647,-0.4075630307197571,0.38025209307670593,-0.7927170991897583,-0.03991596773266792,0.46778711676597595,-0.8627451062202454,-0.4075630307197571,-0.7577030658721924,-0.17997199296951294,-0.10994397848844528,0.2401960790157318,0.25770309567451477,-0.3900560140609741,0.6428571343421936,-0.16246499121189117,0.2401960790157318,-0.3900560140609741,-0.7226890921592712,0.18767507374286652,0.20518207550048828,0.25770309567451477,-0.17997199296951294,0.9404761791229248,-0.32002800703048706,0.4852941036224365,-0.5476190447807312,0.41526609659194946,-1.0203081369400024,0.08263305574655533,-0.6876750588417053,0.36274510622024536,-0.02240896411240101,0.22268907725811005,0.9054622054100037,1.7457983493804932,0.6428571343421936,0.7303921580314636,1.693277359008789,1.483193278312683,1.2906162738800049,1.3606442213058472,1.1855741739273071,1.255602240562439,1.3256303071975708,1.133053183555603,1.133053183555603,0.8354341983795166,0.4327731132507324,-0.6176470518112183,-0.05742296949028969,-0.3900560140609741,-0.7577030658721924,-0.9152660965919495,-1.0903360843658447,-0.32002800703048706,-0.3025210201740265,-0.05742296949028969,0.6078431606292725,0.3452380895614624,0.6428571343421936,1.0630252361297607,1.0980392694473267,1.0105042457580566,1.2380952835083008,1.0630252361297607,0.5903361439704895,-0.4600840210914612,-1.3704482316970825,-1.1953781843185425,-0.6001400351524353,0.13515406847000122,0.3452380895614624,0.9579831957817078,0.3977591097354889,1.0280112028121948,0.8529411554336548,0.9929971694946289,0.9229691624641418,0.7829131484031677,0.6428571343421936,1.1155462265014648,1.220588207244873],[-1.755602240562439,-1.8256303071975708,-1.983193278312683,-2.0357143878936768,-1.2478991746902466,-1.930672287940979,-1.3529411554336548,-1.3004201650619507,-1.4054621458053589,-1.1953781843185425,-1.492997169494629,-1.3354341983795166,-1.3529411554336548,-1.4229692220687866,0.46778711676597595,1.7457983493804932,1.8333333730697632,1.9558823108673096,1.9208683967590332,1.9383753538131714,1.0980392694473267,1.7282912731170654,2.0609242916107178,1.395658254623413,1.378151297569275,1.8858543634414673,1.465686321258545,1.8683472871780396,1.693277359008789,1.9383753538131714,1.483193278312683,-0.8277310729026794,1.8333333730697632,0.7654061913490295,1.483193278312683,1.0105042457580566,1.395658254623413,1.8508403301239014,-0.8102241158485413,-0.6351540684700012,1.483193278312683,0.6253501176834106,1.430672287940979,1.133053183555603,1.7983193397521973,1.7633053064346313,1.8683472871780396,1.9033613204956055,1.9208683967590332,1.8158262968063354,1.8858543634414673,1.5007002353668213,1.0280112028121948,0.41526609659194946,-0.6526610851287842,-1.4404761791229248,-1.843137264251709,-1.808123230934143,-2.018207311630249,-0.3025210201740265,1.2380952835083008,1.2030812501907349,1.045518159866333,-0.23249299824237823,-1.0553221702575684,0.030112044885754585,0.3452380895614624,0.5378151535987854,-0.5651260614395142,-1.0903360843658447,-0.5126050710678101,0.8354341983795166,0.5203081369400024,0.08263305574655533,0.08263305574655533,0.5728291273117065,-0.3550420105457306,0.18767507374286652,0.36274510622024536,0.4327731132507324,0.6078431606292725,0.6253501176834106,0.7478991746902466,1.0630252361297607,0.5203081369400024,0.6078431606292725,0.13515406847000122,1.0105042457580566,1.0280112028121948,1.1155462265014648,2.2710084915161133,1.518207311630249,-0.6351540684700012,-1.6855741739273071,-0.7226890921592712,-1.6505602598190308,-1.1953781843185425,-1.1778711080551147,-1.633053183555603,-1.1428571939468384,-1.6505602598190308,-1.8606442213058472,-2.018207311630249,-2.018207311630249,-2.0357143878936768,-2.0007002353668213,-1.8256303071975708,-1.983193278312683,-1.930672287940979,-1.878151297569275,-1.878151297569275,-1.878151297569275,-1.8606442213058472,-1.7731091976165771,-1.8256303071975708,-1.843137264251709,-1.8606442213058472,-1.8256303071975708,-1.8606442213058472,-1.1428571939468384,0.4852941036224365,-0.1449579894542694,1.0105042457580566,0.8004201650619507,0.6778711676597595,0.9754902124404907,0.4852941036224365,0.11764705926179886,-0.9327731132507324,1.8158262968063354,1.2731091976165771,0.5203081369400024,0.8879551887512207,1.483193278312683,0.3452380895614624,1.693277359008789,0.9404761791229248,0.27521008253097534,0.450280100107193,-0.42507001757621765,0.0476190485060215,-0.7752100825309753,0.08263305574655533,0.1001400575041771,-0.7051820755004883,-0.0049019609577953815,0.5728291273117065,-0.42507001757621765,-0.5651260614395142,-0.0049019609577953815,0.25770309567451477,0.1001400575041771,-0.33753502368927,0.6953781247138977,-0.5301120281219482,0.6428571343421936,0.9754902124404907,0.8354341983795166,-0.3550420105457306,-1.0903360843658447,0.36274510622024536,-0.4425770342350006,0.1001400575041771,0.13515406847000122,0.450280100107193,1.1155462265014648,-0.7226890921592712,0.4327731132507324,0.18767507374286652,-0.8627451062202454,0.7303921580314636,0.8004201650619507,-0.07492997497320175,-0.47759103775024414,-0.21498599648475647,0.7303921580314636,0.7829131484031677,0.25770309567451477,1.1855741739273071,1.5357142686843872,1.465686321258545,1.483193278312683,1.343137264251709,1.220588207244873,1.2731091976165771,1.308123230934143,1.343137264251709,1.3256303071975708,1.2731091976165771,0.8704481720924377,0.6953781247138977,0.15266107022762299,-0.1974789947271347,0.06512605398893356,-0.12745098769664764,0.5378151535987854,0.31022408604621887,0.7478991746902466,-0.07492997497320175,0.6778711676597595,0.9404761791229248,1.0105042457580566,1.2030812501907349,0.7829131484031677,1.220588207244873,1.4131652116775513,1.0980392694473267,1.2906162738800049,1.1855741739273071,0.450280100107193,-1.2478991746902466,-1.4229692220687866,-0.4600840210914612,0.030112044885754585,0.2401960790157318,0.25770309567451477,0.46778711676597595,1.220588207244873,0.9754902124404907,0.9404761791229248,0.15266107022762299,0.6078431606292725,1.255602240562439,1.4481792449951172],[-1.8606442213058472,-1.9131652116775513,-2.0007002353668213,-1.983193278312683,-1.3354341983795166,-2.0357143878936768,-1.2303920984268188,-1.6155462265014648,-1.492997169494629,-1.4229692220687866,-1.3529411554336548,-1.4054621458053589,-1.4229692220687866,-1.3179271221160889,0.5728291273117065,1.9383753538131714,1.9908963441848755,1.8333333730697632,1.8158262968063354,1.308123230934143,1.9733893871307373,2.0959384441375732,1.5357142686843872,2.1309523582458496,2.0084033012390137,1.9383753538131714,1.3256303071975708,1.8333333730697632,1.6232492923736572,0.6953781247138977,1.9558823108673096,1.5882352590560913,1.9733893871307373,1.168067216873169,0.9579831957817078,1.343137264251709,1.7282912731170654,1.780812382698059,1.220588207244873,0.8354341983795166,1.9383753538131714,1.605742335319519,2.0084033012390137,1.8858543634414673,1.7983193397521973,1.9558823108673096,1.9033613204956055,1.693277359008789,1.1505602598190308,0.32773110270500183,-0.8627451062202454,-1.4229692220687866,-1.7731091976165771,-1.7380952835083008,-1.930672287940979,-1.965686321258545,-2.0007002353668213,-2.0357143878936768,-0.7051820755004883,1.1505602598190308,0.5028011202812195,1.2731091976165771,1.080532193183899,-0.37254902720451355,-1.5630252361297607,-0.9152660965919495,-0.05742296949028969,0.8704481720924377,0.6428571343421936,-0.6176470518112183,-0.7752100825309753,-0.05742296949028969,0.08263305574655533,0.4327731132507324,-0.6701680421829224,-1.3004201650619507,-0.7577030658721924,0.13515406847000122,0.5553221106529236,0.6953781247138977,0.17016807198524475,0.13515406847000122,0.5728291273117065,1.308123230934143,0.8354341983795166,1.0980392694473267,0.5728291273117065,0.8179271817207336,1.5357142686843872,1.343137264251709,2.1834733486175537,1.7983193397521973,-1.2654061317443848,-1.5280112028121948,-0.8802521228790283,-1.0553221702575684,-0.0049019609577953815,-1.5105042457580566,-1.843137264251709,-1.2654061317443848,-1.668067216873169,-2.0357143878936768,-1.5630252361297607,-0.9852941036224365,-0.6526610851287842,-0.6351540684700012,-1.4754902124404907,-2.0357143878936768,-1.9481792449951172,-1.8606442213058472,-1.878151297569275,-1.7380952835083008,-1.9481792449951172,-1.808123230934143,-1.808123230934143,-1.895658254623413,-1.7906162738800049,-1.843137264251709,-1.965686321258545,-0.4075630307197571,1.3256303071975708,0.41526609659194946,0.8179271817207336,0.7829131484031677,0.20518207550048828,-0.10994397848844528,0.6078431606292725,-0.10994397848844528,-0.8277310729026794,1.4481792449951172,0.5553221106529236,0.7303921580314636,1.6232492923736572,2.113445281982422,0.9404761791229248,0.9054622054100037,-0.10994397848844528,0.6253501176834106,1.5007002353668213,-0.6701680421829224,0.030112044885754585,-0.32002800703048706,-0.0049019609577953815,0.17016807198524475,-0.5826330780982971,0.17016807198524475,0.4852941036224365,-1.0903360843658447,-0.23249299824237823,0.11764705926179886,-0.6701680421829224,-0.28501400351524353,-0.6351540684700012,-0.5651260614395142,-0.1449579894542694,-0.1449579894542694,-0.9852941036224365,-0.4950980246067047,-0.09243697673082352,-0.28501400351524353,0.5028011202812195,0.450280100107193,1.483193278312683,0.8879551887512207,1.1505602598190308,1.133053183555603,0.06512605398893356,-0.3025210201740265,0.3452380895614624,-0.3025210201740265,-0.42507001757621765,0.5903361439704895,0.6953781247138977,1.0980392694473267,-0.8452380895614624,1.343137264251709,0.38025209307670593,1.5707283020019531,1.7107843160629272,1.1155462265014648,1.7107843160629272,1.6232492923736572,1.2030812501907349,1.3256303071975708,1.378151297569275,1.2906162738800049,1.1855741739273071,1.308123230934143,1.255602240562439,1.133053183555603,0.5203081369400024,0.15266107022762299,-0.7927170991897583,-0.16246499121189117,0.6953781247138977,0.5203081369400024,0.9229691624641418,0.6428571343421936,0.32773110270500183,0.5028011202812195,0.8004201650619507,1.168067216873169,1.0280112028121948,0.7654061913490295,0.8179271817207336,1.2380952835083008,1.465686321258545,1.2030812501907349,1.168067216873169,1.168067216873169,1.045518159866333,-0.6351540684700012,-1.7731091976165771,-1.3354341983795166,-1.3704482316970825,-1.1778711080551147,-0.28501400351524353,0.41526609659194946,0.5028011202812195,0.7654061913490295,1.1155462265014648,0.6603641510009766,1.2030812501907349,0.7303921580314636],[-1.983193278312683,-1.7380952835083008,-1.878151297569275,-1.965686321258545,-1.2829132080078125,-2.0357143878936768,-1.3004201650619507,-1.457983136177063,-1.4229692220687866,-1.2128851413726807,-1.2128851413726807,-1.3879551887512207,-1.3704482316970825,-1.3004201650619507,0.32773110270500183,1.9908963441848755,1.8158262968063354,1.9208683967590332,1.8158262968063354,1.9558823108673096,1.9908963441848755,2.0784313678741455,1.8333333730697632,1.5007002353668213,1.483193278312683,1.2906162738800049,1.4131652116775513,1.780812382698059,1.8508403301239014,0.2927170991897583,2.0084033012390137,1.9383753538131714,1.9208683967590332,1.4131652116775513,1.308123230934143,1.8858543634414673,1.9208683967590332,1.9383753538131714,2.043417453765869,2.1309523582458496,2.0259103775024414,1.9908963441848755,1.8508403301239014,1.553221344947815,0.7128851413726807,-0.02240896411240101,-0.6001400351524353,-1.1778711080551147,-1.720588207244873,-1.878151297569275,-1.843137264251709,-1.7030812501907349,-1.633053183555603,-1.0378150939941406,-1.1253501176834106,-1.545518159866333,-1.3354341983795166,-1.1603641510009766,0.6253501176834106,0.8179271817207336,0.7303921580314636,1.0105042457580566,1.2030812501907349,0.6253501176834106,-1.3879551887512207,-1.3704482316970825,0.31022408604621887,0.6253501176834106,0.1001400575041771,-0.9327731132507324,-1.4754902124404907,-1.668067216873169,-0.25,0.11764705926179886,-0.1974789947271347,-0.02240896411240101,0.7478991746902466,0.9229691624641418,-0.1449579894542694,0.22268907725811005,0.8529411554336548,0.5553221106529236,-0.4600840210914612,0.7478991746902466,1.465686321258545,0.6953781247138977,1.1155462265014648,0.8354341983795166,1.5707283020019531,1.7983193397521973,2.165966272354126,1.6757702827453613,-1.5280112028121948,-1.965686321258545,-0.8802521228790283,-1.1953781843185425,-0.5476190447807312,-1.4754902124404907,-2.0357143878936768,-1.9481792449951172,-1.6505602598190308,-1.668067216873169,-1.7906162738800049,-0.4950980246067047,-0.3025210201740265,-0.3025210201740265,-0.25,-0.6351540684700012,-1.6155462265014648,-1.9131652116775513,-1.808123230934143,-1.843137264251709,-1.895658254623413,-1.930672287940979,-1.7731091976165771,-1.755602240562439,-1.930672287940979,-1.930672287940979,-1.755602240562439,0.4327731132507324,0.11764705926179886,0.18767507374286652,0.38025209307670593,1.080532193183899,0.36274510622024536,0.25770309567451477,0.6953781247138977,0.27521008253097534,-0.8452380895614624,1.465686321258545,0.9754902124404907,1.308123230934143,0.9754902124404907,1.255602240562439,2.1309523582458496,1.9733893871307373,0.6253501176834106,0.7654061913490295,1.395658254623413,0.22268907725811005,0.030112044885754585,-0.28501400351524353,0.3452380895614624,-0.05742296949028969,-0.6876750588417053,0.13515406847000122,-0.10994397848844528,-0.9677870869636536,-0.3550420105457306,-1.3529411554336548,-0.3550420105457306,-0.10994397848844528,0.20518207550048828,-0.4075630307197571,-0.23249299824237823,-0.9327731132507324,1.080532193183899,1.0630252361297607,-0.3900560140609741,0.22268907725811005,0.6778711676597595,0.06512605398893356,0.8879551887512207,1.220588207244873,1.430672287940979,1.553221344947815,-0.32002800703048706,1.6232492923736572,0.8354341983795166,0.27521008253097534,0.3977591097354889,-0.5826330780982971,0.38025209307670593,0.5203081369400024,0.8179271817207336,0.7303921580314636,0.5028011202812195,1.2731091976165771,1.6232492923736572,1.8508403301239014,1.5357142686843872,1.1505602598190308,1.220588207244873,1.6407562494277954,1.6232492923736572,1.483193278312683,1.465686321258545,1.483193278312683,1.6757702827453613,1.3256303071975708,0.9579831957817078,0.36274510622024536,-0.4075630307197571,0.11764705926179886,0.41526609659194946,0.8879551887512207,0.8879551887512207,1.2906162738800049,0.9579831957817078,0.2401960790157318,0.25770309567451477,0.9754902124404907,0.9054622054100037,1.3606442213058472,1.465686321258545,1.378151297569275,1.3606442213058472,1.483193278312683,1.4481792449951172,1.4131652116775513,1.4481792449951172,1.343137264251709,-0.47759103775024414,-1.878151297569275,-1.6155462265014648,-1.633053183555603,-1.580532193183899,-0.9852941036224365,-0.0049019609577953815,0.06512605398893356,0.46778711676597595,1.2731091976165771,1.1855741739273071,0.8179271817207336],[-1.7906162738800049,-1.6505602598190308,-1.983193278312683,-2.0007002353668213,-1.2829132080078125,-2.0357143878936768,-1.2829132080078125,-1.2478991746902466,-1.2128851413726807,-1.2654061317443848,-1.2654061317443848,-1.3179271221160889,-1.1953781843185425,-1.4404761791229248,-0.8102241158485413,1.9208683967590332,1.8158262968063354,1.8333333730697632,1.8858543634414673,1.7633053064346313,0.4327731132507324,1.7633053064346313,2.0784313678741455,1.7282912731170654,1.465686321258545,1.9033613204956055,1.6407562494277954,1.8858543634414673,2.165966272354126,1.8683472871780396,1.9383753538131714,1.8333333730697632,1.8508403301239014,2.0084033012390137,2.113445281982422,2.0609242916107178,1.8333333730697632,1.2030812501907349,0.6078431606292725,0.030112044885754585,-0.7577030658721924,-1.457983136177063,-1.808123230934143,-1.9481792449951172,-2.0007002353668213,-1.930672287940979,-2.018207311630249,-1.9481792449951172,-1.878151297569275,-0.7226890921592712,0.1001400575041771,1.0980392694473267,1.2731091976165771,1.378151297569275,0.46778711676597595,0.6253501176834106,0.31022408604621887,-0.26750701665878296,0.27521008253097534,-0.8102241158485413,-0.47759103775024414,0.6603641510009766,0.5378151535987854,0.31022408604621887,-0.47759103775024414,-1.4229692220687866,0.012605042196810246,0.17016807198524475,0.38025209307670593,-0.02240896411240101,-0.37254902720451355,0.5728291273117065,-0.5651260614395142,-1.1603641510009766,-0.37254902720451355,0.36274510622024536,-0.3550420105457306,0.6078431606292725,0.6253501176834106,0.20518207550048828,-0.3900560140609741,0.6953781247138977,0.20518207550048828,0.18767507374286652,0.6953781247138977,0.7654061913490295,0.9229691624641418,1.1855741739273071,1.343137264251709,1.5707283020019531,2.043417453765869,1.9733893871307373,-0.21498599648475647,-1.7380952835083008,-1.0903360843658447,0.15266107022762299,-1.5105042457580566,-0.6176470518112183,-0.8452380895614624,-1.930672287940979,-1.7906162738800049,-1.668067216873169,-1.4229692220687866,-0.7927170991897583,-0.5476190447807312,-0.5476190447807312,-1.3004201650619507,-1.1953781843185425,-1.9481792449951172,-1.8256303071975708,-1.8606442213058472,-1.8256303071975708,-1.7731091976165771,-1.9131652116775513,-1.755602240562439,-1.983193278312683,-1.8256303071975708,-1.8256303071975708,-1.668067216873169,1.220588207244873,1.5357142686843872,1.1505602598190308,1.3256303071975708,0.8179271817207336,0.20518207550048828,0.2401960790157318,0.15266107022762299,0.17016807198524475,-0.4075630307197571,0.2401960790157318,1.2380952835083008,1.6407562494277954,0.7128851413726807,0.9579831957817078,1.308123230934143,1.5007002353668213,1.378151297569275,0.7303921580314636,2.0959384441375732,1.6232492923736572,0.6778711676597595,0.4327731132507324,0.7478991746902466,0.6078431606292725,-0.4600840210914612,-0.5826330780982971,1.1855741739273071,0.32773110270500183,-1.0903360843658447,-1.668067216873169,0.46778711676597595,-0.5301120281219482,0.2401960790157318,-0.33753502368927,-0.1974789947271347,-0.1449579894542694,-0.5826330780982971,-0.4600840210914612,-0.23249299824237823,-0.09243697673082352,0.6428571343421936,0.15266107022762299,1.1855741739273071,0.7128851413726807,1.5357142686843872,0.32773110270500183,1.045518159866333,1.255602240562439,-1.0028011798858643,-0.0049019609577953815,1.255602240562439,0.5028011202812195,0.36274510622024536,1.308123230934143,1.5357142686843872,0.9929971694946289,1.308123230934143,0.8179271817207336,1.5357142686843872,1.5007002353668213,1.343137264251709,1.308123230934143,1.2731091976165771,1.3606442213058472,1.483193278312683,1.465686321258545,1.4481792449951172,1.5882352590560913,1.465686321258545,1.5707283020019531,1.0630252361297607,0.18767507374286652,-0.6351540684700012,-0.16246499121189117,0.9054622054100037,0.9579831957817078,1.168067216873169,1.0630252361297607,1.168067216873169,-0.26750701665878296,0.5378151535987854,0.7654061913490295,0.9404761791229248,0.9579831957817078,0.8879551887512207,1.133053183555603,1.3606442213058472,1.080532193183899,1.6407562494277954,1.6757702827453613,1.553221344947815,1.5882352590560913,1.395658254623413,1.0980392694473267,-0.25,-1.808123230934143,-1.755602240562439,-1.5980392694473267,-1.0203081369400024,-0.8627451062202454,-1.492997169494629,-1.457983136177063,-1.0903360843658447,-1.668067216873169],[-1.755602240562439,-1.3879551887512207,-1.930672287940979,-2.0007002353668213,-1.3179271221160889,-1.983193278312683,-1.2829132080078125,-1.2829132080078125,-1.4054621458053589,-1.2829132080078125,-1.2829132080078125,-1.2829132080078125,-1.3879551887512207,-1.4054621458053589,-1.580532193183899,1.9383753538131714,1.8508403301239014,2.0259103775024414,2.1834733486175537,1.5882352590560913,1.9208683967590332,2.0959384441375732,1.6407562494277954,2.0084033012390137,1.9208683967590332,1.8158262968063354,1.8858543634414673,2.1484594345092773,2.043417453765869,2.1484594345092773,2.0784313678741455,1.7282912731170654,1.780812382698059,1.168067216873169,0.6603641510009766,-0.25,-0.8977590799331665,-1.545518159866333,-1.7030812501907349,-2.0357143878936768,-1.965686321258545,-2.0357143878936768,-1.930672287940979,-1.983193278312683,-1.8256303071975708,-2.0357143878936768,-1.720588207244873,-1.7380952835083008,-0.7752100825309753,0.25770309567451477,0.9054622054100037,1.1505602598190308,1.3256303071975708,1.518207311630249,0.9054622054100037,1.080532193183899,0.9229691624641418,0.7478991746902466,0.7128851413726807,0.5553221106529236,-0.7051820755004883,-1.1953781843185425,-0.47759103775024414,-0.0049019609577953815,-1.2654061317443848,-1.755602240562439,-0.17997199296951294,0.1001400575041771,-0.17997199296951294,0.450280100107193,0.17016807198524475,0.5903361439704895,0.8354341983795166,-0.05742296949028969,-0.23249299824237823,0.6253501176834106,-0.12745098769664764,0.8004201650619507,-0.3025210201740265,-0.25,-0.09243697673082352,0.41526609659194946,0.8529411554336548,0.030112044885754585,-0.25,0.5203081369400024,0.9579831957817078,0.18767507374286652,1.133053183555603,1.518207311630249,1.8683472871780396,1.6232492923736572,-1.2478991746902466,-1.7030812501907349,-1.0378150939941406,0.17016807198524475,-0.07492997497320175,-0.5651260614395142,-0.7051820755004883,-1.668067216873169,-1.6855741739273071,-1.9481792449951172,-1.457983136177063,-1.2303920984268188,-1.895658254623413,-0.4600840210914612,-2.0007002353668213,-1.7906162738800049,-1.8256303071975708,-1.895658254623413,-1.755602240562439,-1.7380952835083008,-1.878151297569275,-1.878151297569275,-1.878151297569275,-1.8606442213058472,-1.6855741739273071,-1.668067216873169,-1.720588207244873,1.8333333730697632,0.38025209307670593,1.0105042457580566,1.308123230934143,0.9054622054100037,0.13515406847000122,0.0476190485060215,0.2401960790157318,0.2401960790157318,-0.02240896411240101,-0.03991596773266792,0.4852941036224365,0.6603641510009766,0.2927170991897583,0.5553221106529236,1.0980392694473267,0.9054622054100037,1.395658254623413,1.080532193183899,1.9033613204956055,1.8683472871780396,0.8529411554336548,0.5028011202812195,0.36274510622024536,-0.07492997497320175,1.1155462265014648,0.6953781247138977,0.4852941036224365,0.17016807198524475,-0.26750701665878296,-0.37254902720451355,0.2401960790157318,0.06512605398893356,0.8354341983795166,-0.09243697673082352,-1.1953781843185425,-1.492997169494629,-0.7051820755004883,-0.6176470518112183,-0.37254902720451355,-0.1449579894542694,0.9054622054100037,1.2030812501907349,0.7829131484031677,0.9929971694946289,0.4852941036224365,0.38025209307670593,1.7633053064346313,0.46778711676597595,-0.42507001757621765,-0.6001400351524353,-0.03991596773266792,0.8529411554336548,1.2731091976165771,0.38025209307670593,1.465686321258545,0.18767507374286652,0.5378151535987854,0.8529411554336548,1.220588207244873,1.308123230934143,1.780812382698059,1.1155462265014648,1.133053183555603,1.4481792449951172,1.483193278312683,1.5357142686843872,1.553221344947815,1.518207311630249,1.395658254623413,1.395658254623413,0.9404761791229248,-0.07492997497320175,-1.2303920984268188,-0.1449579894542694,0.8179271817207336,1.1505602598190308,1.2380952835083008,0.8704481720924377,0.8354341983795166,0.18767507374286652,0.7128851413726807,0.6778711676597595,0.6953781247138977,1.168067216873169,1.1505602598190308,1.133053183555603,1.343137264251709,1.465686321258545,1.6407562494277954,1.8333333730697632,1.7633053064346313,1.7633053064346313,1.7282912731170654,1.5357142686843872,1.168067216873169,-0.4600840210914612,-1.7906162738800049,-1.7906162738800049,-1.6855741739273071,-1.492997169494629,-1.2654061317443848,-1.3354341983795166,-1.6855741739273071,-1.633053183555603],[-1.7380952835083008,-1.1953781843185425,-1.895658254623413,-2.0357143878936768,-1.3354341983795166,-1.9131652116775513,-1.1778711080551147,-1.1953781843185425,-1.3179271221160889,-1.2128851413726807,-1.2829132080078125,-1.3354341983795166,-1.2829132080078125,-1.3879551887512207,-1.2654061317443848,1.7983193397521973,2.0609242916107178,1.9208683967590332,1.8858543634414673,2.0259103775024414,1.9208683967590332,1.6582633256912231,1.7983193397521973,1.9033613204956055,2.0959384441375732,2.0959384441375732,2.1484594345092773,2.0609242916107178,1.780812382698059,0.9929971694946289,0.25770309567451477,-0.6176470518112183,-0.8277310729026794,-1.4754902124404907,-1.7380952835083008,-2.0357143878936768,-1.895658254623413,-1.895658254623413,-2.0007002353668213,-2.0007002353668213,-2.018207311630249,-1.9481792449951172,-1.9131652116775513,-1.808123230934143,-1.9481792449951172,-1.668067216873169,-1.2654061317443848,-0.05742296949028969,0.15266107022762299,0.9054622054100037,1.1855741739273071,1.045518159866333,1.045518159866333,1.465686321258545,1.3256303071975708,1.553221344947815,1.2380952835083008,1.553221344947815,0.4327731132507324,0.17016807198524475,0.31022408604621887,-0.3550420105457306,-1.3004201650619507,-1.0553221702575684,-0.6176470518112183,-1.9481792449951172,-1.0728291273117065,-0.8102241158485413,-1.2654061317443848,-0.9502801299095154,-0.16246499121189117,0.9054622054100037,0.5378151535987854,0.5553221106529236,-1.457983136177063,-0.9677870869636536,0.8704481720924377,0.3977591097354889,0.5728291273117065,0.08263305574655533,0.5728291273117065,0.6778711676597595,0.18767507374286652,-0.03991596773266792,-0.42507001757621765,0.7829131484031677,0.5903361439704895,-0.5476190447807312,1.080532193183899,1.080532193183899,1.2731091976165771,1.133053183555603,-0.7927170991897583,-1.6855741739273071,-0.9502801299095154,1.168067216873169,-0.10994397848844528,-0.8977590799331665,-1.3179271221160889,-1.5280112028121948,-1.6505602598190308,-1.755602240562439,-1.6505602598190308,-1.1603641510009766,-1.895658254623413,-0.9677870869636536,-1.9131652116775513,-2.018207311630249,-1.878151297569275,-1.965686321258545,-1.930672287940979,-1.9131652116775513,-1.843137264251709,-1.8256303071975708,-1.7906162738800049,-1.7380952835083008,-1.8256303071975708,-1.983193278312683,-1.983193278312683,1.693277359008789,0.8529411554336548,0.31022408604621887,1.2030812501907349,1.483193278312683,0.9229691624641418,1.0280112028121948,0.11764705926179886,0.27521008253097534,-0.02240896411240101,-0.1974789947271347,0.32773110270500183,0.4327731132507324,0.41526609659194946,0.11764705926179886,0.25770309567451477,1.0630252361297607,0.8879551887512207,1.4481792449951172,1.0980392694473267,2.0959384441375732,1.5357142686843872,1.0105042457580566,1.168067216873169,0.31022408604621887,-0.0049019609577953815,1.2380952835083008,0.6603641510009766,0.8354341983795166,1.1855741739273071,1.6232492923736572,1.343137264251709,0.8179271817207336,-0.4075630307197571,1.0280112028121948,1.693277359008789,-0.05742296949028969,0.7654061913490295,-0.4950980246067047,-1.1603641510009766,-1.2829132080078125,-0.09243697673082352,0.38025209307670593,0.6778711676597595,0.9754902124404907,0.6428571343421936,0.7829131484031677,0.7654061913490295,-0.09243697673082352,0.1001400575041771,-0.42507001757621765,0.6778711676597595,1.0280112028121948,0.20518207550048828,0.9929971694946289,1.2731091976165771,0.3452380895614624,0.8354341983795166,1.1855741739273071,1.378151297569275,1.2906162738800049,1.378151297569275,0.9404761791229248,1.1505602598190308,1.3256303071975708,1.5882352590560913,1.5882352590560913,1.5882352590560913,1.553221344947815,1.483193278312683,1.308123230934143,1.0105042457580566,-0.0049019609577953815,-0.6701680421829224,0.030112044885754585,0.8354341983795166,1.0980392694473267,1.1505602598190308,0.3977591097354889,0.6428571343421936,0.3452380895614624,0.8004201650619507,0.6953781247138977,0.7478991746902466,0.7829131484031677,0.9229691624641418,1.3606442213058472,1.4131652116775513,1.4481792449951172,1.8158262968063354,1.8333333730697632,1.9733893871307373,1.8683472871780396,1.7282912731170654,1.780812382698059,1.553221344947815,0.9754902124404907,0.08263305574655533,-1.5630252361297607,-1.720588207244873,-1.668067216873169,-1.3179271221160889,-1.0553221702575684,-1.2829132080078125,-1.457983136177063],[-1.895658254623413,-1.4054621458053589,-2.0357143878936768,-1.983193278312683,-1.2654061317443848,-2.0007002353668213,-1.3879551887512207,-1.2829132080078125,-1.2829132080078125,-1.3179271221160889,-1.3879551887512207,-1.3354341983795166,-1.1953781843185425,-1.3704482316970825,-1.3704482316970825,0.08263305574655533,1.7107843160629272,2.043417453765869,2.0259103775024414,1.9383753538131714,2.043417453765869,2.0259103775024414,1.8158262968063354,1.7107843160629272,1.255602240562439,0.7478991746902466,-0.05742296949028969,-0.7051820755004883,-1.3179271221160889,-1.5630252361297607,-1.930672287940979,-1.930672287940979,-1.930672287940979,-1.9131652116775513,-1.7731091976165771,-2.0357143878936768,-2.018207311630249,-1.878151297569275,-1.7906162738800049,-1.930672287940979,-1.7030812501907349,-1.6855741739273071,-1.9131652116775513,-1.668067216873169,-1.6505602598190308,-0.7927170991897583,-0.0049019609577953815,0.5903361439704895,1.0105042457580566,1.518207311630249,1.3256303071975708,1.343137264251709,1.0280112028121948,1.1505602598190308,1.220588207244873,1.6757702827453613,1.255602240562439,1.4131652116775513,1.343137264251709,-0.1449579894542694,0.450280100107193,0.06512605398893356,-1.3704482316970825,-1.720588207244873,-1.3004201650619507,-1.2303920984268188,-2.0007002353668213,-1.3879551887512207,-1.3879551887512207,-1.9131652116775513,-0.5651260614395142,-0.07492997497320175,0.25770309567451477,-0.3025210201740265,-0.6526610851287842,-1.0028011798858643,-1.4054621458053589,0.25770309567451477,-0.0049019609577953815,0.030112044885754585,-0.3900560140609741,-0.26750701665878296,0.27521008253097534,-0.1974789947271347,-0.09243697673082352,0.7654061913490295,0.46778711676597595,0.1001400575041771,1.378151297569275,0.6603641510009766,0.6778711676597595,0.32773110270500183,-0.8277310729026794,-0.7927170991897583,1.1855741739273071,1.5882352590560913,-0.12745098769664764,-1.1253501176834106,-1.843137264251709,-1.492997169494629,-1.965686321258545,-1.9481792449951172,-1.7380952835083008,-1.1078431606292725,-1.9131652116775513,-1.755602240562439,-1.7906162738800049,-1.8256303071975708,-1.878151297569275,-1.930672287940979,-1.7030812501907349,-1.843137264251709,-1.668067216873169,-1.7731091976165771,-1.808123230934143,-1.843137264251709,-1.843137264251709,-1.8256303071975708,-1.808123230934143,1.483193278312683,1.2380952835083008,1.2731091976165771,1.6757702827453613,0.31022408604621887,0.36274510622024536,-0.12745098769664764,0.5028011202812195,-0.10994397848844528,0.1001400575041771,0.27521008253097534,0.2927170991897583,0.6953781247138977,0.7128851413726807,0.15266107022762299,-0.0049019609577953815,-0.0049019609577953815,0.8179271817207336,1.6232492923736572,1.2030812501907349,1.308123230934143,1.430672287940979,1.8333333730697632,0.3977591097354889,0.7829131484031677,1.0630252361297607,0.6428571343421936,0.8354341983795166,1.255602240562439,1.7633053064346313,1.2731091976165771,0.9579831957817078,1.9908963441848755,0.8354341983795166,0.4327731132507324,0.5028011202812195,1.168067216873169,0.25770309567451477,-0.3025210201740265,0.3977591097354889,0.27521008253097534,-0.07492997497320175,0.31022408604621887,0.7829131484031677,0.5378151535987854,1.5882352590560913,0.25770309567451477,1.133053183555603,-0.25,-0.7927170991897583,-0.42507001757621765,0.38025209307670593,0.2927170991897583,-0.0049019609577953815,1.7633053064346313,0.6428571343421936,0.25770309567451477,1.045518159866333,1.518207311630249,1.4481792449951172,1.5357142686843872,1.8333333730697632,1.133053183555603,1.1855741739273071,1.4131652116775513,1.395658254623413,1.5882352590560913,1.605742335319519,1.5007002353668213,1.465686321258545,1.2030812501907349,1.045518159866333,0.4852941036224365,-0.6176470518112183,-0.0049019609577953815,0.9929971694946289,1.2380952835083008,0.9929971694946289,0.5203081369400024,0.012605042196810246,-0.16246499121189117,0.8179271817207336,0.6078431606292725,0.3452380895614624,0.6603641510009766,0.6778711676597595,1.220588207244873,1.2906162738800049,1.5707283020019531,1.8158262968063354,1.9033613204956055,2.043417453765869,2.0084033012390137,2.0084033012390137,2.0259103775024414,1.7983193397521973,1.693277359008789,1.465686321258545,1.3256303071975708,-0.6176470518112183,-1.9131652116775513,-1.6155462265014648,-1.2829132080078125,-1.3179271221160889,-1.2128851413726807],[-1.878151297569275,-1.3354341983795166,-1.8606442213058472,-2.018207311630249,-1.2829132080078125,-1.930672287940979,-1.1253501176834106,-1.2654061317443848,-1.3354341983795166,-1.2654061317443848,-1.3004201650619507,-1.1078431606292725,-1.1953781843185425,-1.2128851413726807,-1.3179271221160889,-1.457983136177063,1.133053183555603,1.7282912731170654,2.0084033012390137,1.378151297569275,0.6603641510009766,0.08263305574655533,-0.05742296949028969,-1.1078431606292725,-1.5630252361297607,-1.7030812501907349,-1.930672287940979,-1.9481792449951172,-2.0357143878936768,-1.983193278312683,-2.0007002353668213,-1.965686321258545,-1.895658254623413,-1.720588207244873,-1.8606442213058472,-1.668067216873169,-1.8256303071975708,-1.8256303071975708,-1.7380952835083008,-1.6505602598190308,-1.878151297569275,-1.6155462265014648,-1.6155462265014648,-1.2478991746902466,-1.1428571939468384,-0.7577030658721924,0.18767507374286652,0.9054622054100037,0.8529411554336548,1.1505602598190308,1.045518159866333,1.4481792449951172,1.553221344947815,1.220588207244873,1.4131652116775513,1.0630252361297607,1.220588207244873,0.9229691624641418,1.2731091976165771,0.5903361439704895,-0.1974789947271347,-0.07492997497320175,-1.3879551887512207,-1.5980392694473267,-1.755602240562439,-1.2303920984268188,-1.8606442213058472,-1.878151297569275,-1.668067216873169,-1.6155462265014648,-1.3704482316970825,-1.457983136177063,-1.668067216873169,-0.4600840210914612,-0.4600840210914612,0.32773110270500183,-0.07492997497320175,0.5028011202812195,0.6953781247138977,1.1505602598190308,0.36274510622024536,0.450280100107193,-0.8452380895614624,-0.4600840210914612,-0.6176470518112183,0.4852941036224365,0.5203081369400024,-0.09243697673082352,0.8879551887512207,0.9929971694946289,-0.4075630307197571,-0.16246499121189117,-0.9327731132507324,-2.018207311630249,1.6232492923736572,0.32773110270500183,0.2401960790157318,-1.3354341983795166,-1.3354341983795166,-1.7380952835083008,-2.0357143878936768,-2.0357143878936768,-1.808123230934143,-1.2654061317443848,-2.018207311630249,-1.6855741739273071,-1.6855741739273071,-1.7731091976165771,-1.878151297569275,-1.7731091976165771,-1.7380952835083008,-1.755602240562439,-1.7030812501907349,-1.895658254623413,-1.7380952835083008,-1.755602240562439,-1.878151297569275,-1.7380952835083008,-1.8606442213058472,1.6757702827453613,0.8704481720924377,0.2401960790157318,1.7282912731170654,1.133053183555603,0.13515406847000122,0.8529411554336548,0.06512605398893356,-0.25,-0.1974789947271347,0.41526609659194946,-0.21498599648475647,0.36274510622024536,0.46778711676597595,0.20518207550048828,0.3977591097354889,-0.3025210201740265,0.5028011202812195,1.780812382698059,1.8508403301239014,0.8354341983795166,1.465686321258545,1.9558823108673096,1.6582633256912231,1.2030812501907349,1.1505602598190308,0.6428571343421936,1.395658254623413,1.553221344947815,1.1855741739273071,1.7457983493804932,0.5903361439704895,1.2380952835083008,1.255602240562439,1.2731091976165771,1.080532193183899,0.11764705926179886,0.8704481720924377,0.18767507374286652,0.36274510622024536,0.31022408604621887,0.18767507374286652,0.36274510622024536,0.9929971694946289,0.6078431606292725,1.605742335319519,1.3256303071975708,1.168067216873169,-0.47759103775024414,-0.4425770342350006,-0.6876750588417053,-0.6001400351524353,-0.8977590799331665,0.2927170991897583,0.6253501176834106,-1.1253501176834106,0.3452380895614624,0.8704481720924377,0.7654061913490295,1.378151297569275,1.465686321258545,1.7282912731170654,1.430672287940979,1.255602240562439,1.483193278312683,1.430672287940979,1.5707283020019531,1.6757702827453613,1.605742335319519,1.5007002353668213,1.3606442213058472,1.0280112028121948,0.3977591097354889,-0.32002800703048706,0.13515406847000122,0.8704481720924377,1.1855741739273071,0.8179271817207336,0.36274510622024536,-0.25,-0.4600840210914612,0.4852941036224365,0.13515406847000122,0.06512605398893356,0.41526609659194946,0.7128851413726807,1.0980392694473267,0.8179271817207336,1.343137264251709,1.553221344947815,1.8683472871780396,1.9733893871307373,1.9383753538131714,2.043417453765869,2.043417453765869,1.8683472871780396,1.8858543634414673,1.9383753538131714,1.6582633256912231,1.5007002353668213,0.9404761791229248,-0.5301120281219482,-1.2478991746902466,-1.668067216873169,-1.5980392694473267],[-1.8256303071975708,-1.3529411554336548,-2.0007002353668213,-1.965686321258545,-1.5630252361297607,-1.6855741739273071,-0.9852941036224365,-0.9852941036224365,-1.1078431606292725,-1.2829132080078125,-1.1953781843185425,-1.2478991746902466,-1.2303920984268188,-1.1428571939468384,-1.2654061317443848,-1.4404761791229248,-1.3704482316970825,-0.8802521228790283,-0.7226890921592712,-1.2128851413726807,-1.7906162738800049,-2.0007002353668213,-1.8256303071975708,-1.8256303071975708,-1.983193278312683,-1.9131652116775513,-1.720588207244873,-1.808123230934143,-1.7030812501907349,-1.7380952835083008,-1.492997169494629,-1.668067216873169,-1.6155462265014648,-1.7731091976165771,-1.457983136177063,-1.4754902124404907,-1.3879551887512207,-1.4754902124404907,-1.492997169494629,-1.5105042457580566,-1.3879551887512207,-1.545518159866333,-1.3529411554336548,-1.1603641510009766,-0.02240896411240101,-0.21498599648475647,-0.09243697673082352,1.045518159866333,1.430672287940979,1.0630252361297607,0.2927170991897583,1.0105042457580566,1.553221344947815,1.5007002353668213,1.6232492923736572,0.8704481720924377,0.9754902124404907,0.6778711676597595,1.080532193183899,0.6603641510009766,-0.10994397848844528,-0.1974789947271347,-1.4054621458053589,-1.755602240562439,-1.8606442213058472,-1.5105042457580566,-1.6505602598190308,-1.930672287940979,-1.3879551887512207,-1.2303920984268188,-0.5826330780982971,-0.23249299824237823,-0.07492997497320175,-1.5105042457580566,-1.3529411554336548,-0.3900560140609741,-0.37254902720451355,0.36274510622024536,-1.2654061317443848,-0.5301120281219482,0.27521008253097534,0.5378151535987854,-1.0028011798858643,-0.37254902720451355,-0.1449579894542694,-0.03991596773266792,0.06512605398893356,-0.5126050710678101,0.2927170991897583,0.38025209307670593,0.5728291273117065,-1.492997169494629,-0.9677870869636536,-1.9481792449951172,0.18767507374286652,0.41526609659194946,-0.1974789947271347,-1.457983136177063,-1.930672287940979,-1.8256303071975708,-2.0007002353668213,-1.930672287940979,-2.0007002353668213,-1.492997169494629,-1.580532193183899,-1.7380952835083008,-1.7731091976165771,-1.7731091976165771,-1.7380952835083008,-1.8606442213058472,-1.895658254623413,-1.8256303071975708,-1.895658254623413,-1.7731091976165771,-1.720588207244873,-1.878151297569275,-1.7731091976165771,-1.843137264251709,-1.8256303071975708,1.693277359008789,1.2030812501907349,1.2906162738800049,1.395658254623413,1.4131652116775513,1.5707283020019531,0.25770309567451477,0.08263305574655533,-0.32002800703048706,-0.28501400351524353,0.25770309567451477,-0.12745098769664764,0.22268907725811005,0.6253501176834106,0.3452380895614624,0.6603641510009766,0.22268907725811005,1.1855741739273071,1.8858543634414673,2.165966272354126,1.605742335319519,1.343137264251709,1.8158262968063354,1.8858543634414673,1.430672287940979,1.6582633256912231,1.4481792449951172,1.8333333730697632,1.378151297569275,2.113445281982422,1.9208683967590332,1.1155462265014648,1.465686321258545,1.168067216873169,1.045518159866333,1.465686321258545,1.605742335319519,0.9579831957817078,0.7303921580314636,1.168067216873169,0.6078431606292725,0.6428571343421936,-0.21498599648475647,1.518207311630249,0.7128851413726807,0.9054622054100037,1.378151297569275,-0.3025210201740265,-0.4600840210914612,0.0476190485060215,-0.9327731132507324,-0.7401960492134094,-0.33753502368927,0.32773110270500183,1.2731091976165771,-0.05742296949028969,0.36274510622024536,1.9558823108673096,0.8354341983795166,1.255602240562439,1.7633053064346313,1.2380952835083008,1.395658254623413,1.4131652116775513,1.255602240562439,1.395658254623413,1.6582633256912231,1.693277359008789,1.6582633256912231,1.553221344947815,1.2030812501907349,0.8179271817207336,-0.10994397848844528,-0.3900560140609741,-0.05742296949028969,0.8004201650619507,1.133053183555603,0.8704481720924377,0.11764705926179886,0.030112044885754585,-0.4425770342350006,0.41526609659194946,-0.25,-0.02240896411240101,-0.02240896411240101,0.32773110270500183,1.0630252361297607,0.9579831957817078,1.080532193183899,1.4481792449951172,1.4481792449951172,1.8683472871780396,1.8858543634414673,2.0084033012390137,1.9208683967590332,2.0084033012390137,1.9208683967590332,2.0609242916107178,1.7983193397521973,1.7633053064346313,1.6582633256912231,1.2906162738800049,0.9754902124404907,-1.545518159866333,-1.492997169494629],[-1.7731091976165771,-1.457983136177063,-1.983193278312683,-1.7906162738800049,-1.3879551887512207,-1.878151297569275,-1.0203081369400024,-1.2829132080078125,-1.1428571939468384,-1.2303920984268188,-1.2128851413726807,-1.3704482316970825,-1.3354341983795166,-1.2654061317443848,-1.3354341983795166,-1.2829132080078125,-1.2829132080078125,-1.2303920984268188,-1.2829132080078125,-1.5630252361297607,-1.755602240562439,-1.720588207244873,-1.5980392694473267,-1.492997169494629,-1.4229692220687866,-1.6855741739273071,-1.6155462265014648,-1.457983136177063,-1.668067216873169,-1.492997169494629,-1.3529411554336548,-1.2303920984268188,-1.492997169494629,-1.2478991746902466,-1.5105042457580566,-1.2654061317443848,-1.4754902124404907,-1.3179271221160889,-1.2654061317443848,-1.492997169494629,-1.3179271221160889,-1.3354341983795166,-0.8627451062202454,0.4852941036224365,1.0980392694473267,1.4481792449951172,1.5007002353668213,1.343137264251709,1.7633053064346313,1.553221344947815,0.15266107022762299,0.17016807198524475,1.553221344947815,1.5707283020019531,1.7633053064346313,1.3256303071975708,0.7478991746902466,0.5028011202812195,0.9579831957817078,0.8179271817207336,-0.37254902720451355,0.1001400575041771,-0.7752100825309753,-1.6855741739273071,-1.7906162738800049,-2.0007002353668213,-1.545518159866333,-1.895658254623413,-1.6505602598190308,-1.5280112028121948,-1.4054621458053589,-0.28501400351524353,-0.5651260614395142,-1.1953781843185425,-1.0728291273117065,0.25770309567451477,0.0476190485060215,-0.42507001757621765,-0.4950980246067047,-1.2303920984268188,-0.8977590799331665,-0.4425770342350006,-0.5476190447807312,-1.878151297569275,-0.4425770342350006,-0.21498599648475647,0.0476190485060215,-0.26750701665878296,-0.47759103775024414,-0.7927170991897583,-0.1449579894542694,-1.668067216873169,-1.5280112028121948,-1.4404761791229248,-0.05742296949028969,-0.26750701665878296,-1.2128851413726807,-1.1428571939468384,-1.6855741739273071,-0.37254902720451355,-1.808123230934143,-2.0357143878936768,-1.7906162738800049,-1.4229692220687866,-1.8256303071975708,-1.878151297569275,-1.8256303071975708,-1.7906162738800049,-1.7731091976165771,-1.808123230934143,-1.7380952835083008,-1.8256303071975708,-1.8256303071975708,-1.633053183555603,-1.8256303071975708,-1.457983136177063,-1.3179271221160889,-1.2303920984268188,-1.5105042457580566,1.5882352590560913,1.4131652116775513,1.5357142686843872,1.6232492923736572,0.6603641510009766,0.8354341983795166,-0.3900560140609741,-0.32002800703048706,-0.4600840210914612,-0.7577030658721924,-0.3550420105457306,-0.09243697673082352,0.25770309567451477,0.4327731132507324,0.030112044885754585,0.5203081369400024,0.5378151535987854,1.0280112028121948,1.4131652116775513,1.6582633256912231,2.2535014152526855,1.2731091976165771,1.0630252361297607,1.6232492923736572,1.6582633256912231,1.308123230934143,1.5882352590560913,1.5007002353668213,1.6407562494277954,1.8858543634414673,2.288515329360962,1.5007002353668213,0.9579831957817078,1.3256303071975708,1.168067216873169,0.8704481720924377,1.2030812501907349,0.450280100107193,1.5707283020019531,0.8879551887512207,1.465686321258545,0.27521008253097534,-0.6176470518112183,1.5882352590560913,0.31022408604621887,0.7303921580314636,-0.5826330780982971,1.1505602598190308,-0.1449579894542694,-0.7752100825309753,-0.8102241158485413,-1.5105042457580566,-0.7577030658721924,0.0476190485060215,0.7478991746902466,-0.47759103775024414,-0.3025210201740265,0.38025209307670593,0.7654061913490295,1.2380952835083008,1.430672287940979,1.4131652116775513,1.343137264251709,1.518207311630249,1.3606442213058472,1.6582633256912231,1.780812382698059,1.780812382698059,1.7282912731170654,1.5882352590560913,1.133053183555603,0.8179271817207336,-0.23249299824237823,-0.42507001757621765,0.012605042196810246,1.0105042457580566,0.8704481720924377,0.7654061913490295,-0.25,-0.16246499121189117,-0.7051820755004883,-1.0903360843658447,-1.0203081369400024,-0.6001400351524353,-0.6176470518112183,0.030112044885754585,0.7478991746902466,0.9754902124404907,0.6778711676597595,1.0630252361297607,1.430672287940979,1.6232492923736572,1.7282912731170654,1.9733893871307373,2.0084033012390137,2.043417453765869,1.9033613204956055,1.780812382698059,1.9383753538131714,1.9383753538131714,1.8333333730697632,1.5007002353668213,1.3256303071975708,0.1001400575041771,-1.6855741739273071],[-1.878151297569275,-1.7906162738800049,-1.983193278312683,-1.7731091976165771,-1.7906162738800049,-1.4229692220687866,-1.2829132080078125,-1.2128851413726807,-1.3529411554336548,-1.4054621458053589,-1.492997169494629,-1.2829132080078125,-1.4404761791229248,-1.4054621458053589,-1.4054621458053589,-1.3354341983795166,-1.3354341983795166,-1.3179271221160889,-1.4229692220687866,-1.3529411554336548,-1.3179271221160889,-1.2829132080078125,-1.4404761791229248,-1.3704482316970825,-1.2128851413726807,-1.2654061317443848,-1.2303920984268188,-1.1428571939468384,-1.1253501176834106,-1.1778711080551147,-1.1953781843185425,-1.3529411554336548,-1.2478991746902466,-1.0378150939941406,-1.2654061317443848,-1.1953781843185425,-1.4054621458053589,-1.3529411554336548,-1.3879551887512207,-1.4229692220687866,-1.2654061317443848,-0.8802521228790283,0.32773110270500183,1.1505602598190308,1.4131652116775513,1.2906162738800049,1.7107843160629272,1.5357142686843872,1.8683472871780396,1.553221344947815,1.2906162738800049,0.012605042196810246,0.4852941036224365,1.0105042457580566,1.3256303071975708,1.5882352590560913,1.6757702827453613,0.36274510622024536,0.8879551887512207,0.5203081369400024,-0.42507001757621765,-0.4425770342350006,-0.4425770342350006,-1.808123230934143,-1.5980392694473267,-2.0357143878936768,-1.8256303071975708,-1.8606442213058472,-1.965686321258545,-1.6155462265014648,-1.8606442213058472,-1.633053183555603,-0.8102241158485413,-0.02240896411240101,0.4852941036224365,0.08263305574655533,-1.1603641510009766,-1.4229692220687866,-0.21498599648475647,0.1001400575041771,-0.9502801299095154,-1.4054621458053589,-1.1428571939468384,-1.5630252361297607,-1.2303920984268188,-0.8452380895614624,-0.28501400351524353,-0.7927170991897583,-0.0049019609577953815,-0.5476190447807312,-1.4229692220687866,-1.930672287940979,-0.8802521228790283,-1.755602240562439,-0.8277310729026794,-0.3550420105457306,-1.545518159866333,-0.7927170991897583,-0.32002800703048706,-1.9481792449951172,-1.9131652116775513,-1.9131652116775513,-1.843137264251709,-1.7380952835083008,-1.7731091976165771,-1.8606442213058472,-1.668067216873169,-1.895658254623413,-1.720588207244873,-1.895658254623413,-1.755602240562439,-1.7380952835083008,-1.668067216873169,-1.4054621458053589,-1.2303920984268188,-1.2303920984268188,-0.9502801299095154,-1.1428571939468384,-1.8606442213058472,1.6232492923736572,0.20518207550048828,-0.6526610851287842,1.5357142686843872,0.2927170991897583,1.6582633256912231,-0.32002800703048706,-0.37254902720451355,-0.37254902720451355,-0.3900560140609741,0.17016807198524475,-0.4600840210914612,0.2927170991897583,-0.03991596773266792,-0.03991596773266792,0.41526609659194946,0.17016807198524475,0.2927170991897583,1.4481792449951172,1.5007002353668213,1.6582633256912231,2.1834733486175537,1.0280112028121948,1.308123230934143,1.5007002353668213,1.8858543634414673,2.0259103775024414,1.605742335319519,2.0609242916107178,1.605742335319519,1.9383753538131714,1.9033613204956055,1.3606442213058472,1.308123230934143,1.780812382698059,1.6232492923736572,0.9229691624641418,1.3606442213058472,0.31022408604621887,1.2731091976165771,0.7654061913490295,1.255602240562439,1.7282912731170654,1.7282912731170654,0.7303921580314636,1.255602240562439,1.0980392694473267,0.8179271817207336,0.9579831957817078,-0.3900560140609741,-0.7401960492134094,-1.755602240562439,-0.8627451062202454,-0.1449579894542694,1.2380952835083008,1.5357142686843872,-0.02240896411240101,0.8704481720924377,0.5728291273117065,1.2906162738800049,1.4131652116775513,1.518207311630249,1.4481792449951172,1.553221344947815,1.5007002353668213,1.6407562494277954,1.7282912731170654,1.8158262968063354,1.7457983493804932,1.465686321258545,1.0980392694473267,0.6778711676597595,-0.32002800703048706,0.030112044885754585,0.32773110270500183,0.6603641510009766,0.8179271817207336,0.38025209307670593,-0.9327731132507324,-1.4404761791229248,-1.4054621458053589,-1.5105042457580566,-1.6155462265014648,-1.1603641510009766,-1.492997169494629,-1.3879551887512207,-1.2128851413726807,-0.8977590799331665,-0.33753502368927,0.6428571343421936,1.2731091976165771,1.255602240562439,1.4131652116775513,1.7107843160629272,1.8508403301239014,1.8683472871780396,1.7457983493804932,1.9208683967590332,1.8858543634414673,1.395658254623413,1.465686321258545,2.113445281982422,2.0259103775024414,1.8158262968063354,-1.5980392694473267],[-1.930672287940979,-1.720588207244873,-2.0357143878936768,-1.4754902124404907,-1.7030812501907349,-1.3354341983795166,-1.2128851413726807,-1.3004201650619507,-1.0903360843658447,-1.1253501176834106,-1.0903360843658447,-1.3179271221160889,-1.2654061317443848,-1.3529411554336548,-1.2478991746902466,-1.3529411554336548,-1.3179271221160889,-1.2128851413726807,-1.3179271221160889,-1.3179271221160889,-1.1253501176834106,-1.1603641510009766,-1.2654061317443848,-1.3529411554336548,-1.2478991746902466,-1.2303920984268188,-1.2128851413726807,-1.2128851413726807,-1.2128851413726807,-1.3179271221160889,-1.2478991746902466,-1.3354341983795166,-1.2829132080078125,-1.2829132080078125,-1.2303920984268188,-1.2303920984268188,-1.1253501176834106,-1.3354341983795166,-1.1778711080551147,-0.9852941036224365,-0.8802521228790283,-0.4600840210914612,-0.6526610851287842,-0.26750701665878296,0.450280100107193,1.343137264251709,1.465686321258545,1.693277359008789,1.518207311630249,1.4481792449951172,1.2030812501907349,0.18767507374286652,-0.26750701665878296,0.20518207550048828,0.9579831957817078,1.7983193397521973,1.7107843160629272,0.6253501176834106,0.18767507374286652,0.8179271817207336,0.5728291273117065,-0.16246499121189117,-1.4404761791229248,-1.9131652116775513,-2.018207311630249,-1.895658254623413,-2.0357143878936768,-2.018207311630249,-2.0357143878936768,-1.7380952835083008,-1.4229692220687866,-1.633053183555603,-0.05742296949028969,-0.1974789947271347,-0.6176470518112183,-1.1078431606292725,-1.3879551887512207,-1.7380952835083008,-1.720588207244873,-1.1253501176834106,0.41526609659194946,0.3452380895614624,-1.5280112028121948,-0.8102241158485413,-0.6176470518112183,0.17016807198524475,0.2401960790157318,-0.37254902720451355,-0.5651260614395142,0.17016807198524475,0.2927170991897583,-0.26750701665878296,-1.5980392694473267,-1.3179271221160889,-1.0728291273117065,-0.9502801299095154,0.11764705926179886,-1.1253501176834106,-0.7927170991897583,-2.0357143878936768,-1.9481792449951172,-1.9481792449951172,-1.930672287940979,-1.808123230934143,-1.7906162738800049,-1.8606442213058472,-1.6855741739273071,-1.808123230934143,-1.9481792449951172,-1.633053183555603,-1.5980392694473267,-1.1253501176834106,-1.4054621458053589,-0.9852941036224365,-1.1428571939468384,-1.1078431606292725,-1.1253501176834106,-1.0028011798858643,-1.7731091976165771,1.6232492923736572,0.4327731132507324,1.7457983493804932,1.308123230934143,1.255602240562439,0.8179271817207336,-0.37254902720451355,0.08263305574655533,-0.10994397848844528,0.13515406847000122,-0.02240896411240101,0.3452380895614624,-0.02240896411240101,-0.02240896411240101,-0.05742296949028969,0.08263305574655533,-0.3550420105457306,0.3452380895614624,0.7478991746902466,0.9929971694946289,1.395658254623413,2.0609242916107178,1.6232492923736572,1.4481792449951172,1.080532193183899,1.220588207244873,1.4481792449951172,1.8158262968063354,2.0259103775024414,1.2906162738800049,1.7457983493804932,1.9208683967590332,1.1505602598190308,1.4131652116775513,1.4481792449951172,1.8858543634414673,1.0630252361297607,0.9754902124404907,2.0259103775024414,0.8704481720924377,0.6953781247138977,1.4131652116775513,1.5007002353668213,1.605742335319519,1.045518159866333,1.2731091976165771,1.483193278312683,0.5553221106529236,1.1155462265014648,-1.755602240562439,-1.0028011798858643,-2.018207311630249,-1.0203081369400024,0.6428571343421936,0.5728291273117065,0.41526609659194946,0.4327731132507324,0.5903361439704895,0.9404761791229248,1.168067216873169,1.465686321258545,1.483193278312683,1.5007002353668213,1.553221344947815,1.6757702827453613,1.8158262968063354,1.7633053064346313,1.8508403301239014,1.780812382698059,1.605742335319519,1.220588207244873,0.6953781247138977,-0.09243697673082352,-0.09243697673082352,-0.02240896411240101,0.3452380895614624,0.5028011202812195,-0.47759103775024414,-1.545518159866333,-1.2128851413726807,-1.2478991746902466,-1.3879551887512207,-1.2303920984268188,-1.5980392694473267,-1.3529411554336548,-1.3529411554336548,-1.668067216873169,-1.6155462265014648,-1.3704482316970825,0.012605042196810246,-0.03991596773266792,0.8354341983795166,1.1505602598190308,1.6757702827453613,1.6582633256912231,1.4481792449951172,1.7282912731170654,1.9208683967590332,1.8508403301239014,1.395658254623413,2.1484594345092773,2.411064386367798,2.341036319732666,1.8508403301239014,-1.2478991746902466],[-1.843137264251709,-1.8256303071975708,-1.895658254623413,-1.5630252361297607,-1.6155462265014648,-1.4229692220687866,-1.0903360843658447,-1.1778711080551147,-1.1428571939468384,-1.2128851413726807,-1.4054621458053589,-1.1253501176834106,-1.2654061317443848,-1.2128851413726807,-1.1253501176834106,-1.2654061317443848,-1.2303920984268188,-1.0728291273117065,-1.1078431606292725,-1.1953781843185425,-1.4229692220687866,-1.3529411554336548,-1.1078431606292725,-1.1428571939468384,-1.2128851413726807,-1.2303920984268188,-1.3354341983795166,-1.2654061317443848,-1.3354341983795166,-1.3354341983795166,-1.2303920984268188,-1.0903360843658447,-1.2654061317443848,-1.3179271221160889,-1.2303920984268188,-1.2478991746902466,-1.3004201650619507,-1.3879551887512207,-0.9327731132507324,-0.3900560140609741,0.3977591097354889,0.450280100107193,0.9579831957817078,0.2401960790157318,-0.9502801299095154,0.06512605398893356,0.8529411554336548,1.5707283020019531,1.7457983493804932,1.378151297569275,1.5882352590560913,0.8354341983795166,0.13515406847000122,0.11764705926179886,1.045518159866333,1.5357142686843872,1.2906162738800049,1.0630252361297607,-0.6876750588417053,0.7128851413726807,0.8529411554336548,1.0980392694473267,-1.0378150939941406,-1.2128851413726807,-1.9481792449951172,-1.9131652116775513,-1.9131652116775513,-2.0007002353668213,-1.965686321258545,-1.3704482316970825,-0.8977590799331665,-0.6876750588417053,-0.5826330780982971,-0.4425770342350006,-1.2478991746902466,-1.6505602598190308,-1.8256303071975708,-1.5980392694473267,-0.1449579894542694,-0.8802521228790283,-0.03991596773266792,0.13515406847000122,-0.6701680421829224,-1.6855741739273071,0.012605042196810246,0.6603641510009766,-0.17997199296951294,-0.10994397848844528,-0.9677870869636536,0.22268907725811005,0.9929971694946289,1.2380952835083008,-2.0357143878936768,-0.9852941036224365,-1.0903360843658447,-1.3179271221160889,-0.6526610851287842,-1.7380952835083008,-2.0007002353668213,-1.843137264251709,-1.8256303071975708,-1.755602240562439,-1.808123230934143,-1.7906162738800049,-1.8256303071975708,-1.7731091976165771,-1.3179271221160889,-1.545518159866333,-1.6505602598190308,-1.3879551887512207,-1.2478991746902466,-1.2829132080078125,-0.9852941036224365,-1.1253501176834106,-0.9677870869636536,-1.1078431606292725,-0.7927170991897583,-1.0378150939941406,-1.7030812501907349,1.8683472871780396,1.6757702827453613,0.5203081369400024,1.7457983493804932,1.9558823108673096,1.430672287940979,-0.1974789947271347,-0.47759103775024414,-0.47759103775024414,0.27521008253097534,-0.32002800703048706,0.17016807198524475,0.2401960790157318,-0.12745098769664764,0.06512605398893356,0.18767507374286652,-0.28501400351524353,0.3977591097354889,0.2401960790157318,0.9929971694946289,1.2380952835083008,1.605742335319519,1.1155462265014648,1.343137264251709,0.7478991746902466,0.8529411554336548,1.2030812501907349,1.483193278312683,1.430672287940979,1.9558823108673096,1.7282912731170654,1.430672287940979,1.8333333730697632,1.0280112028121948,1.3256303071975708,1.6232492923736572,1.343137264251709,1.5707283020019531,1.168067216873169,1.465686321258545,0.38025209307670593,1.133053183555603,1.5007002353668213,0.6078431606292725,0.012605042196810246,0.8704481720924377,0.5203081369400024,-0.21498599648475647,-0.25,-1.2654061317443848,-1.3354341983795166,-1.4054621458053589,-1.0903360843658447,0.3977591097354889,-0.33753502368927,0.13515406847000122,1.168067216873169,0.31022408604621887,0.8704481720924377,1.4481792449951172,1.483193278312683,1.553221344947815,1.5707283020019531,1.6232492923736572,1.693277359008789,1.780812382698059,1.7983193397521973,1.8333333730697632,1.8158262968063354,1.605742335319519,0.9404761791229248,0.6953781247138977,0.46778711676597595,-0.7226890921592712,-1.4054621458053589,-0.8277310729026794,-0.7401960492134094,-1.3004201650619507,-1.3879551887512207,-1.3004201650619507,-1.2478991746902466,-1.0903360843658447,-1.3879551887512207,-1.3004201650619507,-1.4754902124404907,-1.3879551887512207,-1.3879551887512207,-1.5630252361297607,-1.5980392694473267,-1.7380952835083008,-1.5280112028121948,-0.5651260614395142,0.8704481720924377,1.3256303071975708,1.483193278312683,1.343137264251709,1.465686321258545,1.8858543634414673,1.8858543634414673,1.7107843160629272,1.9908963441848755,2.341036319732666,2.341036319732666,1.693277359008789,-0.28501400351524353],[-1.9131652116775513,-1.895658254623413,-2.0007002353668213,-1.755602240562439,-1.4754902124404907,-1.3704482316970825,-0.9677870869636536,-1.3004201650619507,-1.3354341983795166,-1.0728291273117065,-0.9502801299095154,-1.2478991746902466,-1.0378150939941406,-1.1253501176834106,-1.2303920984268188,-1.1778711080551147,-1.1253501176834106,-1.2478991746902466,-1.3179271221160889,-1.1428571939468384,-1.1953781843185425,-1.1603641510009766,-1.1953781843185425,-1.2829132080078125,-1.3004201650619507,-1.0903360843658447,-1.1253501176834106,-1.1428571939468384,-1.1953781843185425,-1.2128851413726807,-1.4229692220687866,-1.1428571939468384,-1.2303920984268188,-1.1953781843185425,-1.3529411554336548,-1.2478991746902466,-1.2829132080078125,-0.3550420105457306,0.7829131484031677,1.168067216873169,1.4131652116775513,1.430672287940979,1.6407562494277954,1.7633053064346313,0.6778711676597595,-0.7051820755004883,-0.1449579894542694,0.8004201650619507,1.2380952835083008,1.430672287940979,1.5707283020019531,1.5357142686843872,0.2927170991897583,-0.1974789947271347,0.9229691624641418,1.518207311630249,0.9404761791229248,1.5357142686843872,0.5378151535987854,0.11764705926179886,0.0476190485060215,0.8004201650619507,0.13515406847000122,-1.3004201650619507,-1.8606442213058472,-2.0357143878936768,-2.018207311630249,-2.0357143878936768,-1.983193278312683,-2.0007002353668213,-2.0007002353668213,-1.755602240562439,-0.9502801299095154,-1.0203081369400024,-1.4054621458053589,-1.6155462265014648,-0.7752100825309753,-0.02240896411240101,0.25770309567451477,0.9579831957817078,0.2927170991897583,0.3977591097354889,-0.8627451062202454,-1.878151297569275,-0.8102241158485413,-0.17997199296951294,0.22268907725811005,-0.10994397848844528,-0.7577030658721924,-0.09243697673082352,0.17016807198524475,1.378151297569275,-2.018207311630249,-1.4404761791229248,-1.1078431606292725,-1.6505602598190308,-1.895658254623413,-2.0007002353668213,-1.9481792449951172,-1.895658254623413,-1.9131652116775513,-1.8606442213058472,-1.7731091976165771,-1.843137264251709,-1.808123230934143,-1.492997169494629,-1.545518159866333,-1.0728291273117065,-1.3004201650619507,-1.1603641510009766,-1.1953781843185425,-1.0728291273117065,-0.9152660965919495,-1.2303920984268188,-0.9502801299095154,-0.7226890921592712,-0.9152660965919495,-0.9852941036224365,-1.3879551887512207,1.693277359008789,0.25770309567451477,2.3235294818878174,2.3760504722595215,2.3760504722595215,1.6757702827453613,-0.3025210201740265,-0.8102241158485413,-1.1953781843185425,-0.23249299824237823,-0.3025210201740265,-0.33753502368927,0.18767507374286652,-0.33753502368927,-0.32002800703048706,0.0476190485060215,0.06512605398893356,0.13515406847000122,-0.09243697673082352,0.8354341983795166,0.2927170991897583,0.9229691624641418,1.1155462265014648,1.430672287940979,0.4852941036224365,0.9579831957817078,1.045518159866333,1.080532193183899,1.255602240562439,1.133053183555603,0.9929971694946289,1.4481792449951172,1.7107843160629272,0.6603641510009766,1.4481792449951172,1.7107843160629272,1.8333333730697632,1.5007002353668213,-0.03991596773266792,0.7654061913490295,0.7829131484031677,1.6582633256912231,1.343137264251709,-0.10994397848844528,0.7128851413726807,-0.1449579894542694,0.18767507374286652,-0.17997199296951294,-0.07492997497320175,-0.47759103775024414,0.15266107022762299,-1.0378150939941406,-0.37254902720451355,-0.03991596773266792,-0.0049019609577953815,0.36274510622024536,0.5378151535987854,0.20518207550048828,0.8704481720924377,1.0630252361297607,1.465686321258545,1.5707283020019531,1.605742335319519,1.6232492923736572,1.6757702827453613,1.7107843160629272,1.7633053064346313,1.8333333730697632,1.693277359008789,1.255602240562439,0.8179271817207336,0.17016807198524475,-0.8452380895614624,-1.3704482316970825,-1.668067216873169,-1.5280112028121948,-1.3179271221160889,-1.0028011798858643,-1.1953781843185425,-1.2303920984268188,-1.1078431606292725,-0.9152660965919495,-1.1778711080551147,-1.3179271221160889,-1.2829132080078125,-1.1253501176834106,-1.0378150939941406,-1.2303920984268188,-1.3879551887512207,-1.4404761791229248,-1.4229692220687866,-1.9131652116775513,-0.3900560140609741,0.22268907725811005,0.7478991746902466,0.9929971694946289,1.4481792449951172,1.4481792449951172,1.780812382698059,1.7107843160629272,1.6757702827453613,2.0609242916107178,2.1484594345092773,0.38025209307670593,0.0476190485060215],[-1.930672287940979,-1.843137264251709,-2.0007002353668213,-1.720588207244873,-1.5980392694473267,-1.3004201650619507,-1.2303920984268188,-1.0728291273117065,-0.9852941036224365,-1.2478991746902466,-1.3004201650619507,-1.0728291273117065,-1.2654061317443848,-0.9677870869636536,-1.0728291273117065,-1.2654061317443848,-1.0903360843658447,-1.2128851413726807,-1.1428571939468384,-1.2829132080078125,-1.1778711080551147,-1.1253501176834106,-1.0903360843658447,-1.1253501176834106,-1.2478991746902466,-1.1253501176834106,-1.2128851413726807,-1.3179271221160889,-1.1953781843185425,-1.1778711080551147,-1.3179271221160889,-1.2654061317443848,-1.2128851413726807,-1.1253501176834106,-1.0903360843658447,-1.2829132080078125,-0.7752100825309753,0.2927170991897583,1.378151297569275,1.255602240562439,1.605742335319519,1.5882352590560913,1.6582633256912231,1.7282912731170654,1.5007002353668213,0.5203081369400024,-0.09243697673082352,0.22268907725811005,1.220588207244873,1.518207311630249,1.605742335319519,1.5707283020019531,0.5378151535987854,-0.4600840210914612,0.36274510622024536,1.2906162738800049,0.7829131484031677,0.9579831957817078,0.012605042196810246,0.0476190485060215,-0.7577030658721924,-0.1974789947271347,-0.8102241158485413,-1.2128851413726807,-1.7380952835083008,-1.878151297569275,-2.018207311630249,-2.0357143878936768,-2.018207311630249,-2.018207311630249,-1.755602240562439,-1.7906162738800049,-1.895658254623413,-1.878151297569275,-1.8256303071975708,-1.3704482316970825,-0.7752100825309753,0.06512605398893356,0.2927170991897583,0.27521008253097534,0.450280100107193,-0.17997199296951294,-1.9481792449951172,-1.3354341983795166,0.8004201650619507,-0.03991596773266792,0.13515406847000122,0.3977591097354889,0.20518207550048828,-1.0553221702575684,-0.5651260614395142,1.220588207244873,-1.5280112028121948,-1.7906162738800049,-1.1603641510009766,-1.7906162738800049,-2.0007002353668213,-2.0357143878936768,-1.8256303071975708,-1.895658254623413,-1.895658254623413,-1.9481792449951172,-1.8606442213058472,-1.3529411554336548,-1.5630252361297607,-1.1253501176834106,-1.3704482316970825,-1.1078431606292725,-1.3179271221160889,-1.3004201650619507,-1.1078431606292725,-1.1953781843185425,-0.9152660965919495,-1.0728291273117065,-1.0203081369400024,-1.1078431606292725,-1.0728291273117065,-1.0203081369400024,-1.3004201650619507,2.288515329360962,2.39355731010437,2.0259103775024414,1.9733893871307373,0.9579831957817078,0.1001400575041771,-0.5126050710678101,-0.8627451062202454,-1.0903360843658447,-0.4425770342350006,-0.3900560140609741,-0.3025210201740265,-0.03991596773266792,0.17016807198524475,-0.05742296949028969,0.06512605398893356,-0.3025210201740265,0.13515406847000122,-0.33753502368927,0.18767507374286652,0.7829131484031677,2.235994338989258,1.5007002353668213,1.308123230934143,0.6428571343421936,0.6603641510009766,0.8179271817207336,1.0280112028121948,0.6778711676597595,1.1155462265014648,1.395658254623413,1.168067216873169,1.2731091976165771,0.6253501176834106,0.3977591097354889,1.8333333730697632,0.11764705926179886,0.9054622054100037,0.5553221106529236,0.9579831957817078,1.5357142686843872,0.8704481720924377,0.2927170991897583,-0.8277310729026794,-0.5826330780982971,-0.5651260614395142,-0.6351540684700012,-0.6876750588417053,-1.6855741739273071,-0.7051820755004883,0.1001400575041771,-0.9152660965919495,0.27521008253097534,-0.32002800703048706,1.6757702827453613,0.41526609659194946,0.3452380895614624,1.0980392694473267,0.9579831957817078,1.308123230934143,1.255602240562439,1.6757702827453613,1.7107843160629272,1.693277359008789,1.6582633256912231,1.6757702827453613,1.780812382698059,1.7107843160629272,1.693277359008789,1.2380952835083008,0.2927170991897583,-0.8452380895614624,-1.1778711080551147,-1.4054621458053589,-1.3004201650619507,-1.1953781843185425,-1.3529411554336548,-0.9327731132507324,-1.2303920984268188,-1.0728291273117065,-1.3179271221160889,-1.0903360843658447,-1.0028011798858643,-1.1428571939468384,-1.1953781843185425,-1.2303920984268188,-1.1603641510009766,-1.1953781843185425,-1.2478991746902466,-1.2303920984268188,-1.3354341983795166,-1.3179271221160889,-1.457983136177063,-1.457983136177063,-0.6001400351524353,0.5903361439704895,1.378151297569275,1.605742335319519,1.5357142686843872,1.5882352590560913,1.5707283020019531,1.465686321258545,1.430672287940979,0.9754902124404907,1.168067216873169],[-1.808123230934143,-1.878151297569275,-1.895658254623413,-1.965686321258545,-1.7030812501907349,-1.633053183555603,-1.1078431606292725,-1.1603641510009766,-0.9327731132507324,-1.2303920984268188,-1.1603641510009766,-1.2128851413726807,-1.0728291273117065,-1.2303920984268188,-1.2128851413726807,-1.1603641510009766,-1.2478991746902466,-1.0903360843658447,-1.2654061317443848,-1.3354341983795166,-1.3354341983795166,-1.2654061317443848,-1.2654061317443848,-1.1253501176834106,-1.2654061317443848,-1.1428571939468384,-1.2128851413726807,-1.1778711080551147,-1.2654061317443848,-1.2303920984268188,-1.2829132080078125,-1.2128851413726807,-1.2654061317443848,-1.1428571939468384,-1.4229692220687866,-1.3004201650619507,-0.7577030658721924,0.7654061913490295,1.343137264251709,1.693277359008789,1.430672287940979,1.7107843160629272,1.7107843160629272,1.7633053064346313,1.7457983493804932,1.518207311630249,0.5728291273117065,0.5728291273117065,1.2030812501907349,1.4481792449951172,1.7633053064346313,1.518207311630249,1.2030812501907349,-0.4600840210914612,0.5378151535987854,1.2380952835083008,0.8354341983795166,0.5553221106529236,0.7829131484031677,0.20518207550048828,-0.4600840210914612,-0.3550420105457306,0.18767507374286652,-1.0553221702575684,-1.3879551887512207,-1.878151297569275,-2.0357143878936768,-2.0007002353668213,-2.0357143878936768,-2.0357143878936768,-1.878151297569275,-1.6155462265014648,-1.9481792449951172,-1.3179271221160889,-1.0203081369400024,-0.9502801299095154,-0.32002800703048706,-1.3879551887512207,-0.10994397848844528,-0.42507001757621765,0.0476190485060215,-1.6855741739273071,-2.0357143878936768,-0.12745098769664764,0.5903361439704895,0.6253501176834106,0.36274510622024536,-0.09243697673082352,0.6778711676597595,-0.02240896411240101,-1.457983136177063,-1.0203081369400024,0.13515406847000122,-0.26750701665878296,-1.7380952835083008,-1.965686321258545,-1.965686321258545,-1.965686321258545,-2.018207311630249,-1.808123230934143,-1.7380952835083008,-1.5105042457580566,-1.492997169494629,-1.2829132080078125,-1.5630252361297607,-1.2478991746902466,-1.1778711080551147,-1.0903360843658447,-1.1428571939468384,-0.9677870869636536,-0.9677870869636536,-0.8802521228790283,-1.0203081369400024,-1.0728291273117065,-1.1603641510009766,-1.1428571939468384,-1.1078431606292725,-1.0728291273117065,-0.21498599648475647,0.6603641510009766,2.0959384441375732,1.5007002353668213,1.8858543634414673,1.3606442213058472,-0.9152660965919495,-0.42507001757621765,-0.5476190447807312,-0.8977590799331665,-0.9502801299095154,-0.4950980246067047,-0.6701680421829224,-0.10994397848844528,-0.02240896411240101,-0.0049019609577953815,0.11764705926179886,-0.03991596773266792,0.06512605398893356,0.36274510622024536,0.8879551887512207,1.378151297569275,1.5357142686843872,1.9908963441848755,1.0980392694473267,0.6253501176834106,0.46778711676597595,0.6253501176834106,0.5203081369400024,-0.1974789947271347,0.6778711676597595,0.012605042196810246,0.46778711676597595,0.7303921580314636,0.450280100107193,1.0980392694473267,0.6428571343421936,0.27521008253097534,0.8179271817207336,0.17016807198524475,0.36274510622024536,0.17016807198524475,-0.07492997497320175,0.030112044885754585,0.13515406847000122,0.08263305574655533,-1.6155462265014648,-1.3354341983795166,-0.6176470518112183,-0.8452380895614624,-0.5126050710678101,0.18767507374286652,-1.2654061317443848,0.3452380895614624,0.2401960790157318,0.46778711676597595,0.8179271817207336,1.308123230934143,1.0280112028121948,1.0105042457580566,1.1155462265014648,1.4131652116775513,1.518207311630249,1.605742335319519,1.6582633256912231,1.6232492923736572,1.7983193397521973,1.780812382698059,1.7457983493804932,1.5357142686843872,1.0980392694473267,0.20518207550048828,-0.6001400351524353,-1.2303920984268188,-1.3529411554336548,-1.4054621458053589,-1.3179271221160889,-1.0378150939941406,-1.0903360843658447,-1.1078431606292725,-1.2303920984268188,-1.0028011798858643,-1.1953781843185425,-1.1603641510009766,-1.0728291273117065,-1.0378150939941406,-1.1778711080551147,-1.2128851413726807,-1.0378150939941406,-1.1428571939468384,-1.1428571939468384,-1.3354341983795166,-1.2303920984268188,-1.2303920984268188,-1.4404761791229248,-1.7731091976165771,-0.7226890921592712,1.0980392694473267,1.255602240562439,1.343137264251709,1.5882352590560913,1.7282912731170654,1.6582633256912231,1.6407562494277954,1.4481792449951172,1.1155462265014648],[-1.4404761791229248,-1.8606442213058472,-2.0357143878936768,-1.7731091976165771,-1.7906162738800049,-1.4754902124404907,-1.1428571939468384,-1.1253501176834106,-1.0378150939941406,-1.1953781843185425,-0.9327731132507324,-1.1078431606292725,-1.1778711080551147,-1.0903360843658447,-1.2128851413726807,-1.1603641510009766,-1.2654061317443848,-1.3179271221160889,-1.1953781843185425,-1.1078431606292725,-1.1603641510009766,-1.2303920984268188,-1.2654061317443848,-1.2829132080078125,-1.1078431606292725,-1.2478991746902466,-1.2303920984268188,-1.2128851413726807,-1.2478991746902466,-1.3529411554336548,-1.3529411554336548,-1.1778711080551147,-1.2478991746902466,-1.457983136177063,-1.2478991746902466,-0.9677870869636536,0.5903361439704895,0.7829131484031677,1.1855741739273071,1.395658254623413,1.6757702827453613,1.518207311630249,1.780812382698059,1.7107843160629272,1.7107843160629272,1.518207311630249,1.1155462265014648,0.3977591097354889,1.255602240562439,1.5707283020019531,1.343137264251709,1.6232492923736572,1.3606442213058472,0.7654061913490295,-0.0049019609577953815,0.5903361439704895,1.2731091976165771,0.7128851413726807,0.5728291273117065,0.18767507374286652,0.3452380895614624,0.6253501176834106,0.8354341983795166,-0.1974789947271347,-1.1253501176834106,-1.5280112028121948,-1.9131652116775513,-2.0007002353668213,-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-2.018207311630249,-1.3879551887512207,-0.07492997497320175,-0.6701680421829224,-1.1078431606292725,-0.9677870869636536,-0.1974789947271347,0.13515406847000122,-0.3025210201740265,-0.6176470518112183,-1.843137264251709,-1.983193278312683,-1.0028011798858643,0.7829131484031677,1.0280112028121948,0.6953781247138977,0.0476190485060215,0.32773110270500183,0.5378151535987854,-0.4425770342350006,0.20518207550048828,0.9754902124404907,-2.0357143878936768,-1.895658254623413,-1.9131652116775513,-2.0357143878936768,-1.9131652116775513,-1.7731091976165771,-1.6855741739273071,-1.492997169494629,-1.4054621458053589,-1.4404761791229248,-1.3529411554336548,-1.1778711080551147,-1.1603641510009766,-1.0378150939941406,-1.1778711080551147,-1.1778711080551147,-1.1428571939468384,-1.0378150939941406,-1.0028011798858643,-1.1603641510009766,-1.0028011798858643,-1.0203081369400024,-1.0553221702575684,-1.1953781843185425,-1.1253501176834106,-0.03991596773266792,1.6407562494277954,2.4285714626312256,-0.8452380895614624,0.9054622054100037,0.22268907725811005,-0.37254902720451355,-0.8627451062202454,-1.2654061317443848,-0.6176470518112183,-0.4425770342350006,-0.12745098769664764,0.7128851413726807,0.8529411554336548,0.13515406847000122,0.27521008253097534,0.38025209307670593,-0.07492997497320175,0.7478991746902466,1.5882352590560913,0.8179271817207336,1.7633053064346313,1.5882352590560913,1.9033613204956055,0.9929971694946289,0.18767507374286652,0.2927170991897583,0.6428571343421936,-0.0049019609577953815,-0.05742296949028969,0.030112044885754585,0.3977591097354889,0.08263305574655533,0.32773110270500183,0.20518207550048828,-0.1449579894542694,-0.1974789947271347,-0.10994397848844528,0.2927170991897583,0.25770309567451477,-0.28501400351524353,-0.9327731132507324,-0.9152660965919495,-0.8452380895614624,-0.3550420105457306,-0.7577030658721924,-1.8606442213058472,-1.5280112028121948,-1.983193278312683,-0.6351540684700012,0.7128851413726807,-0.8277310729026794,0.1001400575041771,0.9229691624641418,0.8354341983795166,0.5378151535987854,0.5028011202812195,0.7303921580314636,1.0105042457580566,1.0105042457580566,1.343137264251709,1.168067216873169,1.5357142686843872,1.6232492923736572,1.693277359008789,1.6407562494277954,1.7107843160629272,1.693277359008789,1.6757702827453613,1.5007002353668213,1.0280112028121948,-0.3900560140609741,-1.1603641510009766,-1.3179271221160889,-1.4229692220687866,-1.3004201650619507,-1.1428571939468384,-1.3354341983795166,-1.4054621458053589,-1.2303920984268188,-1.0378150939941406,-1.2128851413726807,-0.9327731132507324,-0.8802521228790283,-0.9852941036224365,-1.1778711080551147,-1.0903360843658447,-0.9327731132507324,-1.1428571939468384,-1.1078431606292725,-1.2303920984268188,-1.0728291273117065,-1.2829132080078125,-1.2478991746902466,-1.4229692220687866,-1.3179271221160889,-1.3879551887512207,-0.6876750588417053,0.5553221106529236,0.9754902124404907,0.7829131484031677,1.430672287940979,1.7633053064346313,1.8508403301239014,1.5882352590560913,0.8704481720924377],[-0.8977590799331665,-0.9852941036224365,-1.1778711080551147,-1.4054621458053589,-0.8627451062202454,-0.9152660965919495,-1.3354341983795166,-1.0553221702575684,-1.0378150939941406,-1.0553221702575684,-1.0203081369400024,-1.1953781843185425,-1.4404761791229248,-1.1078431606292725,-1.3704482316970825,-1.2128851413726807,-1.4404761791229248,-1.3004201650619507,-1.2478991746902466,-1.3879551887512207,-1.2654061317443848,-1.2303920984268188,-1.5105042457580566,-1.2478991746902466,-1.1953781843185425,-1.3004201650619507,-1.2303920984268188,-1.2303920984268188,-1.4404761791229248,-1.2303920984268188,-1.1603641510009766,-1.4054621458053589,-1.3179271221160889,-1.2654061317443848,-1.0903360843658447,-0.4950980246067047,0.3452380895614624,0.46778711676597595,0.6778711676597595,0.8179271817207336,1.1505602598190308,1.378151297569275,1.6407562494277954,1.7107843160629272,1.780812382698059,0.7654061913490295,0.5728291273117065,0.8004201650619507,1.4481792449951172,1.8508403301239014,1.7457983493804932,1.2380952835083008,1.0630252361297607,0.6953781247138977,0.4327731132507324,0.9404761791229248,1.5007002353668213,1.1155462265014648,0.8704481720924377,-0.02240896411240101,0.2401960790157318,0.030112044885754585,0.9579831957817078,0.6253501176834106,0.2927170991897583,-0.9677870869636536,-1.4229692220687866,-1.808123230934143,-1.930672287940979,-2.0007002353668213,-2.018207311630249,-2.018207311630249,-1.3879551887512207,-1.457983136177063,-1.930672287940979,-1.7380952835083008,-0.5301120281219482,-0.4425770342350006,-0.02240896411240101,-1.0203081369400024,-2.018207311630249,-2.018207311630249,-1.9481792449951172,-2.018207311630249,-1.2654061317443848,-0.6351540684700012,0.7654061913490295,0.41526609659194946,0.38025209307670593,-0.4950980246067047,-1.3879551887512207,-1.720588207244873,-1.7906162738800049,-1.8606442213058472,-1.7731091976165771,-1.6505602598190308,-1.6155462265014648,-1.668067216873169,-1.3004201650619507,-1.2478991746902466,-1.3879551887512207,-1.2478991746902466,-1.1603641510009766,-1.1603641510009766,-1.1778711080551147,-1.0378150939941406,-1.2478991746902466,-1.0553221702575684,-1.0553221702575684,-1.2303920984268188,-1.0203081369400024,-0.9502801299095154,-1.0553221702575684,-0.9852941036224365,-0.8627451062202454,-1.0553221702575684,-1.0378150939941406,-0.9677870869636536,0.012605042196810246,2.0259103775024414,2.3760504722595215,1.045518159866333,0.9054622054100037,0.17016807198524475,-0.7051820755004883,-0.09243697673082352,0.012605042196810246,0.22268907725811005,0.5728291273117065,0.7478991746902466,0.5028011202812195,0.6603641510009766,0.2927170991897583,0.6953781247138977,1.4481792449951172,1.0630252361297607,2.113445281982422,1.0630252361297607,1.2906162738800049,0.6603641510009766,0.8179271817207336,1.6232492923736572,0.9579831957817078,0.18767507374286652,2.0084033012390137,0.9404761791229248,0.27521008253097534,-0.26750701665878296,-0.4425770342350006,-0.09243697673082352,-0.5301120281219482,-0.9152660965919495,-0.5301120281219482,-0.5826330780982971,-0.26750701665878296,-0.05742296949028969,-0.09243697673082352,-0.8452380895614624,-0.4950980246067047,-0.9152660965919495,-0.4425770342350006,-0.6701680421829224,-0.28501400351524353,0.4852941036224365,-0.6176470518112183,-1.983193278312683,-1.755602240562439,-0.3025210201740265,-0.12745098769664764,0.6253501176834106,1.5007002353668213,1.5007002353668213,0.8879551887512207,0.3452380895614624,0.8354341983795166,0.9929971694946289,0.6428571343421936,1.080532193183899,1.0630252361297607,1.4131652116775513,1.4481792449951172,1.693277359008789,1.6407562494277954,1.518207311630249,1.6757702827453613,1.7282912731170654,1.6407562494277954,1.5007002353668213,0.38025209307670593,-0.6001400351524353,-1.1253501176834106,-1.3179271221160889,-1.2303920984268188,-1.457983136177063,-1.1778711080551147,-1.1078431606292725,-1.1953781843185425,-1.3004201650619507,-1.1953781843185425,-1.0028011798858643,-1.1428571939468384,-1.1603641510009766,-1.1428571939468384,-1.0728291273117065,-1.1778711080551147,-1.1603641510009766,-1.0378150939941406,-1.0903360843658447,-1.0553221702575684,-1.0378150939941406,-0.9677870869636536,-0.9677870869636536,-0.9852941036224365,-1.2303920984268188,-1.2829132080078125,-1.4754902124404907,-1.492997169494629,0.8529411554336548,0.7478991746902466,1.080532193183899,1.430672287940979,1.5707283020019531,0.9579831957817078,-0.8802521228790283],[-1.4229692220687866,-0.7927170991897583,-0.7226890921592712,-1.0203081369400024,-0.9502801299095154,-1.3354341983795166,-0.6001400351524353,-0.7051820755004883,-0.33753502368927,-0.7051820755004883,-0.47759103775024414,-0.4950980246067047,-0.5301120281219482,-0.6701680421829224,-0.8102241158485413,-0.6176470518112183,-0.47759103775024414,-0.7401960492134094,-1.492997169494629,-0.8277310729026794,-0.7051820755004883,-1.0028011798858643,-0.9502801299095154,-1.1428571939468384,-1.2303920984268188,-1.2303920984268188,-1.1778711080551147,-1.3529411554336548,-1.1428571939468384,-1.1428571939468384,-1.3529411554336548,-1.0728291273117065,-1.2303920984268188,-0.9852941036224365,-0.7226890921592712,-0.47759103775024414,-0.5126050710678101,-0.1974789947271347,0.1001400575041771,0.38025209307670593,0.4327731132507324,0.9579831957817078,1.5007002353668213,1.8158262968063354,1.6407562494277954,1.080532193183899,0.31022408604621887,0.5903361439704895,0.7128851413726807,1.693277359008789,1.605742335319519,0.9404761791229248,0.9404761791229248,0.3452380895614624,0.3452380895614624,0.6603641510009766,1.7107843160629272,1.0280112028121948,1.080532193183899,0.20518207550048828,0.32773110270500183,-0.37254902720451355,0.6953781247138977,0.6778711676597595,0.6603641510009766,-0.6526610851287842,-1.2478991746902466,-1.5280112028121948,-1.7731091976165771,-1.6855741739273071,-1.965686321258545,-2.0357143878936768,-1.633053183555603,-1.9481792449951172,-1.7030812501907349,-1.0903360843658447,-0.8277310729026794,-0.6701680421829224,-1.7030812501907349,-2.018207311630249,-2.0357143878936768,-1.983193278312683,-2.018207311630249,-2.0007002353668213,-1.930672287940979,-1.4754902124404907,-0.3550420105457306,0.22268907725811005,0.5378151535987854,-0.12745098769664764,-1.4054621458053589,-2.0357143878936768,-1.9481792449951172,-1.7030812501907349,-1.4054621458053589,-1.4754902124404907,-1.545518159866333,-1.3879551887512207,-1.5105042457580566,-1.1953781843185425,-1.3179271221160889,-1.3354341983795166,-1.1603641510009766,-1.0903360843658447,-1.1953781843185425,-1.0903360843658447,-1.0728291273117065,-1.1253501176834106,-1.2654061317443848,-1.0378150939941406,-1.2303920984268188,-1.1778711080551147,-0.8977590799331665,-1.1603641510009766,-1.2478991746902466,-0.9677870869636536,-0.9152660965919495,-1.1078431606292725,0.22268907725811005,2.288515329360962,1.9558823108673096,-0.07492997497320175,1.7983193397521973,0.7128851413726807,-0.6701680421829224,-1.1253501176834106,0.2927170991897583,0.7303921580314636,-0.16246499121189117,0.8354341983795166,0.22268907725811005,1.220588207244873,1.395658254623413,1.168067216873169,1.0630252361297607,1.8683472871780396,2.113445281982422,1.045518159866333,2.0259103775024414,0.6603641510009766,2.1484594345092773,1.255602240562439,1.0280112028121948,0.0476190485060215,0.9579831957817078,0.6078431606292725,0.5378151535987854,0.13515406847000122,0.20518207550048828,0.13515406847000122,-0.5126050710678101,-0.37254902720451355,-1.1953781843185425,-1.2478991746902466,-0.9677870869636536,-0.33753502368927,-0.21498599648475647,-0.5301120281219482,-1.1078431606292725,-1.2829132080078125,-1.5105042457580566,0.11764705926179886,0.08263305574655533,0.6428571343421936,-1.8256303071975708,-1.1603641510009766,-0.17997199296951294,-0.1449579894542694,-1.4404761791229248,0.9054622054100037,0.6253501176834106,0.9229691624641418,-0.03991596773266792,1.3606442213058472,1.0630252361297607,1.378151297569275,1.3256303071975708,1.2030812501907349,0.9054622054100037,1.2731091976165771,1.5357142686843872,1.5007002353668213,1.553221344947815,1.518207311630249,1.553221344947815,1.7107843160629272,1.6407562494277954,1.395658254623413,0.22268907725811005,-1.0028011798858643,-1.3879551887512207,-1.1778711080551147,-1.545518159866333,-1.3179271221160889,-1.0728291273117065,-1.0028011798858643,-1.0028011798858643,-1.1078431606292725,-1.1778711080551147,-1.1078431606292725,-1.1778711080551147,-1.0203081369400024,-1.1953781843185425,-1.0728291273117065,-1.0903360843658447,-1.0203081369400024,-1.0553221702575684,-1.1078431606292725,-1.0378150939941406,-0.9502801299095154,-1.1953781843185425,-1.1603641510009766,-1.1603641510009766,-1.3004201650619507,-1.1603641510009766,-1.2303920984268188,-1.3354341983795166,-1.2654061317443848,-0.9677870869636536,0.6953781247138977,1.1505602598190308,1.080532193183899,-0.37254902720451355,-1.7380952835083008],[-0.9677870869636536,-1.1603641510009766,-0.7401960492134094,-0.9677870869636536,-0.9152660965919495,-0.7401960492134094,-0.4600840210914612,-1.4229692220687866,-0.4075630307197571,-1.0378150939941406,-0.37254902720451355,-0.25,-0.26750701665878296,-0.32002800703048706,-0.1974789947271347,-0.5126050710678101,-0.05742296949028969,-0.03991596773266792,-1.1253501176834106,-0.23249299824237823,-1.2654061317443848,-0.33753502368927,-0.4600840210914612,-0.6701680421829224,-0.8277310729026794,-1.3529411554336548,-1.1428571939468384,-1.1778711080551147,-1.0028011798858643,-0.8977590799331665,-1.1253501176834106,-1.2303920984268188,-0.8277310729026794,-0.5126050710678101,0.20518207550048828,0.012605042196810246,-0.21498599648475647,0.012605042196810246,-0.21498599648475647,0.012605042196810246,0.15266107022762299,0.5203081369400024,0.9229691624641418,1.6407562494277954,1.6407562494277954,1.6232492923736572,1.2030812501907349,0.13515406847000122,0.5553221106529236,1.0980392694473267,1.378151297569275,1.465686321258545,0.5728291273117065,0.5553221106529236,0.3977591097354889,0.6953781247138977,1.3606442213058472,1.0630252361297607,1.168067216873169,0.6603641510009766,0.3452380895614624,0.18767507374286652,0.9229691624641418,0.8354341983795166,0.2927170991897583,0.3452380895614624,-0.8277310729026794,-1.580532193183899,-1.5280112028121948,-1.2654061317443848,-2.0007002353668213,-1.930672287940979,-2.0007002353668213,-1.5980392694473267,-1.965686321258545,-1.843137264251709,-1.2128851413726807,-0.1449579894542694,-1.930672287940979,-2.0007002353668213,-1.983193278312683,-1.7906162738800049,-0.25,-0.4425770342350006,-1.983193278312683,-2.0357143878936768,-1.6505602598190308,-0.07492997497320175,0.25770309567451477,-0.37254902720451355,-0.6001400351524353,-1.7030812501907349,-1.8256303071975708,-1.7030812501907349,-1.6855741739273071,-1.5280112028121948,-1.3004201650619507,-1.457983136177063,-1.3004201650619507,-1.4054621458053589,-1.2128851413726807,-1.1253501176834106,-1.3004201650619507,-1.1253501176834106,-1.2478991746902466,-1.2654061317443848,-1.1078431606292725,-1.1953781843185425,-1.1253501176834106,-1.1078431606292725,-1.2654061317443848,-1.1953781843185425,-1.3529411554336548,-0.9502801299095154,-0.9852941036224365,-0.8802521228790283,-0.8802521228790283,-0.8452380895614624,0.450280100107193,2.0609242916107178,2.341036319732666,1.4131652116775513,1.430672287940979,1.0980392694473267,-0.7401960492134094,-0.7401960492134094,0.31022408604621887,1.0105042457580566,-0.32002800703048706,0.9054622054100037,0.8179271817207336,1.7983193397521973,0.3977591097354889,1.553221344947815,1.693277359008789,2.1484594345092773,1.8683472871780396,1.6407562494277954,1.7282912731170654,1.465686321258545,2.043417453765869,1.1155462265014648,0.7128851413726807,1.2906162738800049,1.3606442213058472,0.6953781247138977,0.46778711676597595,0.4852941036224365,-0.12745098769664764,0.18767507374286652,0.2401960790157318,-0.4075630307197571,-0.6526610851287842,-1.0553221702575684,-0.3025210201740265,-1.0378150939941406,-0.6176470518112183,0.20518207550048828,-1.0728291273117065,-1.3704482316970825,-1.2654061317443848,-0.4950980246067047,-0.42507001757621765,0.5028011202812195,-1.580532193183899,0.3977591097354889,-0.7927170991897583,-0.42507001757621765,-0.03991596773266792,1.5707283020019531,1.553221344947815,0.20518207550048828,1.6232492923736572,0.8529411554336548,0.7829131484031677,0.6778711676597595,1.080532193183899,0.8879551887512207,1.2906162738800049,1.308123230934143,1.308123230934143,1.6407562494277954,1.5007002353668213,1.3606442213058472,1.6232492923736572,1.7282912731170654,1.6757702827453613,1.2380952835083008,-0.23249299824237823,-1.1428571939468384,-1.492997169494629,-1.3354341983795166,-1.3004201650619507,-1.2654061317443848,-1.2654061317443848,-1.1778711080551147,-1.1078431606292725,-1.1428571939468384,-1.0028011798858643,-1.1253501176834106,-1.1078431606292725,-1.0903360843658447,-1.0903360843658447,-1.2478991746902466,-1.3004201650619507,-0.9852941036224365,-1.3004201650619507,-1.0028011798858643,-1.1953781843185425,-1.0553221702575684,-1.1428571939468384,-0.9677870869636536,-1.0378150939941406,-1.0903360843658447,-1.0553221702575684,-1.3529411554336548,-1.1603641510009766,-1.2478991746902466,-1.457983136177063,-1.3879551887512207,0.2401960790157318,-0.12745098769664764,-0.5301120281219482,-1.3004201650619507],[-0.9677870869636536,-1.1428571939468384,-0.9852941036224365,-1.0728291273117065,-0.7927170991897583,-0.7401960492134094,-0.9327731132507324,-0.5126050710678101,-0.5651260614395142,-0.5651260614395142,-0.28501400351524353,-0.6001400351524353,-0.42507001757621765,-0.33753502368927,-0.47759103775024414,-0.25,-0.02240896411240101,-0.16246499121189117,-0.3900560140609741,-0.23249299824237823,-1.0903360843658447,-0.7051820755004883,-1.1078431606292725,-0.25,-0.5476190447807312,-0.8977590799331665,-0.4425770342350006,-1.1778711080551147,-1.1778711080551147,-0.9152660965919495,-0.5301120281219482,-0.8452380895614624,-0.12745098769664764,0.7303921580314636,1.2380952835083008,1.0105042457580566,1.168067216873169,1.1155462265014648,0.9229691624641418,0.8354341983795166,0.9404761791229248,0.25770309567451477,0.25770309567451477,1.2906162738800049,1.5007002353668213,1.605742335319519,1.465686321258545,0.7654061913490295,0.13515406847000122,1.168067216873169,1.2030812501907349,1.6757702827453613,1.2030812501907349,1.168067216873169,0.8179271817207336,0.15266107022762299,1.080532193183899,1.2906162738800049,1.0980392694473267,0.9229691624641418,0.31022408604621887,0.06512605398893356,0.8704481720924377,0.22268907725811005,-0.25,0.2401960790157318,0.25770309567451477,-1.4229692220687866,-1.5105042457580566,-1.2303920984268188,-1.3879551887512207,-2.0007002353668213,-1.930672287940979,-1.965686321258545,-2.018207311630249,-1.0553221702575684,-0.7927170991897583,-1.843137264251709,-2.0357143878936768,-2.0357143878936768,-1.633053183555603,0.5203081369400024,0.11764705926179886,-1.5980392694473267,-1.5280112028121948,-1.7380952835083008,-1.5105042457580566,-1.720588207244873,-0.26750701665878296,0.22268907725811005,-0.42507001757621765,-1.2128851413726807,-1.895658254623413,-1.4404761791229248,-1.457983136177063,-1.4229692220687866,-1.5105042457580566,-1.4229692220687866,-1.3704482316970825,-1.3879551887512207,-1.492997169494629,-1.3004201650619507,-1.3529411554336548,-1.0028011798858643,-1.1953781843185425,-1.3354341983795166,-1.580532193183899,-1.2654061317443848,-1.4754902124404907,-1.1603641510009766,-1.2829132080078125,-1.1953781843185425,-1.3179271221160889,-0.9677870869636536,-1.2128851413726807,-0.9327731132507324,-1.1603641510009766,-0.8802521228790283,0.8879551887512207,1.9558823108673096,2.4285714626312256,2.1834733486175537,1.5707283020019531,1.9383753538131714,0.6428571343421936,0.32773110270500183,0.5903361439704895,0.9579831957817078,0.6078431606292725,1.6407562494277954,1.0105042457580566,1.9383753538131714,0.3452380895614624,1.9208683967590332,1.7633053064346313,2.235994338989258,1.308123230934143,1.6407562494277954,0.8354341983795166,1.2731091976165771,1.7282912731170654,1.6582633256912231,1.518207311630249,1.343137264251709,1.553221344947815,0.3452380895614624,-0.1449579894542694,1.0280112028121948,0.2401960790157318,0.3977591097354889,0.20518207550048828,0.27521008253097534,0.20518207550048828,0.2927170991897583,-0.5476190447807312,0.4327731132507324,0.7478991746902466,0.030112044885754585,-1.3704482316970825,-0.10994397848844528,-0.9677870869636536,0.36274510622024536,0.5903361439704895,0.25770309567451477,-0.8102241158485413,1.0980392694473267,0.5028011202812195,0.36274510622024536,0.8004201650619507,0.20518207550048828,0.9929971694946289,2.39355731010437,1.3606442213058472,0.8179271817207336,0.8179271817207336,0.6253501176834106,0.7654061913490295,1.2380952835083008,1.0280112028121948,1.343137264251709,1.343137264251709,1.395658254623413,1.5707283020019531,1.465686321258545,1.6757702827453613,1.6582633256912231,1.5707283020019531,1.0105042457580566,-0.7927170991897583,-1.2303920984268188,-1.3704482316970825,-1.1778711080551147,-1.3354341983795166,-1.1078431606292725,-1.2829132080078125,-1.1778711080551147,-1.3354341983795166,-1.1253501176834106,-1.1953781843185425,-1.2478991746902466,-1.0553221702575684,-1.3004201650619507,-0.9152660965919495,-1.0028011798858643,-1.0028011798858643,-1.0903360843658447,-0.9502801299095154,-1.1428571939468384,-1.0728291273117065,-1.3179271221160889,-1.0203081369400024,-0.9502801299095154,-1.1253501176834106,-0.9327731132507324,-1.3004201650619507,-1.1078431606292725,-1.1428571939468384,-1.2654061317443848,-1.2829132080078125,-1.1603641510009766,-1.2829132080078125,-1.4404761791229248,-1.1603641510009766,-1.5280112028121948],[-1.1078431606292725,-1.1078431606292725,-0.9327731132507324,-0.9852941036224365,-0.8977590799331665,-0.7927170991897583,-0.9677870869636536,-0.6526610851287842,-0.6001400351524353,-0.21498599648475647,-0.26750701665878296,-0.1974789947271347,0.012605042196810246,-0.37254902720451355,-0.47759103775024414,-0.33753502368927,-0.28501400351524353,-0.32002800703048706,-0.17997199296951294,-0.26750701665878296,-0.7752100825309753,-0.7226890921592712,-1.1778711080551147,-0.6876750588417053,-0.7577030658721924,-0.5301120281219482,-0.33753502368927,-0.7752100825309753,-0.7752100825309753,-1.2654061317443848,-0.09243697673082352,-0.32002800703048706,0.4327731132507324,1.5007002353668213,1.5882352590560913,1.7282912731170654,1.5707283020019531,1.5882352590560913,1.518207311630249,1.6407562494277954,1.4131652116775513,0.9579831957817078,0.5728291273117065,0.7128851413726807,1.308123230934143,1.2731091976165771,1.0980392694473267,1.2380952835083008,0.8004201650619507,0.9754902124404907,1.133053183555603,1.6407562494277954,1.465686321258545,1.343137264251709,0.6253501176834106,0.7478991746902466,1.0980392694473267,1.2380952835083008,1.0105042457580566,0.22268907725811005,-0.05742296949028969,-0.1449579894542694,0.6603641510009766,0.6078431606292725,0.25770309567451477,-0.3550420105457306,0.17016807198524475,-0.33753502368927,-1.2128851413726807,-1.3179271221160889,-1.2829132080078125,-1.5280112028121948,-2.0357143878936768,-1.7731091976165771,-1.9131652116775513,-1.668067216873169,-1.5280112028121948,-2.0357143878936768,-2.0357143878936768,-2.0007002353668213,-0.26750701665878296,-0.1974789947271347,-1.983193278312683,-1.2829132080078125,-0.5126050710678101,-1.3179271221160889,-0.7752100825309753,0.25770309567451477,0.4327731132507324,0.030112044885754585,-0.9152660965919495,-1.1253501176834106,-1.8256303071975708,-1.9131652116775513,-1.545518159866333,-1.3879551887512207,-1.4754902124404907,-1.4404761791229248,-1.4229692220687866,-1.2654061317443848,-1.4229692220687866,-1.1253501176834106,-1.4229692220687866,-1.0728291273117065,-1.5280112028121948,-1.2829132080078125,-1.3004201650619507,-1.0903360843658447,-1.3529411554336548,-1.1953781843185425,-1.2478991746902466,-1.2654061317443848,-1.2654061317443848,-1.0553221702575684,-1.0203081369400024,-0.7752100825309753,-0.4425770342350006,-0.8977590799331665,1.045518159866333,1.9558823108673096,2.0784313678741455,2.2535014152526855,1.8158262968063354,0.25770309567451477,-0.12745098769664764,0.9229691624641418,0.9754902124404907,1.5357142686843872,1.2380952835083008,1.7983193397521973,1.6757702827453613,1.780812382698059,0.32773110270500183,1.780812382698059,1.8333333730697632,1.343137264251709,0.6778711676597595,1.4131652116775513,1.5707283020019531,1.430672287940979,1.483193278312683,1.2380952835083008,1.430672287940979,1.5007002353668213,1.7457983493804932,1.045518159866333,0.9754902124404907,0.9404761791229248,0.41526609659194946,-0.10994397848844528,0.31022408604621887,0.06512605398893356,0.13515406847000122,0.012605042196810246,-0.3900560140609741,-0.5301120281219482,0.2927170991897583,0.08263305574655533,-0.37254902720451355,-0.9502801299095154,0.9404761791229248,0.46778711676597595,0.012605042196810246,0.7478991746902466,0.32773110270500183,1.220588207244873,0.5903361439704895,-0.07492997497320175,-0.1974789947271347,0.9754902124404907,1.2030812501907349,1.168067216873169,0.6603641510009766,0.5028011202812195,0.9404761791229248,0.6603641510009766,0.8179271817207336,1.1505602598190308,1.2380952835083008,1.343137264251709,1.4131652116775513,1.430672287940979,1.3606442213058472,1.3606442213058472,1.6232492923736572,1.483193278312683,1.3256303071975708,0.9054622054100037,-0.8277310729026794,-1.5105042457580566,-1.3004201650619507,-1.2128851413726807,-1.0728291273117065,-1.1953781843185425,-1.2654061317443848,-1.1428571939468384,-1.1253501176834106,-1.1253501176834106,-1.3179271221160889,-1.0378150939941406,-1.2303920984268188,-1.0728291273117065,-1.1078431606292725,-1.3004201650619507,-1.0728291273117065,-0.7226890921592712,-1.0728291273117065,-1.0378150939941406,-1.2128851413726807,-1.2478991746902466,-1.1078431606292725,-1.0553221702575684,-1.0903360843658447,-1.1253501176834106,-0.9152660965919495,-1.3179271221160889,-1.1778711080551147,-1.0903360843658447,-0.9852941036224365,-1.0728291273117065,-1.0728291273117065,-1.1603641510009766,-1.1778711080551147,-1.0903360843658447],[-0.26750701665878296,-0.7051820755004883,-1.3879551887512207,-0.8802521228790283,-1.1078431606292725,-1.1253501176834106,-0.9152660965919495,-0.7226890921592712,-0.5651260614395142,-0.37254902720451355,-0.37254902720451355,-0.16246499121189117,-0.17997199296951294,-0.1974789947271347,-0.21498599648475647,-0.25,-0.1449579894542694,-0.37254902720451355,-0.23249299824237823,-0.42507001757621765,-0.3025210201740265,-0.26750701665878296,-0.03991596773266792,-0.3025210201740265,-0.7577030658721924,-0.03991596773266792,-0.5651260614395142,-0.5651260614395142,-0.5126050710678101,-0.7226890921592712,-0.12745098769664764,0.3977591097354889,0.6253501176834106,1.5007002353668213,1.605742335319519,1.7457983493804932,1.6582633256912231,1.8158262968063354,1.7107843160629272,1.7107843160629272,1.7457983493804932,1.4131652116775513,0.9754902124404907,0.7478991746902466,1.518207311630249,1.5007002353668213,1.2906162738800049,1.220588207244873,1.045518159866333,0.7303921580314636,1.483193278312683,1.518207311630249,1.430672287940979,1.220588207244873,0.5203081369400024,0.20518207550048828,1.395658254623413,0.8179271817207336,0.8529411554336548,0.5903361439704895,0.06512605398893356,-0.7752100825309753,0.6078431606292725,0.7478991746902466,0.6428571343421936,-0.5651260614395142,-0.23249299824237823,0.8529411554336548,-0.17997199296951294,-1.2829132080078125,-1.0728291273117065,-1.2654061317443848,-1.580532193183899,-0.9677870869636536,-1.3704482316970825,-1.545518159866333,-2.0357143878936768,-2.018207311630249,-1.965686321258545,-1.0728291273117065,-0.12745098769664764,-0.8802521228790283,0.030112044885754585,-0.6351540684700012,0.2401960790157318,0.3452380895614624,0.6078431606292725,-0.21498599648475647,0.2927170991897583,0.11764705926179886,-1.2829132080078125,-1.8606442213058472,-1.5105042457580566,-1.545518159866333,-1.668067216873169,-1.6855741739273071,-1.4054621458053589,-1.2829132080078125,-1.3704482316970825,-1.0028011798858643,-1.1603641510009766,-1.3704482316970825,-1.4229692220687866,-1.1953781843185425,-1.1078431606292725,-1.2303920984268188,-1.0903360843658447,-1.0028011798858643,-1.0903360843658447,-1.1428571939468384,-1.2478991746902466,-1.0203081369400024,-1.1078431606292725,-0.8102241158485413,-0.9327731132507324,-0.9852941036224365,-0.8452380895614624,-0.9152660965919495,1.605742335319519,2.288515329360962,1.9558823108673096,1.7633053064346313,1.483193278312683,-0.5126050710678101,0.8879551887512207,0.7829131484031677,0.6603641510009766,1.308123230934143,1.0280112028121948,1.518207311630249,1.0105042457580566,2.113445281982422,0.6428571343421936,1.518207311630249,1.395658254623413,1.7107843160629272,0.9579831957817078,1.0105042457580566,1.168067216873169,1.1505602598190308,0.9404761791229248,1.9383753538131714,1.168067216873169,1.465686321258545,1.465686321258545,1.0105042457580566,1.8508403301239014,0.7654061913490295,0.8879551887512207,0.15266107022762299,-0.1449579894542694,0.6778711676597595,-0.23249299824237823,0.9054622054100037,-0.5476190447807312,-0.16246499121189117,1.395658254623413,-0.33753502368927,-1.1253501176834106,0.030112044885754585,1.4481792449951172,0.5728291273117065,1.0105042457580566,-0.1449579894542694,1.2030812501907349,1.168067216873169,0.8354341983795166,0.38025209307670593,1.1855741739273071,1.378151297569275,1.2030812501907349,0.5903361439704895,1.0280112028121948,1.0630252361297607,0.8004201650619507,0.9229691624641418,1.080532193183899,1.080532193183899,1.2380952835083008,1.308123230934143,1.343137264251709,1.378151297569275,1.395658254623413,1.4481792449951172,1.4481792449951172,1.255602240562439,1.3256303071975708,0.6603641510009766,-1.3354341983795166,-1.4229692220687866,-1.545518159866333,-1.4404761791229248,-1.2303920984268188,-1.3704482316970825,-1.0028011798858643,-1.1428571939468384,-1.2128851413726807,-1.0728291273117065,-0.9677870869636536,-1.1778711080551147,-1.1778711080551147,-1.2829132080078125,-1.2478991746902466,-1.1778711080551147,-1.1603641510009766,-1.1253501176834106,-1.0028011798858643,-0.9852941036224365,-0.9502801299095154,-1.0203081369400024,-1.1253501176834106,-1.0553221702575684,-1.2128851413726807,-0.7927170991897583,-0.8977590799331665,-1.0028011798858643,-1.0028011798858643,-1.1078431606292725,-1.3179271221160889,-1.1603641510009766,-1.0203081369400024,-1.1078431606292725,-0.7752100825309753,-0.9852941036224365],[-0.9502801299095154,-0.7401960492134094,-0.8102241158485413,-0.6176470518112183,-0.9152660965919495,-0.32002800703048706,-0.5826330780982971,-0.8627451062202454,-0.6176470518112183,-1.1253501176834106,-0.4075630307197571,-0.8627451062202454,-0.37254902720451355,-0.5476190447807312,-0.5126050710678101,-0.6526610851287842,-0.33753502368927,-0.16246499121189117,-0.7577030658721924,-0.7401960492134094,-0.4600840210914612,-0.8977590799331665,-0.47759103775024414,-0.5476190447807312,-0.5476190447807312,-0.28501400351524353,-0.6176470518112183,-0.6176470518112183,-0.4075630307197571,-0.7752100825309753,-0.26750701665878296,0.5378151535987854,1.2030812501907349,1.4131652116775513,1.8508403301239014,1.8158262968063354,1.7107843160629272,1.7633053064346313,1.6582633256912231,1.518207311630249,1.8158262968063354,1.5007002353668213,1.605742335319519,1.2731091976165771,1.8858543634414673,1.9383753538131714,1.7107843160629272,1.255602240562439,0.7128851413726807,0.7303921580314636,1.6582633256912231,1.8333333730697632,1.168067216873169,1.220588207244873,0.6428571343421936,-0.1974789947271347,0.31022408604621887,0.6253501176834106,0.31022408604621887,0.6603641510009766,0.6428571343421936,-1.0728291273117065,0.8529411554336548,1.0280112028121948,0.17016807198524475,0.22268907725811005,0.1001400575041771,0.8354341983795166,0.5203081369400024,-0.5651260614395142,-0.33753502368927,-0.5301120281219482,-1.3879551887512207,-1.0203081369400024,-0.6176470518112183,-0.6001400351524353,-2.0007002353668213,-1.3004201650619507,-1.3704482316970825,-1.492997169494629,-0.42507001757621765,-1.1953781843185425,-1.668067216873169,0.15266107022762299,-0.16246499121189117,-0.5476190447807312,-1.668067216873169,-1.720588207244873,-1.2654061317443848,0.18767507374286652,-1.7731091976165771,-1.4054621458053589,-1.808123230934143,-1.7030812501907349,-1.3354341983795166,-1.4404761791229248,-1.2829132080078125,-1.3704482316970825,-1.1603641510009766,-1.3879551887512207,-1.0728291273117065,-1.2654061317443848,-1.0553221702575684,-1.1078431606292725,-1.1428571939468384,-1.2478991746902466,-1.0903360843658447,-1.0728291273117065,-1.0378150939941406,-1.0728291273117065,-1.0378150939941406,-1.1953781843185425,-0.8627451062202454,-0.8452380895614624,-0.9327731132507324,-0.8452380895614624,-0.9327731132507324,-0.6526610851287842,2.0259103775024414,1.9383753538131714,2.0084033012390137,1.8333333730697632,1.7983193397521973,0.06512605398893356,1.168067216873169,1.133053183555603,1.4131652116775513,1.378151297569275,1.5707283020019531,1.7107843160629272,1.6757702827453613,1.3606442213058472,1.0980392694473267,1.308123230934143,1.6582633256912231,1.080532193183899,0.5553221106529236,2.1834733486175537,1.255602240562439,0.9929971694946289,1.8858543634414673,2.3060224056243896,0.8004201650619507,1.0980392694473267,1.1505602598190308,0.9054622054100037,0.6428571343421936,0.5203081369400024,0.22268907725811005,-0.7927170991897583,-0.25,0.6953781247138977,0.36274510622024536,1.2030812501907349,0.18767507374286652,1.168067216873169,1.7983193397521973,0.0476190485060215,-1.0728291273117065,1.2906162738800049,0.25770309567451477,1.1155462265014648,-0.02240896411240101,0.5553221106529236,0.450280100107193,1.6232492923736572,0.3452380895614624,0.5028011202812195,0.6778711676597595,1.045518159866333,0.8354341983795166,0.7128851413726807,0.9929971694946289,1.378151297569275,1.2380952835083008,0.8879551887512207,0.9404761791229248,1.0630252361297607,1.133053183555603,1.2380952835083008,1.2906162738800049,1.255602240562439,1.395658254623413,1.5357142686843872,1.3256303071975708,0.9579831957817078,0.8879551887512207,0.46778711676597595,-1.1953781843185425,-1.5630252361297607,-1.2829132080078125,-1.3704482316970825,-1.3354341983795166,-1.2303920984268188,-1.4229692220687866,-1.0378150939941406,-1.1428571939468384,-1.2654061317443848,-1.0903360843658447,-1.2303920984268188,-1.1428571939468384,-1.0903360843658447,-1.1953781843185425,-1.0378150939941406,-0.9327731132507324,-1.2303920984268188,-1.0378150939941406,-1.0903360843658447,-0.9852941036224365,-1.1428571939468384,-0.9677870869636536,-1.1078431606292725,-1.0203081369400024,-0.8977590799331665,-0.9152660965919495,-1.0553221702575684,-0.8627451062202454,-1.2654061317443848,-1.2128851413726807,-1.0028011798858643,-1.0203081369400024,-0.8627451062202454,-1.0378150939941406,-1.0728291273117065],[-0.5126050710678101,-0.7577030658721924,-0.32002800703048706,-0.8802521228790283,-0.28501400351524353,-1.2829132080078125,-1.0378150939941406,-0.7577030658721924,-0.21498599648475647,-0.3900560140609741,-0.1974789947271347,-0.5301120281219482,0.08263305574655533,0.012605042196810246,0.20518207550048828,-0.3550420105457306,-0.33753502368927,-0.3900560140609741,-0.9677870869636536,-0.7401960492134094,-1.5280112028121948,-1.0028011798858643,-1.1253501176834106,-0.9852941036224365,-0.7577030658721924,-0.37254902720451355,-0.7577030658721924,-0.3900560140609741,-0.25,-0.6526610851287842,0.6253501176834106,0.9054622054100037,1.2030812501907349,1.5707283020019531,1.7633053064346313,1.7983193397521973,1.8508403301239014,1.6407562494277954,1.6232492923736572,1.430672287940979,1.6757702827453613,1.7457983493804932,1.8333333730697632,1.780812382698059,1.7457983493804932,1.9033613204956055,1.8683472871780396,1.308123230934143,0.8354341983795166,1.080532193183899,0.5903361439704895,1.605742335319519,1.4131652116775513,1.483193278312683,0.5903361439704895,0.5028011202812195,0.6253501176834106,1.045518159866333,-0.26750701665878296,-0.32002800703048706,-0.02240896411240101,-0.8452380895614624,0.15266107022762299,0.27521008253097534,0.3977591097354889,0.38025209307670593,-1.9481792449951172,-0.37254902720451355,1.0630252361297607,-0.4950980246067047,0.08263305574655533,-1.0903360843658447,-1.1953781843185425,-0.8277310729026794,-1.2829132080078125,-1.930672287940979,-1.9131652116775513,-2.018207311630249,-2.0357143878936768,-2.018207311630249,-1.0378150939941406,-0.9502801299095154,-1.1428571939468384,-0.8977590799331665,-1.0553221702575684,-1.545518159866333,-1.9481792449951172,-2.0357143878936768,-2.018207311630249,-0.8977590799331665,-0.8102241158485413,-1.580532193183899,-1.5105042457580566,-1.8606442213058472,-1.4754902124404907,-1.545518159866333,-1.5630252361297607,-1.1428571939468384,-1.0903360843658447,-1.1953781843185425,-1.0903360843658447,-0.9677870869636536,-1.1253501176834106,-1.0728291273117065,-1.0378150939941406,-0.9152660965919495,-1.0903360843658447,-1.2128851413726807,-0.9152660965919495,-0.8977590799331665,-0.9677870869636536,-1.1253501176834106,-1.0553221702575684,-0.8277310729026794,-0.8277310729026794,-0.7051820755004883,-0.6876750588417053,-0.7752100825309753,2.3585433959960938,0.20518207550048828,0.11764705926179886,2.1484594345092773,1.4131652116775513,-0.5651260614395142,1.553221344947815,0.8354341983795166,0.7128851413726807,0.22268907725811005,1.605742335319519,1.343137264251709,1.2380952835083008,0.8529411554336548,0.6428571343421936,0.5903361439704895,0.6603641510009766,1.5707283020019531,1.220588207244873,2.0084033012390137,1.6757702827453613,1.2906162738800049,1.6582633256912231,1.5707283020019531,1.2906162738800049,0.8529411554336548,1.8158262968063354,1.133053183555603,0.8704481720924377,0.7654061913490295,0.7829131484031677,0.15266107022762299,0.012605042196810246,0.8179271817207336,0.3977591097354889,1.7107843160629272,1.8158262968063354,1.693277359008789,1.8858543634414673,-0.07492997497320175,-0.4950980246067047,0.5903361439704895,0.8879551887512207,1.0980392694473267,1.0630252361297607,0.5378151535987854,1.133053183555603,0.8879551887512207,0.6953781247138977,0.8354341983795166,0.8354341983795166,0.6078431606292725,0.8004201650619507,1.343137264251709,1.1505602598190308,0.7303921580314636,0.8879551887512207,1.133053183555603,1.255602240562439,1.133053183555603,1.308123230934143,1.1505602598190308,1.133053183555603,1.2380952835083008,1.5882352590560913,1.5707283020019531,1.220588207244873,0.8354341983795166,0.8004201650619507,0.06512605398893356,-1.4404761791229248,-1.3879551887512207,-1.3879551887512207,-1.3704482316970825,-1.0553221702575684,-1.2478991746902466,-1.0728291273117065,-0.9327731132507324,-1.0203081369400024,-1.2654061317443848,-1.0903360843658447,-1.1603641510009766,-1.1078431606292725,-1.0028011798858643,-1.0553221702575684,-1.1778711080551147,-1.0903360843658447,-1.2654061317443848,-1.0378150939941406,-1.1778711080551147,-1.1778711080551147,-1.2654061317443848,-0.8977590799331665,-1.3354341983795166,-1.1428571939468384,-1.0553221702575684,-0.8802521228790283,-0.9852941036224365,-0.9152660965919495,-0.8627451062202454,-0.8802521228790283,-0.8452380895614624,-1.1428571939468384,-1.0903360843658447,-1.0028011798858643,-1.1428571939468384],[-0.6351540684700012,-0.5651260614395142,-0.5651260614395142,-0.5476190447807312,-0.6351540684700012,-0.5826330780982971,-0.47759103775024414,-0.7226890921592712,-0.6526610851287842,0.030112044885754585,-0.33753502368927,0.012605042196810246,-0.26750701665878296,0.17016807198524475,-0.26750701665878296,0.08263305574655533,-0.6876750588417053,-0.6351540684700012,-0.9327731132507324,-1.1253501176834106,-1.0378150939941406,-0.7752100825309753,-0.8802521228790283,-0.7226890921592712,-0.4075630307197571,-0.8627451062202454,-1.1078431606292725,-1.2128851413726807,-1.6155462265014648,-0.4425770342350006,0.41526609659194946,0.7829131484031677,1.168067216873169,1.1855741739273071,1.8158262968063354,1.605742335319519,1.378151297569275,1.5707283020019531,1.220588207244873,0.9579831957817078,1.378151297569275,1.6407562494277954,1.7983193397521973,1.9208683967590332,1.8858543634414673,1.6232492923736572,1.8333333730697632,1.6232492923736572,1.0630252361297607,0.38025209307670593,0.6253501176834106,0.6078431606292725,0.8179271817207336,1.2731091976165771,1.2906162738800049,-0.17997199296951294,-0.8627451062202454,0.7829131484031677,0.4327731132507324,-0.5826330780982971,-1.0028011798858643,0.32773110270500183,-0.12745098769664764,0.06512605398893356,-0.12745098769664764,0.5028011202812195,-1.545518159866333,-1.3179271221160889,0.6428571343421936,0.5378151535987854,0.4852941036224365,-0.9327731132507324,-0.9677870869636536,-1.3879551887512207,-0.8102241158485413,-1.3179271221160889,-1.7906162738800049,-2.018207311630249,-1.9481792449951172,-1.6505602598190308,-1.0028011798858643,-0.9502801299095154,-1.720588207244873,-2.018207311630249,-2.018207311630249,-2.0357143878936768,-1.930672287940979,-1.7731091976165771,-0.9852941036224365,0.31022408604621887,0.08263305574655533,-1.6505602598190308,-1.6855741739273071,-1.668067216873169,-1.3879551887512207,-1.3879551887512207,-1.3179271221160889,-1.0203081369400024,-1.0203081369400024,-0.9852941036224365,-1.1253501176834106,-1.2829132080078125,-1.2303920984268188,-1.0903360843658447,-1.0028011798858643,-1.1603641510009766,-1.1078431606292725,-1.0903360843658447,-1.0728291273117065,-1.0203081369400024,-1.0553221702575684,-0.9852941036224365,-1.0378150939941406,-0.7577030658721924,-0.9677870869636536,-0.8277310729026794,-0.8102241158485413,-0.8802521228790283,2.2710084915161133,1.045518159866333,-0.6351540684700012,1.7983193397521973,0.5903361439704895,0.0476190485060215,1.518207311630249,0.0476190485060215,0.4327731132507324,0.030112044885754585,0.7128851413726807,0.4852941036224365,0.6253501176834106,0.3452380895614624,0.15266107022762299,-0.25,0.31022408604621887,1.693277359008789,0.7478991746902466,1.0630252361297607,1.080532193183899,0.9929971694946289,1.0280112028121948,0.8179271817207336,1.2030812501907349,1.395658254623413,1.4131652116775513,2.0259103775024414,0.27521008253097534,0.5203081369400024,0.8354341983795166,1.2030812501907349,2.113445281982422,0.0476190485060215,0.5203081369400024,1.0630252361297607,1.1505602598190308,1.7107843160629272,1.2906162738800049,1.080532193183899,-0.7051820755004883,0.6428571343421936,1.220588207244873,0.9229691624641418,0.11764705926179886,1.045518159866333,1.308123230934143,1.0630252361297607,0.6428571343421936,1.2731091976165771,1.133053183555603,1.430672287940979,1.3606442213058472,0.8179271817207336,1.2906162738800049,0.8704481720924377,1.343137264251709,1.1505602598190308,1.080532193183899,1.2731091976165771,1.168067216873169,1.1855741739273071,1.3256303071975708,1.553221344947815,1.605742335319519,1.5882352590560913,1.2030812501907349,0.7303921580314636,0.8179271817207336,-0.26750701665878296,-1.4404761791229248,-1.492997169494629,-1.1603641510009766,-1.1253501176834106,-1.3879551887512207,-1.0553221702575684,-0.9502801299095154,-1.0553221702575684,-1.1428571939468384,-1.3179271221160889,-1.0378150939941406,-1.1603641510009766,-1.2478991746902466,-1.2654061317443848,-1.0903360843658447,-1.0028011798858643,-0.9327731132507324,-0.9152660965919495,-1.0203081369400024,-1.0203081369400024,-1.2654061317443848,-1.0028011798858643,-1.1778711080551147,-1.1078431606292725,-0.9677870869636536,-0.8277310729026794,-1.1078431606292725,-0.9677870869636536,-0.9327731132507324,-0.8102241158485413,-1.0028011798858643,-1.2303920984268188,-1.1953781843185425,-1.0903360843658447,-1.0028011798858643,-1.1078431606292725],[-0.7226890921592712,-0.6526610851287842,-0.6876750588417053,-0.5651260614395142,-0.21498599648475647,-0.1449579894542694,-0.21498599648475647,-0.5126050710678101,-0.12745098769664764,-0.16246499121189117,-0.05742296949028969,-0.1449579894542694,0.08263305574655533,0.2401960790157318,-0.1449579894542694,0.31022408604621887,-0.1449579894542694,-0.3550420105457306,-0.33753502368927,-0.8802521228790283,-0.9152660965919495,-1.668067216873169,-0.9502801299095154,-1.1253501176834106,-1.0028011798858643,-0.23249299824237823,-0.9152660965919495,-0.8977590799331665,-0.7051820755004883,0.06512605398893356,0.06512605398893356,0.11764705926179886,0.0476190485060215,0.5378151535987854,1.2380952835083008,1.378151297569275,1.4131652116775513,1.5882352590560913,1.1505602598190308,0.6603641510009766,0.8179271817207336,1.395658254623413,1.7457983493804932,1.780812382698059,1.6582633256912231,1.7457983493804932,1.5707283020019531,1.1855741739273071,1.0280112028121948,1.0630252361297607,1.0980392694473267,1.1155462265014648,0.012605042196810246,0.1001400575041771,1.0980392694473267,0.32773110270500183,0.27521008253097534,-0.5301120281219482,0.6603641510009766,-0.5651260614395142,0.1001400575041771,0.13515406847000122,0.36274510622024536,-0.23249299824237823,-1.0728291273117065,0.20518207550048828,0.06512605398893356,-0.5126050710678101,-1.0728291273117065,0.9404761791229248,0.7303921580314636,-0.7401960492134094,-1.0553221702575684,-1.2128851413726807,-1.4754902124404907,-2.0007002353668213,-2.0357143878936768,-2.0007002353668213,-1.3704482316970825,-1.1253501176834106,-1.6155462265014648,-2.0007002353668213,-2.0357143878936768,-2.018207311630249,-1.965686321258545,-2.0357143878936768,-1.3179271221160889,-0.8102241158485413,-0.3900560140609741,-1.2303920984268188,-1.965686321258545,-1.878151297569275,-1.0028011798858643,-1.0378150939941406,-1.1603641510009766,-1.1078431606292725,-1.1253501176834106,-1.2829132080078125,-1.2128851413726807,-1.3529411554336548,-1.1603641510009766,-1.0028011798858643,-1.0553221702575684,-1.1253501176834106,-1.2303920984268188,-1.1253501176834106,-1.0553221702575684,-1.0903360843658447,-1.0028011798858643,-1.1603641510009766,-1.0378150939941406,-1.0378150939941406,-1.1078431606292725,-0.7752100825309753,-0.9152660965919495,-0.9852941036224365,-0.5651260614395142,-0.6876750588417053,2.288515329360962,2.113445281982422,2.4285714626312256,1.7633053064346313,0.5728291273117065,0.31022408604621887,0.3452380895614624,0.22268907725811005,0.5903361439704895,-0.5126050710678101,-0.07492997497320175,0.5728291273117065,0.6953781247138977,0.450280100107193,0.46778711676597595,-0.07492997497320175,0.27521008253097534,0.5728291273117065,0.5728291273117065,1.0105042457580566,0.9404761791229248,0.9229691624641418,0.9754902124404907,1.5357142686843872,0.8704481720924377,1.1855741739273071,1.343137264251709,1.0105042457580566,0.41526609659194946,0.9579831957817078,0.13515406847000122,1.1155462265014648,0.6778711676597595,1.430672287940979,1.255602240562439,1.7107843160629272,1.0630252361297607,0.6953781247138977,1.378151297569275,1.220588207244873,0.41526609659194946,0.6953781247138977,0.8879551887512207,-0.02240896411240101,0.3452380895614624,0.8704481720924377,0.9054622054100037,0.6603641510009766,0.7303921580314636,0.9229691624641418,1.1155462265014648,0.13515406847000122,0.7654061913490295,1.5707283020019531,1.168067216873169,1.308123230934143,0.8879551887512207,1.255602240562439,0.9229691624641418,0.9929971694946289,0.8529411554336548,1.080532193183899,1.343137264251709,1.5007002353668213,1.553221344947815,1.5357142686843872,1.3606442213058472,1.0280112028121948,0.7128851413726807,-0.7577030658721924,-1.2128851413726807,-1.457983136177063,-1.4054621458053589,-1.2128851413726807,-1.2303920984268188,-1.1603641510009766,-1.1078431606292725,-1.3004201650619507,-1.1078431606292725,-1.2829132080078125,-1.2303920984268188,-1.0378150939941406,-0.9152660965919495,-1.0378150939941406,-0.7752100825309753,-1.0203081369400024,-1.0903360843658447,-1.1603641510009766,-1.1078431606292725,-0.8977590799331665,-1.0028011798858643,-1.0903360843658447,-0.9852941036224365,-1.0903360843658447,-0.9852941036224365,-0.9852941036224365,-1.0378150939941406,-0.9677870869636536,-0.9502801299095154,-0.7927170991897583,-0.6351540684700012,-1.0028011798858643,-1.2829132080078125,-1.3004201650619507,-0.9677870869636536,-1.0903360843658447],[-0.8977590799331665,-0.6176470518112183,-0.6526610851287842,-0.4600840210914612,-0.5126050710678101,-0.47759103775024414,-0.5126050710678101,-0.5126050710678101,-0.3550420105457306,-0.4950980246067047,-0.17997199296951294,-0.25,0.15266107022762299,0.25770309567451477,0.6428571343421936,0.22268907725811005,0.08263305574655533,-0.02240896411240101,-0.4950980246067047,-0.5126050710678101,-0.7752100825309753,-0.8977590799331665,-0.5301120281219482,-1.0203081369400024,-0.8277310729026794,-0.47759103775024414,-0.42507001757621765,-0.8277310729026794,-0.7226890921592712,-0.9327731132507324,-0.8802521228790283,-0.7051820755004883,-0.5476190447807312,0.18767507374286652,0.6253501176834106,1.0630252361297607,1.343137264251709,1.430672287940979,1.080532193183899,0.46778711676597595,0.6953781247138977,1.4481792449951172,1.8158262968063354,1.9558823108673096,1.8508403301239014,1.780812382698059,1.5357142686843872,1.3606442213058472,1.220588207244873,0.8704481720924377,0.9579831957817078,0.7303921580314636,0.2927170991897583,0.5728291273117065,0.27521008253097534,0.9579831957817078,0.4327731132507324,0.08263305574655533,-0.47759103775024414,0.030112044885754585,-1.1778711080551147,-0.05742296949028969,0.27521008253097534,-0.26750701665878296,-0.1449579894542694,0.32773110270500183,0.11764705926179886,0.5028011202812195,-1.0028011798858643,-0.4425770342350006,0.5728291273117065,-0.3025210201740265,-1.1253501176834106,-1.2478991746902466,-1.808123230934143,-1.9481792449951172,-1.983193278312683,-2.0007002353668213,-1.7731091976165771,-2.018207311630249,-2.0357143878936768,-2.0357143878936768,-2.018207311630249,-1.983193278312683,-1.0028011798858643,-1.4404761791229248,-0.33753502368927,-0.8627451062202454,-0.9502801299095154,-2.0357143878936768,-2.0007002353668213,-1.5630252361297607,0.1001400575041771,-1.0728291273117065,-1.0728291273117065,-1.3529411554336548,-1.3004201650619507,-1.2303920984268188,-1.0378150939941406,-1.0903360843658447,-1.0203081369400024,-1.0728291273117065,-1.2303920984268188,-1.1078431606292725,-0.9502801299095154,-1.2478991746902466,-1.1603641510009766,-1.1778711080551147,-1.0728291273117065,-1.1428571939468384,-0.8627451062202454,-1.0903360843658447,-0.8627451062202454,-0.8102241158485413,-0.9152660965919495,-0.8627451062202454,-0.7752100825309753,-0.8102241158485413,2.113445281982422,2.1834733486175537,2.3060224056243896,1.7983193397521973,0.8179271817207336,1.045518159866333,0.1001400575041771,0.31022408604621887,0.0476190485060215,-0.32002800703048706,-0.8627451062202454,0.15266107022762299,0.15266107022762299,0.1001400575041771,0.2927170991897583,-0.02240896411240101,0.0476190485060215,0.5553221106529236,1.3606442213058472,0.7128851413726807,0.25770309567451477,0.4852941036224365,0.6428571343421936,0.41526609659194946,0.6078431606292725,0.31022408604621887,0.5728291273117065,0.7128851413726807,0.32773110270500183,0.9404761791229248,1.0105042457580566,0.3452380895614624,-0.47759103775024414,0.7128851413726807,0.8179271817207336,0.8704481720924377,1.693277359008789,0.8879551887512207,1.395658254623413,1.780812382698059,0.6078431606292725,0.36274510622024536,0.36274510622024536,0.5378151535987854,1.4131652116775513,1.4131652116775513,0.8179271817207336,0.5553221106529236,1.2731091976165771,0.27521008253097534,0.5378151535987854,0.5203081369400024,0.6778711676597595,0.5903361439704895,0.5553221106529236,0.36274510622024536,0.5728291273117065,0.6253501176834106,0.8529411554336548,0.9404761791229248,0.8704481720924377,1.2731091976165771,1.4481792449951172,1.465686321258545,1.6582633256912231,1.5707283020019531,1.465686321258545,1.1505602598190308,0.36274510622024536,-0.8627451062202454,-1.3179271221160889,-1.1953781843185425,-1.1953781843185425,-1.3354341983795166,-1.4054621458053589,-1.1253501176834106,-1.1778711080551147,-0.9677870869636536,-1.0203081369400024,-1.0903360843658447,-1.1428571939468384,-1.1603641510009766,-1.2654061317443848,-1.1778711080551147,-0.8977590799331665,-1.1428571939468384,-1.0903360843658447,-1.0203081369400024,-0.9152660965919495,-1.0903360843658447,-1.0203081369400024,-1.1078431606292725,-1.0728291273117065,-0.9152660965919495,-1.0203081369400024,-1.1078431606292725,-1.0028011798858643,-0.9852941036224365,-0.7577030658721924,-0.8452380895614624,-0.7752100825309753,-0.9152660965919495,-1.2478991746902466,-1.1778711080551147,-1.3179271221160889,-1.0378150939941406],[-0.6001400351524353,-0.6876750588417053,-0.7226890921592712,-0.6351540684700012,-0.4075630307197571,-0.3025210201740265,-0.5476190447807312,-0.33753502368927,-0.4950980246067047,0.11764705926179886,-0.21498599648475647,-0.17997199296951294,-0.02240896411240101,0.06512605398893356,0.3452380895614624,0.22268907725811005,0.030112044885754585,-0.42507001757621765,-0.4950980246067047,-0.8977590799331665,-1.0378150939941406,-0.8277310729026794,-0.7226890921592712,-0.5476190447807312,-0.7927170991897583,-0.5826330780982971,-0.26750701665878296,-0.9502801299095154,-0.9327731132507324,-0.33753502368927,0.22268907725811005,0.3977591097354889,0.6428571343421936,0.25770309567451477,0.2927170991897583,1.1855741739273071,1.465686321258545,1.7282912731170654,1.483193278312683,1.168067216873169,0.7128851413726807,1.343137264251709,1.8683472871780396,1.9208683967590332,1.9033613204956055,1.5357142686843872,1.045518159866333,1.308123230934143,1.3606442213058472,0.8004201650619507,0.8879551887512207,0.8529411554336548,1.0980392694473267,0.4852941036224365,-1.5280112028121948,0.8354341983795166,0.6778711676597595,0.36274510622024536,-0.37254902720451355,-0.4600840210914612,-0.5126050710678101,0.18767507374286652,0.13515406847000122,0.06512605398893356,-0.09243697673082352,0.5203081369400024,0.5553221106529236,0.41526609659194946,-0.4075630307197571,-0.9327731132507324,0.46778711676597595,-0.4425770342350006,-0.8802521228790283,-1.3179271221160889,-1.4054621458053589,-1.720588207244873,-1.8256303071975708,-1.3354341983795166,-1.9131652116775513,-2.018207311630249,-2.0357143878936768,-1.983193278312683,-2.0357143878936768,-2.018207311630249,-0.9152660965919495,-1.3529411554336548,-1.3879551887512207,-1.7030812501907349,-1.9481792449951172,-2.0357143878936768,-1.0028011798858643,-0.5651260614395142,-1.755602240562439,-0.1974789947271347,-0.9852941036224365,-1.1778711080551147,-1.1778711080551147,-1.0903360843658447,-1.4229692220687866,-1.1953781843185425,-1.2303920984268188,-1.3004201650619507,-1.0553221702575684,-1.0903360843658447,-1.1953781843185425,-1.0553221702575684,-1.0203081369400024,-1.2128851413726807,-1.3004201650619507,-0.9327731132507324,-1.0728291273117065,-0.9327731132507324,-0.8627451062202454,-0.8452380895614624,-0.9852941036224365,-0.7401960492134094,-0.9152660965919495,-1.1603641510009766,2.39355731010437,1.343137264251709,1.6582633256912231,1.7457983493804932,0.6428571343421936,0.8704481720924377,0.38025209307670593,0.9404761791229248,0.7478991746902466,0.6428571343421936,0.4327731132507324,0.5203081369400024,-0.3025210201740265,-0.1449579894542694,0.17016807198524475,-0.10994397848844528,0.3452380895614624,0.25770309567451477,0.5728291273117065,0.4327731132507324,0.08263305574655533,0.27521008253097534,0.20518207550048828,0.012605042196810246,0.6953781247138977,0.5203081369400024,-0.23249299824237823,-0.09243697673082352,1.0980392694473267,1.255602240562439,0.7654061913490295,1.133053183555603,1.220588207244873,0.5203081369400024,0.7654061913490295,1.3606442213058472,1.308123230934143,1.4481792449951172,1.2906162738800049,1.2030812501907349,1.9383753538131714,0.5728291273117065,0.6953781247138977,0.9929971694946289,1.483193278312683,1.9033613204956055,1.045518159866333,0.9054622054100037,1.780812382698059,0.450280100107193,0.5378151535987854,-0.21498599648475647,0.5028011202812195,0.31022408604621887,0.36274510622024536,0.7128851413726807,0.1001400575041771,0.5203081369400024,1.0105042457580566,1.168067216873169,1.255602240562439,1.2906162738800049,1.5357142686843872,1.5007002353668213,1.518207311630249,1.5882352590560913,1.4481792449951172,0.8704481720924377,-0.21498599648475647,-1.0553221702575684,-1.6155462265014648,-1.2478991746902466,-1.1078431606292725,-1.3529411554336548,-1.1428571939468384,-1.0728291273117065,-1.2654061317443848,-1.2128851413726807,-1.1778711080551147,-1.0728291273117065,-1.1253501176834106,-1.0728291273117065,-0.9677870869636536,-1.0028011798858643,-1.2128851413726807,-1.1778711080551147,-0.9502801299095154,-0.7752100825309753,-0.9502801299095154,-0.9152660965919495,-1.0028011798858643,-0.9152660965919495,-1.0203081369400024,-1.3004201650619507,-0.9677870869636536,-0.9502801299095154,-1.0553221702575684,-0.6876750588417053,-0.9152660965919495,-0.9852941036224365,-0.8102241158485413,-0.5651260614395142,-0.8102241158485413,-1.1603641510009766,-1.2128851413726807,-1.0903360843658447],[-1.0553221702575684,-1.1253501176834106,-0.5126050710678101,-0.5301120281219482,-0.7051820755004883,-0.47759103775024414,-0.23249299824237823,-0.3025210201740265,-0.25,-0.32002800703048706,-0.4075630307197571,-0.1974789947271347,-0.10994397848844528,0.13515406847000122,0.13515406847000122,0.012605042196810246,0.22268907725811005,0.08263305574655533,-0.33753502368927,-0.4425770342350006,-0.6526610851287842,-1.1078431606292725,-0.3550420105457306,-0.33753502368927,-0.23249299824237823,-0.4600840210914612,-1.0203081369400024,-0.8277310729026794,-0.23249299824237823,0.9229691624641418,1.0280112028121948,0.6778711676597595,0.36274510622024536,0.36274510622024536,0.7654061913490295,1.0105042457580566,1.605742335319519,1.693277359008789,1.378151297569275,1.2731091976165771,0.7654061913490295,1.605742335319519,1.9383753538131714,2.043417453765869,1.9733893871307373,1.8508403301239014,1.1505602598190308,0.2927170991897583,0.5728291273117065,1.133053183555603,0.9579831957817078,0.11764705926179886,0.6253501176834106,0.11764705926179886,-1.0378150939941406,0.18767507374286652,0.5028011202812195,0.450280100107193,-0.1974789947271347,-0.6701680421829224,-1.1078431606292725,-0.28501400351524353,0.08263305574655533,0.20518207550048828,0.5203081369400024,-0.0049019609577953815,-0.03991596773266792,-0.25,-0.47759103775024414,0.17016807198524475,0.46778711676597595,0.38025209307670593,-1.1428571939468384,-0.9327731132507324,-1.8606442213058472,-2.0007002353668213,-1.8606442213058472,-1.9131652116775513,-2.018207311630249,-1.983193278312683,-2.0357143878936768,-2.0357143878936768,-1.930672287940979,-1.930672287940979,-1.1253501176834106,-1.5105042457580566,-0.9677870869636536,-2.0007002353668213,-1.7906162738800049,-1.4754902124404907,-2.018207311630249,-1.983193278312683,-1.2654061317443848,-0.03991596773266792,-0.9327731132507324,-0.5126050710678101,-0.5476190447807312,-1.0028011798858643,-1.0903360843658447,-1.3179271221160889,-1.2829132080078125,-1.0903360843658447,-1.1603641510009766,-1.0553221702575684,-1.0378150939941406,-1.2128851413726807,-1.1428571939468384,-1.1428571939468384,-1.0203081369400024,-0.9502801299095154,-1.0378150939941406,-0.8802521228790283,-0.6876750588417053,-1.0203081369400024,-1.0378150939941406,-0.8452380895614624,-0.8802521228790283,-1.2128851413726807,2.0959384441375732,1.395658254623413,1.4131652116775513,2.0259103775024414,1.0105042457580566,0.6428571343421936,1.2030812501907349,1.0980392694473267,0.9579831957817078,-0.03991596773266792,0.27521008253097534,0.6253501176834106,0.6778711676597595,0.5378151535987854,-0.02240896411240101,-0.12745098769664764,0.6253501176834106,0.7303921580314636,-0.0049019609577953815,0.5203081369400024,0.41526609659194946,0.030112044885754585,0.7303921580314636,0.5903361439704895,1.2380952835083008,-0.3025210201740265,-0.28501400351524353,-0.47759103775024414,0.08263305574655533,0.11764705926179886,0.6253501176834106,1.378151297569275,2.0259103775024414,0.38025209307670593,1.133053183555603,0.6078431606292725,0.5028011202812195,1.2380952835083008,1.343137264251709,1.6232492923736572,0.9754902124404907,0.5378151535987854,1.1155462265014648,0.8179271817207336,0.6953781247138977,1.430672287940979,0.4852941036224365,0.7829131484031677,0.17016807198524475,0.6778711676597595,-0.03991596773266792,0.15266107022762299,0.2927170991897583,-0.16246499121189117,-0.0049019609577953815,-0.16246499121189117,0.0476190485060215,0.7829131484031677,1.080532193183899,1.133053183555603,1.133053183555603,1.343137264251709,1.3606442213058472,1.395658254623413,1.5007002353668213,1.5007002353668213,1.308123230934143,0.5028011202812195,-0.7051820755004883,-1.492997169494629,-1.3879551887512207,-1.3529411554336548,-1.3879551887512207,-1.0903360843658447,-1.2303920984268188,-1.0553221702575684,-1.1253501176834106,-1.0203081369400024,-0.9152660965919495,-1.0378150939941406,-0.8627451062202454,-1.1953781843185425,-1.0378150939941406,-1.0903360843658447,-1.0903360843658447,-1.0378150939941406,-1.0728291273117065,-1.2128851413726807,-1.2654061317443848,-0.9852941036224365,-0.9852941036224365,-0.9502801299095154,-0.9502801299095154,-1.1428571939468384,-0.7226890921592712,-1.0553221702575684,-0.7752100825309753,-1.0203081369400024,-0.8277310729026794,-1.0378150939941406,-0.8102241158485413,-0.8977590799331665,-0.5476190447807312,-1.0028011798858643,-1.1603641510009766,-1.2128851413726807],[-0.8977590799331665,-0.8102241158485413,-0.5476190447807312,-0.5301120281219482,-0.6351540684700012,-0.21498599648475647,-0.32002800703048706,-0.37254902720451355,-0.12745098769664764,-0.23249299824237823,-0.1449579894542694,-0.16246499121189117,0.012605042196810246,-0.03991596773266792,0.2401960790157318,0.11764705926179886,0.08263305574655533,-0.17997199296951294,-0.21498599648475647,-0.33753502368927,-0.8802521228790283,-0.8627451062202454,-0.8102241158485413,-0.6001400351524353,-0.5301120281219482,-1.0028011798858643,-0.6351540684700012,0.32773110270500183,1.080532193183899,1.5007002353668213,1.605742335319519,1.5707283020019531,1.3256303071975708,1.3606442213058472,0.9754902124404907,1.0980392694473267,1.6407562494277954,1.8858543634414673,1.5882352590560913,1.5007002353668213,1.220588207244873,1.2731091976165771,1.7983193397521973,2.043417453765869,1.9558823108673096,1.9908963441848755,1.6407562494277954,0.36274510622024536,0.11764705926179886,0.38025209307670593,0.450280100107193,0.9404761791229248,0.6603641510009766,0.22268907725811005,-1.0553221702575684,-1.8256303071975708,-0.5651260614395142,0.6428571343421936,0.13515406847000122,0.012605042196810246,-0.3900560140609741,0.15266107022762299,0.36274510622024536,0.4852941036224365,0.2927170991897583,-0.32002800703048706,-0.03991596773266792,-0.17997199296951294,-0.3550420105457306,0.9929971694946289,0.6253501176834106,0.13515406847000122,-0.6701680421829224,-1.2654061317443848,-1.983193278312683,-2.018207311630249,-2.0357143878936768,-2.0007002353668213,-1.755602240562439,-2.0007002353668213,-2.018207311630249,-2.018207311630249,-2.0007002353668213,-1.3704482316970825,-0.7401960492134094,-0.7577030658721924,-1.7906162738800049,-1.5105042457580566,-1.2478991746902466,-2.0007002353668213,-2.0357143878936768,-2.0357143878936768,-0.8277310729026794,-0.5476190447807312,-1.7731091976165771,-0.9852941036224365,0.012605042196810246,-0.23249299824237823,-0.8627451062202454,-0.6876750588417053,-1.0728291273117065,-1.2829132080078125,-1.2128851413726807,-1.0378150939941406,-1.1953781843185425,-0.9677870869636536,-1.1778711080551147,-1.1428571939468384,-1.1778711080551147,-1.3529411554336548,-1.3354341983795166,-1.0903360843658447,-1.1078431606292725,-0.8452380895614624,-0.8102241158485413,-0.5826330780982971,-0.7927170991897583,-1.4404761791229248,2.0259103775024414,1.9208683967590332,2.3235294818878174,-0.33753502368927,0.450280100107193,0.41526609659194946,0.6078431606292725,0.5728291273117065,0.6428571343421936,-0.37254902720451355,0.2927170991897583,0.7654061913490295,0.2927170991897583,0.31022408604621887,0.08263305574655533,-0.5126050710678101,-0.37254902720451355,0.5728291273117065,0.2927170991897583,1.2030812501907349,0.4852941036224365,-0.05742296949028969,0.9929971694946289,-0.3900560140609741,1.080532193183899,0.5028011202812195,0.1001400575041771,0.3452380895614624,-0.5126050710678101,-0.07492997497320175,0.450280100107193,0.3452380895614624,1.1855741739273071,-0.1974789947271347,2.0609242916107178,1.6582633256912231,1.308123230934143,1.0280112028121948,2.1484594345092773,1.378151297569275,1.0980392694473267,0.06512605398893356,0.6953781247138977,-0.07492997497320175,0.22268907725811005,-0.03991596773266792,0.31022408604621887,1.0630252361297607,0.030112044885754585,0.17016807198524475,0.6603641510009766,-0.3025210201740265,0.7654061913490295,0.2401960790157318,0.0476190485060215,-0.23249299824237823,0.6603641510009766,0.6603641510009766,1.1155462265014648,1.1505602598190308,0.9929971694946289,1.045518159866333,1.378151297569275,1.378151297569275,1.483193278312683,1.395658254623413,1.045518159866333,0.1001400575041771,-0.7752100825309753,-1.4054621458053589,-1.3529411554336548,-1.2829132080078125,-1.1603641510009766,-1.2654061317443848,-0.9327731132507324,-1.1428571939468384,-1.1253501176834106,-1.0203081369400024,-1.1078431606292725,-1.2654061317443848,-1.1778711080551147,-1.1428571939468384,-1.1078431606292725,-1.1428571939468384,-1.0028011798858643,-1.0553221702575684,-1.2829132080078125,-0.6176470518112183,-1.1253501176834106,-0.9677870869636536,-0.8802521228790283,-0.8277310729026794,-0.8977590799331665,-0.8627451062202454,-1.1078431606292725,-1.0553221702575684,-1.0203081369400024,-0.8627451062202454,-1.0028011798858643,-0.9677870869636536,-0.9677870869636536,-0.8277310729026794,-0.7927170991897583,-0.8102241158485413,-0.9852941036224365,-1.3179271221160889],[-0.7752100825309753,-0.8977590799331665,-0.6701680421829224,-0.6351540684700012,-0.5126050710678101,-0.6526610851287842,-0.5476190447807312,-0.7577030658721924,-0.16246499121189117,-0.02240896411240101,-0.17997199296951294,0.18767507374286652,-0.07492997497320175,-0.17997199296951294,0.22268907725811005,0.2401960790157318,-0.09243697673082352,-0.10994397848844528,-0.10994397848844528,-0.28501400351524353,-0.33753502368927,-0.23249299824237823,-0.7051820755004883,-0.3025210201740265,-0.21498599648475647,-0.4600840210914612,-0.7401960492134094,0.9579831957817078,0.9404761791229248,1.465686321258545,1.9383753538131714,1.693277359008789,1.5882352590560913,1.7282912731170654,1.7107843160629272,1.6232492923736572,1.6582633256912231,1.7282912731170654,1.553221344947815,1.6582633256912231,1.6232492923736572,1.9208683967590332,2.043417453765869,2.043417453765869,1.9908963441848755,1.780812382698059,1.6232492923736572,1.3256303071975708,0.06512605398893356,0.5203081369400024,0.3977591097354889,0.450280100107193,-0.10994397848844528,-0.4600840210914612,-0.12745098769664764,-0.9502801299095154,-1.7380952835083008,-0.1974789947271347,0.36274510622024536,0.030112044885754585,-0.9327731132507324,-0.3025210201740265,-0.21498599648475647,-0.17997199296951294,-0.4425770342350006,-0.37254902720451355,0.8179271817207336,-0.12745098769664764,-0.4425770342350006,0.450280100107193,0.9579831957817078,-0.02240896411240101,-0.33753502368927,-1.3179271221160889,-2.018207311630249,-2.018207311630249,-2.0357143878936768,-2.0007002353668213,-1.7731091976165771,-1.7731091976165771,-2.0357143878936768,-2.0357143878936768,-1.7030812501907349,-1.983193278312683,-0.42507001757621765,-0.8802521228790283,-1.3004201650619507,-1.0378150939941406,-2.018207311630249,-2.0357143878936768,-1.965686321258545,-1.7380952835083008,-1.1428571939468384,-0.7927170991897583,-1.6505602598190308,-1.492997169494629,-1.457983136177063,-1.4229692220687866,-0.16246499121189117,-0.03991596773266792,-0.42507001757621765,-1.0728291273117065,-1.0728291273117065,-1.0378150939941406,-1.2654061317443848,-0.9152660965919495,-1.1078431606292725,-1.0553221702575684,-1.0378150939941406,-1.1953781843185425,-1.0903360843658447,-0.9677870869636536,-0.8802521228790283,-0.7577030658721924,-0.8977590799331665,-0.6701680421829224,-0.6176470518112183,-0.8102241158485413,2.0259103775024414,2.2535014152526855,1.430672287940979,-0.47759103775024414,0.8179271817207336,0.6428571343421936,0.6603641510009766,-0.4075630307197571,0.41526609659194946,0.08263305574655533,0.13515406847000122,0.450280100107193,0.2927170991897583,0.22268907725811005,0.8354341983795166,0.1001400575041771,0.15266107022762299,2.235994338989258,1.0630252361297607,0.18767507374286652,0.46778711676597595,-0.4600840210914612,-0.02240896411240101,-0.4950980246067047,0.450280100107193,-0.3550420105457306,0.32773110270500183,1.045518159866333,-0.33753502368927,0.31022408604621887,0.5553221106529236,1.308123230934143,1.0280112028121948,0.6078431606292725,1.2030812501907349,1.2906162738800049,0.7654061913490295,0.5028011202812195,1.9033613204956055,0.06512605398893356,1.5882352590560913,0.11764705926179886,0.450280100107193,-0.9677870869636536,0.5378151535987854,0.13515406847000122,0.8529411554336548,0.3977591097354889,1.0105042457580566,-0.12745098769664764,0.6778711676597595,-0.42507001757621765,-0.33753502368927,0.11764705926179886,0.25770309567451477,0.5028011202812195,0.5728291273117065,0.8529411554336548,1.255602240562439,1.080532193183899,0.8529411554336548,0.41526609659194946,1.0630252361297607,1.2380952835083008,1.255602240562439,0.8354341983795166,0.3452380895614624,-0.4425770342350006,-1.0028011798858643,-1.6855741739273071,-1.492997169494629,-1.1253501176834106,-1.0028011798858643,-1.3354341983795166,-1.1953781843185425,-0.9852941036224365,-1.0028011798858643,-1.0203081369400024,-1.2654061317443848,-1.1253501176834106,-1.2303920984268188,-1.1078431606292725,-1.2128851413726807,-1.2128851413726807,-1.0903360843658447,-1.1603641510009766,-1.1428571939468384,-1.0903360843658447,-1.1078431606292725,-1.0553221702575684,-0.7226890921592712,-1.0028011798858643,-1.0903360843658447,-0.9152660965919495,-1.1603641510009766,-0.9327731132507324,-0.6876750588417053,-0.9852941036224365,-0.8802521228790283,-1.0553221702575684,-0.9677870869636536,-0.9152660965919495,-0.8102241158485413,-0.6526610851287842,-0.7752100825309753,-1.0553221702575684],[-0.6351540684700012,-0.8452380895614624,-0.42507001757621765,-0.8452380895614624,-0.7752100825309753,-0.32002800703048706,-0.7752100825309753,-0.4600840210914612,-0.21498599648475647,-0.28501400351524353,-0.0049019609577953815,-0.4600840210914612,-0.42507001757621765,-0.12745098769664764,0.20518207550048828,0.0476190485060215,0.012605042196810246,-0.26750701665878296,0.25770309567451477,0.17016807198524475,-0.17997199296951294,-0.8802521228790283,-0.7401960492134094,-0.3900560140609741,-0.9502801299095154,-0.28501400351524353,-0.12745098769664764,0.06512605398893356,0.6428571343421936,1.780812382698059,1.7457983493804932,1.9033613204956055,1.6407562494277954,1.8858543634414673,1.7107843160629272,1.8858543634414673,1.5707283020019531,1.518207311630249,1.7457983493804932,1.693277359008789,1.9208683967590332,2.0259103775024414,2.0259103775024414,2.0084033012390137,1.7983193397521973,1.395658254623413,1.255602240562439,1.080532193183899,0.6253501176834106,0.31022408604621887,0.0476190485060215,1.045518159866333,0.38025209307670593,-0.26750701665878296,0.08263305574655533,-0.33753502368927,-0.7577030658721924,-0.9327731132507324,-0.05742296949028969,-0.1449579894542694,-0.4950980246067047,-0.6526610851287842,-0.9677870869636536,-1.843137264251709,-0.4075630307197571,-0.07492997497320175,1.080532193183899,0.32773110270500183,0.5728291273117065,-0.4950980246067047,0.5203081369400024,-0.23249299824237823,-0.4600840210914612,-1.4754902124404907,-1.7380952835083008,-2.0357143878936768,-2.0007002353668213,-1.983193278312683,-1.965686321258545,-2.0007002353668213,-1.843137264251709,-2.018207311630249,-1.1953781843185425,0.3452380895614624,-1.668067216873169,-0.7752100825309753,-0.17997199296951294,-1.878151297569275,-2.018207311630249,-2.018207311630249,-1.2829132080078125,-1.0203081369400024,-0.9502801299095154,-1.4754902124404907,-1.457983136177063,-1.633053183555603,-1.7030812501907349,-2.0357143878936768,-0.3900560140609741,-0.7752100825309753,-0.6876750588417053,-1.0378150939941406,-1.2829132080078125,-1.3004201650619507,-1.1253501176834106,-0.9152660965919495,-1.3179271221160889,-0.9677870869636536,-1.0378150939941406,-0.9852941036224365,-1.1428571939468384,-0.9677870869636536,-0.8627451062202454,-0.7752100825309753,-0.9852941036224365,-0.7051820755004883,-0.8802521228790283,0.2401960790157318,2.4285714626312256,1.8333333730697632,2.2710084915161133,1.9733893871307373,0.7303921580314636,0.7303921580314636,0.41526609659194946,-0.32002800703048706,0.4852941036224365,0.31022408604621887,0.5728291273117065,0.25770309567451477,0.5028011202812195,0.7654061913490295,0.9579831957817078,0.6603641510009766,0.8004201650619507,0.8004201650619507,1.780812382698059,2.0259103775024414,1.7983193397521973,0.6953781247138977,-0.21498599648475647,-0.12745098769664764,1.220588207244873,-0.03991596773266792,0.5378151535987854,1.343137264251709,-0.33753502368927,-0.9152660965919495,0.46778711676597595,0.6603641510009766,1.133053183555603,0.450280100107193,0.9754902124404907,1.2906162738800049,0.31022408604621887,0.8004201650619507,-0.07492997497320175,0.41526609659194946,1.0280112028121948,0.20518207550048828,0.7478991746902466,-0.6526610851287842,-1.0378150939941406,0.15266107022762299,0.41526609659194946,1.080532193183899,0.3452380895614624,1.168067216873169,-0.32002800703048706,-0.05742296949028969,-0.8627451062202454,-0.8102241158485413,-0.42507001757621765,0.3977591097354889,0.7303921580314636,0.9929971694946289,1.255602240562439,0.8879551887512207,0.4852941036224365,0.5903361439704895,0.8704481720924377,1.080532193183899,0.9579831957817078,0.46778711676597595,-0.32002800703048706,-0.9502801299095154,-1.1953781843185425,-1.4054621458053589,-1.4054621458053589,-1.2478991746902466,-1.0728291273117065,-0.9502801299095154,-1.1428571939468384,-1.2303920984268188,-1.1778711080551147,-1.2478991746902466,-1.4054621458053589,-1.1428571939468384,-1.0378150939941406,-1.2303920984268188,-1.0203081369400024,-1.0728291273117065,-1.0903360843658447,-0.9852941036224365,-1.1253501176834106,-0.9677870869636536,-1.0728291273117065,-0.9852941036224365,-1.2654061317443848,-1.2128851413726807,-0.9677870869636536,-1.1603641510009766,-0.9677870869636536,-0.9152660965919495,-0.8802521228790283,-0.8277310729026794,-0.9327731132507324,-0.9852941036224365,-0.9152660965919495,-0.9502801299095154,-1.0378150939941406,-0.9502801299095154,-0.5651260614395142,-0.7577030658721924],[-1.1778711080551147,-0.7051820755004883,-0.6176470518112183,-0.5126050710678101,-0.7577030658721924,-1.0203081369400024,-0.47759103775024414,-0.21498599648475647,-0.1974789947271347,-0.47759103775024414,0.0476190485060215,-0.07492997497320175,-0.0049019609577953815,0.13515406847000122,-0.10994397848844528,-0.07492997497320175,0.25770309567451477,-0.03991596773266792,-0.1974789947271347,-0.12745098769664764,-0.3025210201740265,-0.7577030658721924,-0.4425770342350006,-0.7051820755004883,-0.7401960492134094,-0.5476190447807312,0.13515406847000122,-1.0728291273117065,1.220588207244873,1.465686321258545,1.6757702827453613,1.7107843160629272,1.8158262968063354,1.693277359008789,1.8858543634414673,1.8158262968063354,1.8858543634414673,1.8683472871780396,1.8858543634414673,1.8158262968063354,1.9908963441848755,1.9908963441848755,1.9558823108673096,1.780812382698059,1.6232492923736572,1.2906162738800049,1.343137264251709,0.7829131484031677,0.7829131484031677,0.32773110270500183,1.0105042457580566,0.7478991746902466,0.030112044885754585,0.8529411554336548,0.18767507374286652,0.11764705926179886,-0.5651260614395142,-0.7577030658721924,-0.33753502368927,-0.16246499121189117,0.030112044885754585,-0.7226890921592712,-1.1603641510009766,-1.4229692220687866,0.0476190485060215,-0.1449579894542694,0.4852941036224365,0.5378151535987854,0.7829131484031677,0.012605042196810246,-0.7051820755004883,0.5378151535987854,-0.7577030658721924,-1.7731091976165771,-2.0357143878936768,-2.0007002353668213,-2.018207311630249,-2.018207311630249,-1.983193278312683,-2.0007002353668213,-2.018207311630249,-2.0007002353668213,-2.0007002353668213,-1.878151297569275,0.4327731132507324,-0.6701680421829224,-0.7927170991897583,-2.0357143878936768,-1.983193278312683,-1.720588207244873,-1.0553221702575684,-0.5476190447807312,-1.0728291273117065,-0.47759103775024414,-1.1778711080551147,-1.3879551887512207,-2.018207311630249,-2.018207311630249,-0.6176470518112183,-1.0728291273117065,-0.7226890921592712,-1.0553221702575684,-0.9152660965919495,-1.0378150939941406,-1.2654061317443848,-1.2478991746902466,-1.3529411554336548,-1.0028011798858643,-1.2128851413726807,-1.0903360843658447,-1.0903360843658447,-1.0203081369400024,-1.1253501176834106,-1.0378150939941406,-1.0553221702575684,-0.8277310729026794,-0.8277310729026794,1.780812382698059,1.8858543634414673,-0.6176470518112183,2.113445281982422,1.8158262968063354,0.8354341983795166,-0.07492997497320175,0.17016807198524475,-0.10994397848844528,0.7128851413726807,0.15266107022762299,0.08263305574655533,1.5007002353668213,0.9054622054100037,0.6778711676597595,0.3452380895614624,0.9054622054100037,0.9054622054100037,0.5203081369400024,1.378151297569275,0.8354341983795166,0.8879551887512207,0.5378151535987854,0.8004201650619507,-0.05742296949028969,0.31022408604621887,0.3452380895614624,1.395658254623413,1.2030812501907349,0.2927170991897583,0.3977591097354889,0.36274510622024536,0.6953781247138977,0.31022408604621887,1.080532193183899,0.1001400575041771,-0.28501400351524353,-0.07492997497320175,0.22268907725811005,1.0980392694473267,1.465686321258545,1.1505602598190308,-0.12745098769664764,1.378151297569275,0.17016807198524475,0.012605042196810246,0.06512605398893356,0.4852941036224365,0.5378151535987854,0.2401960790157318,-0.23249299824237823,-1.5980392694473267,-0.9327731132507324,0.13515406847000122,0.38025209307670593,0.5028011202812195,0.9054622054100037,0.9404761791229248,1.1505602598190308,0.9404761791229248,0.8704481720924377,0.3977591097354889,0.7829131484031677,0.9579831957817078,0.8179271817207336,0.7478991746902466,0.5553221106529236,-0.3550420105457306,-0.7752100825309753,-1.492997169494629,-1.457983136177063,-1.3179271221160889,-1.3879551887512207,-1.4754902124404907,-1.3354341983795166,-1.2478991746902466,-1.3354341983795166,-1.2303920984268188,-1.2128851413726807,-0.9502801299095154,-1.1778711080551147,-1.2829132080078125,-1.2128851413726807,-0.9852941036224365,-1.1253501176834106,-1.0203081369400024,-1.2303920984268188,-0.9152660965919495,-0.8802521228790283,-1.0203081369400024,-1.1253501176834106,-0.7927170991897583,-0.9152660965919495,-0.9677870869636536,-0.9852941036224365,-0.9677870869636536,-0.9327731132507324,-0.8977590799331665,-0.9327731132507324,-0.8277310729026794,-1.1428571939468384,-1.1953781843185425,-0.8102241158485413,-0.7577030658721924,-0.7401960492134094,-0.8627451062202454,-0.7051820755004883],[-0.6876750588417053,-0.7401960492134094,-0.6001400351524353,-0.5651260614395142,-0.8627451062202454,-0.8277310729026794,-0.42507001757621765,-0.3900560140609741,-0.23249299824237823,0.06512605398893356,-0.37254902720451355,-0.26750701665878296,-0.05742296949028969,-0.33753502368927,-0.10994397848844528,0.11764705926179886,-0.12745098769664764,-0.0049019609577953815,0.012605042196810246,-0.16246499121189117,-0.6351540684700012,-0.03991596773266792,-0.8627451062202454,-0.9852941036224365,-1.0028011798858643,0.06512605398893356,-0.16246499121189117,0.3452380895614624,1.045518159866333,1.6582633256912231,1.7457983493804932,1.7282912731170654,1.693277359008789,1.7633053064346313,1.553221344947815,1.7983193397521973,1.5882352590560913,1.6582633256912231,1.483193278312683,1.7107843160629272,1.9033613204956055,1.7983193397521973,1.9908963441848755,1.9383753538131714,1.693277359008789,1.5707283020019531,1.0105042457580566,0.6253501176834106,0.7303921580314636,0.5553221106529236,0.17016807198524475,0.7128851413726807,0.5553221106529236,0.2401960790157318,-0.4425770342350006,-0.4600840210914612,-0.17997199296951294,-1.3004201650619507,-0.8102241158485413,-0.26750701665878296,-0.5476190447807312,-0.5826330780982971,-0.8452380895614624,-0.8452380895614624,-0.9852941036224365,0.27521008253097534,0.31022408604621887,-0.3900560140609741,0.46778711676597595,0.7829131484031677,-0.4600840210914612,0.6253501176834106,-0.9502801299095154,-1.3879551887512207,-2.0007002353668213,-1.965686321258545,-1.983193278312683,-1.9131652116775513,-1.5980392694473267,-2.018207311630249,-1.755602240562439,-1.545518159866333,-0.6176470518112183,-1.895658254623413,-1.7030812501907349,-1.6855741739273071,-1.9481792449951172,-2.0357143878936768,-2.018207311630249,-0.26750701665878296,-1.1778711080551147,-0.26750701665878296,-1.7906162738800049,-1.1603641510009766,-1.1778711080551147,-1.3529411554336548,-1.965686321258545,-1.9481792449951172,-0.9677870869636536,-1.4404761791229248,-0.8802521228790283,-0.25,-0.7401960492134094,-1.3179271221160889,-1.0378150939941406,-1.0903360843658447,-1.2303920984268188,-1.1428571939468384,-1.1953781843185425,-1.0203081369400024,-1.0203081369400024,-1.1428571939468384,-1.0728291273117065,-0.9677870869636536,-0.9152660965919495,-0.9327731132507324,-0.9502801299095154,2.4285714626312256,2.0959384441375732,2.4285714626312256,1.7282912731170654,1.9208683967590332,-0.3550420105457306,0.6428571343421936,0.38025209307670593,0.2927170991897583,0.6078431606292725,0.3452380895614624,1.1505602598190308,1.518207311630249,0.6953781247138977,0.7303921580314636,0.22268907725811005,0.22268907725811005,1.2906162738800049,0.5028011202812195,0.9754902124404907,0.9929971694946289,0.5028011202812195,0.36274510622024536,0.17016807198524475,0.17016807198524475,0.8879551887512207,0.18767507374286652,1.168067216873169,0.2927170991897583,0.8704481720924377,0.7829131484031677,1.045518159866333,0.450280100107193,-0.17997199296951294,0.2401960790157318,-0.10994397848844528,-0.3900560140609741,-0.07492997497320175,0.36274510622024536,1.255602240562439,1.168067216873169,1.0105042457580566,1.3606442213058472,0.0476190485060215,1.553221344947815,-0.28501400351524353,0.012605042196810246,0.5728291273117065,0.3977591097354889,0.012605042196810246,0.3452380895614624,1.0280112028121948,-1.0028011798858643,-0.7752100825309753,-0.10994397848844528,1.0105042457580566,0.5903361439704895,0.9404761791229248,0.9404761791229248,1.0105042457580566,0.7303921580314636,0.7128851413726807,0.8179271817207336,1.1855741739273071,0.9229691624641418,0.6603641510009766,0.08263305574655533,-0.6351540684700012,-0.9327731132507324,-0.9677870869636536,-1.545518159866333,-1.3179271221160889,-1.3004201650619507,-1.1603641510009766,-1.1778711080551147,-1.2654061317443848,-1.0553221702575684,-1.0378150939941406,-1.3354341983795166,-1.3004201650619507,-1.2303920984268188,-1.1253501176834106,-1.0028011798858643,-1.0378150939941406,-1.0378150939941406,-1.0728291273117065,-0.9852941036224365,-1.1603641510009766,-0.9852941036224365,-1.0903360843658447,-0.9677870869636536,-0.8977590799331665,-0.8627451062202454,-0.9677870869636536,-0.9502801299095154,-0.8277310729026794,-0.7577030658721924,-0.9327731132507324,-0.8977590799331665,-1.0378150939941406,-0.8277310729026794,-0.8977590799331665,-1.0028011798858643,-1.0728291273117065,-0.9327731132507324,-0.8452380895614624,-0.8277310729026794],[-0.6701680421829224,-0.8277310729026794,-0.6176470518112183,-0.7401960492134094,-0.3900560140609741,-0.6351540684700012,-0.8802521228790283,-0.8277310729026794,-0.5476190447807312,-0.5301120281219482,-0.03991596773266792,0.1001400575041771,-0.0049019609577953815,0.1001400575041771,-0.1974789947271347,-0.03991596773266792,-0.05742296949028969,0.06512605398893356,-0.3025210201740265,-0.4075630307197571,-0.7051820755004883,-0.4425770342350006,-0.6351540684700012,-1.0203081369400024,-0.4600840210914612,-0.16246499121189117,-0.23249299824237823,0.27521008253097534,0.8704481720924377,0.9579831957817078,1.483193278312683,1.605742335319519,1.6232492923736572,1.3606442213058472,1.553221344947815,1.7457983493804932,1.465686321258545,1.378151297569275,1.3256303071975708,1.3606442213058472,1.7282912731170654,1.693277359008789,1.9558823108673096,1.9033613204956055,1.9383753538131714,1.5357142686843872,0.9929971694946289,0.46778711676597595,-0.21498599648475647,0.8879551887512207,1.1155462265014648,-0.32002800703048706,0.012605042196810246,0.4852941036224365,0.13515406847000122,-0.47759103775024414,-1.3179271221160889,-1.3529411554336548,-1.1953781843185425,-0.5651260614395142,0.2927170991897583,0.06512605398893356,0.030112044885754585,-0.5301120281219482,-0.8452380895614624,0.3977591097354889,0.4852941036224365,0.1001400575041771,0.46778711676597595,0.18767507374286652,-0.5826330780982971,0.11764705926179886,-0.16246499121189117,-0.9677870869636536,-1.3179271221160889,-2.018207311630249,-2.0007002353668213,-1.720588207244873,-1.965686321258545,-1.9131652116775513,-1.6155462265014648,-2.018207311630249,-1.580532193183899,-1.3354341983795166,-0.6176470518112183,-1.983193278312683,-1.895658254623413,-1.9131652116775513,-0.47759103775024414,-0.7401960492134094,0.5028011202812195,-1.6155462265014648,-0.7927170991897583,0.25770309567451477,0.0476190485060215,-2.0357143878936768,-2.018207311630249,-1.720588207244873,-0.3025210201740265,-0.6526610851287842,-1.1078431606292725,-0.1974789947271347,-0.8102241158485413,-1.1778711080551147,-1.0903360843658447,-1.0728291273117065,-1.2654061317443848,-1.0903360843658447,-1.0728291273117065,-1.1078431606292725,-1.0553221702575684,-1.0903360843658447,-0.9852941036224365,-0.9152660965919495,-0.7752100825309753,-0.8452380895614624,-0.6876750588417053,2.39355731010437,2.39355731010437,0.22268907725811005,1.5007002353668213,1.1155462265014648,-0.37254902720451355,0.20518207550048828,0.38025209307670593,0.4327731132507324,0.06512605398893356,1.1505602598190308,0.8704481720924377,0.7829131484031677,0.4327731132507324,1.045518159866333,1.0630252361297607,0.46778711676597595,0.9054622054100037,0.3977591097354889,1.553221344947815,0.8879551887512207,1.1505602598190308,0.22268907725811005,0.6078431606292725,0.3452380895614624,0.5728291273117065,1.1855741739273071,1.465686321258545,0.25770309567451477,1.2731091976165771,0.5378151535987854,1.0105042457580566,-0.10994397848844528,0.9929971694946289,0.17016807198524475,0.7303921580314636,-1.1778711080551147,0.7303921580314636,-0.7401960492134094,0.8704481720924377,0.4327731132507324,0.46778711676597595,1.483193278312683,1.1155462265014648,-0.32002800703048706,-0.12745098769664764,1.395658254623413,0.20518207550048828,0.32773110270500183,0.012605042196810246,0.3977591097354889,0.2401960790157318,0.6253501176834106,0.06512605398893356,0.6428571343421936,1.1155462265014648,1.1505602598190308,0.9579831957817078,0.8879551887512207,0.8879551887512207,0.8704481720924377,0.6078431606292725,0.9229691624641418,1.0105042457580566,1.0630252361297607,0.13515406847000122,-0.0049019609577953815,-0.7051820755004883,-0.9677870869636536,-1.5105042457580566,-1.3179271221160889,-1.2829132080078125,-1.3879551887512207,-1.2829132080078125,-1.0903360843658447,-1.1078431606292725,-1.1428571939468384,-1.0378150939941406,-1.1603641510009766,-0.9502801299095154,-0.8977590799331665,-0.9152660965919495,-1.2128851413726807,-1.1253501176834106,-1.0028011798858643,-1.0028011798858643,-0.7577030658721924,-0.9502801299095154,-1.2478991746902466,-0.8977590799331665,-0.9502801299095154,-1.0028011798858643,-0.9852941036224365,-0.9152660965919495,-0.8802521228790283,-0.9677870869636536,-0.9152660965919495,-0.8452380895614624,-0.9152660965919495,-0.7577030658721924,-0.7927170991897583,-0.9152660965919495,-0.8627451062202454,-1.0553221702575684,-0.9327731132507324,-0.7226890921592712,-0.8102241158485413],[-0.37254902720451355,-0.4600840210914612,-0.6351540684700012,-0.8452380895614624,-0.28501400351524353,-1.0378150939941406,-0.8452380895614624,-0.8452380895614624,-0.47759103775024414,-0.4950980246067047,-0.4600840210914612,-0.1974789947271347,-0.17997199296951294,0.0476190485060215,-0.5651260614395142,-0.6176470518112183,-0.3025210201740265,0.030112044885754585,0.030112044885754585,-0.26750701665878296,-0.0049019609577953815,-0.03991596773266792,-0.3900560140609741,-0.4425770342350006,-0.7577030658721924,-1.3529411554336548,0.450280100107193,0.0476190485060215,-0.10994397848844528,0.2401960790157318,1.2731091976165771,0.9754902124404907,1.6232492923736572,0.6603641510009766,0.9404761791229248,1.6232492923736572,1.395658254623413,1.3256303071975708,0.9054622054100037,1.1505602598190308,1.3606442213058472,1.7457983493804932,1.9558823108673096,1.8158262968063354,1.693277359008789,1.7282912731170654,1.3256303071975708,0.11764705926179886,-0.47759103775024414,0.3977591097354889,0.9054622054100037,-0.5301120281219482,-0.8277310729026794,-0.6351540684700012,0.06512605398893356,-0.3900560140609741,-0.7051820755004883,-1.3529411554336548,-0.9327731132507324,-1.1428571939468384,-0.5826330780982971,0.1001400575041771,-0.16246499121189117,0.030112044885754585,-0.3550420105457306,-0.7051820755004883,0.38025209307670593,0.11764705926179886,0.6953781247138977,0.27521008253097534,-0.8277310729026794,0.3452380895614624,0.06512605398893356,-0.26750701665878296,-0.4950980246067047,-0.9502801299095154,-1.6855741739273071,-1.0728291273117065,-1.633053183555603,-1.9131652116775513,-1.8256303071975708,-1.755602240562439,-1.4754902124404907,-1.3354341983795166,-1.2478991746902466,-1.983193278312683,-1.720588207244873,-0.3025210201740265,0.20518207550048828,-0.4425770342350006,-0.9502801299095154,-1.4404761791229248,-0.7752100825309753,-0.3550420105457306,-1.930672287940979,-2.0007002353668213,-2.0007002353668213,-1.3879551887512207,-0.9677870869636536,-0.4950980246067047,-1.0903360843658447,-0.28501400351524353,-1.4754902124404907,-0.4950980246067047,-1.3004201650619507,-1.2128851413726807,-1.1253501176834106,-1.1778711080551147,-1.0378150939941406,-1.1778711080551147,-1.0203081369400024,-1.1778711080551147,-1.1428571939468384,-0.9852941036224365,-1.0203081369400024,-0.7752100825309753,-1.0553221702575684,2.4285714626312256,2.2009804248809814,1.9383753538131714,0.8529411554336548,2.4285714626312256,0.20518207550048828,0.18767507374286652,1.1855741739273071,0.8004201650619507,-0.07492997497320175,1.0105042457580566,1.9033613204956055,0.8354341983795166,1.378151297569275,0.8354341983795166,1.0630252361297607,0.46778711676597595,0.9754902124404907,1.6407562494277954,0.8354341983795166,0.5553221106529236,0.9404761791229248,0.7829131484031677,-0.02240896411240101,0.9929971694946289,0.6253501176834106,1.395658254623413,0.6253501176834106,0.3452380895614624,0.6428571343421936,0.5203081369400024,1.2906162738800049,1.6757702827453613,0.4327731132507324,0.9054622054100037,1.0105042457580566,1.395658254623413,1.6582633256912231,0.012605042196810246,0.41526609659194946,-0.5301120281219482,-0.9502801299095154,-0.5126050710678101,-0.7927170991897583,0.6078431606292725,-0.28501400351524353,-0.02240896411240101,0.8004201650619507,-0.02240896411240101,0.41526609659194946,0.36274510622024536,0.2927170991897583,0.18767507374286652,0.7829131484031677,0.9404761791229248,1.0280112028121948,0.9229691624641418,0.8179271817207336,0.8879551887512207,0.8704481720924377,1.0105042457580566,0.4327731132507324,0.9054622054100037,0.6953781247138977,0.46778711676597595,0.15266107022762299,-0.10994397848844528,-0.8977590799331665,-1.0203081369400024,-1.1603641510009766,-1.3354341983795166,-1.457983136177063,-1.4054621458053589,-1.2829132080078125,-1.1603641510009766,-1.0378150939941406,-1.1428571939468384,-1.1078431606292725,-1.2128851413726807,-1.0553221702575684,-1.0203081369400024,-1.0903360843658447,-1.1428571939468384,-1.0028011798858643,-1.0203081369400024,-0.9677870869636536,-0.8627451062202454,-0.8977590799331665,-0.9677870869636536,-1.1078431606292725,-0.9852941036224365,-0.9502801299095154,-1.1778711080551147,-1.0728291273117065,-0.8627451062202454,-0.9152660965919495,-0.9852941036224365,-0.8977590799331665,-0.8277310729026794,-0.9852941036224365,-0.9327731132507324,-1.0203081369400024,-1.0378150939941406,-1.0203081369400024,-0.7226890921592712,-0.9327731132507324,-0.8452380895614624],[-0.7752100825309753,-0.37254902720451355,-0.47759103775024414,-0.6001400351524353,-1.0028011798858643,-0.6876750588417053,-0.6701680421829224,-0.5476190447807312,-0.07492997497320175,-0.09243697673082352,-0.32002800703048706,0.030112044885754585,0.012605042196810246,-0.07492997497320175,-0.02240896411240101,-0.03991596773266792,0.1001400575041771,-0.3550420105457306,-0.09243697673082352,0.08263305574655533,-0.03991596773266792,-0.6351540684700012,-0.5476190447807312,-0.8627451062202454,-0.9852941036224365,0.0476190485060215,0.8179271817207336,0.7128851413726807,-0.09243697673082352,-0.4600840210914612,0.7829131484031677,1.4131652116775513,1.133053183555603,0.8004201650619507,0.8704481720924377,1.693277359008789,1.483193278312683,1.378151297569275,1.3256303071975708,1.2731091976165771,1.308123230934143,1.7983193397521973,1.8333333730697632,1.693277359008789,1.7457983493804932,1.6582633256912231,1.378151297569275,0.450280100107193,0.6428571343421936,0.6253501176834106,0.8704481720924377,0.450280100107193,0.1001400575041771,-0.17997199296951294,0.6953781247138977,0.25770309567451477,-0.28501400351524353,-0.7051820755004883,-0.7577030658721924,-0.5126050710678101,-0.6176470518112183,-0.1974789947271347,-0.32002800703048706,0.13515406847000122,-0.12745098769664764,-0.07492997497320175,-0.0049019609577953815,0.15266107022762299,0.20518207550048828,0.4852941036224365,-0.03991596773266792,0.6428571343421936,0.20518207550048828,-0.0049019609577953815,-0.5301120281219482,0.17016807198524475,0.32773110270500183,-0.47759103775024414,-1.1078431606292725,-0.7927170991897583,-1.3354341983795166,-0.5826330780982971,-1.7906162738800049,-1.5630252361297607,-1.4404761791229248,-1.965686321258545,-2.0007002353668213,-0.5301120281219482,0.22268907725811005,-0.42507001757621765,-0.9327731132507324,-1.492997169494629,-1.878151297569275,-1.6855741739273071,-1.878151297569275,-1.930672287940979,-0.5126050710678101,0.5553221106529236,0.18767507374286652,-0.8102241158485413,-0.0049019609577953815,-0.6701680421829224,-1.3879551887512207,-0.5301120281219482,-0.8277310729026794,-1.4754902124404907,-1.0903360843658447,-0.9502801299095154,-1.2128851413726807,-1.0728291273117065,-1.0903360843658447,-0.8802521228790283,-1.1953781843185425,-1.0728291273117065,-0.8277310729026794,-0.8627451062202454,-0.9502801299095154,0.6428571343421936,2.39355731010437,2.0609242916107178,2.043417453765869,2.0259103775024414,-0.05742296949028969,0.32773110270500183,1.6232492923736572,0.6428571343421936,0.27521008253097534,0.08263305574655533,1.7633053064346313,0.38025209307670593,1.1855741739273071,-0.0049019609577953815,1.6757702827453613,0.7478991746902466,1.378151297569275,0.41526609659194946,0.20518207550048828,0.2401960790157318,0.9404761791229248,0.41526609659194946,0.17016807198524475,1.1155462265014648,0.22268907725811005,1.1155462265014648,0.7128851413726807,0.08263305574655533,-0.28501400351524353,-0.16246499121189117,0.8179271817207336,1.1855741739273071,0.8704481720924377,1.395658254623413,0.8354341983795166,1.4131652116775513,0.9579831957817078,-0.6351540684700012,0.6778711676597595,0.27521008253097534,0.030112044885754585,-0.6176470518112183,-0.07492997497320175,0.5028011202812195,0.22268907725811005,-0.32002800703048706,0.9929971694946289,0.5553221106529236,0.4327731132507324,0.6428571343421936,0.8179271817207336,0.38025209307670593,1.080532193183899,0.9929971694946289,1.0280112028121948,0.8529411554336548,0.25770309567451477,0.5203081369400024,0.5203081369400024,0.6603641510009766,0.5203081369400024,0.8704481720924377,0.6428571343421936,-0.0049019609577953815,-0.16246499121189117,-0.9677870869636536,-0.9327731132507324,-1.1428571939468384,-1.1603641510009766,-1.2654061317443848,-1.1953781843185425,-1.3004201650619507,-1.1603641510009766,-1.3004201650619507,-1.0903360843658447,-0.9677870869636536,-1.2303920984268188,-1.1953781843185425,-0.9677870869636536,-1.0203081369400024,-1.1253501176834106,-0.8102241158485413,-1.0553221702575684,-0.9852941036224365,-0.8802521228790283,-1.1778711080551147,-1.0553221702575684,-0.7577030658721924,-1.0378150939941406,-1.0903360843658447,-0.9152660965919495,-0.9502801299095154,-0.9852941036224365,-1.1778711080551147,-0.9327731132507324,-0.9327731132507324,-0.8277310729026794,-0.7927170991897583,-0.9152660965919495,-0.8977590799331665,-0.7577030658721924,-0.9502801299095154,-0.8977590799331665,-0.8977590799331665,-0.8277310729026794,-0.8977590799331665],[-0.5126050710678101,-0.5476190447807312,-0.5651260614395142,-0.0049019609577953815,-0.3550420105457306,-0.5126050710678101,-0.7226890921592712,-0.8452380895614624,-0.5476190447807312,-0.33753502368927,-0.21498599648475647,-0.09243697673082352,-0.3025210201740265,0.012605042196810246,-0.4425770342350006,-0.25,-0.6351540684700012,-0.07492997497320175,-0.16246499121189117,-0.3900560140609741,-0.10994397848844528,-0.5826330780982971,-0.9677870869636536,-1.2478991746902466,0.38025209307670593,1.133053183555603,1.3256303071975708,1.605742335319519,1.4481792449951172,0.8879551887512207,1.0280112028121948,1.483193278312683,1.5007002353668213,0.9754902124404907,0.5903361439704895,1.0105042457580566,1.605742335319519,1.7107843160629272,1.4131652116775513,1.4481792449951172,1.5007002353668213,1.780812382698059,1.6757702827453613,1.6232492923736572,1.553221344947815,1.5707283020019531,1.3606442213058472,1.3256303071975708,0.450280100107193,0.13515406847000122,0.31022408604621887,0.6253501176834106,0.06512605398893356,0.4327731132507324,0.08263305574655533,0.7128851413726807,0.7303921580314636,0.27521008253097534,0.4327731132507324,0.27521008253097534,0.25770309567451477,0.4327731132507324,-0.16246499121189117,-0.10994397848844528,0.27521008253097534,-0.0049019609577953815,-0.26750701665878296,-1.580532193183899,0.2927170991897583,0.20518207550048828,0.4327731132507324,0.6603641510009766,0.46778711676597595,0.5203081369400024,-0.5301120281219482,1.168067216873169,0.8704481720924377,0.5378151535987854,0.41526609659194946,0.5903361439704895,0.5028011202812195,-0.1449579894542694,-1.4404761791229248,-0.8452380895614624,-0.9852941036224365,-1.1253501176834106,-1.5105042457580566,-1.720588207244873,-1.3879551887512207,-1.2829132080078125,-0.6701680421829224,-1.720588207244873,-2.0357143878936768,0.5378151535987854,-1.6855741739273071,-1.0903360843658447,-0.6701680421829224,0.4327731132507324,-0.6526610851287842,-0.07492997497320175,-0.03991596773266792,-0.6176470518112183,-0.32002800703048706,-0.26750701665878296,-0.8627451062202454,-1.2478991746902466,-1.2829132080078125,-1.2654061317443848,-1.1428571939468384,-1.1253501176834106,-0.9852941036224365,-1.2128851413726807,-0.9677870869636536,-1.0728291273117065,-1.0728291273117065,-1.3004201650619507,-1.1428571939468384,-1.6155462265014648,-0.17997199296951294,2.4285714626312256,2.218487501144409,1.9558823108673096,0.41526609659194946,0.3452380895614624,1.308123230934143,0.5378151535987854,-0.12745098769664764,0.8879551887512207,0.5378151535987854,1.780812382698059,1.0980392694473267,1.693277359008789,2.0084033012390137,0.9754902124404907,1.378151297569275,1.5707283020019531,1.0630252361297607,1.5707283020019531,1.8333333730697632,0.32773110270500183,1.2906162738800049,1.605742335319519,0.9754902124404907,1.220588207244873,-0.10994397848844528,0.5903361439704895,0.41526609659194946,0.15266107022762299,1.4481792449951172,0.6778711676597595,0.9054622054100037,1.605742335319519,0.9404761791229248,0.31022408604621887,1.168067216873169,1.2030812501907349,0.7478991746902466,-0.21498599648475647,0.030112044885754585,0.7303921580314636,0.32773110270500183,-0.7752100825309753,0.6078431606292725,0.36274510622024536,0.4327731132507324,0.5553221106529236,0.18767507374286652,0.7654061913490295,0.7303921580314636,0.8354341983795166,0.8704481720924377,1.0980392694473267,1.220588207244873,0.5728291273117065,-0.05742296949028969,-0.3025210201740265,-0.17997199296951294,-0.0049019609577953815,0.5203081369400024,0.8004201650619507,0.5378151535987854,-0.09243697673082352,-0.8452380895614624,-1.1953781843185425,-1.0203081369400024,-0.9502801299095154,-1.1253501176834106,-0.9677870869636536,-1.2654061317443848,-1.2478991746902466,-1.1603641510009766,-0.9852941036224365,-1.2829132080078125,-0.9502801299095154,-1.2128851413726807,-0.9677870869636536,-1.1428571939468384,-1.0378150939941406,-1.1078431606292725,-0.9502801299095154,-1.3179271221160889,-0.8977590799331665,-0.8977590799331665,-1.0203081369400024,-0.9152660965919495,-0.9327731132507324,-0.8977590799331665,-0.9677870869636536,-0.7752100825309753,-0.8452380895614624,-1.1078431606292725,-1.0553221702575684,-0.8277310729026794,-0.7752100825309753,-0.8277310729026794,-0.8102241158485413,-0.9152660965919495,-0.7927170991897583,-0.7577030658721924,-0.7752100825309753,-0.9152660965919495,-0.8627451062202454,-0.8277310729026794,-0.9852941036224365],[-0.4950980246067047,-0.6176470518112183,-0.02240896411240101,-0.37254902720451355,-0.47759103775024414,-0.5651260614395142,-0.7401960492134094,-0.5126050710678101,-0.26750701665878296,-0.26750701665878296,-0.47759103775024414,-0.32002800703048706,-0.3025210201740265,0.38025209307670593,-0.28501400351524353,0.012605042196810246,-0.25,0.13515406847000122,-0.17997199296951294,-0.05742296949028969,-0.23249299824237823,-0.8452380895614624,-0.47759103775024414,0.06512605398893356,0.8004201650619507,0.8004201650619507,1.5357142686843872,1.430672287940979,1.7282912731170654,1.4131652116775513,1.7282912731170654,1.6232492923736572,1.5357142686843872,0.9579831957817078,0.41526609659194946,0.9229691624641418,1.7107843160629272,1.7983193397521973,1.8683472871780396,1.7282912731170654,1.6232492923736572,1.605742335319519,1.7282912731170654,1.6232492923736572,1.9033613204956055,1.5882352590560913,0.7478991746902466,0.9754902124404907,0.6953781247138977,0.6428571343421936,-0.0049019609577953815,0.7478991746902466,0.5553221106529236,0.27521008253097534,0.5203081369400024,0.22268907725811005,0.0476190485060215,-0.4075630307197571,-0.1449579894542694,0.36274510622024536,0.15266107022762299,0.8179271817207336,-0.32002800703048706,-0.09243697673082352,0.41526609659194946,0.32773110270500183,0.17016807198524475,-0.09243697673082352,0.46778711676597595,0.22268907725811005,0.5028011202812195,0.6428571343421936,0.5553221106529236,0.8529411554336548,-0.7927170991897583,1.045518159866333,0.5553221106529236,0.3452380895614624,-0.3025210201740265,0.5553221106529236,-0.32002800703048706,0.17016807198524475,-1.0553221702575684,-0.7051820755004883,-1.2829132080078125,-0.5476190447807312,-0.03991596773266792,-0.6876750588417053,-1.4229692220687866,-1.1778711080551147,-1.3529411554336548,-0.37254902720451355,-2.0007002353668213,-0.7752100825309753,0.6603641510009766,0.11764705926179886,0.6778711676597595,0.6253501176834106,-0.12745098769664764,-0.26750701665878296,-0.23249299824237823,-0.1449579894542694,-0.4075630307197571,-0.3900560140609741,-0.42507001757621765,-0.9677870869636536,-1.2128851413726807,-1.5280112028121948,-1.0203081369400024,-1.2303920984268188,-1.1778711080551147,-1.1953781843185425,-1.0203081369400024,-1.2128851413726807,-1.1078431606292725,-0.9327731132507324,-0.8452380895614624,-0.9852941036224365,-0.6876750588417053,-0.0049019609577953815,1.9733893871307373,1.255602240562439,0.3977591097354889,0.32773110270500183,1.2731091976165771,0.46778711676597595,0.08263305574655533,1.0280112028121948,1.0980392694473267,1.133053183555603,1.780812382698059,1.308123230934143,1.3606442213058472,1.5357142686843872,1.518207311630249,1.465686321258545,1.7107843160629272,1.3256303071975708,0.7654061913490295,0.9579831957817078,1.7282912731170654,1.6582633256912231,0.3452380895614624,1.3256303071975708,1.1155462265014648,1.8508403301239014,0.36274510622024536,1.0980392694473267,1.0105042457580566,1.5882352590560913,1.5707283020019531,1.1855741739273071,0.25770309567451477,0.450280100107193,0.0476190485060215,0.13515406847000122,0.20518207550048828,-0.5301120281219482,1.0280112028121948,-0.3900560140609741,0.3452380895614624,1.6582633256912231,-1.0203081369400024,1.518207311630249,0.41526609659194946,0.25770309567451477,0.8529411554336548,0.5378151535987854,0.9929971694946289,1.0630252361297607,1.045518159866333,0.9929971694946289,0.8004201650619507,0.8704481720924377,0.22268907725811005,-0.0049019609577953815,0.31022408604621887,0.450280100107193,0.2401960790157318,0.5903361439704895,0.012605042196810246,-0.10994397848844528,-1.0553221702575684,-0.9502801299095154,-1.1778711080551147,-1.1953781843185425,-1.0553221702575684,-1.5105042457580566,-1.3879551887512207,-1.4404761791229248,-1.2829132080078125,-1.1778711080551147,-1.1778711080551147,-0.9852941036224365,-1.0028011798858643,-1.1253501176834106,-1.0378150939941406,-1.1078431606292725,-0.7927170991897583,-1.0903360843658447,-0.9327731132507324,-0.8802521228790283,-0.8802521228790283,-0.8452380895614624,-0.9502801299095154,-1.1078431606292725,-0.9152660965919495,-1.0203081369400024,-1.0903360843658447,-0.6001400351524353,-1.2303920984268188,-0.8452380895614624,-0.9152660965919495,-1.0553221702575684,-0.9152660965919495,-0.8627451062202454,-1.0553221702575684,-1.0378150939941406,-0.9677870869636536,-0.9152660965919495,-1.0728291273117065,-0.8102241158485413,-0.8802521228790283,-0.9152660965919495],[-0.4950980246067047,-0.5826330780982971,-0.3550420105457306,-0.26750701665878296,-0.5651260614395142,-0.5651260614395142,-0.6876750588417053,-0.5651260614395142,-0.3550420105457306,-0.26750701665878296,-0.42507001757621765,-0.23249299824237823,-0.4950980246067047,-0.0049019609577953815,-0.1449579894542694,-0.3900560140609741,0.0476190485060215,-0.10994397848844528,-0.21498599648475647,-0.02240896411240101,-0.4075630307197571,-0.7401960492134094,-0.25,0.11764705926179886,0.13515406847000122,0.32773110270500183,1.378151297569275,1.9908963441848755,1.9908963441848755,1.6407562494277954,1.7633053064346313,1.6232492923736572,1.5707283020019531,1.1155462265014648,0.5378151535987854,0.7654061913490295,1.4131652116775513,1.8683472871780396,1.9558823108673096,1.9208683967590332,1.780812382698059,1.553221344947815,1.6757702827453613,1.430672287940979,1.7457983493804932,1.3256303071975708,0.32773110270500183,0.9754902124404907,1.0980392694473267,1.308123230934143,-0.21498599648475647,0.38025209307670593,0.25770309567451477,-0.3900560140609741,0.13515406847000122,0.3977591097354889,-0.02240896411240101,-1.0203081369400024,-0.02240896411240101,-0.37254902720451355,0.2927170991897583,0.3977591097354889,0.31022408604621887,-0.03991596773266792,0.1001400575041771,0.20518207550048828,0.3977591097354889,0.6078431606292725,0.7478991746902466,0.4327731132507324,0.6253501176834106,0.20518207550048828,0.6778711676597595,0.4852941036224365,-0.10994397848844528,0.6253501176834106,0.22268907725811005,0.20518207550048828,-0.32002800703048706,0.17016807198524475,-1.0728291273117065,0.08263305574655533,-1.0728291273117065,-1.2128851413726807,-0.7051820755004883,-0.16246499121189117,0.1001400575041771,-1.3529411554336548,-1.8606442213058472,-1.7731091976165771,-1.580532193183899,-0.17997199296951294,0.3977591097354889,-0.05742296949028969,-0.6526610851287842,0.08263305574655533,0.22268907725811005,0.8354341983795166,-0.3025210201740265,-0.8102241158485413,-0.33753502368927,0.36274510622024536,-0.3900560140609741,-0.03991596773266792,-1.878151297569275,-0.7752100825309753,-1.3179271221160889,-1.1953781843185425,-0.9327731132507324,-1.3179271221160889,-1.1953781843185425,-1.1603641510009766,-1.1428571939468384,-0.9677870869636536,-1.0903360843658447,-1.0378150939941406,-1.1078431606292725,-0.9677870869636536,-1.2478991746902466,-1.1428571939468384,-0.1449579894542694,-0.25,-0.09243697673082352,0.012605042196810246,1.2030812501907349,-0.16246499121189117,-0.4950980246067047,1.780812382698059,1.8158262968063354,1.343137264251709,1.343137264251709,1.5707283020019531,1.6582633256912231,1.5882352590560913,1.5007002353668213,1.2731091976165771,1.518207311630249,1.168067216873169,1.7633053064346313,0.5028011202812195,1.395658254623413,1.378151297569275,0.9754902124404907,0.17016807198524475,1.6757702827453613,0.9404761791229248,0.8354341983795166,1.9033613204956055,0.8529411554336548,1.9383753538131714,1.5882352590560913,0.9754902124404907,1.3256303071975708,1.2030812501907349,0.9054622054100037,1.9033613204956055,0.36274510622024536,0.5378151535987854,0.7303921580314636,0.9579831957817078,-0.6176470518112183,-0.3550420105457306,-0.8277310729026794,1.3256303071975708,0.6603641510009766,0.17016807198524475,0.5378151535987854,0.32773110270500183,0.22268907725811005,0.7654061913490295,0.8529411554336548,0.9579831957817078,0.8354341983795166,0.6428571343421936,0.08263305574655533,0.7128851413726807,0.450280100107193,0.36274510622024536,0.06512605398893356,-0.3900560140609741,-0.6351540684700012,-0.47759103775024414,-1.0903360843658447,-1.2478991746902466,-1.1078431606292725,-1.1428571939468384,-1.0728291273117065,-1.0553221702575684,-1.0903360843658447,-1.3004201650619507,-1.2128851413726807,-1.2128851413726807,-1.2829132080078125,-1.1778711080551147,-1.2128851413726807,-1.1953781843185425,-1.1428571939468384,-1.1428571939468384,-1.0903360843658447,-1.2478991746902466,-1.0728291273117065,-1.0553221702575684,-0.9152660965919495,-0.6701680421829224,-0.8627451062202454,-0.9502801299095154,-0.7577030658721924,-0.8627451062202454,-0.7927170991897583,-0.9152660965919495,-0.9852941036224365,-0.8977590799331665,-0.9152660965919495,-0.9502801299095154,-1.1078431606292725,-1.0028011798858643,-0.8802521228790283,-1.0378150939941406,-0.7752100825309753,-0.8977590799331665,-0.7927170991897583,-0.8977590799331665,-0.8977590799331665,-0.9152660965919495],[-0.7927170991897583,-0.7577030658721924,-0.3550420105457306,0.0476190485060215,-0.21498599648475647,-0.1974789947271347,-0.6176470518112183,-0.6351540684700012,-0.5301120281219482,-0.4425770342350006,-0.21498599648475647,-0.42507001757621765,-0.3900560140609741,-0.3900560140609741,0.012605042196810246,-0.16246499121189117,-0.32002800703048706,-0.0049019609577953815,-0.32002800703048706,-0.1974789947271347,-0.6701680421829224,-0.6001400351524353,-0.4950980246067047,-0.7577030658721924,-0.03991596773266792,0.8529411554336548,1.6582633256912231,1.8858543634414673,1.780812382698059,1.7282912731170654,1.5882352590560913,1.7633053064346313,1.9208683967590332,1.4481792449951172,0.8004201650619507,1.2030812501907349,1.378151297569275,1.9383753538131714,2.043417453765869,1.8508403301239014,1.6582633256912231,1.605742335319519,1.8158262968063354,1.5707283020019531,1.6582633256912231,1.133053183555603,0.9754902124404907,0.5553221106529236,1.465686321258545,1.2731091976165771,0.5028011202812195,-0.5301120281219482,-0.5651260614395142,0.9054622054100037,-0.10994397848844528,-0.25,-0.07492997497320175,-0.4950980246067047,-0.37254902720451355,-1.3179271221160889,0.06512605398893356,0.2401960790157318,0.012605042196810246,-0.9152660965919495,-0.4950980246067047,-0.17997199296951294,0.08263305574655533,0.15266107022762299,0.4852941036224365,0.41526609659194946,0.31022408604621887,-0.42507001757621765,0.46778711676597595,-0.09243697673082352,0.31022408604621887,-0.02240896411240101,-0.3550420105457306,-0.7401960492134094,-0.6526610851287842,-0.7401960492134094,-0.6526610851287842,-0.4075630307197571,-0.9152660965919495,-1.0378150939941406,-1.0378150939941406,-0.12745098769664764,-0.4425770342350006,-1.5280112028121948,-1.5280112028121948,-1.9481792449951172,0.5378151535987854,0.9054622054100037,1.4131652116775513,1.693277359008789,0.6078431606292725,0.4327731132507324,0.25770309567451477,-0.6176470518112183,-0.47759103775024414,-0.07492997497320175,-0.4425770342350006,0.08263305574655533,-0.17997199296951294,-0.02240896411240101,-0.3900560140609741,-0.1974789947271347,-1.0203081369400024,-1.7030812501907349,-1.2478991746902466,-1.3179271221160889,-1.2128851413726807,-1.0203081369400024,-0.9852941036224365,-1.3004201650619507,-0.9677870869636536,-1.2478991746902466,-0.9852941036224365,-0.8977590799331665,-0.7752100825309753,-0.6876750588417053,-1.0553221702575684,0.3452380895614624,0.012605042196810246,0.8879551887512207,0.450280100107193,0.15266107022762299,0.7128851413726807,1.7282912731170654,2.0259103775024414,1.553221344947815,1.6582633256912231,1.5882352590560913,1.553221344947815,1.6407562494277954,1.6757702827453613,1.1855741739273071,1.168067216873169,1.255602240562439,1.780812382698059,1.7457983493804932,1.7633053064346313,0.22268907725811005,1.693277359008789,1.9208683967590332,1.3606442213058472,1.395658254623413,1.1855741739273071,0.32773110270500183,0.7829131484031677,0.7303921580314636,0.8004201650619507,1.430672287940979,0.7654061913490295,1.080532193183899,0.9929971694946289,-0.3550420105457306,0.38025209307670593,0.22268907725811005,0.13515406847000122,0.8179271817207336,1.4131652116775513,-0.4600840210914612,0.5553221106529236,0.7829131484031677,0.2401960790157318,0.3452380895614624,0.11764705926179886,-0.07492997497320175,0.3977591097354889,0.7128851413726807,0.8004201650619507,1.1505602598190308,0.7128851413726807,-0.32002800703048706,0.06512605398893356,0.18767507374286652,0.5378151535987854,0.20518207550048828,-0.17997199296951294,-0.9852941036224365,-0.9502801299095154,-1.0553221702575684,-1.1428571939468384,-1.2478991746902466,-1.1603641510009766,-1.1603641510009766,-1.0553221702575684,-1.0028011798858643,-1.1078431606292725,-1.2478991746902466,-1.1078431606292725,-1.1078431606292725,-1.1778711080551147,-1.1603641510009766,-1.0028011798858643,-1.0378150939941406,-1.0553221702575684,-1.1078431606292725,-1.0728291273117065,-0.9502801299095154,-1.1428571939468384,-0.9502801299095154,-0.9852941036224365,-0.9502801299095154,-0.8627451062202454,-1.0203081369400024,-1.0378150939941406,-0.8277310729026794,-0.8977590799331665,-0.8452380895614624,-0.8452380895614624,-1.0028011798858643,-0.8627451062202454,-1.0203081369400024,-1.0378150939941406,-1.0378150939941406,-0.8977590799331665,-0.9852941036224365,-0.7051820755004883,-0.9152660965919495,-0.7577030658721924,-0.9327731132507324,-0.7401960492134094,-0.7577030658721924],[-0.9852941036224365,-0.03991596773266792,-0.1449579894542694,-0.4425770342350006,-0.17997199296951294,-0.5126050710678101,-0.7577030658721924,-0.8102241158485413,-0.5476190447807312,-0.5476190447807312,-0.5301120281219482,-0.26750701665878296,-0.37254902720451355,-0.3550420105457306,-0.1974789947271347,-0.4075630307197571,-0.07492997497320175,-0.3900560140609741,-0.07492997497320175,-0.25,-0.21498599648475647,0.18767507374286652,-0.8977590799331665,0.5028011202812195,1.0280112028121948,0.9929971694946289,1.553221344947815,1.6582633256912231,1.7633053064346313,1.7107843160629272,1.8158262968063354,1.8858543634414673,1.8508403301239014,1.3606442213058472,1.8333333730697632,1.518207311630249,1.6582633256912231,2.0609242916107178,2.0259103775024414,1.9033613204956055,1.6582633256912231,1.6582633256912231,1.3606442213058472,1.605742335319519,1.2731091976165771,1.045518159866333,0.6778711676597595,0.2927170991897583,0.9929971694946289,1.5357142686843872,1.1855741739273071,0.6428571343421936,-0.6001400351524353,-0.6701680421829224,-0.1449579894542694,-0.1974789947271347,-0.9677870869636536,-0.1974789947271347,-0.33753502368927,-0.02240896411240101,0.06512605398893356,0.0476190485060215,-0.1974789947271347,-1.1253501176834106,-1.2303920984268188,-0.09243697673082352,0.38025209307670593,0.3977591097354889,0.5378151535987854,0.5378151535987854,0.2401960790157318,-0.7226890921592712,0.32773110270500183,-0.42507001757621765,-0.1449579894542694,-0.5476190447807312,-0.7051820755004883,-0.9502801299095154,-0.6176470518112183,-1.3529411554336548,-0.3900560140609741,-0.8802521228790283,-0.9852941036224365,-0.28501400351524353,-0.4425770342350006,-0.3025210201740265,-1.3879551887512207,-2.0357143878936768,-2.0357143878936768,-1.983193278312683,0.46778711676597595,0.9054622054100037,1.0630252361297607,1.7107843160629272,1.1505602598190308,-0.05742296949028969,0.9404761791229248,0.5028011202812195,0.17016807198524475,-1.2478991746902466,-0.5826330780982971,0.15266107022762299,-0.37254902720451355,-0.9152660965919495,-0.42507001757621765,-0.3550420105457306,-0.9852941036224365,-1.3879551887512207,-1.1428571939468384,-1.0553221702575684,-1.1428571939468384,-1.2654061317443848,-1.0378150939941406,-1.1428571939468384,-0.9502801299095154,-1.1078431606292725,-0.9852941036224365,-1.1253501176834106,-1.1078431606292725,-1.1078431606292725,-1.2303920984268188,-0.07492997497320175,0.2401960790157318,0.36274510622024536,0.11764705926179886,0.1001400575041771,1.2906162738800049,1.3606442213058472,1.3606442213058472,2.043417453765869,1.465686321258545,1.395658254623413,1.378151297569275,0.9754902124404907,1.8858543634414673,1.168067216873169,0.8704481720924377,1.220588207244873,1.430672287940979,2.1484594345092773,1.605742335319519,1.780812382698059,1.255602240562439,0.41526609659194946,1.6232492923736572,0.7829131484031677,0.7654061913490295,0.6778711676597595,1.465686321258545,2.0959384441375732,1.1505602598190308,0.6953781247138977,0.22268907725811005,0.22268907725811005,0.8354341983795166,-0.28501400351524353,0.25770309567451477,0.5903361439704895,0.22268907725811005,0.012605042196810246,0.17016807198524475,1.2906162738800049,-0.1449579894542694,0.8179271817207336,0.2927170991897583,0.20518207550048828,-0.1974789947271347,-0.5476190447807312,-0.03991596773266792,0.8529411554336548,1.2030812501907349,0.5903361439704895,0.8879551887512207,0.25770309567451477,-0.33753502368927,-0.02240896411240101,0.012605042196810246,-0.03991596773266792,-0.6001400351524353,-0.7752100825309753,-1.2654061317443848,-1.0378150939941406,-0.9852941036224365,-1.2478991746902466,-1.0378150939941406,-1.1078431606292725,-1.1953781843185425,-1.1603641510009766,-1.0553221702575684,-1.1078431606292725,-1.3179271221160889,-1.4404761791229248,-1.0553221702575684,-1.2829132080078125,-1.0903360843658447,-0.9677870869636536,-1.0553221702575684,-0.8627451062202454,-1.0378150939941406,-0.8277310729026794,-1.0728291273117065,-0.6526610851287842,-1.0028011798858643,-0.8102241158485413,-0.8977590799331665,-1.0028011798858643,-0.8802521228790283,-0.7927170991897583,-1.1603641510009766,-0.6876750588417053,-0.7752100825309753,-0.9852941036224365,-0.9852941036224365,-0.8627451062202454,-0.9677870869636536,-0.9327731132507324,-0.7577030658721924,-0.9502801299095154,-0.9852941036224365,-1.0903360843658447,-1.0028011798858643,-0.9677870869636536,-0.7927170991897583,-0.7226890921592712],[-0.6526610851287842,-0.5651260614395142,-0.42507001757621765,-0.32002800703048706,-0.03991596773266792,-0.26750701665878296,-0.8802521228790283,-0.5651260614395142,-0.7752100825309753,-0.1974789947271347,-0.10994397848844528,-0.4075630307197571,-0.47759103775024414,-0.26750701665878296,0.012605042196810246,-0.6001400351524353,-0.03991596773266792,0.17016807198524475,-0.09243697673082352,-0.5301120281219482,-0.7401960492134094,-0.6176470518112183,-0.28501400351524353,0.31022408604621887,1.1855741739273071,0.8004201650619507,1.0980392694473267,0.8179271817207336,1.5707283020019531,1.343137264251709,1.343137264251709,1.483193278312683,1.553221344947815,1.6232492923736572,1.9383753538131714,1.255602240562439,1.255602240562439,1.6757702827453613,1.9908963441848755,1.9033613204956055,1.7983193397521973,0.9404761791229248,1.133053183555603,1.378151297569275,1.1505602598190308,0.9229691624641418,0.6253501176834106,0.7303921580314636,1.080532193183899,0.8879551887512207,0.9229691624641418,-0.26750701665878296,-0.10994397848844528,0.2927170991897583,-0.5826330780982971,-0.7401960492134094,-0.9852941036224365,-0.7051820755004883,-0.6876750588417053,0.20518207550048828,0.030112044885754585,0.3452380895614624,-0.05742296949028969,-0.32002800703048706,-0.6701680421829224,-0.07492997497320175,0.20518207550048828,0.46778711676597595,0.3452380895614624,0.46778711676597595,0.0476190485060215,-0.8802521228790283,-0.3900560140609741,-0.9152660965919495,-1.0028011798858643,-0.5651260614395142,-0.9852941036224365,-1.0028011798858643,-0.8627451062202454,-1.1253501176834106,-0.7226890921592712,-1.0728291273117065,-0.42507001757621765,-0.6876750588417053,0.012605042196810246,-0.4075630307197571,-1.1428571939468384,-1.8256303071975708,-1.9131652116775513,-1.2478991746902466,0.8704481720924377,1.2731091976165771,1.395658254623413,0.4327731132507324,1.483193278312683,0.32773110270500183,1.8158262968063354,1.6757702827453613,0.5378151535987854,-1.3529411554336548,-0.6876750588417053,-1.7030812501907349,-1.1253501176834106,0.22268907725811005,-0.7401960492134094,-1.0728291273117065,-0.3025210201740265,-1.3704482316970825,-1.5980392694473267,-1.1428571939468384,-1.0378150939941406,-0.9152660965919495,-1.2654061317443848,-1.0378150939941406,-1.1253501176834106,-0.8452380895614624,-1.2128851413726807,-1.1778711080551147,-0.9852941036224365,-0.9852941036224365,-1.0028011798858643,-0.7401960492134094,0.6953781247138977,0.5028011202812195,0.06512605398893356,-0.16246499121189117,1.1855741739273071,1.5882352590560913,1.6757702827453613,1.8333333730697632,1.9908963441848755,1.5882352590560913,1.4131652116775513,1.168067216873169,0.9579831957817078,1.0280112028121948,1.7282912731170654,1.2030812501907349,0.9754902124404907,1.1855741739273071,1.8158262968063354,1.6582633256912231,1.7107843160629272,0.46778711676597595,1.308123230934143,1.483193278312683,1.255602240562439,1.045518159866333,2.1834733486175537,1.6757702827453613,0.8004201650619507,1.553221344947815,1.0280112028121948,0.012605042196810246,0.450280100107193,-0.6351540684700012,0.5378151535987854,-0.33753502368927,0.08263305574655533,-0.5126050710678101,-0.16246499121189117,0.5728291273117065,0.11764705926179886,-0.1449579894542694,0.4327731132507324,0.1001400575041771,0.5903361439704895,0.2401960790157318,0.5903361439704895,0.8179271817207336,1.0980392694473267,0.9404761791229248,1.080532193183899,-0.7927170991897583,-0.25,0.36274510622024536,0.32773110270500183,-0.3025210201740265,-1.2654061317443848,-1.2303920984268188,-1.0728291273117065,-1.2478991746902466,-1.1253501176834106,-1.2478991746902466,-1.0553221702575684,-0.8452380895614624,-1.2128851413726807,-1.0203081369400024,-1.1603641510009766,-1.2829132080078125,-1.2303920984268188,-1.2478991746902466,-1.3704482316970825,-1.3004201650619507,-1.1253501176834106,-1.0203081369400024,-0.9852941036224365,-0.6876750588417053,-1.1428571939468384,-0.9677870869636536,-1.1253501176834106,-1.0553221702575684,-0.8977590799331665,-1.0378150939941406,-1.0378150939941406,-1.0378150939941406,-0.9852941036224365,-1.0378150939941406,-0.9327731132507324,-0.9152660965919495,-0.9852941036224365,-0.9852941036224365,-0.9852941036224365,-0.9327731132507324,-0.9852941036224365,-0.9677870869636536,-0.9502801299095154,-0.9502801299095154,-0.6876750588417053,-0.6526610851287842,-0.8277310729026794,-0.6526610851287842,-0.8452380895614624,-0.9327731132507324],[-0.28501400351524353,-0.7752100825309753,-0.1974789947271347,-0.17997199296951294,-0.47759103775024414,-0.4950980246067047,-0.4950980246067047,-0.5476190447807312,-0.7752100825309753,-0.3900560140609741,-0.1974789947271347,-0.07492997497320175,-0.37254902720451355,-0.32002800703048706,-0.1974789947271347,-0.02240896411240101,-0.1449579894542694,-0.25,-0.12745098769664764,-0.5651260614395142,-0.5301120281219482,-0.4425770342350006,0.6078431606292725,0.9404761791229248,1.080532193183899,0.6428571343421936,0.7303921580314636,0.32773110270500183,0.8529411554336548,1.220588207244873,1.395658254623413,1.553221344947815,1.483193278312683,1.395658254623413,1.8333333730697632,1.4131652116775513,1.255602240562439,1.308123230934143,1.5357142686843872,1.6757702827453613,1.7282912731170654,1.2906162738800049,0.7654061913490295,0.46778711676597595,0.5728291273117065,0.5028011202812195,0.6253501176834106,0.9229691624641418,1.1855741739273071,0.5028011202812195,-0.05742296949028969,-0.21498599648475647,-0.28501400351524353,0.38025209307670593,0.18767507374286652,-1.0903360843658447,-0.9502801299095154,-0.6176470518112183,-0.03991596773266792,-0.26750701665878296,-0.7226890921592712,0.0476190485060215,0.4327731132507324,0.3977591097354889,0.11764705926179886,0.6428571343421936,0.25770309567451477,0.17016807198524475,0.41526609659194946,0.030112044885754585,-0.7051820755004883,-0.8802521228790283,-1.1603641510009766,-1.0903360843658447,-1.1253501176834106,-0.5476190447807312,-0.8277310729026794,-1.1778711080551147,-0.8627451062202454,-1.4229692220687866,-0.9327731132507324,-0.02240896411240101,-0.09243697673082352,-0.5301120281219482,0.38025209307670593,-0.6351540684700012,-1.755602240562439,-1.965686321258545,-1.7731091976165771,-0.10994397848844528,0.31022408604621887,1.1155462265014648,1.220588207244873,0.8354341983795166,1.518207311630249,0.2927170991897583,0.41526609659194946,1.080532193183899,-0.07492997497320175,0.0476190485060215,-1.930672287940979,-1.7906162738800049,-1.4404761791229248,0.030112044885754585,-0.47759103775024414,-1.2128851413726807,-0.7401960492134094,-0.9327731132507324,-1.1253501176834106,-1.1428571939468384,-1.1953781843185425,-1.1428571939468384,-1.1778711080551147,-1.0378150939941406,-1.0553221702575684,-1.2478991746902466,-1.0553221702575684,-1.2303920984268188,-1.1778711080551147,-1.0378150939941406,-1.1778711080551147,-0.4950980246067047,0.2401960790157318,-0.07492997497320175,-0.3900560140609741,0.2927170991897583,1.080532193183899,0.9229691624641418,1.8858543634414673,1.4481792449951172,1.9908963441848755,1.8333333730697632,0.7829131484031677,1.7107843160629272,0.9579831957817078,1.4481792449951172,1.483193278312683,0.20518207550048828,1.080532193183899,0.6953781247138977,1.6757702827453613,1.6582633256912231,0.9054622054100037,1.2906162738800049,0.6953781247138977,0.5903361439704895,1.378151297569275,0.4852941036224365,0.9054622054100037,1.8683472871780396,0.36274510622024536,-0.03991596773266792,1.0105042457580566,0.27521008253097534,0.4327731132507324,-0.33753502368927,-0.3025210201740265,0.46778711676597595,-0.5826330780982971,0.2927170991897583,0.15266107022762299,-0.47759103775024414,0.7829131484031677,0.4852941036224365,0.450280100107193,0.0476190485060215,-0.07492997497320175,0.36274510622024536,0.6953781247138977,1.0280112028121948,1.395658254623413,0.9054622054100037,0.22268907725811005,-0.12745098769664764,0.4852941036224365,0.32773110270500183,0.20518207550048828,-0.8802521228790283,-1.1778711080551147,-0.9677870869636536,-1.2303920984268188,-1.1253501176834106,-0.8277310729026794,-1.0553221702575684,-1.0203081369400024,-0.8452380895614624,-0.9677870869636536,-0.9852941036224365,-1.0203081369400024,-1.1953781843185425,-0.9852941036224365,-1.2478991746902466,-1.0553221702575684,-1.0903360843658447,-1.0203081369400024,-1.0903360843658447,-1.0553221702575684,-1.3004201650619507,-1.0203081369400024,-1.1078431606292725,-0.9152660965919495,-1.1428571939468384,-0.7752100825309753,-0.9327731132507324,-1.0728291273117065,-1.1428571939468384,-0.8977590799331665,-1.0553221702575684,-0.8452380895614624,-0.9677870869636536,-0.7577030658721924,-0.7927170991897583,-0.7752100825309753,-0.9152660965919495,-0.8802521228790283,-1.0553221702575684,-0.9327731132507324,-1.0553221702575684,-1.0553221702575684,-0.7752100825309753,-0.8452380895614624,-0.6526610851287842,-0.6701680421829224,-1.0553221702575684],[-0.5476190447807312,-0.6001400351524353,-0.7752100825309753,-0.10994397848844528,-0.32002800703048706,-0.12745098769664764,-0.3900560140609741,-0.3550420105457306,0.030112044885754585,-0.28501400351524353,-0.37254902720451355,-0.3900560140609741,-0.12745098769664764,-0.4600840210914612,-0.5826330780982971,-0.32002800703048706,-0.4425770342350006,-0.5301120281219482,-0.1974789947271347,-0.5126050710678101,-0.02240896411240101,-0.37254902720451355,0.46778711676597595,0.6078431606292725,0.9054622054100037,0.8529411554336548,0.8179271817207336,0.46778711676597595,0.41526609659194946,0.0476190485060215,0.41526609659194946,0.6253501176834106,0.6078431606292725,1.4481792449951172,1.605742335319519,1.605742335319519,1.5357142686843872,0.7478991746902466,0.6428571343421936,0.9579831957817078,0.9579831957817078,0.8879551887512207,1.6407562494277954,0.46778711676597595,-0.3025210201740265,0.7829131484031677,1.168067216873169,1.2906162738800049,1.1855741739273071,0.5203081369400024,-0.03991596773266792,0.46778711676597595,0.6078431606292725,0.6428571343421936,-0.4950980246067047,1.2906162738800049,0.06512605398893356,0.22268907725811005,-0.6701680421829224,-0.8802521228790283,-1.3004201650619507,-0.6001400351524353,-0.1449579894542694,-0.03991596773266792,0.7654061913490295,0.5378151535987854,0.5378151535987854,0.17016807198524475,-0.5476190447807312,-0.4950980246067047,-1.0728291273117065,-0.8627451062202454,-1.1778711080551147,-1.3704482316970825,-1.3004201650619507,-0.6701680421829224,-1.2303920984268188,-0.9327731132507324,-1.3354341983795166,-1.1953781843185425,-0.9152660965919495,-1.0553221702575684,-0.7927170991897583,-0.6876750588417053,-0.8802521228790283,-1.895658254623413,-1.9481792449951172,-1.1778711080551147,-0.32002800703048706,0.17016807198524475,0.4327731132507324,0.5903361439704895,1.2731091976165771,1.0630252361297607,-0.21498599648475647,0.25770309567451477,0.08263305574655533,-0.8102241158485413,-0.03991596773266792,0.20518207550048828,-0.9677870869636536,-2.0007002353668213,-1.6505602598190308,-1.580532193183899,-0.03991596773266792,-0.4600840210914612,-0.7226890921592712,-0.3550420105457306,-1.492997169494629,-1.2829132080078125,-1.3879551887512207,-1.2303920984268188,-1.0903360843658447,-1.0203081369400024,-1.2654061317443848,-1.1253501176834106,-1.0553221702575684,-1.0903360843658447,-1.0203081369400024,-1.1778711080551147,-1.2128851413726807,-1.0028011798858643,-0.4600840210914612,-0.1974789947271347,-0.17997199296951294,0.22268907725811005,1.0280112028121948,1.8508403301239014,1.693277359008789,1.133053183555603,1.9383753538131714,0.8179271817207336,1.2380952835083008,0.36274510622024536,0.46778711676597595,0.3452380895614624,0.3452380895614624,0.012605042196810246,0.9754902124404907,0.6078431606292725,1.2731091976165771,1.5882352590560913,-0.4425770342350006,0.450280100107193,0.9754902124404907,-0.6351540684700012,0.9404761791229248,0.2401960790157318,0.5903361439704895,0.9929971694946289,0.9404761791229248,0.27521008253097534,0.41526609659194946,0.6778711676597595,0.18767507374286652,-0.05742296949028969,0.08263305574655533,-0.05742296949028969,-0.1974789947271347,0.41526609659194946,0.4852941036224365,-0.33753502368927,0.6428571343421936,0.4327731132507324,0.5203081369400024,0.38025209307670593,0.6953781247138977,0.22268907725811005,0.7829131484031677,0.9929971694946289,0.8704481720924377,0.6428571343421936,0.5903361439704895,-0.32002800703048706,0.4327731132507324,0.5203081369400024,0.8354341983795166,-0.33753502368927,-1.1953781843185425,-1.3704482316970825,-1.2303920984268188,-0.9852941036224365,-1.1428571939468384,-1.2478991746902466,-0.8277310729026794,-1.0903360843658447,-1.1078431606292725,-1.0028011798858643,-1.1428571939468384,-1.1428571939468384,-1.0728291273117065,-0.9502801299095154,-1.1428571939468384,-1.0903360843658447,-1.1778711080551147,-0.8977590799331665,-0.9502801299095154,-1.1603641510009766,-1.0028011798858643,-0.9677870869636536,-1.1603641510009766,-1.0378150939941406,-0.9677870869636536,-0.9327731132507324,-0.9677870869636536,-0.8277310729026794,-0.9677870869636536,-1.0553221702575684,-1.0028011798858643,-1.0553221702575684,-0.8277310729026794,-0.9852941036224365,-0.8102241158485413,-0.6351540684700012,-0.8102241158485413,-0.8627451062202454,-0.9502801299095154,-1.1253501176834106,-1.0028011798858643,-0.7927170991897583,-0.8627451062202454,-0.9152660965919495,-0.6701680421829224,-0.9152660965919495],[-0.6001400351524353,-1.0378150939941406,-0.47759103775024414,-0.5651260614395142,-0.07492997497320175,-0.6001400351524353,-0.4075630307197571,-0.23249299824237823,-0.1449579894542694,-0.37254902720451355,-0.12745098769664764,-0.05742296949028969,-0.05742296949028969,-0.03991596773266792,-0.12745098769664764,-0.3900560140609741,-0.37254902720451355,-0.16246499121189117,-0.05742296949028969,-0.4600840210914612,-1.0553221702575684,-0.3025210201740265,0.17016807198524475,0.31022408604621887,1.1155462265014648,1.1505602598190308,0.9929971694946289,0.8179271817207336,0.8529411554336548,0.4852941036224365,0.18767507374286652,0.5553221106529236,0.22268907725811005,1.465686321258545,1.255602240562439,1.518207311630249,1.6407562494277954,0.8529411554336548,0.4852941036224365,0.8529411554336548,0.7829131484031677,0.7128851413726807,0.7303921580314636,0.5903361439704895,-0.23249299824237823,-0.4600840210914612,-0.23249299824237823,0.4852941036224365,1.2906162738800049,0.3977591097354889,-0.23249299824237823,0.32773110270500183,0.6953781247138977,0.5553221106529236,-0.9852941036224365,0.8529411554336548,0.25770309567451477,0.3452380895614624,0.4327731132507324,-0.1449579894542694,-1.2478991746902466,-1.545518159866333,-0.37254902720451355,-0.03991596773266792,0.38025209307670593,0.7829131484031677,0.15266107022762299,0.22268907725811005,-0.7051820755004883,-1.1953781843185425,-1.2654061317443848,-0.7752100825309753,-1.2128851413726807,-1.1428571939468384,-1.2128851413726807,-1.3179271221160889,-1.633053183555603,-1.3179271221160889,-1.633053183555603,-1.0553221702575684,-1.1778711080551147,-1.4054621458053589,-1.7030812501907349,-1.5630252361297607,-1.3004201650619507,-2.0357143878936768,-1.1253501176834106,-0.25,-1.0553221702575684,0.2927170991897583,-0.7927170991897583,0.8004201650619507,1.693277359008789,0.3452380895614624,0.2927170991897583,0.32773110270500183,-1.4404761791229248,-0.9327731132507324,-0.5476190447807312,0.3452380895614624,0.6253501176834106,-1.983193278312683,-1.8606442213058472,-1.755602240562439,0.1001400575041771,-0.6876750588417053,-0.7577030658721924,-0.42507001757621765,-0.3025210201740265,-1.2478991746902466,-1.1428571939468384,-1.1428571939468384,-1.1078431606292725,-1.1428571939468384,-0.9502801299095154,-1.0728291273117065,-1.2654061317443848,-1.0553221702575684,-1.0903360843658447,-0.8277310729026794,-1.0028011798858643,-0.8802521228790283,-0.3025210201740265,0.13515406847000122,1.6407562494277954,1.080532193183899,1.080532193183899,1.0980392694473267,1.5707283020019531,1.780812382698059,1.080532193183899,0.5203081369400024,1.395658254623413,0.1001400575041771,0.5728291273117065,1.045518159866333,0.6428571343421936,1.2380952835083008,0.030112044885754585,0.5028011202812195,1.430672287940979,0.7303921580314636,0.06512605398893356,2.235994338989258,1.2906162738800049,1.133053183555603,1.0280112028121948,0.6953781247138977,0.7829131484031677,0.5553221106529236,1.518207311630249,0.13515406847000122,0.1001400575041771,0.2927170991897583,0.36274510622024536,0.7654061913490295,0.9929971694946289,0.5378151535987854,-0.09243697673082352,0.6253501176834106,-0.12745098769664764,-0.03991596773266792,0.0476190485060215,0.8354341983795166,0.8354341983795166,0.5378151535987854,0.6778711676597595,0.9054622054100037,0.7654061913490295,1.080532193183899,0.8179271817207336,1.0630252361297607,-0.25,0.5203081369400024,1.0105042457580566,0.7654061913490295,0.5553221106529236,-1.0903360843658447,-1.4404761791229248,-1.1603641510009766,-1.1428571939468384,-1.0378150939941406,-1.0028011798858643,-1.1778711080551147,-1.1078431606292725,-1.0728291273117065,-0.9327731132507324,-1.0728291273117065,-1.1603641510009766,-1.0903360843658447,-1.1778711080551147,-1.2478991746902466,-1.1253501176834106,-1.1778711080551147,-0.9677870869636536,-1.1428571939468384,-1.0203081369400024,-1.0203081369400024,-1.1428571939468384,-1.1078431606292725,-0.8802521228790283,-1.0028011798858643,-0.6351540684700012,-0.7927170991897583,-0.8802521228790283,-1.0378150939941406,-1.0378150939941406,-0.7401960492134094,-0.9152660965919495,-0.8102241158485413,-0.7051820755004883,-0.7577030658721924,-0.6701680421829224,-0.6701680421829224,-0.6876750588417053,-0.6876750588417053,-1.0203081369400024,-0.8452380895614624,-1.0728291273117065,-0.6876750588417053,-0.8977590799331665,-0.8977590799331665,-1.0203081369400024,-0.9327731132507324],[-0.6351540684700012,-0.32002800703048706,-0.28501400351524353,-0.7927170991897583,-0.3025210201740265,-0.6526610851287842,-0.17997199296951294,-0.03991596773266792,-0.6351540684700012,-0.3550420105457306,-0.28501400351524353,-0.26750701665878296,0.13515406847000122,-0.09243697673082352,-0.5826330780982971,-0.6701680421829224,-0.1974789947271347,-0.23249299824237823,-0.26750701665878296,-0.7051820755004883,-0.5301120281219482,-0.7226890921592712,0.25770309567451477,0.6778711676597595,1.2906162738800049,1.6232492923736572,1.2906162738800049,1.6582633256912231,1.6407562494277954,1.045518159866333,0.46778711676597595,0.15266107022762299,0.030112044885754585,0.8704481720924377,1.4131652116775513,1.8858543634414673,1.5357142686843872,1.1155462265014648,1.255602240562439,0.7478991746902466,0.13515406847000122,0.25770309567451477,-0.09243697673082352,0.25770309567451477,1.343137264251709,0.7654061913490295,0.31022408604621887,-0.42507001757621765,0.5553221106529236,0.06512605398893356,0.18767507374286652,-0.1974789947271347,-1.0028011798858643,-0.8102241158485413,-1.0378150939941406,0.0476190485060215,-0.26750701665878296,-0.09243697673082352,-0.09243697673082352,0.5028011202812195,0.08263305574655533,-0.37254902720451355,0.11764705926179886,0.11764705926179886,0.012605042196810246,0.41526609659194946,0.27521008253097534,-0.5301120281219482,-1.457983136177063,-1.2478991746902466,-1.1253501176834106,-1.2478991746902466,-0.9502801299095154,-1.1953781843185425,-1.1778711080551147,-1.2303920984268188,-1.2829132080078125,-1.1078431606292725,-0.8977590799331665,-0.8802521228790283,-1.0378150939941406,-1.3704482316970825,-1.8606442213058472,-1.7380952835083008,-1.755602240562439,0.46778711676597595,1.0105042457580566,-0.8102241158485413,-1.4054621458053589,-0.37254902720451355,-0.07492997497320175,0.9754902124404907,1.1855741739273071,0.18767507374286652,-0.26750701665878296,-1.1778711080551147,-0.9152660965919495,-1.5280112028121948,-0.7401960492134094,0.450280100107193,0.5728291273117065,-1.3704482316970825,-1.895658254623413,-1.878151297569275,-0.7401960492134094,-0.5476190447807312,-0.42507001757621765,-0.12745098769664764,-0.5651260614395142,-0.6001400351524353,-1.3004201650619507,-1.3179271221160889,-1.1778711080551147,-1.2128851413726807,-1.2303920984268188,-1.2128851413726807,-1.0028011798858643,-1.1603641510009766,-1.0203081369400024,-0.7577030658721924,-0.8802521228790283,-0.7752100825309753,0.7654061913490295,0.36274510622024536,1.553221344947815,1.2731091976165771,0.7303921580314636,1.605742335319519,1.8333333730697632,1.693277359008789,1.518207311630249,1.395658254623413,0.06512605398893356,0.6253501176834106,1.2030812501907349,-0.09243697673082352,-0.28501400351524353,0.9054622054100037,0.20518207550048828,0.5553221106529236,0.5203081369400024,0.5378151535987854,0.46778711676597595,1.5882352590560913,0.6603641510009766,1.080532193183899,-0.9502801299095154,0.9229691624641418,0.4327731132507324,0.7128851413726807,0.08263305574655533,0.7829131484031677,1.693277359008789,1.1855741739273071,0.8004201650619507,1.4131652116775513,0.5203081369400024,-0.3025210201740265,-0.5476190447807312,0.030112044885754585,-0.1449579894542694,0.27521008253097534,0.32773110270500183,0.6428571343421936,0.7478991746902466,0.46778711676597595,0.7303921580314636,1.045518159866333,0.9054622054100037,1.2380952835083008,1.4481792449951172,0.6778711676597595,0.13515406847000122,0.5378151535987854,0.8354341983795166,0.27521008253097534,0.1001400575041771,-0.8977590799331665,-1.0378150939941406,-1.2128851413726807,-1.1778711080551147,-1.3179271221160889,-1.3529411554336548,-1.0203081369400024,-1.1778711080551147,-1.1078431606292725,-0.8802521228790283,-0.8802521228790283,-1.0553221702575684,-1.0553221702575684,-1.1078431606292725,-1.2128851413726807,-0.8277310729026794,-1.0553221702575684,-1.2654061317443848,-1.0203081369400024,-1.1428571939468384,-1.1253501176834106,-0.9502801299095154,-1.0378150939941406,-0.9327731132507324,-0.9852941036224365,-0.8802521228790283,-1.0903360843658447,-0.9152660965919495,-0.8977590799331665,-0.9852941036224365,-0.9677870869636536,-0.8802521228790283,-0.8277310729026794,-0.7577030658721924,-0.8102241158485413,-0.6526610851287842,-0.7051820755004883,-0.8627451062202454,-0.7401960492134094,-0.5301120281219482,-0.7401960492134094,-1.0378150939941406,-1.1603641510009766,-1.0553221702575684,-0.8627451062202454,-0.7401960492134094,-0.9677870869636536],[-0.26750701665878296,-0.6526610851287842,-0.9677870869636536,-0.28501400351524353,-0.5826330780982971,-0.1974789947271347,-0.23249299824237823,-0.16246499121189117,-0.4600840210914612,-0.1974789947271347,-0.3025210201740265,-0.1449579894542694,0.20518207550048828,-0.32002800703048706,-0.7752100825309753,-0.28501400351524353,-0.7051820755004883,-0.7577030658721924,-0.21498599648475647,-0.5826330780982971,-0.5476190447807312,0.20518207550048828,0.9754902124404907,1.4481792449951172,1.5882352590560913,1.7457983493804932,1.6757702827453613,1.7983193397521973,1.8158262968063354,1.2906162738800049,0.22268907725811005,0.5903361439704895,0.7829131484031677,1.343137264251709,1.255602240562439,1.7457983493804932,1.8858543634414673,1.9558823108673096,1.693277359008789,1.8333333730697632,1.430672287940979,0.8354341983795166,0.8704481720924377,0.46778711676597595,1.1155462265014648,0.5203081369400024,0.9054622054100037,0.36274510622024536,0.31022408604621887,-0.32002800703048706,-0.3025210201740265,0.0476190485060215,-0.5301120281219482,-0.4600840210914612,-0.4950980246067047,0.41526609659194946,-0.23249299824237823,-0.33753502368927,-0.26750701665878296,0.5553221106529236,0.6428571343421936,0.36274510622024536,0.3977591097354889,0.41526609659194946,0.27521008253097534,0.08263305574655533,0.08263305574655533,-0.21498599648475647,-1.2654061317443848,-1.633053183555603,-1.3704482316970825,-1.3179271221160889,-1.4754902124404907,-1.3704482316970825,-1.3879551887512207,-1.4754902124404907,-1.545518159866333,-1.3879551887512207,-1.0378150939941406,-1.0553221702575684,-1.1778711080551147,-1.2303920984268188,-1.3529411554336548,-1.633053183555603,-1.7030812501907349,-1.668067216873169,-0.02240896411240101,-0.5476190447807312,-0.5476190447807312,0.32773110270500183,-0.1449579894542694,0.8004201650619507,1.2380952835083008,0.8879551887512207,-0.26750701665878296,-1.8606442213058472,-1.720588207244873,-1.895658254623413,-1.3354341983795166,-0.25,-0.05742296949028969,0.13515406847000122,-1.808123230934143,-1.9131652116775513,-1.3179271221160889,-1.1428571939468384,-0.6876750588417053,-0.1974789947271347,-0.5301120281219482,-0.5826330780982971,-1.0203081369400024,-1.0728291273117065,-1.0903360843658447,-1.1778711080551147,-1.1253501176834106,-1.2478991746902466,-1.1253501176834106,-1.0203081369400024,-1.1078431606292725,-0.9152660965919495,-1.0028011798858643,-0.4600840210914612,0.6603641510009766,0.8354341983795166,1.1155462265014648,1.5357142686843872,0.9929971694946289,1.605742335319519,1.5007002353668213,1.1505602598190308,1.2906162738800049,1.7457983493804932,0.9579831957817078,1.465686321258545,0.6428571343421936,0.7478991746902466,-0.07492997497320175,1.220588207244873,0.36274510622024536,1.080532193183899,1.465686321258545,0.46778711676597595,1.2731091976165771,0.7303921580314636,-0.32002800703048706,0.7303921580314636,1.4131652116775513,-0.9852941036224365,-0.5301120281219482,-0.4600840210914612,1.1505602598190308,1.1505602598190308,0.3452380895614624,0.4852941036224365,0.9579831957817078,0.7654061913490295,0.6253501176834106,-0.32002800703048706,0.3977591097354889,0.32773110270500183,-0.05742296949028969,0.46778711676597595,0.2927170991897583,0.7128851413726807,0.8179271817207336,0.5553221106529236,1.168067216873169,1.0280112028121948,0.9054622054100037,0.8704481720924377,1.308123230934143,0.0476190485060215,0.6253501176834106,0.6953781247138977,0.3977591097354889,0.36274510622024536,-0.8102241158485413,-1.1778711080551147,-0.9502801299095154,-1.0553221702575684,-0.9852941036224365,-1.0728291273117065,-1.0028011798858643,-1.2303920984268188,-1.2478991746902466,-0.8977590799331665,-1.1253501176834106,-1.1778711080551147,-1.2654061317443848,-1.0903360843658447,-1.2128851413726807,-1.1778711080551147,-1.545518159866333,-1.3354341983795166,-0.9677870869636536,-0.9852941036224365,-0.9327731132507324,-1.1778711080551147,-1.0728291273117065,-1.0553221702575684,-1.0203081369400024,-0.9852941036224365,-0.9502801299095154,-0.9152660965919495,-0.8977590799331665,-1.0203081369400024,-0.8977590799331665,-0.8277310729026794,-1.0203081369400024,-0.9502801299095154,-0.6876750588417053,-0.8802521228790283,-0.8627451062202454,-1.1253501176834106,-0.8277310729026794,-0.9502801299095154,-0.8802521228790283,-0.7226890921592712,-0.6526610851287842,-1.0203081369400024,-0.9852941036224365,-1.0028011798858643,-1.0028011798858643,-0.8277310729026794],[-0.16246499121189117,-0.12745098769664764,-0.7226890921592712,-0.6876750588417053,0.15266107022762299,-0.5126050710678101,-0.1974789947271347,-0.10994397848844528,-0.05742296949028969,-0.16246499121189117,-0.21498599648475647,-0.33753502368927,-0.21498599648475647,-0.07492997497320175,-0.5651260614395142,-0.16246499121189117,-0.17997199296951294,-1.1078431606292725,-0.37254902720451355,-1.4754902124404907,0.030112044885754585,1.1505602598190308,1.3256303071975708,1.430672287940979,1.605742335319519,1.780812382698059,1.8333333730697632,1.9383753538131714,1.483193278312683,1.4481792449951172,1.133053183555603,1.343137264251709,1.3606442213058472,1.518207311630249,1.780812382698059,1.9908963441848755,1.9033613204956055,1.693277359008789,1.8508403301239014,1.8683472871780396,1.3606442213058472,1.2906162738800049,0.5728291273117065,0.46778711676597595,0.3452380895614624,0.25770309567451477,0.5378151535987854,0.5903361439704895,0.4327731132507324,0.13515406847000122,-0.09243697673082352,-0.3550420105457306,-0.3550420105457306,-0.9327731132507324,-1.0728291273117065,0.6603641510009766,0.38025209307670593,0.41526609659194946,0.2927170991897583,0.450280100107193,0.25770309567451477,0.6953781247138977,0.4852941036224365,0.450280100107193,-0.03991596773266792,0.17016807198524475,-0.05742296949028969,-0.8102241158485413,-1.1603641510009766,-1.2303920984268188,-1.2303920984268188,-1.1603641510009766,-0.9677870869636536,-1.0378150939941406,-1.1778711080551147,-1.2303920984268188,-0.9327731132507324,-1.1428571939468384,-0.9152660965919495,-0.8977590799331665,-0.7927170991897583,-1.0728291273117065,-1.1078431606292725,-1.3179271221160889,-1.4404761791229248,-1.4404761791229248,-1.983193278312683,-1.545518159866333,-0.47759103775024414,1.518207311630249,0.06512605398893356,0.9754902124404907,1.0630252361297607,0.41526609659194946,-1.633053183555603,-0.7752100825309753,-1.9131652116775513,-2.0357143878936768,-1.5105042457580566,-1.3879551887512207,-0.8277310729026794,-0.4425770342350006,-0.9852941036224365,-2.0007002353668213,-1.965686321258545,-1.2654061317443848,-1.7380952835083008,-0.26750701665878296,-0.1449579894542694,-0.02240896411240101,-1.1253501176834106,-1.1603641510009766,-1.0728291273117065,-1.1778711080551147,-1.0028011798858643,-0.9152660965919495,-1.1428571939468384,-1.0203081369400024,-1.0028011798858643,-1.0028011798858643,-1.1428571939468384,-0.9852941036224365,1.1155462265014648,0.9579831957817078,0.31022408604621887,0.8179271817207336,0.8004201650619507,2.1309523582458496,1.5882352590560913,1.395658254623413,1.7457983493804932,1.6232492923736572,0.9754902124404907,1.133053183555603,1.430672287940979,1.080532193183899,0.32773110270500183,1.255602240562439,-0.23249299824237823,0.6603641510009766,0.15266107022762299,0.7478991746902466,0.46778711676597595,0.1001400575041771,0.7654061913490295,0.32773110270500183,0.32773110270500183,-0.6701680421829224,-0.5826330780982971,0.8179271817207336,1.2380952835083008,-0.26750701665878296,0.012605042196810246,0.13515406847000122,0.13515406847000122,0.2401960790157318,0.15266107022762299,-0.3025210201740265,0.31022408604621887,0.17016807198524475,0.17016807198524475,0.6078431606292725,0.4327731132507324,0.6953781247138977,0.6428571343421936,0.7654061913490295,0.9929971694946289,1.133053183555603,1.378151297569275,1.5007002353668213,1.5357142686843872,0.8354341983795166,0.9754902124404907,1.1855741739273071,0.9054622054100037,0.15266107022762299,-0.4950980246067047,-1.1603641510009766,-1.3004201650619507,-1.2654061317443848,-1.3179271221160889,-1.1953781843185425,-1.0028011798858643,-0.9327731132507324,-1.1428571939468384,-1.1253501176834106,-0.9327731132507324,-1.0553221702575684,-1.0203081369400024,-1.1253501176834106,-1.1428571939468384,-1.1428571939468384,-0.9327731132507324,-1.0203081369400024,-1.1603641510009766,-1.0203081369400024,-0.9852941036224365,-0.9327731132507324,-0.6701680421829224,-1.1078431606292725,-1.1603641510009766,-1.0028011798858643,-1.0553221702575684,-1.0203081369400024,-0.8452380895614624,-1.0203081369400024,-0.9852941036224365,-0.8627451062202454,-0.8627451062202454,-0.8977590799331665,-1.0028011798858643,-0.8627451062202454,-0.8277310729026794,-0.7401960492134094,-0.7401960492134094,-0.7927170991897583,-0.7927170991897583,-0.6526610851287842,-0.3900560140609741,-0.8977590799331665,-0.9852941036224365,-1.1428571939468384,-1.0203081369400024,-0.7927170991897583],[-0.6351540684700012,-0.6176470518112183,-0.4425770342350006,-0.6876750588417053,-0.7927170991897583,-0.6701680421829224,0.012605042196810246,-0.21498599648475647,-0.09243697673082352,-0.07492997497320175,0.15266107022762299,-0.1449579894542694,-0.09243697673082352,-0.0049019609577953815,-0.3900560140609741,-1.0553221702575684,-0.4425770342350006,-0.1974789947271347,-0.7927170991897583,0.46778711676597595,0.36274510622024536,1.430672287940979,0.7478991746902466,0.9404761791229248,0.7128851413726807,1.1155462265014648,1.4481792449951172,1.3256303071975708,1.7282912731170654,1.343137264251709,1.4481792449951172,1.5357142686843872,1.378151297569275,1.220588207244873,1.3606442213058472,1.9383753538131714,1.7983193397521973,1.6757702827453613,1.5357142686843872,1.5707283020019531,1.3256303071975708,1.343137264251709,0.5203081369400024,0.15266107022762299,0.012605042196810246,0.5028011202812195,0.4852941036224365,0.36274510622024536,0.46778711676597595,0.4852941036224365,-0.17997199296951294,-0.3025210201740265,-0.9677870869636536,0.13515406847000122,-1.2478991746902466,0.7829131484031677,0.6603641510009766,0.450280100107193,0.22268907725811005,0.17016807198524475,0.25770309567451477,0.32773110270500183,0.9229691624641418,0.5203081369400024,-0.1449579894542694,-0.3025210201740265,-0.16246499121189117,-1.0028011798858643,-1.3179271221160889,-1.457983136177063,-1.1253501176834106,-1.1428571939468384,-1.1253501176834106,-1.0728291273117065,-1.1603641510009766,-1.3354341983795166,-1.0728291273117065,-1.2829132080078125,-1.0553221702575684,-0.7226890921592712,-1.1253501176834106,-0.9502801299095154,-1.0553221702575684,-1.3179271221160889,-1.3179271221160889,-1.3704482316970825,-1.1428571939468384,-1.3179271221160889,-1.7030812501907349,-1.2478991746902466,1.378151297569275,0.7478991746902466,1.2731091976165771,0.3977591097354889,-1.9481792449951172,-1.3004201650619507,-1.895658254623413,-2.0007002353668213,-2.0357143878936768,-2.018207311630249,-1.2478991746902466,-1.7030812501907349,-0.4075630307197571,-1.895658254623413,-1.808123230934143,-1.755602240562439,-1.3354341983795166,-1.930672287940979,-0.1449579894542694,-0.17997199296951294,-1.0028011798858643,-1.0553221702575684,-1.2654061317443848,-1.2829132080078125,-1.0203081369400024,-1.2128851413726807,-1.1953781843185425,-1.2128851413726807,-0.9852941036224365,-1.1603641510009766,-1.0728291273117065,-1.3004201650619507,0.2927170991897583,0.6953781247138977,0.3452380895614624,-0.5476190447807312,0.6253501176834106,1.6407562494277954,1.308123230934143,1.5007002353668213,1.518207311630249,1.2030812501907349,1.430672287940979,1.518207311630249,1.483193278312683,1.133053183555603,1.430672287940979,0.2927170991897583,2.0084033012390137,0.6428571343421936,0.5728291273117065,0.9229691624641418,-0.16246499121189117,-0.21498599648475647,-1.3879551887512207,-0.28501400351524353,-0.8627451062202454,-0.4950980246067047,-1.1428571939468384,-0.4075630307197571,-0.6351540684700012,0.22268907725811005,0.32773110270500183,0.20518207550048828,0.9404761791229248,0.4327731132507324,0.5728291273117065,0.15266107022762299,-0.32002800703048706,-0.9152660965919495,0.030112044885754585,-0.3025210201740265,0.6428571343421936,0.36274510622024536,0.8704481720924377,0.7478991746902466,1.308123230934143,1.2030812501907349,1.1155462265014648,1.4131652116775513,1.4131652116775513,1.2030812501907349,1.6232492923736572,0.9754902124404907,0.030112044885754585,-0.5826330780982971,-1.1253501176834106,-1.1953781843185425,-1.1778711080551147,-0.9502801299095154,-1.3879551887512207,-0.9677870869636536,-0.9677870869636536,-1.1778711080551147,-0.9152660965919495,-0.8977590799331665,-0.9502801299095154,-1.0378150939941406,-0.8977590799331665,-1.0028011798858643,-1.2654061317443848,-1.0378150939941406,-1.2303920984268188,-1.2654061317443848,-1.1078431606292725,-1.0028011798858643,-0.9327731132507324,-1.0203081369400024,-0.8977590799331665,-0.8977590799331665,-0.9677870869636536,-0.6876750588417053,-0.9152660965919495,-0.6176470518112183,-1.0378150939941406,-0.5301120281219482,-0.9327731132507324,-1.0378150939941406,-0.9502801299095154,-0.9327731132507324,-0.9677870869636536,-1.0028011798858643,-0.9152660965919495,-0.9152660965919495,-0.7051820755004883,-0.7401960492134094,-0.7226890921592712,-0.6876750588417053,-0.5651260614395142,-0.5651260614395142,-0.7226890921592712,-1.0903360843658447,-1.0553221702575684,-1.1603641510009766],[-0.8627451062202454,-0.3550420105457306,-0.47759103775024414,-0.6876750588417053,-0.17997199296951294,-0.10994397848844528,0.08263305574655533,0.0476190485060215,0.11764705926179886,-0.33753502368927,-0.26750701665878296,-0.02240896411240101,0.030112044885754585,-0.28501400351524353,-0.12745098769664764,-0.26750701665878296,-0.3550420105457306,-0.5301120281219482,-0.4425770342350006,-0.0049019609577953815,0.5028011202812195,0.9579831957817078,0.5203081369400024,-0.10994397848844528,0.32773110270500183,0.5553221106529236,0.8879551887512207,1.1505602598190308,1.483193278312683,1.3606442213058472,1.2906162738800049,1.0280112028121948,0.9404761791229248,0.31022408604621887,1.220588207244873,1.518207311630249,1.395658254623413,1.5357142686843872,1.5357142686843872,1.518207311630249,1.8333333730697632,0.9579831957817078,0.8004201650619507,-0.25,-0.47759103775024414,0.5203081369400024,0.030112044885754585,0.2401960790157318,0.7303921580314636,0.6428571343421936,0.08263305574655533,0.5028011202812195,-0.32002800703048706,0.4327731132507324,-1.1428571939468384,0.18767507374286652,-0.23249299824237823,0.25770309567451477,0.32773110270500183,-0.03991596773266792,0.1001400575041771,0.3452380895614624,0.27521008253097534,0.6778711676597595,-0.42507001757621765,-0.8627451062202454,-0.6001400351524353,-0.9502801299095154,-1.1428571939468384,-1.3179271221160889,-1.1778711080551147,-1.2128851413726807,-1.0028011798858643,-0.9677870869636536,-1.0378150939941406,-0.9852941036224365,-1.0028011798858643,-0.9677870869636536,-0.8977590799331665,-0.8802521228790283,-0.8802521228790283,-1.1953781843185425,-1.1778711080551147,-0.9502801299095154,-1.0203081369400024,-1.0203081369400024,-1.0728291273117065,-1.0203081369400024,-1.0553221702575684,-1.2829132080078125,-0.7226890921592712,-0.33753502368927,-0.7577030658721924,0.5553221106529236,-1.843137264251709,-2.018207311630249,-2.018207311630249,-2.018207311630249,-1.965686321258545,-1.9481792449951172,-1.930672287940979,-1.895658254623413,-0.5651260614395142,-2.0007002353668213,-1.9131652116775513,-2.0357143878936768,-1.9481792449951172,-2.0357143878936768,-0.9502801299095154,-0.17997199296951294,-0.9502801299095154,-1.3704482316970825,-1.1603641510009766,-1.0903360843658447,-1.0028011798858643,-1.3529411554336548,-1.2829132080078125,-1.0203081369400024,-1.1953781843185425,-0.6701680421829224,-1.3354341983795166,-1.3179271221160889,1.0630252361297607,0.450280100107193,-0.37254902720451355,-0.7401960492134094,-0.5301120281219482,1.693277359008789,1.7633053064346313,1.7107843160629272,1.6407562494277954,1.8683472871780396,1.5007002353668213,1.3256303071975708,1.483193278312683,1.045518159866333,0.4852941036224365,-0.0049019609577953815,-0.23249299824237823,0.15266107022762299,1.2380952835083008,0.9579831957817078,0.7303921580314636,-0.4425770342350006,0.9404761791229248,-0.8802521228790283,-0.4950980246067047,-0.3550420105457306,-1.5980392694473267,-0.16246499121189117,0.15266107022762299,-0.23249299824237823,-0.1449579894542694,0.9054622054100037,-0.37254902720451355,0.3977591097354889,-0.33753502368927,0.5203081369400024,0.06512605398893356,-0.7401960492134094,-0.8977590799331665,-0.9327731132507324,-0.6876750588417053,0.20518207550048828,0.3977591097354889,0.9054622054100037,0.9054622054100037,1.1855741739273071,1.133053183555603,1.6757702827453613,1.0980392694473267,1.518207311630249,1.2380952835083008,1.1155462265014648,0.5553221106529236,-0.5126050710678101,-0.9327731132507324,-1.0728291273117065,-0.9852941036224365,-1.0553221702575684,-1.0728291273117065,-1.0378150939941406,-1.1603641510009766,-1.0203081369400024,-0.7752100825309753,-0.9677870869636536,-1.1253501176834106,-1.0378150939941406,-1.2478991746902466,-1.0203081369400024,-1.2654061317443848,-1.3179271221160889,-1.3179271221160889,-1.2128851413726807,-1.1428571939468384,-1.4229692220687866,-1.0903360843658447,-1.1778711080551147,-0.8277310729026794,-1.0903360843658447,-0.8277310729026794,-0.7226890921592712,-0.8802521228790283,-0.9677870869636536,-0.6701680421829224,-0.9677870869636536,-0.9327731132507324,-0.8102241158485413,-0.8977590799331665,-0.9152660965919495,-0.7752100825309753,-0.8277310729026794,-0.8102241158485413,-0.8977590799331665,-0.8102241158485413,-0.7401960492134094,-0.9502801299095154,-0.8277310729026794,-0.7577030658721924,-0.7226890921592712,-0.6176470518112183,-0.7577030658721924,-0.8627451062202454,-0.9677870869636536],[-0.7051820755004883,-0.7927170991897583,-0.6701680421829224,-0.4950980246067047,-0.3900560140609741,-0.4075630307197571,-0.5126050710678101,-0.37254902720451355,0.0476190485060215,-0.05742296949028969,-0.16246499121189117,-0.4425770342350006,-0.3550420105457306,-0.3900560140609741,-0.21498599648475647,-0.17997199296951294,-0.5826330780982971,-0.42507001757621765,-0.4425770342350006,0.11764705926179886,0.9229691624641418,1.220588207244873,1.220588207244873,1.518207311630249,1.3606442213058472,0.8179271817207336,0.2401960790157318,1.168067216873169,1.1855741739273071,1.0105042457580566,1.168067216873169,0.9404761791229248,0.2401960790157318,0.27521008253097534,0.3977591097354889,0.22268907725811005,0.2927170991897583,0.6078431606292725,0.450280100107193,0.7654061913490295,0.31022408604621887,-0.28501400351524353,0.8704481720924377,1.4131652116775513,0.7303921580314636,0.6778711676597595,0.36274510622024536,0.6603641510009766,0.38025209307670593,0.3452380895614624,0.18767507374286652,0.8529411554336548,0.450280100107193,0.32773110270500183,-1.0028011798858643,-0.6351540684700012,-0.0049019609577953815,0.13515406847000122,0.22268907725811005,0.5378151535987854,0.4327731132507324,0.4327731132507324,0.13515406847000122,0.4327731132507324,0.06512605398893356,-0.7226890921592712,-1.5280112028121948,-1.5630252361297607,-1.492997169494629,-1.1253501176834106,-1.3704482316970825,-1.1428571939468384,-1.0728291273117065,-1.1778711080551147,-1.0903360843658447,-1.0728291273117065,-0.9852941036224365,-0.8277310729026794,-0.9327731132507324,-0.9327731132507324,-0.8277310729026794,-0.6701680421829224,-0.6176470518112183,-0.9677870869636536,-1.1428571939468384,-0.9852941036224365,-1.1078431606292725,-0.7752100825309753,-1.1253501176834106,-1.0028011798858643,-0.9852941036224365,-0.7927170991897583,-1.1778711080551147,-0.7927170991897583,-0.6351540684700012,-1.983193278312683,-2.0357143878936768,-2.018207311630249,-2.018207311630249,-2.0007002353668213,-1.930672287940979,-1.457983136177063,-0.9327731132507324,-1.4229692220687866,-1.9481792449951172,-2.0357143878936768,-2.018207311630249,-2.018207311630249,-1.0203081369400024,-0.3025210201740265,-0.7401960492134094,-1.4404761791229248,-1.3879551887512207,-0.9852941036224365,-1.0378150939941406,-1.0028011798858643,-0.9502801299095154,-0.9502801299095154,-1.1953781843185425,-1.457983136177063,-1.0028011798858643,-1.1778711080551147,-0.8102241158485413,-0.5126050710678101,-0.8277310729026794,-0.8102241158485413,-1.0203081369400024,0.7654061913490295,1.5357142686843872,1.7107843160629272,2.235994338989258,1.6757702827453613,0.8704481720924377,1.0630252361297607,1.343137264251709,1.6407562494277954,1.2906162738800049,1.2030812501907349,1.378151297569275,0.450280100107193,0.5728291273117065,0.6778711676597595,0.9579831957817078,1.0105042457580566,1.5007002353668213,0.9404761791229248,0.9229691624641418,-2.0357143878936768,-0.8277310729026794,0.1001400575041771,-0.32002800703048706,-0.0049019609577953815,-1.0378150939941406,-0.8627451062202454,-0.6526610851287842,-0.8102241158485413,-1.492997169494629,0.46778711676597595,0.3452380895614624,-0.8977590799331665,0.4327731132507324,-0.09243697673082352,-0.47759103775024414,-0.6701680421829224,0.3452380895614624,0.25770309567451477,1.168067216873169,1.220588207244873,1.518207311630249,1.5707283020019531,1.395658254623413,1.553221344947815,1.1155462265014648,1.0980392694473267,0.38025209307670593,-1.1778711080551147,-1.3879551887512207,-1.2829132080078125,-1.1253501176834106,-1.0203081369400024,-0.8627451062202454,-1.2303920984268188,-1.1253501176834106,-0.9502801299095154,-0.9852941036224365,-1.0728291273117065,-1.1078431606292725,-1.1603641510009766,-1.1078431606292725,-0.9327731132507324,-1.0028011798858643,-1.0203081369400024,-1.2128851413726807,-1.0203081369400024,-1.0903360843658447,-1.0903360843658447,-1.0203081369400024,-1.0203081369400024,-0.9327731132507324,-0.8802521228790283,-1.0553221702575684,-0.8452380895614624,-0.9327731132507324,-0.9152660965919495,-0.8977590799331665,-1.0378150939941406,-0.8977590799331665,-1.2478991746902466,-1.0378150939941406,-0.7226890921592712,-0.9152660965919495,-0.9677870869636536,-0.8802521228790283,-0.9152660965919495,-0.6701680421829224,-0.8102241158485413,-0.9152660965919495,-0.6526610851287842,-0.7226890921592712,-0.6176470518112183,-0.7401960492134094,-0.4600840210914612,-0.6526610851287842,-1.1603641510009766],[-0.9677870869636536,-0.9327731132507324,-0.26750701665878296,-0.7401960492134094,-0.5126050710678101,-0.25,-0.4075630307197571,-0.5651260614395142,-0.12745098769664764,-0.16246499121189117,-0.21498599648475647,-0.42507001757621765,-0.3025210201740265,0.13515406847000122,-0.02240896411240101,-0.1449579894542694,-0.16246499121189117,-0.4425770342350006,-0.3550420105457306,0.17016807198524475,0.3452380895614624,1.4131652116775513,1.2731091976165771,1.343137264251709,1.4131652116775513,1.2030812501907349,-0.0049019609577953815,0.06512605398893356,1.0630252361297607,1.080532193183899,1.2906162738800049,1.255602240562439,0.9229691624641418,1.045518159866333,1.0105042457580566,0.9579831957817078,0.9579831957817078,1.0630252361297607,0.7128851413726807,0.3452380895614624,0.6603641510009766,-0.6526610851287842,-0.1974789947271347,0.7829131484031677,-0.07492997497320175,0.5203081369400024,0.8879551887512207,0.9579831957817078,0.6078431606292725,0.030112044885754585,0.7654061913490295,0.8704481720924377,0.7128851413726807,0.012605042196810246,-0.6701680421829224,-0.8277310729026794,-0.6001400351524353,0.030112044885754585,0.25770309567451477,0.5203081369400024,0.7128851413726807,0.3977591097354889,0.22268907725811005,0.22268907725811005,0.06512605398893356,-0.6176470518112183,-1.1778711080551147,-1.1603641510009766,-1.1953781843185425,-1.1253501176834106,-1.1428571939468384,-1.1253501176834106,-1.0028011798858643,-1.0378150939941406,-0.8977590799331665,-0.9502801299095154,-0.9502801299095154,-0.7051820755004883,-1.0378150939941406,-0.6876750588417053,-1.0203081369400024,-0.8102241158485413,-0.9502801299095154,-0.7051820755004883,-1.0903360843658447,-0.9327731132507324,-1.0553221702575684,-1.2303920984268188,-0.7226890921592712,-0.8802521228790283,-1.0203081369400024,-1.2478991746902466,-1.1428571939468384,-1.0203081369400024,-0.4950980246067047,-2.018207311630249,-2.018207311630249,-2.018207311630249,-2.0357143878936768,-2.0357143878936768,-1.633053183555603,-1.1778711080551147,-1.0553221702575684,-0.7752100825309753,-2.018207311630249,-1.983193278312683,-1.9481792449951172,-1.878151297569275,-1.2829132080078125,-0.9677870869636536,-0.8802521228790283,-1.4404761791229248,-1.1428571939468384,-1.3529411554336548,-1.0728291273117065,-1.0728291273117065,-1.0728291273117065,-1.1078431606292725,-1.1953781843185425,-1.0203081369400024,-1.1603641510009766,-0.17997199296951294,-0.12745098769664764,-1.1428571939468384,-0.7226890921592712,-0.4600840210914612,-1.1953781843185425,0.38025209307670593,0.8179271817207336,1.430672287940979,1.8508403301239014,1.1855741739273071,0.9404761791229248,1.7282912731170654,1.7107843160629272,0.7128851413726807,0.450280100107193,1.0280112028121948,0.5903361439704895,-0.0049019609577953815,0.1001400575041771,1.465686321258545,1.5007002353668213,-0.16246499121189117,0.38025209307670593,0.5203081369400024,1.5707283020019531,1.0980392694473267,-0.3550420105457306,-1.5630252361297607,-2.0357143878936768,-1.808123230934143,-0.4075630307197571,-0.6701680421829224,-1.3879551887512207,-1.1078431606292725,-1.1603641510009766,-0.3550420105457306,0.06512605398893356,-0.7927170991897583,-0.21498599648475647,-0.9677870869636536,-0.1974789947271347,-0.7752100825309753,0.4852941036224365,0.18767507374286652,0.9404761791229248,1.045518159866333,1.8683472871780396,1.5357142686843872,1.7983193397521973,1.6757702827453613,1.4481792449951172,0.38025209307670593,-1.0903360843658447,-1.0028011798858643,-1.3179271221160889,-1.1428571939468384,-0.9327731132507324,-1.0203081369400024,-0.8802521228790283,-1.0028011798858643,-0.8452380895614624,-1.0203081369400024,-0.8452380895614624,-0.9327731132507324,-1.1253501176834106,-0.9502801299095154,-0.9152660965919495,-1.0903360843658447,-1.2128851413726807,-1.0903360843658447,-1.0378150939941406,-1.457983136177063,-1.3704482316970825,-1.1953781843185425,-1.0903360843658447,-0.9677870869636536,-1.1953781843185425,-1.0553221702575684,-0.8977590799331665,-0.9852941036224365,-0.8977590799331665,-1.0203081369400024,-0.8102241158485413,-0.7401960492134094,-0.8277310729026794,-1.0378150939941406,-0.8802521228790283,-0.8277310729026794,-0.9327731132507324,-0.7927170991897583,-0.7577030658721924,-0.8102241158485413,-0.9152660965919495,-0.8802521228790283,-0.7752100825309753,-0.6701680421829224,-0.8452380895614624,-0.7927170991897583,-0.4950980246067047,-0.4075630307197571,-0.5126050710678101,-0.7226890921592712],[-0.6001400351524353,-1.1078431606292725,-0.9327731132507324,-0.23249299824237823,-0.5126050710678101,-0.4075630307197571,-0.02240896411240101,0.31022408604621887,0.08263305574655533,-0.03991596773266792,-0.12745098769664764,-0.23249299824237823,-0.47759103775024414,-0.17997199296951294,-0.10994397848844528,-0.3025210201740265,-0.7577030658721924,-1.1953781843185425,-0.6876750588417053,-0.5476190447807312,-0.0049019609577953815,1.3256303071975708,1.4131652116775513,1.553221344947815,1.6582633256912231,1.553221344947815,0.5203081369400024,-0.1974789947271347,-0.07492997497320175,-0.6876750588417053,0.8004201650619507,1.378151297569275,1.2906162738800049,1.4481792449951172,1.3256303071975708,1.1505602598190308,0.46778711676597595,0.9929971694946289,1.0280112028121948,-0.02240896411240101,0.5728291273117065,-1.2478991746902466,-0.7401960492134094,-0.28501400351524353,0.36274510622024536,0.6253501176834106,0.17016807198524475,0.9404761791229248,0.9054622054100037,-0.32002800703048706,0.4852941036224365,0.38025209307670593,0.41526609659194946,0.08263305574655533,-0.4600840210914612,-0.8802521228790283,-0.8977590799331665,-0.0049019609577953815,0.1001400575041771,0.6778711676597595,0.6428571343421936,0.6778711676597595,0.25770309567451477,0.030112044885754585,0.13515406847000122,-1.1078431606292725,-1.0378150939941406,-1.4229692220687866,-1.3179271221160889,-1.3004201650619507,-1.1603641510009766,-1.2128851413726807,-0.9502801299095154,-0.9852941036224365,-0.8977590799331665,-1.0203081369400024,-1.0028011798858643,-0.8977590799331665,-0.9677870869636536,-1.0203081369400024,-0.7051820755004883,-0.8102241158485413,-0.8627451062202454,-1.0203081369400024,-0.9327731132507324,-1.0903360843658447,-0.9852941036224365,-1.0553221702575684,-1.2128851413726807,-1.1078431606292725,-0.9852941036224365,-1.1078431606292725,-1.1603641510009766,-0.9852941036224365,-0.7226890921592712,-2.0357143878936768,-1.965686321258545,-1.983193278312683,-1.895658254623413,-2.018207311630249,-2.0357143878936768,-1.6855741739273071,-0.8452380895614624,-0.3550420105457306,-1.965686321258545,-2.018207311630249,-1.983193278312683,-1.755602240562439,-1.6505602598190308,-1.808123230934143,-1.633053183555603,-1.3704482316970825,-1.0903360843658447,-0.9502801299095154,-1.0553221702575684,-0.9677870869636536,-1.0028011798858643,-1.2128851413726807,-1.2478991746902466,-1.2829132080078125,-1.4404761791229248,-0.16246499121189117,-0.7226890921592712,-1.6505602598190308,-1.1953781843185425,-0.3900560140609741,-0.8452380895614624,0.41526609659194946,1.605742335319519,1.308123230934143,1.6757702827453613,1.0630252361297607,1.605742335319519,1.6757702827453613,1.553221344947815,1.1855741739273071,1.2731091976165771,1.0105042457580566,0.6253501176834106,1.1505602598190308,1.6407562494277954,1.7107843160629272,1.7457983493804932,2.3235294818878174,1.6232492923736572,-0.02240896411240101,1.308123230934143,1.6407562494277954,0.9579831957817078,-1.4754902124404907,-0.7226890921592712,-0.6701680421829224,-0.17997199296951294,-1.1603641510009766,-1.2829132080078125,-0.9502801299095154,-1.0728291273117065,-1.0378150939941406,0.25770309567451477,0.1001400575041771,-0.25,-0.09243697673082352,0.32773110270500183,0.0476190485060215,0.18767507374286652,1.1855741739273071,0.9054622054100037,1.1505602598190308,1.5882352590560913,1.6232492923736572,1.518207311630249,1.168067216873169,1.6407562494277954,-0.0049019609577953815,-1.1603641510009766,-1.0903360843658447,-1.2128851413726807,-1.0203081369400024,-1.1603641510009766,-1.1603641510009766,-1.3004201650619507,-1.1953781843185425,-1.2303920984268188,-0.8977590799331665,-0.6876750588417053,-1.0028011798858643,-0.9502801299095154,-1.1078431606292725,-0.8627451062202454,-1.1078431606292725,-1.1428571939468384,-1.0903360843658447,-1.3179271221160889,-1.0903360843658447,-1.2829132080078125,-1.1078431606292725,-1.0553221702575684,-1.1603641510009766,-1.0903360843658447,-1.0203081369400024,-0.8452380895614624,-0.8977590799331665,-0.9852941036224365,-0.7752100825309753,-0.7752100825309753,-0.6876750588417053,-0.7226890921592712,-0.6526610851287842,-0.8452380895614624,-1.0203081369400024,-0.8102241158485413,-0.8802521228790283,-0.6176470518112183,-0.7752100825309753,-0.7051820755004883,-0.8277310729026794,-0.8977590799331665,-0.8977590799331665,-0.6876750588417053,-0.7226890921592712,-0.4950980246067047,-0.5126050710678101,-0.5826330780982971,-0.4950980246067047],[-0.8277310729026794,-1.1078431606292725,-1.0903360843658447,-0.7577030658721924,-0.33753502368927,-0.42507001757621765,-0.4950980246067047,0.0476190485060215,-0.25,-0.4075630307197571,0.1001400575041771,-0.07492997497320175,-0.09243697673082352,-0.4075630307197571,-0.21498599648475647,-0.3025210201740265,-0.5476190447807312,0.06512605398893356,0.25770309567451477,0.3452380895614624,-0.03991596773266792,1.0630252361297607,0.8879551887512207,1.1155462265014648,1.3606442213058472,1.1855741739273071,1.0105042457580566,-0.1974789947271347,-1.3179271221160889,-1.1778711080551147,0.1001400575041771,0.7128851413726807,1.220588207244873,1.168067216873169,0.31022408604621887,0.3452380895614624,-0.7226890921592712,0.5203081369400024,1.080532193183899,1.1155462265014648,0.5028011202812195,-0.25,-0.7577030658721924,0.38025209307670593,0.46778711676597595,1.395658254623413,0.06512605398893356,1.1155462265014648,-0.1449579894542694,0.08263305574655533,0.15266107022762299,0.11764705926179886,-0.0049019609577953815,0.4327731132507324,-0.23249299824237823,-0.8802521228790283,-1.0028011798858643,-0.10994397848844528,0.38025209307670593,0.6778711676597595,0.8004201650619507,0.31022408604621887,0.18767507374286652,-0.07492997497320175,-0.07492997497320175,-1.4229692220687866,-1.1603641510009766,-0.9852941036224365,-1.1253501176834106,-1.0728291273117065,-1.1428571939468384,-0.9502801299095154,-1.0903360843658447,-1.1778711080551147,-1.0203081369400024,-0.9502801299095154,-1.0903360843658447,-0.9327731132507324,-0.7401960492134094,-0.8102241158485413,-0.7927170991897583,-0.7051820755004883,-0.8802521228790283,-0.8452380895614624,-0.8452380895614624,-1.1253501176834106,-0.9677870869636536,-0.9327731132507324,-0.9152660965919495,-1.1953781843185425,-0.8977590799331665,-1.0553221702575684,-1.0378150939941406,-0.7577030658721924,-0.8977590799331665,-2.0357143878936768,-2.0357143878936768,-1.878151297569275,-0.4950980246067047,-1.7731091976165771,-2.0357143878936768,-1.965686321258545,-1.4754902124404907,-1.7731091976165771,-1.3179271221160889,-1.930672287940979,-1.930672287940979,-1.983193278312683,-1.580532193183899,-1.668067216873169,-1.5630252361297607,-1.1778711080551147,-1.1953781843185425,-1.2128851413726807,-0.9152660965919495,-1.0378150939941406,-0.8102241158485413,-1.0028011798858643,-1.0728291273117065,-0.8802521228790283,-0.02240896411240101,-0.6176470518112183,-0.6001400351524353,-0.8802521228790283,-0.7577030658721924,-0.33753502368927,-1.3529411554336548,1.1855741739273071,1.9908963441848755,1.3256303071975708,1.6757702827453613,1.2906162738800049,1.7107843160629272,1.7107843160629272,1.518207311630249,1.1155462265014648,1.430672287940979,1.518207311630249,0.31022408604621887,1.7457983493804932,0.7128851413726807,1.308123230934143,0.38025209307670593,1.133053183555603,1.308123230934143,1.133053183555603,1.4481792449951172,-1.2478991746902466,0.6778711676597595,0.36274510622024536,-0.9327731132507324,-0.7401960492134094,-0.09243697673082352,0.25770309567451477,-1.1253501176834106,-0.9852941036224365,-1.6155462265014648,-1.2128851413726807,-0.32002800703048706,0.5728291273117065,-0.5651260614395142,-0.8102241158485413,-0.6876750588417053,0.41526609659194946,0.7478991746902466,0.11764705926179886,0.46778711676597595,1.308123230934143,1.5357142686843872,1.7107843160629272,1.2906162738800049,1.518207311630249,1.483193278312683,0.9929971694946289,-0.5476190447807312,-0.9677870869636536,-0.9852941036224365,-1.3004201650619507,-1.1953781843185425,-1.1953781843185425,-1.2128851413726807,-1.1253501176834106,-1.2478991746902466,-0.9677870869636536,-0.9327731132507324,-0.9852941036224365,-0.9327731132507324,-1.0203081369400024,-0.9327731132507324,-1.0378150939941406,-0.9502801299095154,-1.1953781843185425,-1.2303920984268188,-1.0553221702575684,-1.2128851413726807,-1.2303920984268188,-1.2654061317443848,-0.9677870869636536,-0.9852941036224365,-0.7401960492134094,-0.7752100825309753,-0.6526610851287842,-0.8802521228790283,-0.7401960492134094,-0.9852941036224365,-0.8802521228790283,-0.8452380895614624,-0.9152660965919495,-0.8802521228790283,-0.7752100825309753,-0.9677870869636536,-0.9327731132507324,-0.6351540684700012,-0.6351540684700012,-0.8977590799331665,-0.8277310729026794,-0.8627451062202454,-0.9327731132507324,-0.9327731132507324,-0.7752100825309753,-0.4950980246067047,-0.6176470518112183,-0.47759103775024414,-0.26750701665878296],[-0.9677870869636536,-1.0203081369400024,-0.8977590799331665,-0.6351540684700012,-0.4950980246067047,-0.4425770342350006,-0.26750701665878296,0.030112044885754585,-0.03991596773266792,-0.03991596773266792,-0.02240896411240101,-0.09243697673082352,-0.10994397848844528,-0.28501400351524353,-0.4075630307197571,-0.4600840210914612,0.15266107022762299,0.38025209307670593,0.22268907725811005,-0.6876750588417053,-0.33753502368927,0.5378151535987854,0.20518207550048828,-0.33753502368927,0.46778711676597595,0.5553221106529236,0.8354341983795166,0.32773110270500183,-0.9152660965919495,-0.9677870869636536,-0.5826330780982971,-0.1449579894542694,0.3977591097354889,0.6953781247138977,0.9579831957817078,0.7478991746902466,-1.2128851413726807,-0.6001400351524353,-0.05742296949028969,0.6078431606292725,1.3606442213058472,0.3452380895614624,-0.33753502368927,0.6428571343421936,0.5028011202812195,0.6253501176834106,0.4852941036224365,0.6603641510009766,-0.07492997497320175,-0.3900560140609741,0.36274510622024536,0.4327731132507324,-0.0049019609577953815,0.32773110270500183,0.17016807198524475,-0.25,-0.23249299824237823,-0.16246499121189117,0.6078431606292725,0.6778711676597595,0.5378151535987854,0.2927170991897583,0.17016807198524475,-0.5651260614395142,-0.9327731132507324,-1.3704482316970825,-0.9852941036224365,-1.2478991746902466,-1.1603641510009766,-1.1953781843185425,-1.1778711080551147,-1.0378150939941406,-1.0728291273117065,-0.9677870869636536,-1.0728291273117065,-1.0028011798858643,-1.0378150939941406,-0.8977590799331665,-1.0378150939941406,-0.9677870869636536,-0.8802521228790283,-0.8802521228790283,-1.0728291273117065,-0.7577030658721924,-0.8627451062202454,-0.8277310729026794,-0.8277310729026794,-1.0028011798858643,-0.8452380895614624,-0.7577030658721924,-1.1428571939468384,-0.8452380895614624,-1.0028011798858643,-0.8977590799331665,-0.8802521228790283,-1.720588207244873,-2.0357143878936768,-0.9677870869636536,0.20518207550048828,-1.930672287940979,-1.895658254623413,-1.965686321258545,-1.755602240562439,-1.580532193183899,-0.8277310729026794,-1.843137264251709,-1.6855741739273071,-1.808123230934143,-1.8256303071975708,-1.545518159866333,-1.2303920984268188,-1.2478991746902466,-1.2128851413726807,-1.1953781843185425,-1.0553221702575684,-1.0028011798858643,-1.0728291273117065,-0.9327731132507324,-0.8627451062202454,-1.492997169494629,-0.21498599648475647,-0.8977590799331665,-0.9502801299095154,-0.8802521228790283,-1.3179271221160889,-0.25,-1.4404761791229248,1.483193278312683,1.168067216873169,1.5357142686843872,1.168067216873169,1.4131652116775513,1.2906162738800049,1.1505602598190308,1.220588207244873,1.255602240562439,1.3256303071975708,1.3606442213058472,1.080532193183899,1.1505602598190308,1.5357142686843872,0.8704481720924377,1.220588207244873,1.3256303071975708,1.378151297569275,1.5007002353668213,2.4285714626312256,1.6232492923736572,-0.28501400351524353,1.1855741739273071,0.15266107022762299,0.06512605398893356,-1.633053183555603,-1.2478991746902466,-0.12745098769664764,-1.0203081369400024,-1.2128851413726807,-1.8256303071975708,-1.2829132080078125,-0.5476190447807312,-0.26750701665878296,-0.6176470518112183,0.030112044885754585,0.7654061913490295,0.5028011202812195,1.605742335319519,1.0105042457580566,0.8004201650619507,1.343137264251709,1.7457983493804932,1.7282912731170654,1.7107843160629272,1.255602240562439,0.7303921580314636,-0.4075630307197571,-1.2128851413726807,-1.1778711080551147,-1.0903360843658447,-1.1428571939468384,-1.2478991746902466,-1.2829132080078125,-1.0553221702575684,-1.0728291273117065,-1.0728291273117065,-1.0553221702575684,-1.0378150939941406,-1.2128851413726807,-0.9852941036224365,-1.0553221702575684,-0.9152660965919495,-1.0203081369400024,-1.0903360843658447,-0.9677870869636536,-1.1778711080551147,-1.3354341983795166,-1.2128851413726807,-0.8627451062202454,-1.0028011798858643,-0.9852941036224365,-0.9327731132507324,-1.0553221702575684,-1.0553221702575684,-0.8102241158485413,-0.9152660965919495,-1.0728291273117065,-0.9327731132507324,-0.8277310729026794,-0.7752100825309753,-0.7051820755004883,-0.8977590799331665,-0.9852941036224365,-0.9327731132507324,-1.0728291273117065,-0.9152660965919495,-0.9502801299095154,-0.8627451062202454,-0.9502801299095154,-0.7051820755004883,-0.7927170991897583,-0.7577030658721924,-0.6526610851287842,-0.7401960492134094,-0.4075630307197571,-0.25],[-1.3879551887512207,-0.9502801299095154,-0.8802521228790283,-0.8627451062202454,-1.0903360843658447,-0.5651260614395142,-0.21498599648475647,-0.16246499121189117,-0.07492997497320175,-0.05742296949028969,-0.17997199296951294,0.012605042196810246,-0.3025210201740265,-0.21498599648475647,-0.5826330780982971,-0.5301120281219482,-0.4600840210914612,-0.7226890921592712,-0.7401960492134094,0.17016807198524475,0.36274510622024536,0.27521008253097534,-0.4425770342350006,-0.5651260614395142,-0.16246499121189117,0.17016807198524475,-0.3025210201740265,-0.5826330780982971,0.32773110270500183,-0.0049019609577953815,-0.3025210201740265,-0.6001400351524353,0.25770309567451477,-0.3900560140609741,-0.4075630307197571,-0.4425770342350006,-0.7927170991897583,-1.8606442213058472,-1.1253501176834106,-1.1603641510009766,-0.23249299824237823,0.3452380895614624,-0.21498599648475647,-1.0728291273117065,0.22268907725811005,0.450280100107193,0.31022408604621887,0.2927170991897583,0.32773110270500183,0.7303921580314636,-0.07492997497320175,0.5903361439704895,0.3977591097354889,0.13515406847000122,0.4327731132507324,0.06512605398893356,0.18767507374286652,0.6253501176834106,0.7303921580314636,0.41526609659194946,0.38025209307670593,-0.12745098769664764,0.13515406847000122,-0.7927170991897583,-1.492997169494629,-1.1603641510009766,-1.3004201650619507,-1.1253501176834106,-1.2303920984268188,-1.0028011798858643,-1.0203081369400024,-0.9677870869636536,-0.9327731132507324,-1.1253501176834106,-0.9327731132507324,-0.9502801299095154,-1.0028011798858643,-0.6701680421829224,-0.7226890921592712,-0.8452380895614624,-0.9677870869636536,-0.7927170991897583,-0.8452380895614624,-0.9852941036224365,-1.0028011798858643,-0.8802521228790283,-0.9677870869636536,-0.9852941036224365,-0.8102241158485413,-0.7401960492134094,-1.0378150939941406,-0.8802521228790283,-0.7051820755004883,-1.1078431606292725,-1.2829132080078125,-1.0553221702575684,-1.895658254623413,-0.4075630307197571,-0.17997199296951294,-2.018207311630249,-1.9481792449951172,-1.895658254623413,-2.0357143878936768,-1.808123230934143,-0.6176470518112183,-1.5980392694473267,-1.492997169494629,-1.457983136177063,-1.2303920984268188,-1.4404761791229248,-1.1603641510009766,-1.1953781843185425,-0.9502801299095154,-0.9677870869636536,-1.0028011798858643,-0.9152660965919495,-1.2829132080078125,-1.1253501176834106,-1.2128851413726807,-0.12745098769664764,-0.6351540684700012,-0.7226890921592712,-1.6855741739273071,-0.7752100825309753,-0.8627451062202454,-0.5826330780982971,-0.9327731132507324,1.3606442213058472,1.308123230934143,1.4131652116775513,1.553221344947815,2.0784313678741455,1.308123230934143,1.7282912731170654,1.518207311630249,0.9229691624641418,1.2380952835083008,1.483193278312683,1.8158262968063354,1.8858543634414673,0.9404761791229248,0.18767507374286652,1.5007002353668213,1.605742335319519,0.9229691624641418,0.6428571343421936,1.3256303071975708,0.41526609659194946,1.3606442213058472,1.6232492923736572,0.5203081369400024,1.0630252361297607,-1.5280112028121948,-0.3550420105457306,-0.8802521228790283,-1.2654061317443848,-1.580532193183899,-1.1428571939468384,-1.2829132080078125,-1.1253501176834106,-0.28501400351524353,-1.0903360843658447,-0.6001400351524353,0.13515406847000122,0.6953781247138977,0.7654061913490295,1.1155462265014648,1.308123230934143,1.553221344947815,1.483193278312683,1.693277359008789,1.430672287940979,1.430672287940979,1.168067216873169,0.18767507374286652,-0.8277310729026794,-1.1428571939468384,-1.1428571939468384,-1.0553221702575684,-1.0553221702575684,-1.0553221702575684,-1.1253501176834106,-1.0378150939941406,-1.0203081369400024,-0.8977590799331665,-0.7927170991897583,-1.0728291273117065,-1.0553221702575684,-0.9677870869636536,-1.1253501176834106,-1.0378150939941406,-0.9852941036224365,-1.0903360843658447,-1.4404761791229248,-1.1078431606292725,-1.1253501176834106,-0.8977590799331665,-1.2478991746902466,-0.8102241158485413,-1.1078431606292725,-0.9677870869636536,-0.7226890921592712,-0.8627451062202454,-0.8277310729026794,-0.5651260614395142,-0.9502801299095154,-0.7226890921592712,-0.9152660965919495,-0.9852941036224365,-0.7752100825309753,-0.9152660965919495,-0.8977590799331665,-0.9152660965919495,-0.7401960492134094,-0.8452380895614624,-0.6176470518112183,-0.6701680421829224,-0.9152660965919495,-0.7752100825309753,-0.7051820755004883,-0.7927170991897583,-0.6701680421829224,-0.5826330780982971,-0.4600840210914612],[-1.3004201650619507,-1.1603641510009766,-1.1603641510009766,-1.0903360843658447,-0.6001400351524353,-0.7927170991897583,-0.6001400351524353,-0.1449579894542694,-0.09243697673082352,-0.17997199296951294,-0.4075630307197571,-0.25,-0.4600840210914612,-0.42507001757621765,-0.5301120281219482,-0.5651260614395142,-0.5826330780982971,-0.5826330780982971,-1.1078431606292725,-0.3025210201740265,0.46778711676597595,0.6253501176834106,0.6253501176834106,0.9229691624641418,0.4852941036224365,-0.5651260614395142,-0.8277310729026794,-0.26750701665878296,0.9929971694946289,0.6953781247138977,0.18767507374286652,-0.26750701665878296,0.030112044885754585,-1.5630252361297607,-1.4754902124404907,-0.5651260614395142,0.25770309567451477,-1.3179271221160889,-1.3879551887512207,-1.1778711080551147,-0.05742296949028969,1.080532193183899,1.133053183555603,0.030112044885754585,0.06512605398893356,-0.7051820755004883,0.8004201650619507,0.8704481720924377,0.32773110270500183,0.8004201650619507,0.46778711676597595,0.36274510622024536,0.450280100107193,0.5378151535987854,0.2401960790157318,0.450280100107193,0.8004201650619507,0.7478991746902466,0.7478991746902466,0.2927170991897583,-0.4425770342350006,-0.5301120281219482,-0.1974789947271347,-1.3004201650619507,-1.633053183555603,-1.1778711080551147,-1.1603641510009766,-1.1778711080551147,-1.1253501176834106,-0.9852941036224365,-0.9502801299095154,-0.9677870869636536,-1.1428571939468384,-1.1078431606292725,-1.0378150939941406,-1.0553221702575684,-0.8277310729026794,-0.9152660965919495,-0.8977590799331665,-0.8452380895614624,-0.8102241158485413,-0.8977590799331665,-0.7051820755004883,-0.8977590799331665,-0.7752100825309753,-1.0553221702575684,-1.0203081369400024,-0.9852941036224365,-0.6876750588417053,-0.7927170991897583,-1.0028011798858643,-0.8977590799331665,-1.0903360843658447,-0.7927170991897583,-0.9502801299095154,-1.1428571939468384,-2.0357143878936768,-1.2654061317443848,-0.6701680421829224,-1.843137264251709,-2.0007002353668213,-0.6526610851287842,-1.7906162738800049,-1.9481792449951172,-1.545518159866333,-1.1778711080551147,-1.5630252361297607,-1.5980392694473267,-1.0903360843658447,-1.1428571939468384,-1.1778711080551147,-1.2128851413726807,-0.9852941036224365,-0.9502801299095154,-0.9677870869636536,-1.0728291273117065,-1.0903360843658447,-1.2303920984268188,-0.8452380895614624,-0.07492997497320175,-0.42507001757621765,-0.6876750588417053,-1.808123230934143,-1.5980392694473267,-1.0903360843658447,-0.5826330780982971,-0.21498599648475647,1.4131652116775513,1.693277359008789,1.2906162738800049,1.693277359008789,1.4131652116775513,1.5707283020019531,1.7983193397521973,1.6232492923736572,1.378151297569275,1.8683472871780396,1.553221344947815,0.8179271817207336,1.168067216873169,0.2401960790157318,1.343137264251709,0.5378151535987854,-0.7051820755004883,0.13515406847000122,0.5028011202812195,-0.5476190447807312,-0.17997199296951294,0.012605042196810246,-0.17997199296951294,0.8179271817207336,0.20518207550048828,-0.5126050710678101,-0.6351540684700012,-1.3179271221160889,-0.10994397848844528,-0.8977590799331665,-1.0903360843658447,-0.8977590799331665,-0.9677870869636536,-1.492997169494629,-0.33753502368927,-0.6701680421829224,-0.9152660965919495,0.8879551887512207,0.5203081369400024,1.0105042457580566,0.6778711676597595,1.2906162738800049,1.5882352590560913,1.5007002353668213,1.5707283020019531,1.3606442213058472,0.9754902124404907,0.6428571343421936,-0.9502801299095154,-1.0378150939941406,-1.0728291273117065,-1.1078431606292725,-1.0028011798858643,-1.0553221702575684,-1.0028011798858643,-1.1428571939468384,-0.8802521228790283,-1.1953781843185425,-1.0378150939941406,-0.9677870869636536,-0.8802521228790283,-0.9327731132507324,-1.0378150939941406,-0.9677870869636536,-1.1428571939468384,-1.1778711080551147,-1.1603641510009766,-1.1078431606292725,-1.1953781843185425,-1.1078431606292725,-1.1078431606292725,-1.1428571939468384,-0.8627451062202454,-0.7577030658721924,-0.8627451062202454,-0.6176470518112183,-0.9152660965919495,-0.8102241158485413,-0.8627451062202454,-0.8802521228790283,-0.9502801299095154,-1.0378150939941406,-0.9327731132507324,-0.8277310729026794,-0.9152660965919495,-0.8277310729026794,-0.8277310729026794,-0.9152660965919495,-0.8802521228790283,-0.7577030658721924,-0.7927170991897583,-0.8102241158485413,-0.7226890921592712,-0.8802521228790283,-0.6701680421829224,-0.6526610851287842,-0.4600840210914612],[-1.1253501176834106,-1.2128851413726807,-1.1953781843185425,-0.9327731132507324,-1.0203081369400024,-0.7401960492134094,-0.6351540684700012,-0.7577030658721924,-0.4600840210914612,-0.3900560140609741,-0.37254902720451355,-0.25,-0.47759103775024414,-0.42507001757621765,0.1001400575041771,-0.21498599648475647,-0.42507001757621765,0.15266107022762299,-0.03991596773266792,-0.8977590799331665,-0.25,0.6253501176834106,1.133053183555603,1.6582633256912231,0.9754902124404907,0.7829131484031677,0.17016807198524475,0.41526609659194946,0.6428571343421936,0.6253501176834106,1.220588207244873,-0.42507001757621765,-1.1953781843185425,-1.9481792449951172,-1.492997169494629,0.5378151535987854,1.0280112028121948,1.7282912731170654,0.6428571343421936,0.7128851413726807,1.6757702827453613,1.5357142686843872,1.080532193183899,1.0630252361297607,0.6078431606292725,0.6078431606292725,-0.5126050710678101,0.2927170991897583,-0.6176470518112183,-0.1449579894542694,0.012605042196810246,0.15266107022762299,0.5553221106529236,-0.07492997497320175,-0.1974789947271347,0.5028011202812195,0.7128851413726807,0.8179271817207336,0.6428571343421936,0.27521008253097534,-0.26750701665878296,-0.6001400351524353,-1.1253501176834106,-1.2478991746902466,-1.2128851413726807,-1.2128851413726807,-1.2654061317443848,-0.9502801299095154,-1.2128851413726807,-1.0728291273117065,-0.8452380895614624,-0.9677870869636536,-1.0553221702575684,-1.0203081369400024,-1.1078431606292725,-0.8627451062202454,-0.9327731132507324,-0.9502801299095154,-0.7752100825309753,-0.8977590799331665,-1.2128851413726807,-1.1078431606292725,-0.9327731132507324,-0.8977590799331665,-0.8802521228790283,-0.8977590799331665,-0.9327731132507324,-0.9502801299095154,-0.8977590799331665,-0.7927170991897583,-1.1428571939468384,-0.8802521228790283,-0.5651260614395142,-0.9502801299095154,-0.7577030658721924,-0.9852941036224365,-2.018207311630249,-2.0357143878936768,-2.0357143878936768,-2.0357143878936768,-1.633053183555603,-1.2303920984268188,-1.895658254623413,-1.9131652116775513,-1.965686321258545,-1.2478991746902466,-1.457983136177063,-1.1778711080551147,-1.3179271221160889,-1.2478991746902466,-1.1078431606292725,-1.1778711080551147,-1.0028011798858643,-1.0028011798858643,-0.9327731132507324,-1.1253501176834106,-0.9677870869636536,-1.1603641510009766,0.0476190485060215,0.012605042196810246,-1.3354341983795166,-1.5105042457580566,-2.0357143878936768,-1.720588207244873,-0.5476190447807312,-1.3879551887512207,-1.1953781843185425,0.7303921580314636,0.7128851413726807,0.9054622054100037,1.2380952835083008,0.6253501176834106,0.7829131484031677,1.1155462265014648,0.6253501176834106,0.8704481720924377,1.0980392694473267,0.9929971694946289,0.32773110270500183,0.0476190485060215,-0.6176470518112183,-0.03991596773266792,0.17016807198524475,-0.6176470518112183,-0.4425770342350006,0.27521008253097534,0.1001400575041771,-0.16246499121189117,-1.3004201650619507,-0.02240896411240101,0.15266107022762299,-0.26750701665878296,-0.25,-0.16246499121189117,0.7128851413726807,-0.32002800703048706,-0.8802521228790283,-1.4054621458053589,-1.2654061317443848,-1.545518159866333,-1.457983136177063,-1.1953781843185425,-0.5476190447807312,-0.8802521228790283,0.7654061913490295,-0.21498599648475647,0.27521008253097534,0.8179271817207336,0.5378151535987854,1.3256303071975708,1.518207311630249,1.395658254623413,1.220588207244873,0.5028011202812195,-0.6176470518112183,0.27521008253097534,-0.33753502368927,-0.8977590799331665,-1.0728291273117065,-1.0553221702575684,-1.0378150939941406,-1.2303920984268188,-0.9677870869636536,-0.9852941036224365,-1.0903360843658447,-0.9327731132507324,-1.1603641510009766,-0.8102241158485413,-0.9502801299095154,-0.9152660965919495,-0.8977590799331665,-0.9327731132507324,-1.0553221702575684,-1.0903360843658447,-1.0553221702575684,-1.2654061317443848,-0.9852941036224365,-0.7752100825309753,-1.1078431606292725,-0.8627451062202454,-0.7401960492134094,-0.6701680421829224,-0.6176470518112183,-0.9327731132507324,-0.7752100825309753,-0.7752100825309753,-0.8802521228790283,-0.7401960492134094,-0.8102241158485413,-0.6526610851287842,-0.6701680421829224,-0.7577030658721924,-0.7226890921592712,-0.9152660965919495,-0.9502801299095154,-0.7752100825309753,-0.6001400351524353,-0.9502801299095154,-0.5826330780982971,-1.0378150939941406,-0.7401960492134094,-0.4600840210914612,-0.6351540684700012,-0.6001400351524353],[-1.0378150939941406,-1.4054621458053589,-1.3529411554336548,-1.1603641510009766,-1.1603641510009766,-0.8977590799331665,-1.0553221702575684,-0.5826330780982971,-0.4600840210914612,-0.21498599648475647,-0.3900560140609741,-0.37254902720451355,-0.42507001757621765,-0.17997199296951294,0.17016807198524475,0.27521008253097534,-0.6176470518112183,0.25770309567451477,0.41526609659194946,0.2927170991897583,-0.5826330780982971,-0.5301120281219482,1.0105042457580566,0.7654061913490295,1.378151297569275,0.9229691624641418,1.0105042457580566,0.5728291273117065,-0.09243697673082352,0.6778711676597595,1.168067216873169,1.133053183555603,0.5728291273117065,-1.6155462265014648,-1.545518159866333,-0.8977590799331665,1.1505602598190308,1.9033613204956055,1.308123230934143,1.5707283020019531,1.9033613204956055,1.518207311630249,1.0105042457580566,0.7829131484031677,0.7654061913490295,0.9054622054100037,0.6078431606292725,-0.5476190447807312,-0.47759103775024414,0.25770309567451477,0.5028011202812195,0.36274510622024536,0.38025209307670593,-0.05742296949028969,0.17016807198524475,0.450280100107193,0.7303921580314636,0.6428571343421936,0.22268907725811005,0.3977591097354889,-0.21498599648475647,-0.9677870869636536,-1.2478991746902466,-1.1078431606292725,-1.1253501176834106,-1.1953781843185425,-1.0378150939941406,-1.0903360843658447,-1.1778711080551147,-1.0903360843658447,-0.9502801299095154,-0.9327731132507324,-0.8452380895614624,-0.7927170991897583,-0.8977590799331665,-0.7401960492134094,-0.8452380895614624,-0.9502801299095154,-1.0553221702575684,-0.9327731132507324,-0.8977590799331665,-0.8977590799331665,-1.0203081369400024,-0.7401960492134094,-0.9327731132507324,-0.7226890921592712,-0.7752100825309753,-0.8277310729026794,-0.7927170991897583,-0.7577030658721924,-0.7752100825309753,-0.9502801299095154,-0.8977590799331665,-0.7577030658721924,-0.9502801299095154,-0.9502801299095154,-0.9677870869636536,-1.5630252361297607,-2.0357143878936768,-2.0007002353668213,-1.983193278312683,-1.965686321258545,-1.9481792449951172,-2.0007002353668213,-1.8256303071975708,-1.0553221702575684,-1.492997169494629,-0.9327731132507324,-1.1953781843185425,-1.1953781843185425,-1.0203081369400024,-1.0378150939941406,-1.1778711080551147,-1.0378150939941406,-0.9327731132507324,-1.0553221702575684,-1.0903360843658447,0.25770309567451477,-0.3900560140609741,-0.5301120281219482,-0.7577030658721924,-1.545518159866333,-1.878151297569275,-1.6155462265014648,-1.1953781843185425,-1.1778711080551147,-0.5651260614395142,-0.16246499121189117,-0.09243697673082352,0.38025209307670593,-0.02240896411240101,0.06512605398893356,0.5553221106529236,0.4327731132507324,-0.17997199296951294,0.38025209307670593,0.7128851413726807,-0.26750701665878296,-1.0553221702575684,-1.1603641510009766,-1.0028011798858643,0.36274510622024536,0.2401960790157318,-0.7401960492134094,0.7303921580314636,-0.8452380895614624,0.9054622054100037,0.9404761791229248,-0.6526610851287842,-0.8627451062202454,-0.4600840210914612,-0.8627451062202454,-0.09243697673082352,-0.42507001757621765,-0.05742296949028969,-1.2829132080078125,-0.7752100825309753,-0.47759103775024414,0.012605042196810246,0.20518207550048828,-1.1253501176834106,-0.8102241158485413,-0.8102241158485413,-1.720588207244873,-0.6876750588417053,0.012605042196810246,0.5028011202812195,0.6428571343421936,0.5728291273117065,1.3256303071975708,1.7282912731170654,1.3256303071975708,1.0105042457580566,0.5728291273117065,-0.6176470518112183,0.31022408604621887,-0.25,-1.0553221702575684,-1.1428571939468384,-1.1078431606292725,-0.9677870869636536,-0.8627451062202454,-0.9852941036224365,-1.2128851413726807,-0.8977590799331665,-1.3004201650619507,-1.0203081369400024,-1.0028011798858643,-0.9502801299095154,-0.9327731132507324,-0.8977590799331665,-1.0728291273117065,-1.4054621458053589,-1.0903360843658447,-1.0903360843658447,-0.8452380895614624,-0.9152660965919495,-0.8102241158485413,-0.7226890921592712,-0.8977590799331665,-0.8802521228790283,-1.0028011798858643,-1.0553221702575684,-0.7226890921592712,-0.9677870869636536,-0.6526610851287842,-0.7051820755004883,-0.8102241158485413,-0.8627451062202454,-1.0028011798858643,-0.9327731132507324,-0.6701680421829224,-0.8452380895614624,-0.9152660965919495,-1.0728291273117065,-0.7051820755004883,-0.4950980246067047,-0.8977590799331665,-0.6876750588417053,-0.7577030658721924,-0.6876750588417053,-0.5651260614395142,-0.5651260614395142,-0.9502801299095154],[-1.4404761791229248,-1.2654061317443848,-1.2829132080078125,-1.3179271221160889,-1.2128851413726807,-1.1953781843185425,-1.0028011798858643,-0.7927170991897583,-0.6701680421829224,-0.6876750588417053,-0.3025210201740265,-0.3550420105457306,-0.4425770342350006,-0.47759103775024414,0.25770309567451477,-0.02240896411240101,-0.9327731132507324,0.1001400575041771,0.6253501176834106,1.133053183555603,0.6603641510009766,-0.12745098769664764,0.18767507374286652,0.31022408604621887,-0.21498599648475647,-0.26750701665878296,-0.25,-0.42507001757621765,0.32773110270500183,0.38025209307670593,0.8179271817207336,0.9754902124404907,0.8704481720924377,-0.5126050710678101,-0.47759103775024414,1.3256303071975708,1.430672287940979,1.430672287940979,1.0630252361297607,2.1834733486175537,1.9733893871307373,1.8158262968063354,1.1155462265014648,0.6778711676597595,0.06512605398893356,0.9929971694946289,0.9579831957817078,0.5028011202812195,0.41526609659194946,0.41526609659194946,0.6253501176834106,0.2927170991897583,0.3452380895614624,0.36274510622024536,0.27521008253097534,0.46778711676597595,0.31022408604621887,0.31022408604621887,0.012605042196810246,0.08263305574655533,-0.42507001757621765,-1.1778711080551147,-1.3529411554336548,-1.2128851413726807,-1.3529411554336548,-1.3529411554336548,-1.1778711080551147,-0.9152660965919495,-0.8627451062202454,-0.9677870869636536,-1.0378150939941406,-1.1953781843185425,-1.1078431606292725,-1.2128851413726807,-1.0553221702575684,-0.8627451062202454,-0.8277310729026794,-0.9502801299095154,-0.7401960492134094,-0.8277310729026794,-0.9502801299095154,-0.7401960492134094,-0.8802521228790283,-0.8277310729026794,-0.8452380895614624,-0.7577030658721924,-0.8277310729026794,-0.8277310729026794,-0.7927170991897583,-1.0378150939941406,-0.8627451062202454,-1.0553221702575684,-0.7927170991897583,-0.6001400351524353,-0.9852941036224365,-1.0728291273117065,-0.8802521228790283,-0.9327731132507324,-1.965686321258545,-1.983193278312683,-1.9481792449951172,-1.8256303071975708,-2.018207311630249,-1.965686321258545,-1.492997169494629,-1.0728291273117065,-1.2478991746902466,-1.2303920984268188,-1.2128851413726807,-1.0378150939941406,-0.9677870869636536,-0.9677870869636536,-0.8977590799331665,-1.2303920984268188,-1.0203081369400024,-1.0728291273117065,-0.7927170991897583,-0.25,-0.5301120281219482,-0.5301120281219482,-1.0028011798858643,-1.843137264251709,-1.8256303071975708,-1.983193278312683,-1.3179271221160889,-1.4229692220687866,-1.2478991746902466,-1.5630252361297607,-1.2478991746902466,-0.4600840210914612,-0.3025210201740265,-0.5126050710678101,-0.6001400351524353,-0.6176470518112183,-0.6701680421829224,-0.42507001757621765,-0.4600840210914612,-0.8277310729026794,-0.7577030658721924,-1.3704482316970825,-1.0903360843658447,1.7107843160629272,1.3606442213058472,-0.21498599648475647,0.3452380895614624,-0.5126050710678101,0.8354341983795166,0.7478991746902466,-0.4600840210914612,1.168067216873169,0.25770309567451477,-0.02240896411240101,-0.7927170991897583,-1.1078431606292725,-0.6526610851287842,0.41526609659194946,-0.9152660965919495,-1.3704482316970825,0.08263305574655533,0.36274510622024536,-0.9152660965919495,-0.5301120281219482,0.3452380895614624,-0.17997199296951294,-0.4425770342350006,-0.8802521228790283,-0.32002800703048706,-0.26750701665878296,0.8179271817207336,1.0280112028121948,1.465686321258545,1.378151297569275,0.8179271817207336,-0.42507001757621765,-0.4075630307197571,1.080532193183899,0.5728291273117065,-0.1449579894542694,-1.3704482316970825,-1.0378150939941406,-0.9502801299095154,-0.9852941036224365,-0.9152660965919495,-0.9502801299095154,-1.1603641510009766,-0.9852941036224365,-0.9677870869636536,-1.0728291273117065,-1.0028011798858643,-0.8627451062202454,-1.1603641510009766,-1.4754902124404907,-1.2478991746902466,-0.9677870869636536,-1.1603641510009766,-0.9677870869636536,-1.0378150939941406,-1.2303920984268188,-1.0203081369400024,-0.7927170991897583,-0.7226890921592712,-0.6876750588417053,-0.7577030658721924,-0.7051820755004883,-0.6701680421829224,-0.9152660965919495,-0.8102241158485413,-0.7051820755004883,-0.7401960492134094,-0.6351540684700012,-0.7577030658721924,-1.0378150939941406,-0.6351540684700012,-0.8102241158485413,-0.8102241158485413,-0.7577030658721924,-0.7401960492134094,-0.9327731132507324,-0.8277310729026794,-0.7752100825309753,-0.8277310729026794,-0.7051820755004883,-0.9152660965919495,-0.8627451062202454],[-1.2478991746902466,-1.1078431606292725,-1.1778711080551147,-1.1953781843185425,-1.3004201650619507,-1.1078431606292725,-1.0378150939941406,-1.0203081369400024,-0.7577030658721924,-0.8102241158485413,-0.5126050710678101,-0.21498599648475647,-0.6001400351524353,-0.33753502368927,-0.25,0.06512605398893356,-0.32002800703048706,0.13515406847000122,0.5728291273117065,1.308123230934143,1.378151297569275,0.9229691624641418,0.5728291273117065,0.8179271817207336,0.9054622054100037,-0.5476190447807312,-1.1253501176834106,-0.5476190447807312,0.1001400575041771,0.06512605398893356,0.5028011202812195,-0.5651260614395142,0.450280100107193,0.1001400575041771,0.5728291273117065,1.5357142686843872,1.780812382698059,1.9208683967590332,1.9033613204956055,1.8333333730697632,1.8333333730697632,1.7107843160629272,1.045518159866333,1.0630252361297607,1.0280112028121948,0.9579831957817078,1.0105042457580566,1.0630252361297607,0.6428571343421936,0.6253501176834106,0.8354341983795166,0.41526609659194946,0.2927170991897583,0.6428571343421936,0.5378151535987854,0.38025209307670593,0.012605042196810246,0.18767507374286652,0.06512605398893356,-0.8977590799331665,-0.7927170991897583,-1.1953781843185425,-1.3354341983795166,-1.2303920984268188,-1.1603641510009766,-1.3354341983795166,-0.9677870869636536,-1.2478991746902466,-1.0903360843658447,-1.0028011798858643,-1.0378150939941406,-1.0203081369400024,-1.0203081369400024,-0.9502801299095154,-1.0028011798858643,-0.6876750588417053,-0.8802521228790283,-0.9677870869636536,-1.1603641510009766,-0.9852941036224365,-0.9677870869636536,-0.9677870869636536,-0.9502801299095154,-0.8102241158485413,-0.5301120281219482,-0.7401960492134094,-0.8452380895614624,-0.8802521228790283,-0.8452380895614624,-0.8802521228790283,-0.7401960492134094,-0.8102241158485413,-0.7927170991897583,-0.7752100825309753,-1.0553221702575684,-0.8802521228790283,-0.9152660965919495,-0.7401960492134094,-1.6155462265014648,-1.8606442213058472,-1.9481792449951172,-0.5476190447807312,-0.6526610851287842,-1.965686321258545,-1.7380952835083008,-0.9327731132507324,-1.5280112028121948,-1.1603641510009766,-1.0903360843658447,-1.1603641510009766,-1.1253501176834106,-1.1078431606292725,-1.2303920984268188,-1.0903360843658447,-1.0203081369400024,-0.6351540684700012,-0.1449579894542694,-0.3550420105457306,-0.8277310729026794,-1.1778711080551147,-1.492997169494629,-1.8256303071975708,-2.018207311630249,-2.0357143878936768,-1.1953781843185425,-1.3704482316970825,-0.8277310729026794,-0.9152660965919495,-0.47759103775024414,-0.6351540684700012,-0.12745098769664764,0.18767507374286652,0.20518207550048828,-0.02240896411240101,0.15266107022762299,-0.6351540684700012,-0.25,-0.6001400351524353,0.22268907725811005,0.3977591097354889,-1.6855741739273071,-0.21498599648475647,1.2906162738800049,-0.8802521228790283,0.8004201650619507,2.1834733486175537,1.378151297569275,1.8333333730697632,-0.37254902720451355,0.7303921580314636,-0.02240896411240101,-0.4075630307197571,-0.6526610851287842,-1.3004201650619507,-1.0728291273117065,0.06512605398893356,1.395658254623413,-1.0903360843658447,-0.7577030658721924,0.4327731132507324,-0.0049019609577953815,-0.47759103775024414,0.11764705926179886,0.11764705926179886,-0.9152660965919495,0.06512605398893356,-1.492997169494629,-0.8627451062202454,0.9404761791229248,1.4481792449951172,1.2906162738800049,1.0630252361297607,1.483193278312683,0.012605042196810246,-0.16246499121189117,0.5028011202812195,1.3256303071975708,0.5378151535987854,-0.7051820755004883,-0.9852941036224365,-1.0553221702575684,-1.0728291273117065,-1.2654061317443848,-0.9152660965919495,-1.0553221702575684,-1.1078431606292725,-1.1428571939468384,-0.8102241158485413,-1.0028011798858643,-0.9852941036224365,-1.1253501176834106,-1.1078431606292725,-0.9152660965919495,-1.0378150939941406,-1.0028011798858643,-1.0028011798858643,-1.2303920984268188,-1.0203081369400024,-0.8452380895614624,-0.7226890921592712,-0.7752100825309753,-0.8452380895614624,-0.9677870869636536,-0.8452380895614624,-0.8452380895614624,-0.7401960492134094,-0.7752100825309753,-0.6701680421829224,-0.8977590799331665,-1.0203081369400024,-0.8977590799331665,-0.6701680421829224,-0.8977590799331665,-0.7752100825309753,-0.7226890921592712,-0.8977590799331665,-0.8977590799331665,-0.8977590799331665,-1.0203081369400024,-0.9677870869636536,-1.0553221702575684,-0.7577030658721924,-0.9502801299095154,-0.6701680421829224],[-1.2654061317443848,-1.2654061317443848,-1.2829132080078125,-1.4054621458053589,-1.5280112028121948,-1.2303920984268188,-1.0553221702575684,-1.1953781843185425,-0.8627451062202454,-0.7577030658721924,-0.4950980246067047,-0.5476190447807312,-0.3025210201740265,-0.02240896411240101,-0.4425770342350006,0.3977591097354889,0.46778711676597595,-0.5126050710678101,-0.7401960492134094,0.7829131484031677,1.3606442213058472,1.308123230934143,0.0476190485060215,0.15266107022762299,1.4131652116775513,-0.42507001757621765,-1.7731091976165771,-1.3179271221160889,-1.0553221702575684,-0.16246499121189117,-0.7051820755004883,0.9579831957817078,0.6428571343421936,-0.1974789947271347,-1.2829132080078125,1.3256303071975708,1.9558823108673096,1.0980392694473267,0.9754902124404907,0.7128851413726807,1.6407562494277954,0.9754902124404907,1.1505602598190308,1.2380952835083008,1.5882352590560913,1.343137264251709,0.9754902124404907,0.7128851413726807,1.080532193183899,0.8354341983795166,0.4852941036224365,0.38025209307670593,0.3452380895614624,0.27521008253097534,0.38025209307670593,0.13515406847000122,-0.07492997497320175,0.31022408604621887,-0.02240896411240101,-0.6001400351524353,-1.5280112028121948,-1.1253501176834106,-1.1253501176834106,-1.4404761791229248,-1.4054621458053589,-0.9502801299095154,-0.9502801299095154,-1.0553221702575684,-1.1953781843185425,-0.9852941036224365,-0.8802521228790283,-1.2303920984268188,-1.0553221702575684,-1.0378150939941406,-0.9152660965919495,-0.8627451062202454,-0.9327731132507324,-0.7927170991897583,-0.6701680421829224,-0.8977590799331665,-0.9852941036224365,-0.8977590799331665,-0.8802521228790283,-0.8102241158485413,-0.6701680421829224,-0.7577030658721924,-0.7577030658721924,-0.8102241158485413,-0.7401960492134094,-1.0203081369400024,-0.7226890921592712,-0.5826330780982971,-0.7752100825309753,-0.5826330780982971,-0.7752100825309753,-1.0203081369400024,-0.7051820755004883,-1.2128851413726807,-1.2654061317443848,-0.3025210201740265,-1.6155462265014648,-1.965686321258545,-1.3004201650619507,-2.0357143878936768,-1.1778711080551147,-1.1253501176834106,-1.2654061317443848,-1.1253501176834106,-1.1953781843185425,-1.0028011798858643,-0.8977590799331665,-1.1253501176834106,-1.1078431606292725,-1.1253501176834106,-0.9502801299095154,-0.09243697673082352,-0.09243697673082352,-0.6176470518112183,-0.8452380895614624,-1.2654061317443848,-1.5630252361297607,-1.7906162738800049,-2.0357143878936768,-1.983193278312683,-1.1253501176834106,-1.3179271221160889,0.31022408604621887,-0.9152660965919495,-0.3550420105457306,0.32773110270500183,-0.09243697673082352,-0.1974789947271347,-0.17997199296951294,-0.0049019609577953815,0.030112044885754585,-0.3900560140609741,0.31022408604621887,-0.23249299824237823,0.5903361439704895,0.17016807198524475,0.36274510622024536,0.8354341983795166,0.7303921580314636,-0.16246499121189117,0.7478991746902466,1.7107843160629272,-0.6176470518112183,1.6757702827453613,1.080532193183899,0.41526609659194946,0.6078431606292725,-0.7226890921592712,-1.492997169494629,-0.9852941036224365,0.31022408604621887,0.22268907725811005,-1.492997169494629,1.0280112028121948,-0.05742296949028969,-1.1428571939468384,-0.1974789947271347,0.15266107022762299,-0.05742296949028969,0.2927170991897583,-0.21498599648475647,-0.8452380895614624,-0.9327731132507324,-1.5105042457580566,0.450280100107193,0.9404761791229248,1.343137264251709,1.080532193183899,1.2380952835083008,-0.17997199296951294,-0.3025210201740265,0.9229691624641418,1.255602240562439,1.2380952835083008,-0.12745098769664764,-0.6351540684700012,-0.9677870869636536,-0.7752100825309753,-1.0553221702575684,-0.9852941036224365,-1.0378150939941406,-0.9152660965919495,-1.0028011798858643,-1.0028011798858643,-0.9327731132507324,-1.0553221702575684,-0.9327731132507324,-0.9152660965919495,-1.1078431606292725,-0.9852941036224365,-0.9152660965919495,-1.0553221702575684,-1.1778711080551147,-0.8627451062202454,-0.9327731132507324,-0.8277310729026794,-0.8102241158485413,-0.7577030658721924,-0.8102241158485413,-0.8627451062202454,-0.8977590799331665,-0.7577030658721924,-0.8277310729026794,-0.5476190447807312,-0.3550420105457306,-0.5301120281219482,-0.5476190447807312,-0.8452380895614624,-1.0203081369400024,-0.8102241158485413,-0.8627451062202454,-0.8977590799331665,-0.7401960492134094,-0.6351540684700012,-0.6701680421829224,-0.7226890921592712,-0.7927170991897583,-0.6876750588417053,-0.7401960492134094,-0.6701680421829224],[-0.9327731132507324,-1.2829132080078125,-1.5630252361297607,-1.2303920984268188,-1.3354341983795166,-1.4754902124404907,-1.1603641510009766,-0.8452380895614624,-1.1078431606292725,-0.7051820755004883,-0.4425770342350006,-0.17997199296951294,-0.32002800703048706,-0.17997199296951294,-0.4425770342350006,0.5028011202812195,0.8879551887512207,0.8879551887512207,0.7829131484031677,0.2927170991897583,1.168067216873169,1.2906162738800049,0.5028011202812195,-0.25,0.8004201650619507,-0.23249299824237823,-0.0049019609577953815,-0.6001400351524353,-0.4075630307197571,0.9229691624641418,-0.1449579894542694,-0.6176470518112183,0.012605042196810246,-1.3004201650619507,-0.4075630307197571,0.6078431606292725,1.255602240562439,1.7633053064346313,0.7478991746902466,1.378151297569275,1.483193278312683,1.3606442213058472,1.7633053064346313,1.7457983493804932,1.3606442213058472,1.1505602598190308,0.9754902124404907,0.7654061913490295,0.8529411554336548,0.6078431606292725,0.5378151535987854,0.38025209307670593,0.3452380895614624,0.1001400575041771,0.2401960790157318,0.030112044885754585,-0.0049019609577953815,-0.23249299824237823,0.0476190485060215,-0.7401960492134094,-1.2303920984268188,-1.2829132080078125,-1.2478991746902466,-1.2829132080078125,-1.1253501176834106,-1.2829132080078125,-1.2303920984268188,-1.0728291273117065,-1.1253501176834106,-1.0553221702575684,-1.0203081369400024,-0.9502801299095154,-0.9677870869636536,-0.7401960492134094,-0.9852941036224365,-0.9677870869636536,-0.8627451062202454,-0.9677870869636536,-0.9152660965919495,-0.9852941036224365,-0.7577030658721924,-0.9152660965919495,-0.7927170991897583,-0.8452380895614624,-0.6351540684700012,-0.8627451062202454,-0.8277310729026794,-0.7226890921592712,-0.6701680421829224,-0.7401960492134094,-0.6001400351524353,-0.7927170991897583,-0.5301120281219482,-0.5651260614395142,-0.7752100825309753,-0.6876750588417053,-0.7927170991897583,-1.1603641510009766,-0.6351540684700012,-1.1778711080551147,-1.0903360843658447,-1.7906162738800049,-1.9131652116775513,-2.018207311630249,-1.9481792449951172,-1.457983136177063,-1.3879551887512207,-1.1078431606292725,-1.0028011798858643,-1.0553221702575684,-0.8277310729026794,-1.1428571939468384,-1.2128851413726807,-0.9502801299095154,0.0476190485060215,0.0476190485060215,-0.17997199296951294,-0.4950980246067047,-0.8802521228790283,-1.5105042457580566,-1.7380952835083008,-1.7906162738800049,-1.7731091976165771,-1.8606442213058472,-1.545518159866333,-1.492997169494629,0.5903361439704895,-0.7927170991897583,-0.03991596773266792,-0.23249299824237823,0.3452380895614624,0.1001400575041771,0.5378151535987854,-0.8977590799331665,-0.17997199296951294,0.17016807198524475,0.4327731132507324,1.343137264251709,1.080532193183899,0.36274510622024536,1.6407562494277954,0.2401960790157318,1.4131652116775513,0.11764705926179886,-0.12745098769664764,1.553221344947815,0.22268907725811005,-0.17997199296951294,0.5028011202812195,0.27521008253097534,-0.6526610851287842,0.22268907725811005,-0.05742296949028969,-1.1253501176834106,-0.25,0.7654061913490295,1.553221344947815,-1.2478991746902466,-0.3025210201740265,0.1001400575041771,-0.12745098769664764,-0.42507001757621765,0.41526609659194946,-0.4600840210914612,-0.6001400351524353,-1.1428571939468384,-1.633053183555603,-0.8102241158485413,-0.3900560140609741,-0.0049019609577953815,0.25770309567451477,0.6253501176834106,0.5903361439704895,0.3452380895614624,-0.10994397848844528,0.5203081369400024,1.1155462265014648,1.518207311630249,1.0105042457580566,-0.6876750588417053,-1.1778711080551147,-1.0553221702575684,-1.0903360843658447,-0.8802521228790283,-0.9852941036224365,-1.1253501176834106,-0.9502801299095154,-0.9152660965919495,-1.1778711080551147,-0.9852941036224365,-0.9677870869636536,-1.1078431606292725,-1.1253501176834106,-1.1253501176834106,-1.2829132080078125,-1.1078431606292725,-1.1253501176834106,-0.8802521228790283,-0.9327731132507324,-0.9852941036224365,-0.8452380895614624,-0.9327731132507324,-0.8802521228790283,-0.9152660965919495,-0.6526610851287842,-0.7401960492134094,-0.8627451062202454,-0.6351540684700012,-0.7226890921592712,-0.7577030658721924,-0.7927170991897583,-0.8977590799331665,-0.7051820755004883,-0.6701680421829224,-0.7401960492134094,-0.4950980246067047,-0.7051820755004883,-0.7226890921592712,-0.8802521228790283,-1.1078431606292725,-0.7226890921592712,-0.7577030658721924,-0.7577030658721924,-0.7927170991897583],[-1.0903360843658447,-1.3179271221160889,-1.1778711080551147,-1.457983136177063,-1.3004201650619507,-1.2303920984268188,-1.1253501176834106,-1.0203081369400024,-1.2654061317443848,-0.9152660965919495,-0.7577030658721924,-0.9327731132507324,0.22268907725811005,0.6778711676597595,0.06512605398893356,-0.1449579894542694,0.6603641510009766,1.518207311630249,1.553221344947815,0.8879551887512207,0.5728291273117065,1.255602240562439,1.168067216873169,0.7829131484031677,-0.0049019609577953815,0.6778711676597595,0.32773110270500183,-1.3529411554336548,-1.0028011798858643,-0.47759103775024414,-0.3550420105457306,-2.0357143878936768,-2.018207311630249,-1.492997169494629,-0.5826330780982971,-0.6351540684700012,0.9404761791229248,0.9054622054100037,1.0105042457580566,1.2030812501907349,1.5707283020019531,1.518207311630249,1.8508403301239014,1.1855741739273071,1.220588207244873,1.1855741739273071,0.9404761791229248,-0.3550420105457306,0.18767507374286652,0.38025209307670593,0.11764705926179886,0.11764705926179886,0.18767507374286652,0.17016807198524475,-0.05742296949028969,0.1001400575041771,0.012605042196810246,0.6953781247138977,-0.26750701665878296,-1.3004201650619507,-1.2654061317443848,-1.3004201650619507,-1.1078431606292725,-1.2654061317443848,-1.1253501176834106,-0.9852941036224365,-1.1078431606292725,-0.9677870869636536,-1.1603641510009766,-0.8277310729026794,-1.0903360843658447,-1.0203081369400024,-0.8102241158485413,-0.9152660965919495,-0.7577030658721924,-0.9152660965919495,-0.9852941036224365,-0.8277310729026794,-0.9852941036224365,-0.7752100825309753,-0.6701680421829224,-0.9677870869636536,-0.8452380895614624,-0.7226890921592712,-0.6176470518112183,-0.9677870869636536,-0.9152660965919495,-0.7226890921592712,-0.5476190447807312,-0.9152660965919495,-0.6176470518112183,-0.4950980246067047,-0.7752100825309753,-0.6001400351524353,-0.7752100825309753,-0.9677870869636536,-0.8277310729026794,-0.9502801299095154,-0.7226890921592712,-1.1428571939468384,-2.0007002353668213,-1.633053183555603,-1.4404761791229248,-1.6155462265014648,-1.2303920984268188,-1.580532193183899,-1.0903360843658447,-1.3354341983795166,-1.1078431606292725,-0.8452380895614624,-0.7577030658721924,-1.0903360843658447,-0.6876750588417053,-0.4950980246067047,-0.05742296949028969,-0.17997199296951294,-0.28501400351524353,-0.7051820755004883,-1.2478991746902466,-1.5280112028121948,-1.7906162738800049,-1.7030812501907349,-1.668067216873169,-2.0007002353668213,-1.580532193183899,-0.6351540684700012,0.7128851413726807,-0.3550420105457306,0.20518207550048828,0.11764705926179886,0.3977591097354889,0.11764705926179886,-0.3025210201740265,-0.6876750588417053,-0.33753502368927,0.8529411554336548,0.31022408604621887,0.8879551887512207,1.255602240562439,-0.12745098769664764,0.27521008253097534,0.46778711676597595,0.27521008253097534,-1.4054621458053589,0.08263305574655533,-1.0728291273117065,-0.07492997497320175,-0.5301120281219482,-0.17997199296951294,-0.6351540684700012,1.0105042457580566,-0.25,-0.6176470518112183,0.5378151535987854,-0.6176470518112183,0.012605042196810246,0.2927170991897583,0.2927170991897583,-0.7752100825309753,0.46778711676597595,-0.3025210201740265,-0.6176470518112183,-0.3025210201740265,0.18767507374286652,-0.21498599648475647,-1.1078431606292725,-1.2303920984268188,0.18767507374286652,-0.09243697673082352,0.6603641510009766,0.5378151535987854,0.8529411554336548,1.080532193183899,0.5028011202812195,-0.42507001757621765,0.22268907725811005,1.1505602598190308,1.483193278312683,1.465686321258545,0.6778711676597595,-1.1778711080551147,-1.1603641510009766,-1.0378150939941406,-1.1078431606292725,-0.9852941036224365,-0.8452380895614624,-1.1253501176834106,-0.9852941036224365,-0.8977590799331665,-1.0553221702575684,-1.2303920984268188,-1.1428571939468384,-1.0553221702575684,-0.8977590799331665,-0.8802521228790283,-0.9502801299095154,-1.1953781843185425,-1.1603641510009766,-0.7752100825309753,-0.6526610851287842,-0.8102241158485413,-0.7752100825309753,-0.6001400351524353,-0.6701680421829224,-0.7927170991897583,-0.7577030658721924,-0.7927170991897583,-0.8802521228790283,-0.8977590799331665,-0.8452380895614624,-0.7927170991897583,-0.7401960492134094,-0.5126050710678101,-0.7051820755004883,-0.7226890921592712,-0.7927170991897583,-0.5126050710678101,-0.7051820755004883,-0.6176470518112183,-0.6351540684700012,-0.5651260614395142,-0.5476190447807312,-0.6176470518112183,-0.7577030658721924],[-0.8627451062202454,-0.9502801299095154,-1.0903360843658447,-1.3354341983795166,-1.3354341983795166,-1.6855741739273071,-1.4754902124404907,-1.3179271221160889,-1.2478991746902466,-0.8627451062202454,-0.7051820755004883,-0.7577030658721924,0.4852941036224365,1.0280112028121948,0.8354341983795166,-0.47759103775024414,-0.6176470518112183,0.6603641510009766,1.4481792449951172,1.2906162738800049,0.46778711676597595,0.8179271817207336,0.9579831957817078,0.7829131484031677,0.4327731132507324,0.8354341983795166,0.2401960790157318,-0.25,0.5028011202812195,-1.3004201650619507,-1.720588207244873,-1.9131652116775513,-1.9131652116775513,-1.1953781843185425,0.5203081369400024,-0.7051820755004883,-0.5126050710678101,0.7128851413726807,1.553221344947815,1.693277359008789,2.1309523582458496,2.0959384441375732,1.0105042457580566,0.8179271817207336,0.36274510622024536,0.6253501176834106,0.11764705926179886,-0.32002800703048706,-0.1449579894542694,0.11764705926179886,-0.16246499121189117,0.1001400575041771,0.5203081369400024,0.46778711676597595,0.46778711676597595,1.168067216873169,1.0105042457580566,0.7829131484031677,-0.7401960492134094,-1.3179271221160889,-1.1603641510009766,-1.2128851413726807,-1.3529411554336548,-1.0378150939941406,-1.0903360843658447,-1.1953781843185425,-0.9677870869636536,-0.8977590799331665,-1.0903360843658447,-1.1078431606292725,-1.0553221702575684,-1.1253501176834106,-0.8627451062202454,-1.0553221702575684,-0.7752100825309753,-0.8627451062202454,-0.8627451062202454,-0.8452380895614624,-0.8627451062202454,-0.7752100825309753,-0.6701680421829224,-0.8452380895614624,-0.8452380895614624,-0.5826330780982971,-0.6351540684700012,-0.7401960492134094,-0.9327731132507324,-0.6526610851287842,-0.7927170991897583,-0.9677870869636536,-0.8627451062202454,-0.7401960492134094,-0.6526610851287842,-0.6351540684700012,-0.7927170991897583,-0.6001400351524353,-0.5301120281219482,-0.6876750588417053,-0.7226890921592712,-0.7927170991897583,-1.0028011798858643,-0.9327731132507324,-0.6876750588417053,-0.8977590799331665,-0.8977590799331665,-1.0028011798858643,-0.7226890921592712,-0.8102241158485413,-1.0903360843658447,-1.0728291273117065,-0.7226890921592712,-0.8452380895614624,-0.32002800703048706,-0.12745098769664764,-0.07492997497320175,-0.4600840210914612,-0.7927170991897583,-1.0378150939941406,-1.545518159866333,-1.668067216873169,-1.7380952835083008,-1.808123230934143,-1.9131652116775513,-1.843137264251709,-1.5280112028121948,-0.5651260614395142,-0.7752100825309753,0.22268907725811005,1.0105042457580566,0.6778711676597595,0.6428571343421936,0.38025209307670593,-0.0049019609577953815,0.9054622054100037,1.045518159866333,1.308123230934143,1.780812382698059,1.080532193183899,1.343137264251709,1.2030812501907349,1.605742335319519,0.9229691624641418,0.7478991746902466,0.5203081369400024,1.5357142686843872,0.7303921580314636,1.4131652116775513,0.450280100107193,0.5028011202812195,1.0280112028121948,1.2906162738800049,1.2731091976165771,-0.3550420105457306,1.0630252361297607,0.1001400575041771,-0.32002800703048706,0.0476190485060215,0.22268907725811005,0.6078431606292725,-0.47759103775024414,-0.21498599648475647,0.5903361439704895,0.6778711676597595,0.8704481720924377,0.20518207550048828,-0.03991596773266792,-0.9677870869636536,1.5007002353668213,-1.1078431606292725,-0.33753502368927,-0.4075630307197571,0.8004201650619507,0.8179271817207336,-0.10994397848844528,-0.9677870869636536,0.3452380895614624,1.2030812501907349,1.5007002353668213,1.605742335319519,1.5007002353668213,0.1001400575041771,-0.9502801299095154,-0.8977590799331665,-0.9152660965919495,-0.8977590799331665,-0.8977590799331665,-0.8977590799331665,-1.0728291273117065,-0.8802521228790283,-0.9152660965919495,-1.0028011798858643,-0.9677870869636536,-1.0203081369400024,-1.0553221702575684,-0.9152660965919495,-0.9852941036224365,-0.9677870869636536,-1.0903360843658447,-1.0203081369400024,-0.8627451062202454,-0.5826330780982971,-0.7927170991897583,-0.6351540684700012,-0.6876750588417053,-0.8102241158485413,-0.6876750588417053,-0.8452380895614624,-1.1428571939468384,-0.6876750588417053,-0.7577030658721924,-0.5126050710678101,-0.5826330780982971,-0.7927170991897583,-0.6001400351524353,-0.6526610851287842,-0.8102241158485413,-1.0903360843658447,-0.8977590799331665,-0.7401960492134094,-0.8977590799331665,-0.6351540684700012,-0.3900560140609741,-0.6876750588417053,-0.6876750588417053],[-0.6701680421829224,-1.1428571939468384,-0.9677870869636536,-1.1428571939468384,-1.580532193183899,-1.5105042457580566,-1.3529411554336548,-1.2128851413726807,-1.3004201650619507,-1.0378150939941406,-1.1078431606292725,-0.3025210201740265,0.17016807198524475,0.6428571343421936,0.9929971694946289,0.8004201650619507,0.5378151535987854,1.0280112028121948,1.6582633256912231,1.5357142686843872,0.7829131484031677,-0.4425770342350006,-0.5476190447807312,-0.32002800703048706,0.4852941036224365,0.5378151535987854,0.13515406847000122,-0.5126050710678101,-1.0553221702575684,-1.3529411554336548,-1.7906162738800049,-1.6155462265014648,-0.6351540684700012,-0.17997199296951294,1.483193278312683,1.255602240562439,0.6778711676597595,1.1505602598190308,1.3606442213058472,1.8158262968063354,1.780812382698059,1.4131652116775513,0.8704481720924377,1.045518159866333,0.5728291273117065,0.5028011202812195,0.20518207550048828,-0.6701680421829224,-0.1449579894542694,0.0476190485060215,0.6078431606292725,1.2731091976165771,1.2380952835083008,1.2731091976165771,1.395658254623413,1.2030812501907349,0.6953781247138977,0.4852941036224365,-0.42507001757621765,-1.3004201650619507,-1.3354341983795166,-1.3879551887512207,-1.0203081369400024,-1.1253501176834106,-0.8277310729026794,-0.9502801299095154,-0.8627451062202454,-0.8977590799331665,-0.9327731132507324,-0.7927170991897583,-0.7401960492134094,-0.9502801299095154,-0.8627451062202454,-0.9152660965919495,-0.9502801299095154,-1.1078431606292725,-0.7927170991897583,-0.8802521228790283,-0.7226890921592712,-0.6876750588417053,-0.8452380895614624,-0.7051820755004883,-0.8627451062202454,-0.9677870869636536,-0.7927170991897583,-0.4950980246067047,-0.7051820755004883,-0.8102241158485413,-0.7226890921592712,-0.7752100825309753,-0.7226890921592712,-0.5476190447807312,-0.47759103775024414,-0.5476190447807312,-0.5826330780982971,-0.6876750588417053,-0.6351540684700012,-0.6876750588417053,-0.7752100825309753,-0.6351540684700012,-1.0378150939941406,-1.0553221702575684,-0.8102241158485413,-0.6701680421829224,-0.6526610851287842,-0.8627451062202454,-1.0553221702575684,-0.6701680421829224,-0.3025210201740265,-0.7401960492134094,-0.8102241158485413,-0.9327731132507324,-0.05742296949028969,0.0476190485060215,-0.26750701665878296,-0.6876750588417053,-0.9852941036224365,-1.457983136177063,-1.808123230934143,-1.7731091976165771,-1.7731091976165771,-1.755602240562439,-1.720588207244873,-1.8606442213058472,-1.4054621458053589,-0.9677870869636536,-1.1778711080551147,-0.28501400351524353,0.7654061913490295,0.22268907725811005,0.3452380895614624,-0.32002800703048706,-0.4075630307197571,0.7829131484031677,1.5007002353668213,1.6232492923736572,1.8683472871780396,1.465686321258545,0.3452380895614624,1.465686321258545,1.605742335319519,1.308123230934143,0.5028011202812195,0.012605042196810246,-0.7401960492134094,1.430672287940979,1.4131652116775513,0.7478991746902466,-0.23249299824237823,1.3606442213058472,0.8529411554336548,-0.0049019609577953815,0.41526609659194946,0.030112044885754585,-0.0049019609577953815,-0.4950980246067047,-0.6701680421829224,0.0476190485060215,-0.1974789947271347,0.20518207550048828,1.0980392694473267,0.6778711676597595,0.012605042196810246,1.343137264251709,0.5553221106529236,0.012605042196810246,-1.3179271221160889,0.0476190485060215,-0.5301120281219482,0.36274510622024536,-0.4075630307197571,0.36274510622024536,0.6078431606292725,0.17016807198524475,-0.5476190447807312,0.5378151535987854,1.483193278312683,1.465686321258545,1.465686321258545,1.0280112028121948,0.06512605398893356,-1.0203081369400024,-1.1603641510009766,-1.0728291273117065,-1.0028011798858643,-0.7927170991897583,-1.3004201650619507,-0.8977590799331665,-1.0028011798858643,-0.9852941036224365,-0.9677870869636536,-0.8977590799331665,-0.9852941036224365,-0.9677870869636536,-1.0378150939941406,-0.8452380895614624,-1.2303920984268188,-1.0553221702575684,-1.1253501176834106,-0.7927170991897583,-0.9152660965919495,-0.8802521228790283,-0.7577030658721924,-0.5126050710678101,-0.5826330780982971,-0.7577030658721924,-0.8277310729026794,-0.6526610851287842,-0.4950980246067047,-0.3550420105457306,-0.7927170991897583,-0.6176470518112183,-0.7752100825309753,-0.6701680421829224,-0.7401960492134094,-0.9852941036224365,-0.8102241158485413,-0.6351540684700012,-1.1078431606292725,-0.8627451062202454,-0.7927170991897583,-0.5301120281219482,-0.5651260614395142,-0.7051820755004883],[-0.3550420105457306,-0.7226890921592712,-1.0903360843658447,-1.3529411554336548,-1.1253501176834106,-1.3179271221160889,-1.1953781843185425,-1.3704482316970825,-1.4229692220687866,-1.3879551887512207,-1.0378150939941406,-1.1778711080551147,0.0476190485060215,0.8354341983795166,1.430672287940979,1.6757702827453613,1.780812382698059,1.780812382698059,1.8158262968063354,1.7107843160629272,0.9929971694946289,-0.6701680421829224,-1.3179271221160889,-1.1953781843185425,-0.23249299824237823,0.36274510622024536,0.41526609659194946,0.7829131484031677,-1.2478991746902466,-1.1428571939468384,-1.2478991746902466,-0.6876750588417053,0.13515406847000122,-0.33753502368927,0.5203081369400024,1.7282912731170654,1.308123230934143,1.7282912731170654,1.133053183555603,1.553221344947815,1.6757702827453613,1.9383753538131714,1.3606442213058472,1.0980392694473267,0.2401960790157318,0.18767507374286652,0.4852941036224365,0.25770309567451477,0.08263305574655533,0.6428571343421936,1.2380952835083008,1.378151297569275,1.5007002353668213,1.4131652116775513,1.2906162738800049,1.3256303071975708,0.46778711676597595,0.27521008253097534,-0.8277310729026794,-1.2128851413726807,-1.2303920984268188,-1.1778711080551147,-1.0903360843658447,-0.9677870869636536,-1.2128851413726807,-0.8452380895614624,-1.0728291273117065,-0.9677870869636536,-0.8102241158485413,-0.7401960492134094,-1.0728291273117065,-1.0903360843658447,-0.9502801299095154,-0.8102241158485413,-1.1078431606292725,-0.8102241158485413,-0.9502801299095154,-0.8802521228790283,-0.8802521228790283,-0.8277310729026794,-0.8977590799331665,-0.9152660965919495,-0.8977590799331665,-0.7401960492134094,-0.5651260614395142,-0.8977590799331665,-0.6176470518112183,-0.6351540684700012,-0.5651260614395142,-0.7752100825309753,-0.7051820755004883,-0.6001400351524353,-0.4950980246067047,-0.6701680421829224,-0.6701680421829224,-0.9327731132507324,-0.42507001757621765,-0.4600840210914612,-0.8627451062202454,-0.9327731132507324,-0.8277310729026794,-1.0378150939941406,-0.4425770342350006,-0.8802521228790283,-0.9502801299095154,-0.4425770342350006,-0.3025210201740265,-0.8977590799331665,-0.4600840210914612,-0.4600840210914612,-0.5826330780982971,-0.09243697673082352,0.012605042196810246,-0.28501400351524353,-0.5651260614395142,-0.8452380895614624,-1.3879551887512207,-1.545518159866333,-1.2829132080078125,-1.895658254623413,-1.668067216873169,-1.545518159866333,-1.7380952835083008,-1.6505602598190308,-1.6855741739273071,-0.7226890921592712,-1.2128851413726807,-0.09243697673082352,0.36274510622024536,0.46778711676597595,0.46778711676597595,0.22268907725811005,-0.7051820755004883,-0.5476190447807312,1.0630252361297607,1.343137264251709,1.7457983493804932,1.5007002353668213,1.220588207244873,1.6407562494277954,1.7983193397521973,1.8683472871780396,1.6407562494277954,-0.3550420105457306,1.5007002353668213,0.5203081369400024,-0.8277310729026794,1.308123230934143,0.38025209307670593,-0.47759103775024414,0.20518207550048828,0.012605042196810246,0.3977591097354889,1.483193278312683,1.1855741739273071,-1.3004201650619507,0.450280100107193,0.27521008253097534,0.7128851413726807,-0.7226890921592712,0.8004201650619507,-0.12745098769664764,0.9929971694946289,1.3606442213058472,1.045518159866333,-0.21498599648475647,-1.668067216873169,-0.3025210201740265,-0.8977590799331665,0.4852941036224365,-0.21498599648475647,0.2927170991897583,0.9229691624641418,-0.7927170991897583,-0.42507001757621765,0.8179271817207336,1.2731091976165771,1.395658254623413,0.9054622054100037,0.5903361439704895,-0.7577030658721924,-0.9852941036224365,-0.9677870869636536,-0.9152660965919495,-0.9327731132507324,-1.1953781843185425,-0.7401960492134094,-0.9852941036224365,-0.8452380895614624,-1.1078431606292725,-1.1603641510009766,-1.0378150939941406,-1.0203081369400024,-1.0028011798858643,-0.9852941036224365,-0.9677870869636536,-0.9502801299095154,-0.9677870869636536,-0.8977590799331665,-0.8102241158485413,-0.6001400351524353,-0.8277310729026794,-0.8627451062202454,-0.8802521228790283,-0.6001400351524353,-0.6526610851287842,-0.4950980246067047,-0.8977590799331665,-0.7401960492134094,-0.9152660965919495,-0.6526610851287842,-0.7927170991897583,-0.8277310729026794,-0.8102241158485413,-0.8102241158485413,-0.8452380895614624,-1.0203081369400024,-0.9852941036224365,-0.7927170991897583,-0.9152660965919495,-0.6876750588417053,-0.6701680421829224,-0.5126050710678101,-0.6526610851287842],[-0.03991596773266792,-0.28501400351524353,-0.4425770342350006,-0.9152660965919495,-1.2829132080078125,-1.2303920984268188,-1.5980392694473267,-1.492997169494629,-1.2654061317443848,-1.4229692220687866,-1.4229692220687866,-0.5476190447807312,0.25770309567451477,-0.09243697673082352,1.343137264251709,1.5357142686843872,1.5707283020019531,1.8858543634414673,1.9558823108673096,1.7107843160629272,0.9404761791229248,-0.3550420105457306,-1.5280112028121948,-1.6505602598190308,0.012605042196810246,-0.16246499121189117,0.3977591097354889,0.6428571343421936,-0.6351540684700012,-1.895658254623413,-1.2829132080078125,0.5203081369400024,1.0630252361297607,1.5707283020019531,0.38025209307670593,0.5203081369400024,1.220588207244873,1.7107843160629272,1.255602240562439,1.483193278312683,1.483193278312683,1.8333333730697632,0.9754902124404907,0.6778711676597595,0.2927170991897583,0.3452380895614624,0.06512605398893356,0.36274510622024536,0.5728291273117065,0.6953781247138977,0.9579831957817078,1.3256303071975708,1.5882352590560913,1.2906162738800049,1.255602240562439,1.0980392694473267,0.6953781247138977,0.15266107022762299,-1.1778711080551147,-1.3354341983795166,-1.1953781843185425,-1.1253501176834106,-0.8802521228790283,-0.9677870869636536,-0.9677870869636536,-1.0378150939941406,-1.1253501176834106,-1.0378150939941406,-1.1253501176834106,-0.8802521228790283,-0.8627451062202454,-0.8627451062202454,-0.8277310729026794,-0.7401960492134094,-0.9327731132507324,-0.9852941036224365,-0.9327731132507324,-0.8627451062202454,-0.9852941036224365,-0.6176470518112183,-0.8102241158485413,-0.7051820755004883,-0.6526610851287842,-0.6701680421829224,-0.7752100825309753,-0.8802521228790283,-0.7051820755004883,-0.5826330780982971,-0.7226890921592712,-0.7927170991897583,-0.5826330780982971,-0.5476190447807312,-0.32002800703048706,-0.3900560140609741,-0.6701680421829224,-0.7927170991897583,-0.6176470518112183,-0.8452380895614624,-0.8102241158485413,-0.7051820755004883,-0.3550420105457306,-0.4950980246067047,-0.5651260614395142,-0.6176470518112183,-0.16246499121189117,-0.3025210201740265,-0.6176470518112183,-0.4075630307197571,-0.7051820755004883,-0.7752100825309753,-0.28501400351524353,-0.03991596773266792,-0.4075630307197571,-0.0049019609577953815,-0.7401960492134094,-1.1078431606292725,-1.3704482316970825,-1.5105042457580566,-1.7030812501907349,-1.580532193183899,-1.668067216873169,-1.633053183555603,-1.492997169494629,-1.808123230934143,-1.5980392694473267,-0.5651260614395142,-0.9677870869636536,-0.3900560140609741,0.31022408604621887,-0.03991596773266792,0.5028011202812195,0.46778711676597595,-0.33753502368927,-0.6526610851287842,-0.4950980246067047,-0.03991596773266792,0.9754902124404907,0.9229691624641418,1.693277359008789,1.7457983493804932,0.6253501176834106,1.5707283020019531,0.9404761791229248,1.378151297569275,1.2731091976165771,1.4481792449951172,1.0105042457580566,1.0980392694473267,1.518207311630249,0.6253501176834106,-0.07492997497320175,0.2927170991897583,1.2380952835083008,1.0105042457580566,1.0105042457580566,-1.9481792449951172,-0.25,-0.9677870869636536,-0.6701680421829224,0.3452380895614624,0.7654061913490295,1.483193278312683,0.06512605398893356,1.308123230934143,1.2906162738800049,0.3452380895614624,-1.1603641510009766,-0.23249299824237823,-1.1428571939468384,0.7128851413726807,0.450280100107193,-0.07492997497320175,0.5728291273117065,0.5203081369400024,-0.21498599648475647,0.6428571343421936,1.1505602598190308,1.2380952835083008,0.27521008253097534,-0.4425770342350006,-1.3179271221160889,-1.2128851413726807,-1.1253501176834106,-1.1953781843185425,-0.9852941036224365,-0.7752100825309753,-0.9852941036224365,-0.9677870869636536,-1.0028011798858643,-1.0553221702575684,-0.9152660965919495,-0.9502801299095154,-1.0203081369400024,-1.0378150939941406,-0.9502801299095154,-0.9502801299095154,-1.1603641510009766,-1.0203081369400024,-1.0378150939941406,-0.9677870869636536,-0.7752100825309753,-0.6526610851287842,-0.6876750588417053,-0.8802521228790283,-0.7927170991897583,-0.8277310729026794,-0.6176470518112183,-0.5826330780982971,-0.6701680421829224,-0.32002800703048706,-0.6876750588417053,-0.6351540684700012,-0.4600840210914612,-0.5826330780982971,-0.6701680421829224,-0.9502801299095154,-1.0553221702575684,-0.9152660965919495,-0.7577030658721924,-0.9852941036224365,-0.8452380895614624,-0.9502801299095154,-0.5476190447807312,-0.8102241158485413],[0.012605042196810246,-0.02240896411240101,-0.3025210201740265,-0.8277310729026794,-1.1428571939468384,-1.4054621458053589,-1.457983136177063,-1.4229692220687866,-1.3354341983795166,-1.5980392694473267,-1.0378150939941406,-0.6876750588417053,0.18767507374286652,0.4327731132507324,1.2030812501907349,1.1505602598190308,0.4852941036224365,1.168067216873169,2.043417453765869,1.6757702827453613,1.1155462265014648,-0.05742296949028969,-0.9152660965919495,-1.2654061317443848,-0.7226890921592712,-0.7927170991897583,0.6778711676597595,-0.4425770342350006,-0.47759103775024414,-1.1953781843185425,-0.4425770342350006,1.0630252361297607,0.6428571343421936,1.0105042457580566,-0.26750701665878296,0.5028011202812195,1.553221344947815,1.693277359008789,1.3256303071975708,1.395658254623413,1.395658254623413,1.7457983493804932,0.8004201650619507,0.2401960790157318,0.5028011202812195,0.41526609659194946,0.20518207550048828,1.045518159866333,0.5903361439704895,1.1855741739273071,1.483193278312683,1.6757702827453613,1.4481792449951172,1.395658254623413,1.4131652116775513,1.2906162738800049,0.8179271817207336,0.20518207550048828,-1.1428571939468384,-1.1953781843185425,-1.0378150939941406,-1.0728291273117065,-1.0378150939941406,-0.8277310729026794,-0.9152660965919495,-1.0553221702575684,-0.9677870869636536,-1.0203081369400024,-0.9677870869636536,-0.9327731132507324,-0.6701680421829224,-0.9152660965919495,-0.7577030658721924,-0.9327731132507324,-0.9152660965919495,-0.8277310729026794,-1.0903360843658447,-0.8102241158485413,-0.6701680421829224,-0.7927170991897583,-0.9677870869636536,-0.8277310729026794,-0.8452380895614624,-0.6701680421829224,-0.6701680421829224,-0.6701680421829224,-0.6526610851287842,-0.5826330780982971,-0.6526610851287842,-0.8277310729026794,-0.7752100825309753,-0.7927170991897583,-0.6001400351524353,-0.4950980246067047,-0.8802521228790283,-0.03991596773266792,-0.4075630307197571,-0.33753502368927,-0.6351540684700012,-0.5476190447807312,-0.6701680421829224,-0.42507001757621765,-0.7577030658721924,-0.3025210201740265,-0.42507001757621765,-0.7577030658721924,-0.7401960492134094,-0.6351540684700012,-0.8977590799331665,-0.5476190447807312,0.08263305574655533,-0.3900560140609741,-0.26750701665878296,-0.4950980246067047,-0.8277310729026794,-1.2654061317443848,-1.4754902124404907,-1.7380952835083008,-1.720588207244873,-1.5980392694473267,-1.3879551887512207,-1.3004201650619507,-1.4229692220687866,-1.545518159866333,-1.5980392694473267,-0.7226890921592712,-0.12745098769664764,-0.5826330780982971,-0.3900560140609741,-0.5126050710678101,0.17016807198524475,0.17016807198524475,0.1001400575041771,-0.05742296949028969,-0.17997199296951294,-0.4600840210914612,-0.7226890921592712,-0.4950980246067047,0.3977591097354889,0.8704481720924377,1.0105042457580566,1.0980392694473267,1.553221344947815,-0.25,1.2030812501907349,0.8004201650619507,1.2030812501907349,1.0105042457580566,0.8354341983795166,0.7128851413726807,0.7128851413726807,0.8879551887512207,-0.02240896411240101,-0.09243697673082352,0.5028011202812195,-0.25,-0.5301120281219482,0.3977591097354889,-0.1974789947271347,0.3452380895614624,0.2401960790157318,0.36274510622024536,1.0980392694473267,0.5728291273117065,0.4327731132507324,0.15266107022762299,-1.0903360843658447,-0.7051820755004883,-1.0203081369400024,0.46778711676597595,-0.6526610851287842,-0.3025210201740265,0.7654061913490295,-0.5126050710678101,-1.0203081369400024,0.38025209307670593,1.1505602598190308,0.7478991746902466,-0.5651260614395142,-0.7927170991897583,-1.492997169494629,-1.2829132080078125,-1.3529411554336548,-1.0903360843658447,-0.7927170991897583,-0.9327731132507324,-1.1078431606292725,-0.7927170991897583,-1.2128851413726807,-0.9327731132507324,-0.9152660965919495,-0.8627451062202454,-1.0028011798858643,-1.0028011798858643,-0.8277310729026794,-1.0028011798858643,-0.9677870869636536,-1.1953781843185425,-0.9152660965919495,-0.7226890921592712,-0.6526610851287842,-0.6526610851287842,-0.8277310729026794,-0.7752100825309753,-0.5301120281219482,-0.6526610851287842,-0.8277310729026794,-0.6351540684700012,-0.8102241158485413,-0.6176470518112183,-0.7401960492134094,-0.7051820755004883,-0.6526610851287842,-0.7051820755004883,-1.0203081369400024,-0.8977590799331665,-0.6876750588417053,-0.7752100825309753,-1.0028011798858643,-0.8277310729026794,-0.7226890921592712,-0.7927170991897583,-0.6701680421829224,-0.7051820755004883],[-0.1449579894542694,-0.09243697673082352,-0.33753502368927,-0.32002800703048706,-0.42507001757621765,-1.0203081369400024,-1.3354341983795166,-1.2128851413726807,-1.4229692220687866,-1.2303920984268188,-1.1428571939468384,-0.10994397848844528,0.9754902124404907,0.8354341983795166,-0.0049019609577953815,-0.21498599648475647,0.06512605398893356,0.27521008253097534,1.045518159866333,1.5357142686843872,1.395658254623413,0.32773110270500183,-0.5826330780982971,0.06512605398893356,0.41526609659194946,0.6078431606292725,0.012605042196810246,0.9929971694946289,0.5378151535987854,-0.26750701665878296,-0.33753502368927,-0.09243697673082352,0.450280100107193,-0.33753502368927,1.080532193183899,1.0980392694473267,1.343137264251709,1.395658254623413,1.553221344947815,1.483193278312683,1.6407562494277954,1.255602240562439,0.38025209307670593,0.4852941036224365,0.15266107022762299,0.6603641510009766,0.7654061913490295,0.9929971694946289,0.8879551887512207,1.3256303071975708,1.430672287940979,1.483193278312683,1.430672287940979,1.483193278312683,1.255602240562439,1.080532193183899,0.6428571343421936,-0.10994397848844528,-1.1778711080551147,-1.4229692220687866,-1.0553221702575684,-1.0378150939941406,-0.9327731132507324,-1.0378150939941406,-1.0553221702575684,-0.8802521228790283,-0.8977590799331665,-0.9152660965919495,-1.0028011798858643,-0.7927170991897583,-0.8102241158485413,-0.8452380895614624,-0.8277310729026794,-0.8802521228790283,-0.7752100825309753,-0.8627451062202454,-0.9152660965919495,-0.9677870869636536,-0.9677870869636536,-1.0028011798858643,-0.8277310729026794,-0.7927170991897583,-0.7226890921592712,-0.6176470518112183,-0.42507001757621765,-0.4950980246067047,-0.9327731132507324,-1.1603641510009766,-0.6001400351524353,-0.6526610851287842,-0.6001400351524353,-0.5476190447807312,-0.5476190447807312,-0.6526610851287842,-0.5651260614395142,-0.8277310729026794,-0.6001400351524353,-0.5301120281219482,-0.5476190447807312,-0.5826330780982971,-0.7051820755004883,-0.8802521228790283,-0.47759103775024414,-0.8802521228790283,-0.3025210201740265,-0.5476190447807312,-0.6351540684700012,-0.4425770342350006,-0.25,0.18767507374286652,0.1001400575041771,-0.25,-0.4425770342350006,-0.8977590799331665,-1.1778711080551147,-1.6155462265014648,-1.755602240562439,-1.720588207244873,-1.4229692220687866,-1.4229692220687866,-1.5630252361297607,-1.4054621458053589,-1.3704482316970825,-1.5280112028121948,-1.5105042457580566,-0.8452380895614624,0.36274510622024536,-0.10994397848844528,-0.28501400351524353,-0.37254902720451355,-1.4054621458053589,0.030112044885754585,0.17016807198524475,0.5378151535987854,-0.25,-0.07492997497320175,0.030112044885754585,-0.28501400351524353,-0.8277310729026794,-1.0728291273117065,-1.492997169494629,0.6603641510009766,1.1155462265014648,1.7983193397521973,0.7654061913490295,1.9208683967590332,2.1309523582458496,1.308123230934143,-0.02240896411240101,0.5203081369400024,0.3452380895614624,0.22268907725811005,0.9229691624641418,-0.4600840210914612,0.6253501176834106,0.0476190485060215,-0.3900560140609741,-0.1974789947271347,-0.3550420105457306,0.3452380895614624,-0.3025210201740265,1.0280112028121948,0.6953781247138977,0.6778711676597595,1.1155462265014648,0.6428571343421936,-0.6001400351524353,-0.8977590799331665,-1.0553221702575684,0.9754902124404907,-0.37254902720451355,-1.0028011798858643,0.6953781247138977,0.4852941036224365,-0.07492997497320175,0.012605042196810246,0.8179271817207336,-0.05742296949028969,-0.7401960492134094,-1.1953781843185425,-1.720588207244873,-1.808123230934143,-1.1603641510009766,-1.0728291273117065,-0.9502801299095154,-1.0203081369400024,-1.0203081369400024,-1.1078431606292725,-0.8802521228790283,-0.8277310729026794,-0.9152660965919495,-0.9502801299095154,-0.9677870869636536,-1.0203081369400024,-1.0378150939941406,-1.0028011798858643,-1.0903360843658447,-0.9677870869636536,-0.9327731132507324,-0.9852941036224365,-0.7927170991897583,-0.8452380895614624,-0.7051820755004883,-0.7051820755004883,-0.8102241158485413,-0.8802521228790283,-0.5826330780982971,-0.6176470518112183,-0.6526610851287842,-0.7577030658721924,-0.6351540684700012,-0.7401960492134094,-0.6526610851287842,-0.9152660965919495,-0.6001400351524353,-0.8452380895614624,-0.6876750588417053,-0.9502801299095154,-0.8452380895614624,-0.5126050710678101,-0.8102241158485413,-0.4950980246067047,-0.5476190447807312,-0.5476190447807312],[0.08263305574655533,-0.12745098769664764,-0.03991596773266792,-0.16246499121189117,-0.6526610851287842,-0.9502801299095154,-0.6351540684700012,-1.1428571939468384,-1.1603641510009766,-1.3004201650619507,-0.6001400351524353,0.5028011202812195,1.378151297569275,1.343137264251709,1.430672287940979,1.0105042457580566,0.5903361439704895,0.5203081369400024,0.13515406847000122,0.9579831957817078,1.518207311630249,1.2380952835083008,0.6778711676597595,1.2731091976165771,0.31022408604621887,0.5903361439704895,0.9404761791229248,0.6603641510009766,0.41526609659194946,0.17016807198524475,-0.42507001757621765,0.5378151535987854,-0.12745098769664764,-0.7752100825309753,1.220588207244873,1.2380952835083008,1.5707283020019531,1.780812382698059,1.6582633256912231,1.308123230934143,1.5357142686843872,0.5903361439704895,-0.07492997497320175,0.450280100107193,0.7478991746902466,1.2380952835083008,1.3256303071975708,1.518207311630249,1.3256303071975708,1.2731091976165771,1.2380952835083008,1.1855741739273071,1.3606442213058472,1.308123230934143,1.168067216873169,0.9754902124404907,0.41526609659194946,-1.0203081369400024,-1.1778711080551147,-1.3004201650619507,-0.9327731132507324,-1.0378150939941406,-1.0903360843658447,-0.9327731132507324,-0.9327731132507324,-1.2303920984268188,-0.8277310729026794,-0.9677870869636536,-0.8977590799331665,-0.8452380895614624,-1.1778711080551147,-0.9152660965919495,-0.8452380895614624,-0.7226890921592712,-1.0728291273117065,-1.0728291273117065,-0.6351540684700012,-0.8627451062202454,-0.7752100825309753,-0.9852941036224365,-0.8802521228790283,-0.5476190447807312,-0.6351540684700012,-0.7752100825309753,-0.6176470518112183,-0.6701680421829224,-0.7401960492134094,-0.42507001757621765,-0.7401960492134094,-0.5301120281219482,-0.1974789947271347,-0.28501400351524353,-0.5301120281219482,-0.6001400351524353,-0.6526610851287842,-0.3550420105457306,-0.42507001757621765,-0.4425770342350006,-0.7401960492134094,-0.7051820755004883,-0.21498599648475647,-0.26750701665878296,-0.8102241158485413,-0.7752100825309753,-0.6176470518112183,-0.3900560140609741,-0.25,-0.8102241158485413,0.030112044885754585,0.18767507374286652,0.13515406847000122,-0.32002800703048706,-1.0728291273117065,-1.2128851413726807,-1.5105042457580566,-1.5105042457580566,-1.492997169494629,-1.5630252361297607,-1.4754902124404907,-1.3529411554336548,-1.4054621458053589,-1.3179271221160889,-1.3179271221160889,-1.4229692220687866,-1.545518159866333,-0.6176470518112183,0.8004201650619507,0.27521008253097534,0.6253501176834106,-1.1253501176834106,-1.2128851413726807,-0.47759103775024414,-0.10994397848844528,0.15266107022762299,0.06512605398893356,0.8879551887512207,-0.47759103775024414,0.6603641510009766,-0.26750701665878296,-0.42507001757621765,-0.28501400351524353,0.1001400575041771,-0.4425770342350006,0.3977591097354889,0.9754902124404907,1.0280112028121948,0.46778711676597595,1.605742335319519,1.3256303071975708,0.5028011202812195,0.5378151535987854,0.9929971694946289,1.395658254623413,0.36274510622024536,-0.21498599648475647,-0.1974789947271347,-0.1974789947271347,-0.02240896411240101,-0.4600840210914612,0.8704481720924377,1.080532193183899,0.5203081369400024,1.1505602598190308,0.31022408604621887,0.5378151535987854,-0.4950980246067047,-0.9152660965919495,-0.5826330780982971,-0.7752100825309753,0.20518207550048828,-0.5126050710678101,-0.26750701665878296,0.450280100107193,0.4852941036224365,-0.5126050710678101,-0.16246499121189117,0.2401960790157318,-0.42507001757621765,-1.4404761791229248,-1.843137264251709,-1.808123230934143,-1.930672287940979,-1.7906162738800049,-0.4600840210914612,-1.1603641510009766,-1.0553221702575684,-1.0903360843658447,-0.9502801299095154,-0.9677870869636536,-0.8977590799331665,-1.1253501176834106,-0.9152660965919495,-1.0203081369400024,-0.8627451062202454,-0.9852941036224365,-0.9852941036224365,-1.0553221702575684,-1.0378150939941406,-0.7752100825309753,-0.9677870869636536,-0.8977590799331665,-0.9152660965919495,-0.6526610851287842,-0.8452380895614624,-0.6701680421829224,-0.5651260614395142,-0.5126050710678101,-0.6526610851287842,-0.8452380895614624,-0.7927170991897583,-0.6351540684700012,-0.6001400351524353,-0.8102241158485413,-0.6701680421829224,-0.7226890921592712,-0.6526610851287842,-0.5301120281219482,-0.7752100825309753,-0.8277310729026794,-0.6876750588417053,-0.7577030658721924,-0.8452380895614624,-0.8802521228790283,-0.8277310729026794],[0.11764705926179886,0.13515406847000122,0.11764705926179886,0.13515406847000122,-0.07492997497320175,-0.25,-0.9852941036224365,-0.7051820755004883,-0.9502801299095154,-0.8802521228790283,-0.17997199296951294,0.6603641510009766,1.605742335319519,1.465686321258545,1.395658254623413,0.6078431606292725,1.1505602598190308,1.8158262968063354,1.605742335319519,1.3606442213058472,1.553221344947815,1.133053183555603,1.3606442213058472,0.9404761791229248,0.9754902124404907,0.450280100107193,-0.9677870869636536,-0.5126050710678101,-1.0553221702575684,-1.5105042457580566,-1.7380952835083008,-0.8627451062202454,-1.492997169494629,-0.23249299824237823,0.7303921580314636,1.430672287940979,1.2731091976165771,1.553221344947815,1.5007002353668213,1.395658254623413,-0.33753502368927,-0.42507001757621765,0.5028011202812195,0.5378151535987854,0.6953781247138977,1.308123230934143,1.2380952835083008,1.4131652116775513,1.7457983493804932,1.8683472871780396,1.8333333730697632,1.8333333730697632,1.605742335319519,1.4131652116775513,1.0980392694473267,0.5378151535987854,-0.7752100825309753,-1.0378150939941406,-1.2829132080078125,-1.1078431606292725,-1.1953781843185425,-1.2303920984268188,-1.0903360843658447,-0.9502801299095154,-0.9677870869636536,-1.0028011798858643,-1.0203081369400024,-0.9327731132507324,-1.1953781843185425,-0.8977590799331665,-0.9852941036224365,-0.8977590799331665,-1.0553221702575684,-0.8102241158485413,-0.7752100825309753,-0.8802521228790283,-0.8452380895614624,-0.7927170991897583,-0.8452380895614624,-0.8102241158485413,-0.6526610851287842,-0.7051820755004883,-0.7577030658721924,-0.5651260614395142,-0.7752100825309753,-0.28501400351524353,-0.6001400351524353,-0.9152660965919495,-0.4600840210914612,-0.4950980246067047,-0.4950980246067047,-0.32002800703048706,-0.6351540684700012,-0.6701680421829224,-0.6701680421829224,-0.5826330780982971,-0.33753502368927,-0.42507001757621765,-0.5126050710678101,-0.7577030658721924,-0.7051820755004883,-0.6876750588417053,-0.23249299824237823,-0.8277310729026794,-0.8802521228790283,-0.8452380895614624,-0.8102241158485413,-0.03991596773266792,-0.10994397848844528,-0.25,-0.25,-0.6701680421829224,-1.2128851413726807,-1.4229692220687866,-1.3704482316970825,-1.5630252361297607,-1.492997169494629,-1.2303920984268188,-1.4054621458053589,-1.3879551887512207,-1.457983136177063,-1.4054621458053589,-1.4754902124404907,-1.4229692220687866,-1.492997169494629,-1.0553221702575684,0.17016807198524475,0.2401960790157318,-1.0553221702575684,-1.1953781843185425,-1.0553221702575684,-0.9152660965919495,0.450280100107193,0.27521008253097534,-0.23249299824237823,0.1001400575041771,0.3452380895614624,1.8508403301239014,0.46778711676597595,1.255602240562439,1.465686321258545,-0.3550420105457306,-0.5651260614395142,-1.0728291273117065,-1.0553221702575684,-0.8452380895614624,-0.03991596773266792,-0.3025210201740265,0.1001400575041771,1.0280112028121948,1.1155462265014648,0.0476190485060215,1.395658254623413,1.605742335319519,1.0105042457580566,-0.25,0.4327731132507324,0.5378151535987854,1.1505602598190308,1.080532193183899,-0.21498599648475647,-0.16246499121189117,1.3606442213058472,0.6603641510009766,0.15266107022762299,0.9579831957817078,-0.42507001757621765,-1.1953781843185425,-1.2829132080078125,0.13515406847000122,0.7478991746902466,-0.7927170991897583,-0.23249299824237823,-1.0553221702575684,-0.07492997497320175,-1.3529411554336548,-1.2829132080078125,-1.5105042457580566,-1.808123230934143,-1.9481792449951172,-2.018207311630249,-1.7731091976165771,-1.6505602598190308,1.220588207244873,0.17016807198524475,-0.9677870869636536,-1.0553221702575684,-1.1428571939468384,-1.0378150939941406,-1.0378150939941406,-1.1953781843185425,-0.9152660965919495,-1.0028011798858643,-1.0203081369400024,-0.9677870869636536,-1.0028011798858643,-1.1253501176834106,-1.1953781843185425,-0.9327731132507324,-0.9502801299095154,-0.5651260614395142,-0.8277310729026794,-0.6701680421829224,-0.6701680421829224,-0.5826330780982971,-0.6526610851287842,-0.47759103775024414,-0.6526610851287842,-0.8627451062202454,-0.8627451062202454,-0.7226890921592712,-0.5301120281219482,-0.7752100825309753,-0.7401960492134094,-0.6176470518112183,-0.5651260614395142,-0.7051820755004883,-1.0203081369400024,-0.9677870869636536,-0.9852941036224365,-0.8102241158485413,-0.6001400351524353,-0.7226890921592712,-0.7752100825309753],[-0.03991596773266792,0.18767507374286652,0.3977591097354889,0.0476190485060215,-0.09243697673082352,-0.02240896411240101,-0.7927170991897583,-0.8102241158485413,-0.9677870869636536,-1.1253501176834106,-0.16246499121189117,0.8004201650619507,1.395658254623413,1.6232492923736572,1.2380952835083008,0.8179271817207336,1.2380952835083008,1.5882352590560913,1.465686321258545,1.6757702827453613,1.395658254623413,1.1855741739273071,1.3256303071975708,1.6582633256912231,1.518207311630249,1.080532193183899,-1.492997169494629,-1.8256303071975708,-1.5105042457580566,-1.5980392694473267,-1.8256303071975708,-1.1603641510009766,-1.6155462265014648,0.9229691624641418,0.8879551887512207,1.308123230934143,1.220588207244873,1.483193278312683,1.6757702827453613,1.308123230934143,0.31022408604621887,-0.1449579894542694,0.5553221106529236,0.7478991746902466,1.2030812501907349,1.3256303071975708,1.6407562494277954,1.5882352590560913,1.7282912731170654,1.8333333730697632,1.9033613204956055,1.7282912731170654,1.6757702827453613,1.343137264251709,1.2731091976165771,0.6078431606292725,-1.545518159866333,-1.3354341983795166,-0.9852941036224365,-1.0903360843658447,-1.1253501176834106,-1.1428571939468384,-1.0728291273117065,-1.0378150939941406,-1.0203081369400024,-0.8802521228790283,-0.9502801299095154,-0.9677870869636536,-0.8977590799331665,-0.9677870869636536,-0.9502801299095154,-0.8452380895614624,-0.8277310729026794,-0.8627451062202454,-1.0553221702575684,-0.8102241158485413,-0.6876750588417053,-0.7577030658721924,-0.7401960492134094,-0.6701680421829224,-0.7051820755004883,-0.8802521228790283,-0.7401960492134094,-0.5826330780982971,-0.42507001757621765,-0.4075630307197571,-0.6526610851287842,-0.4950980246067047,-0.7051820755004883,-0.5826330780982971,-0.33753502368927,-0.23249299824237823,-0.7226890921592712,-0.7401960492134094,-0.4950980246067047,-0.7226890921592712,-0.5301120281219482,-0.5126050710678101,-0.5126050710678101,-0.7051820755004883,-0.5651260614395142,-0.6001400351524353,-0.6001400351524353,-0.6176470518112183,-0.4425770342350006,-0.5126050710678101,-0.05742296949028969,0.20518207550048828,-0.4950980246067047,-0.28501400351524353,-0.4600840210914612,-1.0728291273117065,-1.0028011798858643,-1.4404761791229248,-1.580532193183899,-1.6505602598190308,-1.2829132080078125,-1.457983136177063,-1.4054621458053589,-1.3529411554336548,-1.4404761791229248,-1.2829132080078125,-1.5280112028121948,-1.2654061317443848,-1.2303920984268188,-0.7752100825309753,1.378151297569275,-0.37254902720451355,-0.5476190447807312,-0.0049019609577953815,-0.47759103775024414,-0.42507001757621765,-0.12745098769664764,-0.32002800703048706,0.20518207550048828,-0.7752100825309753,-0.32002800703048706,0.4327731132507324,0.31022408604621887,0.11764705926179886,1.430672287940979,0.46778711676597595,0.7478991746902466,-1.1428571939468384,1.0630252361297607,-1.6505602598190308,-1.633053183555603,-0.23249299824237823,0.5203081369400024,-0.26750701665878296,0.7654061913490295,1.6757702827453613,1.4481792449951172,0.08263305574655533,0.450280100107193,1.2380952835083008,0.2927170991897583,-0.0049019609577953815,-0.1449579894542694,0.8004201650619507,1.2030812501907349,0.31022408604621887,1.378151297569275,0.0476190485060215,0.31022408604621887,0.8529411554336548,-0.7226890921592712,-1.3529411554336548,-1.5980392694473267,-0.25,0.20518207550048828,0.15266107022762299,-0.7226890921592712,-1.9131652116775513,-0.5301120281219482,-0.5476190447807312,-1.3004201650619507,-1.4404761791229248,-1.7731091976165771,-1.878151297569275,-1.9481792449951172,-1.9131652116775513,0.3977591097354889,1.5357142686843872,1.483193278312683,-1.0028011798858643,-0.9677870869636536,-1.2829132080078125,-0.8102241158485413,-1.0028011798858643,-0.9677870869636536,-1.0203081369400024,-0.9677870869636536,-0.8802521228790283,-0.9852941036224365,-0.8977590799331665,-1.1428571939468384,-0.8627451062202454,-0.9677870869636536,-0.7752100825309753,-0.7226890921592712,-0.7051820755004883,-0.7401960492134094,-0.7577030658721924,-0.5651260614395142,-0.6876750588417053,-0.6701680421829224,-0.7226890921592712,-0.6526610851287842,-0.7577030658721924,-0.8977590799331665,-0.7927170991897583,-0.5476190447807312,-0.4950980246067047,-0.42507001757621765,-0.6001400351524353,-0.8277310729026794,-0.6876750588417053,-0.6351540684700012,-0.8102241158485413,-0.8452380895614624,-0.6876750588417053,-0.7051820755004883,-0.7927170991897583],[0.030112044885754585,-0.05742296949028969,0.13515406847000122,-0.0049019609577953815,0.17016807198524475,-0.21498599648475647,-0.16246499121189117,-0.6001400351524353,-0.7226890921592712,-1.2654061317443848,0.06512605398893356,0.3452380895614624,1.430672287940979,1.1505602598190308,1.0105042457580566,1.2030812501907349,1.4481792449951172,1.378151297569275,1.080532193183899,1.343137264251709,1.430672287940979,1.4481792449951172,1.308123230934143,1.9208683967590332,1.4131652116775513,1.6757702827453613,-0.02240896411240101,-1.843137264251709,-1.6505602598190308,-1.4054621458053589,-1.2654061317443848,-0.02240896411240101,0.4852941036224365,0.8179271817207336,1.395658254623413,1.168067216873169,1.2380952835083008,1.6407562494277954,1.5357142686843872,1.605742335319519,1.133053183555603,0.6078431606292725,0.8354341983795166,1.133053183555603,1.343137264251709,1.3256303071975708,1.220588207244873,1.8508403301239014,1.6232492923736572,1.7457983493804932,1.5357142686843872,1.465686321258545,1.2906162738800049,1.430672287940979,1.255602240562439,0.7303921580314636,-1.1428571939468384,-1.4229692220687866,-1.3004201650619507,-1.1428571939468384,-1.2128851413726807,-1.1953781843185425,-1.0903360843658447,-1.1253501176834106,-1.2654061317443848,-0.9327731132507324,-0.8277310729026794,-0.9327731132507324,-0.8627451062202454,-1.0028011798858643,-0.7577030658721924,-1.1253501176834106,-0.8452380895614624,-0.7577030658721924,-0.6876750588417053,-0.7577030658721924,-0.8627451062202454,-0.7752100825309753,-0.5301120281219482,-0.7577030658721924,-0.9327731132507324,-0.5301120281219482,-0.5476190447807312,-0.7577030658721924,-0.5476190447807312,-0.1974789947271347,-0.7226890921592712,-0.8102241158485413,-0.5651260614395142,-0.5826330780982971,-0.5126050710678101,-0.6351540684700012,-0.3900560140609741,-0.5476190447807312,-0.6001400351524353,-0.3025210201740265,-0.6176470518112183,-0.4600840210914612,-0.5651260614395142,-0.32002800703048706,-0.6876750588417053,-0.5826330780982971,-0.4425770342350006,-0.47759103775024414,-0.8977590799331665,-0.25,0.17016807198524475,0.15266107022762299,-0.1974789947271347,-0.21498599648475647,-1.1253501176834106,-1.0378150939941406,-1.3529411554336548,-1.4754902124404907,-1.4054621458053589,-1.3004201650619507,-1.3004201650619507,-1.2128851413726807,-1.3529411554336548,-1.3179271221160889,-1.2303920984268188,-1.3879551887512207,-1.3004201650619507,-1.3354341983795166,-1.0728291273117065,0.41526609659194946,0.8354341983795166,-0.1449579894542694,0.18767507374286652,-0.02240896411240101,0.5028011202812195,0.6778711676597595,0.6253501176834106,0.2401960790157318,-0.21498599648475647,0.20518207550048828,0.2927170991897583,-0.5826330780982971,-0.8452380895614624,0.012605042196810246,0.0476190485060215,0.9579831957817078,1.0980392694473267,0.36274510622024536,-0.4075630307197571,1.6232492923736572,0.46778711676597595,-0.7577030658721924,-0.5476190447807312,0.41526609659194946,0.38025209307670593,0.41526609659194946,0.6603641510009766,0.5728291273117065,0.5728291273117065,0.7478991746902466,0.9929971694946289,-1.1778711080551147,-0.7752100825309753,1.255602240562439,0.7128851413726807,1.4131652116775513,1.693277359008789,1.080532193183899,-0.47759103775024414,-0.09243697673082352,-1.0378150939941406,-0.8627451062202454,-1.0903360843658447,-0.4950980246067047,-0.8452380895614624,-0.3025210201740265,-0.4425770342350006,-1.2303920984268188,-0.7927170991897583,0.5028011202812195,-1.1953781843185425,-1.8606442213058472,-1.9481792449951172,-1.930672287940979,-1.983193278312683,-1.492997169494629,0.9229691624641418,1.5357142686843872,1.2380952835083008,-0.32002800703048706,-1.0028011798858643,-1.0553221702575684,-1.0553221702575684,-0.8627451062202454,-0.9852941036224365,-0.8977590799331665,-0.8977590799331665,-1.2128851413726807,-0.9327731132507324,-1.0028011798858643,-0.9677870869636536,-1.1778711080551147,-0.7752100825309753,-0.8102241158485413,-0.7752100825309753,-0.8102241158485413,-0.7577030658721924,-0.7752100825309753,-0.6351540684700012,-0.5651260614395142,-0.7051820755004883,-0.6701680421829224,-0.7401960492134094,-0.6876750588417053,-0.6526610851287842,-0.7752100825309753,-0.5826330780982971,-0.6351540684700012,-0.6701680421829224,-0.42507001757621765,-0.7226890921592712,-0.8627451062202454,-0.7752100825309753,-1.1253501176834106,-1.0203081369400024,-0.7401960492134094,-0.8102241158485413,-0.7051820755004883],[-0.07492997497320175,-0.09243697673082352,0.030112044885754585,-0.09243697673082352,0.0476190485060215,-0.05742296949028969,-0.05742296949028969,-0.25,-1.0203081369400024,-0.5476190447807312,0.7303921580314636,0.8879551887512207,0.8529411554336548,0.012605042196810246,0.6778711676597595,1.1855741739273071,1.4131652116775513,1.168067216873169,1.3606442213058472,1.8508403301239014,1.6757702827453613,1.6757702827453613,1.9733893871307373,1.8508403301239014,0.8354341983795166,1.9208683967590332,0.2927170991897583,-1.7731091976165771,-1.3179271221160889,-1.5630252361297607,-0.21498599648475647,0.6078431606292725,0.6253501176834106,0.5903361439704895,1.483193278312683,1.0630252361297607,1.5007002353668213,1.465686321258545,1.5882352590560913,1.5007002353668213,0.7128851413726807,0.5553221106529236,1.343137264251709,1.1855741739273071,1.465686321258545,1.5357142686843872,1.6232492923736572,1.5357142686843872,1.780812382698059,1.693277359008789,1.518207311630249,1.5007002353668213,1.430672287940979,1.378151297569275,1.0280112028121948,0.7128851413726807,-1.1953781843185425,-1.3179271221160889,-1.2654061317443848,-1.0903360843658447,-1.2128851413726807,-0.9502801299095154,-0.9677870869636536,-0.9152660965919495,-0.7927170991897583,-1.1078431606292725,-1.3354341983795166,-1.0728291273117065,-1.0028011798858643,-0.9502801299095154,-0.8802521228790283,-0.8627451062202454,-0.8977590799331665,-0.7927170991897583,-1.0203081369400024,-0.6176470518112183,-0.8452380895614624,-1.0378150939941406,-0.9152660965919495,-0.5826330780982971,-0.6001400351524353,-0.4950980246067047,-0.8802521228790283,-0.47759103775024414,-0.6001400351524353,-0.32002800703048706,-0.4600840210914612,-0.4600840210914612,-0.7401960492134094,-0.7226890921592712,-0.6526610851287842,-0.7226890921592712,-0.5301120281219482,-0.6001400351524353,-0.7752100825309753,-0.6001400351524353,-0.5826330780982971,-0.7577030658721924,-0.33753502368927,-0.8977590799331665,-0.5126050710678101,-0.7226890921592712,-0.9502801299095154,-0.6001400351524353,-0.9677870869636536,-0.10994397848844528,0.012605042196810246,-0.3025210201740265,-0.6526610851287842,-0.9327731132507324,-1.0203081369400024,-1.1078431606292725,-1.2829132080078125,-1.4404761791229248,-1.457983136177063,-1.3879551887512207,-1.3179271221160889,-1.2128851413726807,-1.0903360843658447,-1.1428571939468384,-1.3529411554336548,-1.3004201650619507,-1.4054621458053589,-1.5280112028121948,-1.0728291273117065,1.8508403301239014,-0.25,-0.9502801299095154,0.31022408604621887,0.1001400575041771,1.3606442213058472,1.1505602598190308,0.9754902124404907,0.6428571343421936,-0.03991596773266792,-0.42507001757621765,-0.6001400351524353,-0.37254902720451355,-0.8627451062202454,-1.1253501176834106,-0.7752100825309753,-0.10994397848844528,-1.4754902124404907,-0.26750701665878296,-0.03991596773266792,-0.5301120281219482,0.0476190485060215,1.2030812501907349,0.27521008253097534,0.20518207550048828,-0.02240896411240101,0.030112044885754585,-0.07492997497320175,1.080532193183899,0.8879551887512207,1.220588207244873,0.9404761791229248,0.06512605398893356,-0.0049019609577953815,0.5728291273117065,0.3977591097354889,-0.37254902720451355,0.7478991746902466,0.5203081369400024,0.17016807198524475,-1.4754902124404907,-1.5630252361297607,-1.7906162738800049,-1.5980392694473267,-0.10994397848844528,0.8354341983795166,-0.8452380895614624,-0.32002800703048706,-0.8977590799331665,-0.6351540684700012,0.7478991746902466,-0.0049019609577953815,-1.878151297569275,-1.965686321258545,-2.0357143878936768,-1.878151297569275,-0.6876750588417053,1.430672287940979,1.5007002353668213,1.518207311630249,0.6603641510009766,-0.10994397848844528,-0.7927170991897583,-0.9152660965919495,-1.0553221702575684,-1.0553221702575684,-0.7927170991897583,-0.9852941036224365,-0.9152660965919495,-1.0203081369400024,-0.8277310729026794,-1.0553221702575684,-1.2478991746902466,-0.8277310729026794,-1.0553221702575684,-0.8452380895614624,-0.7401960492134094,-0.8802521228790283,-0.5476190447807312,-0.4600840210914612,-0.5126050710678101,-0.6176470518112183,-0.8802521228790283,-0.9502801299095154,-0.4950980246067047,-0.7577030658721924,-0.7401960492134094,-0.9152660965919495,-0.6001400351524353,-0.6351540684700012,-0.4425770342350006,-0.7401960492134094,-0.5126050710678101,-0.7752100825309753,-0.8452380895614624,-0.8277310729026794,-0.9677870869636536,-0.7752100825309753,-0.8802521228790283],[-0.07492997497320175,0.17016807198524475,0.17016807198524475,0.25770309567451477,0.08263305574655533,0.3977591097354889,0.22268907725811005,-0.42507001757621765,-0.7752100825309753,0.38025209307670593,1.0980392694473267,0.450280100107193,0.13515406847000122,-0.4075630307197571,0.5728291273117065,1.2906162738800049,1.378151297569275,0.8879551887512207,0.6778711676597595,1.168067216873169,1.7457983493804932,1.5882352590560913,1.553221344947815,1.4131652116775513,1.0980392694473267,1.0105042457580566,1.133053183555603,0.22268907725811005,0.030112044885754585,-1.1253501176834106,0.27521008253097534,0.6603641510009766,0.7654061913490295,1.0280112028121948,1.220588207244873,1.1505602598190308,1.430672287940979,1.518207311630249,1.483193278312683,1.693277359008789,1.308123230934143,0.8354341983795166,1.7457983493804932,1.2380952835083008,1.605742335319519,0.9929971694946289,1.605742335319519,1.553221344947815,1.7107843160629272,1.6757702827453613,1.5882352590560913,1.483193278312683,1.3606442213058472,1.2380952835083008,0.8879551887512207,0.17016807198524475,-0.9502801299095154,-1.3879551887512207,-1.2654061317443848,-1.3879551887512207,-1.1603641510009766,-0.8627451062202454,-1.1428571939468384,-0.9677870869636536,-0.7752100825309753,-0.9677870869636536,-0.8277310729026794,-1.0378150939941406,-0.9327731132507324,-0.9152660965919495,-0.8277310729026794,-1.0378150939941406,-0.7752100825309753,-0.9152660965919495,-0.7226890921592712,-0.9852941036224365,-0.7401960492134094,-0.6876750588417053,-0.6526610851287842,-0.7051820755004883,-0.5476190447807312,-0.7401960492134094,-0.47759103775024414,-0.6526610851287842,-0.5476190447807312,-0.4600840210914612,-0.37254902720451355,-0.7927170991897583,-0.6001400351524353,-0.42507001757621765,-0.7226890921592712,-0.6526610851287842,-0.4950980246067047,-0.8277310729026794,-0.5126050710678101,-0.6876750588417053,-0.7577030658721924,-0.9852941036224365,-0.6526610851287842,-0.3550420105457306,-0.5826330780982971,-0.6176470518112183,-0.7051820755004883,-0.4600840210914612,-0.12745098769664764,0.030112044885754585,-0.23249299824237823,-0.4950980246067047,-0.7401960492134094,-0.8977590799331665,-1.3004201650619507,-1.3879551887512207,-1.5980392694473267,-1.3179271221160889,-1.3879551887512207,-1.2829132080078125,-1.1428571939468384,-1.3004201650619507,-1.1953781843185425,-1.457983136177063,-1.1603641510009766,-1.580532193183899,-1.2128851413726807,-1.3879551887512207,-1.1078431606292725,1.5882352590560913,-0.3550420105457306,-1.1078431606292725,-0.7577030658721924,0.1001400575041771,0.36274510622024536,0.450280100107193,0.4852941036224365,0.17016807198524475,-0.7577030658721924,-0.25,-0.3900560140609741,-0.7577030658721924,-0.7577030658721924,-0.05742296949028969,-0.4600840210914612,-0.7401960492134094,-0.5826330780982971,-1.1603641510009766,-0.9327731132507324,-0.7051820755004883,-1.3179271221160889,-0.6701680421829224,-0.3025210201740265,-0.1449579894542694,0.2927170991897583,0.38025209307670593,0.450280100107193,-0.6001400351524353,0.6603641510009766,1.1155462265014648,0.8004201650619507,0.5378151535987854,0.32773110270500183,-0.1449579894542694,-0.37254902720451355,0.5203081369400024,1.5007002353668213,1.080532193183899,-0.3900560140609741,-0.0049019609577953815,-1.457983136177063,-1.457983136177063,-1.0028011798858643,0.012605042196810246,0.5203081369400024,-0.6001400351524353,-1.720588207244873,-1.2478991746902466,-0.26750701665878296,0.8529411554336548,0.9054622054100037,-1.720588207244873,-1.895658254623413,-1.7906162738800049,-0.28501400351524353,0.9229691624641418,1.483193278312683,1.5882352590560913,1.6582633256912231,1.518207311630249,0.8529411554336548,-0.8977590799331665,-0.9502801299095154,-1.0553221702575684,-1.1778711080551147,-1.0378150939941406,-0.9502801299095154,-0.8802521228790283,-1.0203081369400024,-0.9852941036224365,-1.3354341983795166,-1.0553221702575684,-1.0553221702575684,-0.9677870869636536,-0.8627451062202454,-0.4425770342350006,-0.5301120281219482,-0.5651260614395142,-0.5826330780982971,-0.6526610851287842,-0.7577030658721924,-0.7577030658721924,-0.5476190447807312,-0.7927170991897583,-0.5301120281219482,-0.8277310729026794,-0.8802521228790283,-0.8102241158485413,-0.6876750588417053,-0.4950980246067047,-0.6001400351524353,-0.8627451062202454,-0.8627451062202454,-0.8802521228790283,-0.9327731132507324,-1.0378150939941406,-0.9327731132507324,-1.0203081369400024],[-0.03991596773266792,-0.1449579894542694,-0.02240896411240101,0.1001400575041771,0.15266107022762299,0.27521008253097534,0.3452380895614624,-0.3900560140609741,-0.42507001757621765,0.7478991746902466,0.18767507374286652,0.25770309567451477,0.20518207550048828,0.27521008253097534,1.2380952835083008,1.553221344947815,1.045518159866333,0.0476190485060215,-0.32002800703048706,0.36274510622024536,0.450280100107193,0.38025209307670593,0.5203081369400024,0.7303921580314636,0.8354341983795166,0.7303921580314636,0.31022408604621887,-0.17997199296951294,0.38025209307670593,0.030112044885754585,0.27521008253097534,0.7829131484031677,1.0280112028121948,1.1855741739273071,1.1855741739273071,1.0630252361297607,1.0630252361297607,1.3256303071975708,1.308123230934143,1.343137264251709,1.133053183555603,0.8529411554336548,1.7457983493804932,1.343137264251709,1.605742335319519,1.378151297569275,1.465686321258545,1.395658254623413,1.6582633256912231,1.7633053064346313,1.7983193397521973,1.5357142686843872,1.2906162738800049,1.343137264251709,0.9579831957817078,-0.1449579894542694,-0.6526610851287842,-1.3354341983795166,-1.3004201650619507,-1.1778711080551147,-1.1603641510009766,-1.0553221702575684,-1.0728291273117065,-0.8802521228790283,-0.9852941036224365,-1.0553221702575684,-0.9327731132507324,-1.0728291273117065,-0.9327731132507324,-1.0553221702575684,-1.0028011798858643,-0.7401960492134094,-0.7752100825309753,-0.7927170991897583,-1.0203081369400024,-1.0728291273117065,-0.7051820755004883,-0.6351540684700012,-0.8277310729026794,-0.5651260614395142,-0.6701680421829224,-0.6176470518112183,-0.6176470518112183,-0.5651260614395142,-0.5651260614395142,-0.3550420105457306,-0.6701680421829224,-0.6176470518112183,-0.4425770342350006,-0.4425770342350006,-0.7927170991897583,-0.7401960492134094,-0.37254902720451355,-0.5826330780982971,-0.6176470518112183,-0.47759103775024414,-0.5301120281219482,-0.8802521228790283,-0.7226890921592712,-0.7051820755004883,-0.3550420105457306,-0.4425770342350006,-0.47759103775024414,-0.16246499121189117,-0.12745098769664764,-0.3025210201740265,-0.4600840210914612,-0.6001400351524353,-0.8802521228790283,-1.0553221702575684,-1.1953781843185425,-1.580532193183899,-1.3879551887512207,-1.3529411554336548,-1.5280112028121948,-1.2303920984268188,-1.1778711080551147,-0.9502801299095154,-1.3879551887512207,-1.1078431606292725,-1.1778711080551147,-1.1253501176834106,-1.0378150939941406,-1.1428571939468384,-0.8627451062202454,1.4131652116775513,0.1001400575041771,-0.5476190447807312,-0.02240896411240101,-0.5651260614395142,-0.4425770342350006,0.13515406847000122,-0.25,-0.25,0.46778711676597595,0.25770309567451477,0.5203081369400024,0.3977591097354889,1.1155462265014648,0.06512605398893356,0.8529411554336548,-1.0728291273117065,-0.17997199296951294,-1.1953781843185425,-1.1428571939468384,-0.5126050710678101,-0.6701680421829224,-0.03991596773266792,0.18767507374286652,0.012605042196810246,-0.3550420105457306,-1.1603641510009766,0.4852941036224365,0.36274510622024536,0.9579831957817078,0.8704481720924377,1.1505602598190308,0.7829131484031677,0.36274510622024536,-0.6876750588417053,0.012605042196810246,-0.21498599648475647,0.7303921580314636,0.6603641510009766,0.5553221106529236,-0.7226890921592712,-1.7731091976165771,-1.808123230934143,-0.7752100825309753,0.6953781247138977,0.15266107022762299,-1.930672287940979,-0.7226890921592712,-1.2303920984268188,-0.5826330780982971,0.7303921580314636,1.2906162738800049,-1.1428571939468384,-1.3004201650619507,-0.5651260614395142,0.8004201650619507,1.2906162738800049,1.5707283020019531,1.6232492923736572,1.5357142686843872,1.378151297569275,1.0630252361297607,-0.7226890921592712,-1.0028011798858643,-0.6876750588417053,-1.0903360843658447,-0.9852941036224365,-0.9502801299095154,-0.9327731132507324,-0.8977590799331665,-0.9677870869636536,-1.1078431606292725,-1.1778711080551147,-1.2128851413726807,-0.9327731132507324,-0.8802521228790283,-0.7401960492134094,-0.6351540684700012,-0.6876750588417053,-0.6001400351524353,-0.6176470518112183,-0.7927170991897583,-0.9327731132507324,-0.9327731132507324,-0.6176470518112183,-0.8102241158485413,-0.7752100825309753,-0.9152660965919495,-0.9327731132507324,-0.7226890921592712,-0.6701680421829224,-0.42507001757621765,-0.6876750588417053,-0.7577030658721924,-0.9677870869636536,-0.9502801299095154,-0.6701680421829224,-0.5826330780982971,-0.6701680421829224],[0.0476190485060215,0.06512605398893356,0.06512605398893356,-0.16246499121189117,0.06512605398893356,0.11764705926179886,0.012605042196810246,-0.3900560140609741,-0.4950980246067047,0.13515406847000122,0.3977591097354889,0.5028011202812195,0.7829131484031677,1.2030812501907349,1.483193278312683,1.378151297569275,1.4481792449951172,0.1001400575041771,0.18767507374286652,-0.47759103775024414,-0.6176470518112183,-0.7226890921592712,-0.7752100825309753,-0.32002800703048706,-0.21498599648475647,0.25770309567451477,0.31022408604621887,1.1855741739273071,-1.1953781843185425,0.5028011202812195,0.2401960790157318,0.6778711676597595,0.9054622054100037,1.220588207244873,1.4131652116775513,1.255602240562439,0.9754902124404907,1.308123230934143,1.2380952835083008,0.8529411554336548,1.2030812501907349,1.0105042457580566,1.5882352590560913,1.7457983493804932,1.693277359008789,1.8158262968063354,1.9208683967590332,1.9733893871307373,1.483193278312683,1.7282912731170654,1.7282912731170654,1.255602240562439,1.1855741739273071,1.0630252361297607,1.0630252361297607,-0.1974789947271347,-1.0028011798858643,-1.2478991746902466,-1.2654061317443848,-1.2478991746902466,-1.2654061317443848,-1.0378150939941406,-1.0028011798858643,-0.8802521228790283,-1.1253501176834106,-0.9852941036224365,-0.8627451062202454,-0.8277310729026794,-0.9852941036224365,-1.0728291273117065,-0.7577030658721924,-0.7752100825309753,-0.7927170991897583,-0.7051820755004883,-0.6526610851287842,-0.9677870869636536,-0.8102241158485413,-0.6351540684700012,-0.7226890921592712,-0.6351540684700012,-0.5651260614395142,-0.3025210201740265,-0.4600840210914612,-0.6176470518112183,-0.6701680421829224,-0.28501400351524353,-0.47759103775024414,-0.4075630307197571,-0.25,-0.37254902720451355,-0.5126050710678101,-0.26750701665878296,-0.4425770342350006,-0.5651260614395142,-0.4600840210914612,-0.6701680421829224,-0.47759103775024414,-0.33753502368927,-0.3550420105457306,-0.4600840210914612,-0.23249299824237823,-0.3550420105457306,-0.28501400351524353,0.2401960790157318,-0.25,-0.28501400351524353,-0.4425770342350006,-0.9152660965919495,-1.1253501176834106,-1.3179271221160889,-1.3529411554336548,-1.5105042457580566,-1.3529411554336548,-1.2478991746902466,-1.2829132080078125,-1.2478991746902466,-1.457983136177063,-1.1078431606292725,-1.0903360843658447,-1.1778711080551147,-1.2478991746902466,-1.0553221702575684,-1.3004201650619507,-0.8627451062202454,-0.03991596773266792,0.7303921580314636,-0.7927170991897583,0.1001400575041771,0.6428571343421936,0.18767507374286652,-0.3900560140609741,0.18767507374286652,0.030112044885754585,-0.03991596773266792,0.27521008253097534,0.5028011202812195,-0.07492997497320175,-0.47759103775024414,-0.23249299824237823,-0.4075630307197571,-0.25,-0.5126050710678101,-1.7731091976165771,-0.3900560140609741,0.012605042196810246,0.4852941036224365,-0.25,-1.457983136177063,-1.3179271221160889,-1.1603641510009766,-0.21498599648475647,0.7478991746902466,0.030112044885754585,-0.05742296949028969,0.9579831957817078,0.2401960790157318,0.7128851413726807,0.08263305574655533,0.27521008253097534,-0.23249299824237823,-0.3025210201740265,-0.5301120281219482,-0.25,0.3452380895614624,0.012605042196810246,0.17016807198524475,-1.6505602598190308,-1.6505602598190308,0.3452380895614624,0.8354341983795166,1.080532193183899,-0.6176470518112183,-1.3529411554336548,-0.9327731132507324,-0.5301120281219482,0.8004201650619507,1.2030812501907349,0.4327731132507324,0.2401960790157318,0.6778711676597595,1.1505602598190308,1.2380952835083008,1.5882352590560913,1.5007002353668213,1.2906162738800049,1.553221344947815,1.5357142686843872,-0.26750701665878296,-1.0728291273117065,-0.9852941036224365,-1.0553221702575684,-0.8977590799331665,-0.9852941036224365,-0.9852941036224365,-0.9152660965919495,-1.0203081369400024,-1.0553221702575684,-0.8977590799331665,-0.9327731132507324,-0.6876750588417053,-0.9677870869636536,-0.8452380895614624,-0.6176470518112183,-0.42507001757621765,-0.7577030658721924,-0.6176470518112183,-0.8102241158485413,-0.6351540684700012,-0.7752100825309753,-0.6701680421829224,-0.7577030658721924,-0.6876750588417053,-0.9852941036224365,-0.6876750588417053,-0.7927170991897583,-0.6701680421829224,-0.4075630307197571,-0.5826330780982971,-0.7577030658721924,-0.7927170991897583,-0.9677870869636536,-0.8102241158485413,-0.8627451062202454,-0.7577030658721924],[-0.02240896411240101,-0.17997199296951294,-0.0049019609577953815,0.06512605398893356,0.030112044885754585,-0.4075630307197571,-0.33753502368927,-0.05742296949028969,-0.26750701665878296,0.6078431606292725,0.46778711676597595,0.012605042196810246,0.7654061913490295,1.1155462265014648,1.0105042457580566,0.8529411554336548,1.3606442213058472,1.5357142686843872,1.7282912731170654,0.6953781247138977,-0.02240896411240101,-0.6001400351524353,-1.2303920984268188,-1.1603641510009766,-1.492997169494629,-0.6351540684700012,-1.1603641510009766,-0.28501400351524353,-0.4950980246067047,-1.5105042457580566,-1.1953781843185425,0.8354341983795166,0.9754902124404907,1.308123230934143,1.2731091976165771,1.1505602598190308,1.1505602598190308,1.0630252361297607,1.2731091976165771,0.8354341983795166,0.7654061913490295,1.0105042457580566,1.693277359008789,1.780812382698059,1.9558823108673096,1.5707283020019531,1.3256303071975708,1.6407562494277954,1.693277359008789,1.4131652116775513,1.518207311630249,1.343137264251709,0.9229691624641418,0.9054622054100037,0.5203081369400024,-0.4600840210914612,-1.4754902124404907,-1.1778711080551147,-1.3704482316970825,-1.4229692220687866,-1.2654061317443848,-1.2654061317443848,-1.2303920984268188,-0.7051820755004883,-0.9152660965919495,-0.9152660965919495,-0.8977590799331665,-1.0378150939941406,-0.9152660965919495,-0.9152660965919495,-1.0203081369400024,-0.9852941036224365,-1.0028011798858643,-0.8802521228790283,-0.8802521228790283,-0.7752100825309753,-1.0203081369400024,-0.6701680421829224,-0.7401960492134094,-0.7051820755004883,-0.7226890921592712,-0.6351540684700012,-0.4075630307197571,-0.7226890921592712,-0.6526610851287842,-0.37254902720451355,-0.4600840210914612,-0.6351540684700012,-0.8277310729026794,-0.7226890921592712,-0.5826330780982971,-0.4950980246067047,-0.4950980246067047,-0.42507001757621765,-0.5651260614395142,-0.6001400351524353,-0.21498599648475647,-0.03991596773266792,-0.23249299824237823,-0.8277310729026794,-0.4075630307197571,0.22268907725811005,0.2401960790157318,0.22268907725811005,-0.12745098769664764,-0.25,-1.0728291273117065,-1.2303920984268188,-1.2654061317443848,-1.457983136177063,-1.3879551887512207,-1.492997169494629,-1.2478991746902466,-1.1778711080551147,-1.1778711080551147,-1.1603641510009766,-1.1603641510009766,-1.1603641510009766,-1.4404761791229248,-1.3004201650619507,-0.9502801299095154,-1.3004201650619507,-1.3704482316970825,-1.0028011798858643,0.8704481720924377,0.7303921580314636,-1.1428571939468384,0.450280100107193,0.6253501176834106,1.1855741739273071,1.2731091976165771,0.4327731132507324,0.27521008253097534,-0.4075630307197571,-0.5301120281219482,0.41526609659194946,-0.07492997497320175,0.5203081369400024,-0.6526610851287842,0.6603641510009766,0.9054622054100037,0.0476190485060215,0.46778711676597595,0.5378151535987854,0.8004201650619507,0.6953781247138977,0.41526609659194946,1.168067216873169,0.4852941036224365,0.18767507374286652,-0.8277310729026794,-0.6701680421829224,-0.4075630307197571,-0.25,0.0476190485060215,0.030112044885754585,-0.33753502368927,0.6603641510009766,0.5028011202812195,0.1001400575041771,-0.7927170991897583,-0.33753502368927,-0.17997199296951294,-0.17997199296951294,0.6953781247138977,-0.5476190447807312,-0.5126050710678101,-1.878151297569275,0.5028011202812195,0.9579831957817078,-0.0049019609577953815,-1.4404761791229248,-1.5280112028121948,-0.1449579894542694,0.7128851413726807,0.7478991746902466,1.3606442213058472,0.1001400575041771,1.0280112028121948,1.0280112028121948,0.9929971694946289,1.080532193183899,1.378151297569275,1.1505602598190308,0.8179271817207336,1.465686321258545,1.483193278312683,1.4131652116775513,0.5378151535987854,-0.7401960492134094,-1.0378150939941406,-1.0728291273117065,-1.0028011798858643,-0.9852941036224365,-1.1078431606292725,-1.1428571939468384,-1.0378150939941406,-1.1603641510009766,-1.0728291273117065,-0.9502801299095154,-1.0378150939941406,-1.0028011798858643,-0.8627451062202454,-0.7051820755004883,-0.7401960492134094,-0.8802521228790283,-0.7051820755004883,-0.5651260614395142,-0.6351540684700012,-0.7401960492134094,-0.7226890921592712,-1.0028011798858643,-0.7401960492134094,-0.8277310729026794,-0.7051820755004883,-0.7226890921592712,-0.6001400351524353,-0.47759103775024414,-0.6351540684700012,-1.0378150939941406,-0.9502801299095154,-0.8977590799331665,-1.2478991746902466,-0.9502801299095154],[-0.25,-0.16246499121189117,0.012605042196810246,0.11764705926179886,0.030112044885754585,-0.09243697673082352,-0.4075630307197571,0.3977591097354889,-0.10994397848844528,0.450280100107193,0.2401960790157318,-0.4425770342350006,0.41526609659194946,0.6428571343421936,-0.09243697673082352,0.15266107022762299,1.1505602598190308,1.553221344947815,1.9908963441848755,1.7107843160629272,1.5007002353668213,-0.07492997497320175,-0.7577030658721924,-1.0203081369400024,-1.5105042457580566,-1.1778711080551147,-1.3529411554336548,-0.37254902720451355,-0.25,-1.7030812501907349,-1.7380952835083008,0.4327731132507324,1.0630252361297607,1.343137264251709,1.1855741739273071,0.8004201650619507,1.0980392694473267,1.2906162738800049,1.395658254623413,1.0280112028121948,0.7654061913490295,0.8179271817207336,1.5882352590560913,1.8158262968063354,1.8858543634414673,2.0609242916107178,1.6407562494277954,1.4481792449951172,1.693277359008789,1.6757702827453613,1.343137264251709,1.378151297569275,0.9404761791229248,0.6778711676597595,0.41526609659194946,-1.1253501176834106,-1.2303920984268188,-1.4229692220687866,-1.3004201650619507,-0.9852941036224365,-1.1428571939468384,-1.1778711080551147,-1.0203081369400024,-1.2303920984268188,-1.0203081369400024,-0.8977590799331665,-0.8277310729026794,-1.2829132080078125,-0.7226890921592712,-0.9502801299095154,-0.9852941036224365,-0.9152660965919495,-0.7927170991897583,-0.7577030658721924,-0.7401960492134094,-0.8277310729026794,-0.7927170991897583,-0.7577030658721924,-0.6351540684700012,-0.6876750588417053,-0.8977590799331665,-0.4425770342350006,-0.3900560140609741,-0.5476190447807312,-0.4600840210914612,-0.4950980246067047,-0.10994397848844528,-0.42507001757621765,-0.5651260614395142,-0.42507001757621765,-0.3900560140609741,-0.6001400351524353,-0.7752100825309753,-0.6176470518112183,-0.5476190447807312,-0.47759103775024414,-0.42507001757621765,-0.5301120281219482,-0.8977590799331665,-0.7401960492134094,-0.0049019609577953815,-0.0049019609577953815,0.1001400575041771,0.030112044885754585,-0.17997199296951294,-0.7226890921592712,-1.0028011798858643,-1.0728291273117065,-1.3704482316970825,-1.5280112028121948,-1.3004201650619507,-1.3529411554336548,-1.2654061317443848,-1.0728291273117065,-1.2654061317443848,-1.0378150939941406,-1.1603641510009766,-1.0378150939941406,-1.0728291273117065,-1.0728291273117065,-1.0378150939941406,-1.1253501176834106,-1.2128851413726807,-1.0553221702575684,1.255602240562439,0.36274510622024536,-1.3179271221160889,0.17016807198524475,0.7303921580314636,1.255602240562439,1.220588207244873,0.46778711676597595,-0.07492997497320175,0.5203081369400024,0.6253501176834106,1.4481792449951172,1.0630252361297607,0.6953781247138977,0.7654061913490295,0.030112044885754585,0.25770309567451477,0.5553221106529236,0.7478991746902466,0.8179271817207336,0.6253501176834106,1.5007002353668213,1.1855741739273071,0.36274510622024536,0.20518207550048828,0.06512605398893356,-0.4075630307197571,-0.6351540684700012,-0.6176470518112183,-0.8452380895614624,0.5378151535987854,-0.07492997497320175,0.5028011202812195,0.7303921580314636,0.7303921580314636,0.1001400575041771,0.20518207550048828,-0.7051820755004883,-0.05742296949028969,0.450280100107193,0.5378151535987854,-0.8102241158485413,-1.2478991746902466,-1.6505602598190308,0.6428571343421936,0.9929971694946289,-0.1449579894542694,-1.3704482316970825,-1.4054621458053589,-0.12745098769664764,-0.6526610851287842,0.8179271817207336,0.7478991746902466,0.0476190485060215,0.32773110270500183,0.7303921580314636,0.9579831957817078,0.9579831957817078,1.0280112028121948,0.7829131484031677,0.6078431606292725,1.395658254623413,1.343137264251709,0.9754902124404907,0.9579831957817078,0.6603641510009766,-0.6526610851287842,-1.2128851413726807,-0.9502801299095154,-1.1603641510009766,-1.0728291273117065,-1.1078431606292725,-1.2478991746902466,-1.1253501176834106,-0.8802521228790283,-1.1428571939468384,-0.7927170991897583,-0.7226890921592712,-0.8802521228790283,-0.7051820755004883,-0.42507001757621765,-0.8277310729026794,-0.6176470518112183,-1.0203081369400024,-0.4075630307197571,-0.7927170991897583,-0.6526610851287842,-0.5476190447807312,-0.8102241158485413,-0.8277310729026794,-0.6526610851287842,-0.7401960492134094,-0.4425770342350006,-0.6351540684700012,-0.7051820755004883,-1.0028011798858643,-0.7927170991897583,-1.0378150939941406,-0.7927170991897583,-0.7752100825309753],[-0.1974789947271347,0.030112044885754585,-0.1449579894542694,-0.05742296949028969,-0.1449579894542694,-0.33753502368927,0.1001400575041771,-0.3025210201740265,0.012605042196810246,0.012605042196810246,0.18767507374286652,0.6078431606292725,0.6253501176834106,0.6078431606292725,-0.3550420105457306,0.3977591097354889,0.8704481720924377,1.553221344947815,1.693277359008789,1.780812382698059,1.518207311630249,0.41526609659194946,0.20518207550048828,-0.6176470518112183,-1.4229692220687866,-1.5280112028121948,-1.2478991746902466,-0.8452380895614624,0.25770309567451477,-0.8102241158485413,-1.4754902124404907,0.32773110270500183,1.0105042457580566,1.343137264251709,1.2906162738800049,0.2401960790157318,0.8879551887512207,1.378151297569275,1.518207311630249,0.8704481720924377,0.8004201650619507,0.9754902124404907,1.5007002353668213,1.553221344947815,1.5007002353668213,1.780812382698059,1.8333333730697632,1.6407562494277954,1.5357142686843872,1.4481792449951172,1.2731091976165771,1.343137264251709,0.9929971694946289,0.7128851413726807,0.13515406847000122,-1.5280112028121948,-1.3179271221160889,-1.3004201650619507,-1.3529411554336548,-1.2478991746902466,-0.9677870869636536,-1.1078431606292725,-0.9677870869636536,-0.9327731132507324,-0.9852941036224365,-1.0728291273117065,-0.9852941036224365,-0.9502801299095154,-0.9502801299095154,-0.7226890921592712,-0.8102241158485413,-0.8102241158485413,-0.8802521228790283,-0.6526610851287842,-0.7226890921592712,-0.8977590799331665,-0.8277310729026794,-0.6351540684700012,-0.7752100825309753,-0.6876750588417053,-0.5826330780982971,-0.6876750588417053,-0.26750701665878296,-0.6351540684700012,-0.5301120281219482,-0.4950980246067047,-0.37254902720451355,-0.6701680421829224,-0.4425770342350006,-0.6176470518112183,-0.6176470518112183,-0.17997199296951294,-0.3900560140609741,-0.4600840210914612,-0.4600840210914612,-0.6526610851287842,-0.5826330780982971,-0.4950980246067047,-0.4950980246067047,-0.0049019609577953815,0.18767507374286652,0.1001400575041771,-0.09243697673082352,-0.17997199296951294,-0.5476190447807312,-1.1078431606292725,-1.3004201650619507,-1.2829132080078125,-1.4054621458053589,-1.3004201650619507,-1.545518159866333,-1.1603641510009766,-1.1253501176834106,-1.0903360843658447,-1.0028011798858643,-1.0553221702575684,-1.2128851413726807,-1.1253501176834106,-1.0728291273117065,-1.1078431606292725,-0.8802521228790283,-0.9327731132507324,-0.6351540684700012,-0.8802521228790283,1.395658254623413,0.8704481720924377,-1.3704482316970825,-0.3550420105457306,1.0280112028121948,1.6407562494277954,1.518207311630249,0.18767507374286652,-0.5826330780982971,0.31022408604621887,1.220588207244873,0.9054622054100037,1.3606442213058472,0.9929971694946289,0.31022408604621887,0.4327731132507324,0.5203081369400024,1.045518159866333,0.6953781247138977,0.6078431606292725,0.7303921580314636,0.6428571343421936,0.450280100107193,0.5203081369400024,1.3606442213058472,0.7829131484031677,0.9929971694946289,0.450280100107193,-0.25,-0.5826330780982971,-0.5126050710678101,0.5378151535987854,0.4852941036224365,0.450280100107193,0.5903361439704895,0.7829131484031677,-0.03991596773266792,0.08263305574655533,-0.10994397848844528,0.5728291273117065,0.8704481720924377,-0.07492997497320175,-0.21498599648475647,-1.6505602598190308,0.5028011202812195,0.9754902124404907,0.030112044885754585,-0.8452380895614624,-0.8452380895614624,-0.07492997497320175,-0.7226890921592712,-0.0049019609577953815,1.518207311630249,-0.7752100825309753,-1.0903360843658447,0.06512605398893356,0.6603641510009766,1.255602240562439,0.9579831957817078,-0.03991596773266792,0.8179271817207336,0.9754902124404907,0.20518207550048828,-1.2303920984268188,0.8879551887512207,1.133053183555603,0.7303921580314636,-0.09243697673082352,-0.6001400351524353,-1.0728291273117065,-0.9502801299095154,-0.9502801299095154,-1.1253501176834106,-0.9152660965919495,-1.2654061317443848,-1.2303920984268188,-1.2478991746902466,-0.9852941036224365,-0.8977590799331665,-0.5826330780982971,-0.7401960492134094,-0.6526610851287842,-0.8802521228790283,-0.8627451062202454,-0.7577030658721924,-0.6001400351524353,-0.8102241158485413,-0.4950980246067047,-0.8802521228790283,-0.8277310729026794,-0.7927170991897583,-0.5126050710678101,-0.5476190447807312,-0.6351540684700012,-0.8102241158485413,-0.8627451062202454,-0.9852941036224365,-0.9852941036224365,-0.7401960492134094,-0.7752100825309753],[-0.5126050710678101,-0.1449579894542694,-0.21498599648475647,-0.26750701665878296,0.08263305574655533,0.012605042196810246,0.08263305574655533,0.012605042196810246,0.5203081369400024,0.31022408604621887,0.5903361439704895,0.6778711676597595,0.6603641510009766,0.8004201650619507,0.9929971694946289,1.343137264251709,1.6582633256912231,1.8683472871780396,1.8683472871780396,1.8858543634414673,1.693277359008789,1.553221344947815,1.220588207244873,0.3977591097354889,-0.07492997497320175,-0.9152660965919495,-0.4425770342350006,0.8879551887512207,0.41526609659194946,-0.16246499121189117,-0.23249299824237823,0.5378151535987854,1.2380952835083008,1.3256303071975708,1.343137264251709,0.9929971694946289,0.8704481720924377,1.308123230934143,1.220588207244873,1.1855741739273071,0.7829131484031677,1.3256303071975708,1.430672287940979,1.6407562494277954,1.7107843160629272,1.6757702827453613,1.7983193397521973,1.780812382698059,1.605742335319519,1.168067216873169,1.308123230934143,1.2030812501907349,0.8704481720924377,0.5028011202812195,-0.6351540684700012,-1.4754902124404907,-1.6505602598190308,-1.2654061317443848,-1.1078431606292725,-1.1253501176834106,-1.2128851413726807,-0.9327731132507324,-0.8802521228790283,-1.0028011798858643,-0.8802521228790283,-0.8102241158485413,-1.0028011798858643,-1.0028011798858643,-0.9502801299095154,-0.9152660965919495,-0.9152660965919495,-0.9502801299095154,-0.7752100825309753,-0.7927170991897583,-1.0203081369400024,-0.8452380895614624,-0.6876750588417053,-0.6351540684700012,-0.7226890921592712,-0.6351540684700012,-0.6351540684700012,-0.47759103775024414,-0.37254902720451355,-0.4950980246067047,-0.8977590799331665,-0.5651260614395142,-0.6176470518112183,-0.8102241158485413,-0.4425770342350006,-0.42507001757621765,-0.7927170991897583,-0.42507001757621765,-0.7226890921592712,-0.37254902720451355,-0.8102241158485413,-0.5651260614395142,-0.6176470518112183,-0.21498599648475647,-0.17997199296951294,0.0476190485060215,0.11764705926179886,-0.03991596773266792,-0.12745098769664764,-0.4425770342350006,-0.8802521228790283,-0.9152660965919495,-1.0203081369400024,-1.3879551887512207,-1.545518159866333,-1.3354341983795166,-1.5630252361297607,-1.0728291273117065,-1.1253501176834106,-1.1778711080551147,-1.1078431606292725,-1.1253501176834106,-0.9852941036224365,-1.1078431606292725,-1.1078431606292725,-1.0728291273117065,-1.0728291273117065,-0.8977590799331665,-1.0378150939941406,-0.4600840210914612,1.9733893871307373,1.255602240562439,-0.8627451062202454,0.9054622054100037,1.5357142686843872,0.9754902124404907,1.483193278312683,0.5903361439704895,0.11764705926179886,0.18767507374286652,0.9404761791229248,1.4481792449951172,1.0630252361297607,0.8529411554336548,1.080532193183899,1.2906162738800049,0.7829131484031677,1.2380952835083008,0.6953781247138977,0.38025209307670593,1.0105042457580566,0.6078431606292725,0.5903361439704895,0.5903361439704895,0.8529411554336548,0.5728291273117065,1.1505602598190308,0.6428571343421936,-0.3025210201740265,-1.0903360843658447,-0.8802521228790283,-0.6701680421829224,0.15266107022762299,0.2401960790157318,0.2927170991897583,0.5903361439704895,-0.7401960492134094,-0.8977590799331665,-0.07492997497320175,-0.16246499121189117,0.450280100107193,-1.3354341983795166,-0.32002800703048706,-1.580532193183899,0.5028011202812195,0.8879551887512207,0.5028011202812195,-1.0903360843658447,0.2401960790157318,-0.33753502368927,-0.8277310729026794,0.13515406847000122,0.6078431606292725,-1.0203081369400024,-1.0203081369400024,-0.9852941036224365,0.5728291273117065,1.133053183555603,0.9929971694946289,-0.6001400351524353,0.5728291273117065,0.4327731132507324,0.0476190485060215,0.3977591097354889,1.2906162738800049,1.168067216873169,1.4481792449951172,1.168067216873169,1.0105042457580566,0.8879551887512207,-0.12745098769664764,-1.457983136177063,-1.0903360843658447,-1.5105042457580566,-1.4754902124404907,-1.0903360843658447,-1.0728291273117065,-1.0553221702575684,-0.9502801299095154,-0.9502801299095154,-0.7401960492134094,-0.7927170991897583,-0.8627451062202454,-0.8102241158485413,-0.6351540684700012,-0.6701680421829224,-0.7577030658721924,-0.7051820755004883,-0.6876750588417053,-0.8627451062202454,-0.9502801299095154,-0.7051820755004883,-0.6001400351524353,-0.5301120281219482,-0.5301120281219482,-0.9852941036224365,-0.8977590799331665,-0.8452380895614624,-0.8627451062202454,-0.7752100825309753],[-0.5651260614395142,-0.23249299824237823,-0.12745098769664764,-0.07492997497320175,-0.07492997497320175,-0.1449579894542694,0.030112044885754585,0.25770309567451477,0.450280100107193,0.46778711676597595,0.11764705926179886,-0.05742296949028969,0.31022408604621887,1.2731091976165771,1.6407562494277954,1.6407562494277954,1.5707283020019531,1.483193278312683,1.045518159866333,1.3606442213058472,1.518207311630249,1.3256303071975708,0.8704481720924377,0.22268907725811005,0.38025209307670593,-0.17997199296951294,-0.8102241158485413,0.8529411554336548,0.31022408604621887,0.38025209307670593,0.6253501176834106,0.5378151535987854,1.045518159866333,1.5007002353668213,1.343137264251709,1.255602240562439,1.2906162738800049,1.3256303071975708,1.6232492923736572,1.3256303071975708,1.2906162738800049,1.395658254623413,1.465686321258545,1.553221344947815,1.6232492923736572,1.8858543634414673,1.7282912731170654,1.605742335319519,1.0980392694473267,0.7829131484031677,0.9579831957817078,0.6778711676597595,0.36274510622024536,0.2927170991897583,-1.3704482316970825,-1.5105042457580566,-1.3879551887512207,-1.1603641510009766,-1.1428571939468384,-1.0728291273117065,-1.0553221702575684,-1.0028011798858643,-0.8977590799331665,-1.0553221702575684,-1.0553221702575684,-1.0378150939941406,-0.8802521228790283,-1.0203081369400024,-0.8977590799331665,-0.9152660965919495,-1.0028011798858643,-1.0028011798858643,-0.8452380895614624,-0.7752100825309753,-0.7401960492134094,-0.9852941036224365,-1.0028011798858643,-0.6701680421829224,-0.5651260614395142,-0.7226890921592712,-0.6176470518112183,-0.7226890921592712,-0.3025210201740265,-0.6351540684700012,-0.3900560140609741,-0.25,-0.7226890921592712,-0.7752100825309753,-0.12745098769664764,-0.5826330780982971,-0.4075630307197571,-0.5826330780982971,-0.4075630307197571,-0.4600840210914612,-0.42507001757621765,-0.4950980246067047,-0.4425770342350006,-0.4075630307197571,0.012605042196810246,0.38025209307670593,-0.4600840210914612,-0.1449579894542694,-0.6351540684700012,-0.8452380895614624,-0.8977590799331665,-1.1428571939468384,-1.3879551887512207,-1.2829132080078125,-1.2829132080078125,-1.2654061317443848,-1.0728291273117065,-1.2303920984268188,-1.2303920984268188,-1.2478991746902466,-1.1078431606292725,-0.9152660965919495,-1.0728291273117065,-0.9152660965919495,-1.1078431606292725,-1.0728291273117065,-1.1953781843185425,-1.2478991746902466,-0.7927170991897583,-0.8452380895614624,1.5357142686843872,0.6078431606292725,-0.8452380895614624,0.17016807198524475,1.1855741739273071,0.9754902124404907,0.9754902124404907,0.9754902124404907,0.7654061913490295,0.6778711676597595,0.5203081369400024,0.5553221106529236,1.045518159866333,1.045518159866333,1.220588207244873,1.2380952835083008,1.5882352590560913,1.045518159866333,0.20518207550048828,0.5903361439704895,0.450280100107193,0.27521008253097534,0.9579831957817078,1.220588207244873,1.3256303071975708,0.2927170991897583,0.27521008253097534,1.133053183555603,-0.3025210201740265,0.5203081369400024,0.15266107022762299,-0.3900560140609741,-0.10994397848844528,0.46778711676597595,0.012605042196810246,0.6953781247138977,-0.21498599648475647,-0.7226890921592712,-0.25,0.5378151535987854,0.27521008253097534,-0.7226890921592712,-0.17997199296951294,-2.0357143878936768,0.38025209307670593,0.7303921580314636,0.7128851413726807,0.20518207550048828,-0.7051820755004883,-1.633053183555603,-1.1428571939468384,1.378151297569275,0.012605042196810246,-1.5980392694473267,-1.3179271221160889,-1.2829132080078125,0.41526609659194946,0.9404761791229248,0.8704481720924377,-0.07492997497320175,0.9404761791229248,0.41526609659194946,0.7128851413726807,0.8879551887512207,0.9054622054100037,1.2731091976165771,1.605742335319519,1.395658254623413,-0.1449579894542694,-0.7051820755004883,0.450280100107193,-1.1953781843185425,-2.018207311630249,-1.983193278312683,-1.7380952835083008,-0.8802521228790283,-1.633053183555603,-1.2654061317443848,-0.8802521228790283,-0.6526610851287842,-0.8627451062202454,-0.9502801299095154,-0.9852941036224365,-0.7927170991897583,-0.7577030658721924,-0.9152660965919495,-0.8627451062202454,-0.6526610851287842,-0.5651260614395142,-1.0028011798858643,-0.9677870869636536,-0.6001400351524353,-0.33753502368927,-0.7577030658721924,-0.5651260614395142,-1.0728291273117065,-1.0378150939941406,-0.9852941036224365,-0.7927170991897583,-0.6876750588417053],[-0.4950980246067047,-0.47759103775024414,0.0476190485060215,-0.1449579894542694,-0.37254902720451355,-0.05742296949028969,0.06512605398893356,0.32773110270500183,0.5028011202812195,0.6778711676597595,0.22268907725811005,-0.07492997497320175,0.6603641510009766,1.3606442213058472,1.518207311630249,1.483193278312683,0.8354341983795166,0.13515406847000122,-0.17997199296951294,0.6603641510009766,0.450280100107193,0.8004201650619507,0.030112044885754585,-0.5826330780982971,-0.33753502368927,-0.8102241158485413,0.450280100107193,-0.4600840210914612,0.17016807198524475,0.6078431606292725,0.9404761791229248,0.8004201650619507,0.9054622054100037,1.3256303071975708,1.3606442213058472,1.308123230934143,0.8529411554336548,0.8004201650619507,1.5882352590560913,1.6407562494277954,1.5007002353668213,1.4131652116775513,1.465686321258545,1.518207311630249,1.6232492923736572,1.7457983493804932,1.5357142686843872,1.343137264251709,0.6428571343421936,0.7829131484031677,0.41526609659194946,0.7829131484031677,0.08263305574655533,-0.3025210201740265,-1.1778711080551147,-1.2829132080078125,-1.457983136177063,-1.3179271221160889,-1.1078431606292725,-1.1078431606292725,-1.0378150939941406,-1.0028011798858643,-1.1428571939468384,-1.0203081369400024,-0.8102241158485413,-0.7752100825309753,-0.9327731132507324,-0.7927170991897583,-0.7051820755004883,-0.9677870869636536,-0.8102241158485413,-1.0378150939941406,-0.6701680421829224,-1.1078431606292725,-0.7051820755004883,-0.5126050710678101,-0.7226890921592712,-0.6001400351524353,-0.8977590799331665,-0.3550420105457306,-0.8452380895614624,-0.6701680421829224,-0.4075630307197571,-0.7927170991897583,-0.4950980246067047,-0.6876750588417053,-0.3900560140609741,-0.28501400351524353,-0.7752100825309753,-0.47759103775024414,-0.6351540684700012,-0.8977590799331665,-0.7401960492134094,-0.8102241158485413,-0.4950980246067047,-0.5126050710678101,-0.5126050710678101,0.27521008253097534,0.012605042196810246,-0.10994397848844528,0.17016807198524475,-0.47759103775024414,-0.8627451062202454,-1.1253501176834106,-1.2128851413726807,-1.4229692220687866,-1.3354341983795166,-1.3704482316970825,-1.1953781843185425,-1.2654061317443848,-1.1428571939468384,-1.1603641510009766,-1.1603641510009766,-1.2303920984268188,-1.1778711080551147,-1.1078431606292725,-1.0553221702575684,-0.9852941036224365,-0.9852941036224365,-0.8277310729026794,-1.2303920984268188,-1.1078431606292725,-0.6701680421829224,-0.7401960492134094,1.9033613204956055,1.1855741739273071,-1.0728291273117065,-0.07492997497320175,0.9404761791229248,1.045518159866333,1.7457983493804932,1.343137264251709,1.4481792449951172,1.255602240562439,0.7829131484031677,0.6428571343421936,0.2401960790157318,0.6428571343421936,1.2030812501907349,1.2380952835083008,0.9929971694946289,1.133053183555603,0.38025209307670593,-0.3550420105457306,0.17016807198524475,0.7303921580314636,0.32773110270500183,1.0980392694473267,1.5882352590560913,0.8354341983795166,0.6078431606292725,0.32773110270500183,-0.26750701665878296,-0.02240896411240101,0.46778711676597595,0.36274510622024536,-0.0049019609577953815,0.18767507374286652,0.31022408604621887,0.5028011202812195,-0.07492997497320175,-0.5476190447807312,0.08263305574655533,0.7478991746902466,0.9404761791229248,-0.7577030658721924,-0.9327731132507324,-1.808123230934143,0.13515406847000122,0.6078431606292725,0.5728291273117065,0.5203081369400024,-0.32002800703048706,-1.1428571939468384,-0.42507001757621765,0.2401960790157318,1.080532193183899,-1.1253501176834106,-1.3529411554336548,-1.4754902124404907,0.13515406847000122,1.2030812501907349,1.0630252361297607,0.7654061913490295,1.045518159866333,0.5378151535987854,0.8004201650619507,0.8004201650619507,0.9929971694946289,1.2731091976165771,1.5007002353668213,1.5007002353668213,1.1505602598190308,-1.3879551887512207,0.31022408604621887,-0.6001400351524353,-1.1253501176834106,-2.018207311630249,0.46778711676597595,-1.7906162738800049,-1.720588207244873,0.3452380895614624,-1.0028011798858643,-1.3354341983795166,-1.0903360843658447,-0.8977590799331665,-1.1253501176834106,-0.9677870869636536,-0.9502801299095154,-0.8977590799331665,-0.6701680421829224,-0.5826330780982971,-0.8977590799331665,-0.8102241158485413,-0.9852941036224365,-1.0903360843658447,-0.5651260614395142,-0.47759103775024414,-0.6176470518112183,-1.1778711080551147,-0.9152660965919495,-0.9502801299095154,-0.9327731132507324,-0.6176470518112183],[-0.9852941036224365,-0.6701680421829224,-0.3550420105457306,-0.37254902720451355,-0.32002800703048706,-0.02240896411240101,0.22268907725811005,0.5553221106529236,0.9929971694946289,1.0105042457580566,0.20518207550048828,0.38025209307670593,0.8354341983795166,1.343137264251709,0.9929971694946289,0.7303921580314636,0.11764705926179886,-0.5651260614395142,-0.3025210201740265,-0.8277310729026794,0.20518207550048828,-0.12745098769664764,-0.25,-1.0903360843658447,-1.3179271221160889,-2.0007002353668213,-1.3354341983795166,-1.633053183555603,0.18767507374286652,0.8004201650619507,0.6953781247138977,0.9054622054100037,0.9754902124404907,0.9054622054100037,1.308123230934143,1.395658254623413,0.8879551887512207,0.8004201650619507,1.395658254623413,1.553221344947815,1.7633053064346313,1.553221344947815,1.6232492923736572,1.5007002353668213,1.6582633256912231,1.605742335319519,1.2731091976165771,1.168067216873169,0.36274510622024536,1.1505602598190308,0.5728291273117065,0.3452380895614624,-0.5126050710678101,-1.1428571939468384,-1.4754902124404907,-1.3529411554336548,-1.3179271221160889,-1.2478991746902466,-1.0903360843658447,-1.1603641510009766,-0.9852941036224365,-0.8802521228790283,-1.0903360843658447,-1.0903360843658447,-1.0903360843658447,-1.2478991746902466,-1.0028011798858643,-1.0028011798858643,-1.1078431606292725,-1.0553221702575684,-0.8452380895614624,-0.7752100825309753,-0.7752100825309753,-0.5826330780982971,-0.9852941036224365,-0.8102241158485413,-0.5476190447807312,-0.8802521228790283,-0.5826330780982971,-0.7051820755004883,-0.5476190447807312,-0.4950980246067047,-0.5651260614395142,-0.3900560140609741,-0.5126050710678101,-0.7226890921592712,-0.8627451062202454,-0.7577030658721924,-0.5651260614395142,-0.4425770342350006,-0.5651260614395142,-0.5301120281219482,-0.6701680421829224,-0.4425770342350006,-0.33753502368927,-0.6351540684700012,0.41526609659194946,-0.21498599648475647,0.06512605398893356,0.15266107022762299,-0.3550420105457306,-0.7577030658721924,-1.0903360843658447,-1.1078431606292725,-1.2128851413726807,-1.2478991746902466,-1.2478991746902466,-1.3004201650619507,-1.0728291273117065,-1.1428571939468384,-1.1428571939468384,-1.0378150939941406,-1.1953781843185425,-1.1078431606292725,-1.1253501176834106,-0.9327731132507324,-1.0203081369400024,-0.8627451062202454,-0.9327731132507324,-0.9852941036224365,-1.0903360843658447,-0.7401960492134094,-0.9502801299095154,-0.5126050710678101,1.9733893871307373,1.7282912731170654,-0.6001400351524353,0.8354341983795166,1.4481792449951172,1.465686321258545,1.3256303071975708,1.693277359008789,1.518207311630249,0.7478991746902466,0.8529411554336548,0.7303921580314636,0.8354341983795166,0.31022408604621887,0.450280100107193,1.2380952835083008,0.5903361439704895,0.5203081369400024,0.7303921580314636,0.3452380895614624,0.6953781247138977,0.5728291273117065,0.012605042196810246,0.9929971694946289,1.3256303071975708,0.4852941036224365,0.6603641510009766,0.6428571343421936,0.06512605398893356,-0.5476190447807312,-0.8977590799331665,0.030112044885754585,0.5553221106529236,0.5203081369400024,0.8529411554336548,0.450280100107193,0.36274510622024536,-0.33753502368927,0.012605042196810246,0.36274510622024536,1.0280112028121948,0.030112044885754585,-0.8452380895614624,-1.8256303071975708,0.25770309567451477,0.5378151535987854,0.6603641510009766,-0.0049019609577953815,-1.633053183555603,-1.1253501176834106,-1.0028011798858643,0.8179271817207336,0.38025209307670593,-1.1953781843185425,-1.492997169494629,-1.1253501176834106,0.31022408604621887,1.308123230934143,0.9054622054100037,0.9404761791229248,1.1155462265014648,0.7654061913490295,0.5903361439704895,0.9929971694946289,1.133053183555603,1.220588207244873,1.1855741739273071,1.518207311630249,1.378151297569275,1.0105042457580566,0.6778711676597595,0.7478991746902466,0.8004201650619507,2.2535014152526855,1.6757702827453613,0.13515406847000122,-1.7380952835083008,-1.580532193183899,0.08263305574655533,-0.8102241158485413,-1.1953781843185425,-1.2128851413726807,-1.1603641510009766,-1.1428571939468384,-0.8102241158485413,-0.8802521228790283,-0.8627451062202454,-1.0028011798858643,-0.7752100825309753,-0.9502801299095154,-0.9327731132507324,-0.9677870869636536,-0.7226890921592712,-0.7577030658721924,-0.6351540684700012,-0.8802521228790283,-1.0028011798858643,-0.6876750588417053,-0.6876750588417053,-0.5826330780982971],[-0.9502801299095154,-0.9502801299095154,-0.37254902720451355,-0.23249299824237823,-0.4950980246067047,-0.32002800703048706,0.5203081369400024,0.6603641510009766,0.7128851413726807,0.8879551887512207,0.8879551887512207,0.8179271817207336,0.6428571343421936,0.8179271817207336,-0.07492997497320175,-0.6001400351524353,0.18767507374286652,0.2401960790157318,0.5728291273117065,-0.6176470518112183,-0.4600840210914612,-0.21498599648475647,0.15266107022762299,-1.1253501176834106,-1.8256303071975708,-1.9131652116775513,-1.9481792449951172,-2.0357143878936768,-2.0357143878936768,0.17016807198524475,0.6603641510009766,1.080532193183899,1.1505602598190308,1.0280112028121948,0.5378151535987854,1.2380952835083008,1.0630252361297607,1.1155462265014648,1.3256303071975708,1.483193278312683,1.5707283020019531,1.6757702827453613,1.5882352590560913,1.553221344947815,1.5357142686843872,1.6232492923736572,1.518207311630249,0.46778711676597595,0.6953781247138977,0.3977591097354889,-0.12745098769664764,-0.1449579894542694,-0.9677870869636536,-1.545518159866333,-1.5105042457580566,-1.2303920984268188,-1.2303920984268188,-1.0553221702575684,-1.1778711080551147,-1.1778711080551147,-1.3529411554336548,-1.0203081369400024,-1.1428571939468384,-1.0203081369400024,-1.0028011798858643,-0.7927170991897583,-0.8627451062202454,-0.7752100825309753,-1.0203081369400024,-1.0028011798858643,-0.8277310729026794,-0.8802521228790283,-0.7051820755004883,-1.0378150939941406,-0.8977590799331665,-0.8627451062202454,-0.6701680421829224,-0.7927170991897583,-0.8277310729026794,-0.9152660965919495,-0.7401960492134094,-0.32002800703048706,-0.4950980246067047,-0.1974789947271347,-0.6701680421829224,-0.4600840210914612,-0.4600840210914612,-0.4950980246067047,-0.6701680421829224,-0.5651260614395142,-0.5651260614395142,-0.5126050710678101,-0.5651260614395142,-0.25,0.17016807198524475,-0.12745098769664764,-0.12745098769664764,-0.07492997497320175,-0.42507001757621765,-0.33753502368927,-1.0028011798858643,-1.0378150939941406,-1.1778711080551147,-1.3704482316970825,-1.3704482316970825,-1.1253501176834106,-1.2829132080078125,-1.1078431606292725,-1.4054621458053589,-1.2128851413726807,-1.1778711080551147,-1.0553221702575684,-0.8277310729026794,-1.0028011798858643,-0.9327731132507324,-0.9677870869636536,-1.0728291273117065,-1.0728291273117065,-0.9327731132507324,-0.8452380895614624,-0.8452380895614624,-0.6351540684700012,-0.8802521228790283,-0.8977590799331665,0.8354341983795166,1.308123230934143,-0.16246499121189117,0.11764705926179886,0.7128851413726807,1.133053183555603,1.483193278312683,1.343137264251709,1.2906162738800049,1.343137264251709,0.2401960790157318,0.7654061913490295,0.5203081369400024,0.9054622054100037,0.7478991746902466,0.7303921580314636,1.395658254623413,1.5357142686843872,-0.09243697673082352,0.3977591097354889,1.693277359008789,0.6953781247138977,1.080532193183899,2.2535014152526855,0.20518207550048828,0.32773110270500183,0.2927170991897583,0.17016807198524475,0.46778711676597595,-0.5651260614395142,-1.3004201650619507,-1.1778711080551147,-0.5476190447807312,1.133053183555603,0.41526609659194946,0.17016807198524475,0.2927170991897583,-0.9502801299095154,0.31022408604621887,1.045518159866333,0.2401960790157318,0.4327731132507324,-1.3354341983795166,-1.9131652116775513,0.8529411554336548,0.6603641510009766,0.5028011202812195,-1.545518159866333,-1.3529411554336548,-1.1428571939468384,-0.3025210201740265,0.25770309567451477,-0.4425770342350006,-1.808123230934143,-1.4229692220687866,0.3977591097354889,1.395658254623413,1.255602240562439,0.5728291273117065,0.9054622054100037,1.255602240562439,0.8354341983795166,1.0630252361297607,0.8879551887512207,1.220588207244873,1.3256303071975708,0.9754902124404907,0.8879551887512207,0.8004201650619507,1.518207311630249,-0.7226890921592712,1.5007002353668213,-0.0049019609577953815,0.41526609659194946,-0.23249299824237823,-0.1449579894542694,0.012605042196810246,-1.930672287940979,0.27521008253097534,0.9929971694946289,-1.4754902124404907,-1.3879551887512207,-1.1953781843185425,-1.2303920984268188,-0.8277310729026794,-0.9852941036224365,-0.8802521228790283,-0.5826330780982971,-0.8452380895614624,-0.9502801299095154,-0.9327731132507324,-1.0903360843658447,-0.7577030658721924,-0.9677870869636536,-0.6701680421829224,-0.8102241158485413,-0.9852941036224365,-0.8977590799331665,-0.6701680421829224,-0.5476190447807312],[-1.2303920984268188,-0.9852941036224365,-0.7401960492134094,-0.5651260614395142,-0.5126050710678101,-0.3025210201740265,0.31022408604621887,0.2401960790157318,0.2927170991897583,0.6428571343421936,0.8004201650619507,0.9579831957817078,0.9054622054100037,0.7303921580314636,0.13515406847000122,0.41526609659194946,1.4131652116775513,1.7983193397521973,1.308123230934143,0.8354341983795166,0.3977591097354889,-1.3004201650619507,-1.2303920984268188,-0.6701680421829224,-1.1778711080551147,-1.3529411554336548,-1.7380952835083008,-1.3529411554336548,-1.965686321258545,-0.9502801299095154,0.8529411554336548,1.1505602598190308,1.3606442213058472,1.168067216873169,0.3977591097354889,0.9929971694946289,0.6428571343421936,0.8179271817207336,1.4131652116775513,1.605742335319519,1.6232492923736572,1.430672287940979,1.2380952835083008,1.693277359008789,1.780812382698059,0.9229691624641418,1.2030812501907349,0.4852941036224365,0.7478991746902466,0.4852941036224365,0.012605042196810246,-0.5301120281219482,-1.720588207244873,-1.5280112028121948,-1.633053183555603,-1.4229692220687866,-1.3704482316970825,-1.3179271221160889,-1.2303920984268188,-1.1953781843185425,-1.2128851413726807,-1.0203081369400024,-0.8802521228790283,-0.7226890921592712,-0.9852941036224365,-1.1428571939468384,-1.0378150939941406,-0.6351540684700012,-0.6001400351524353,-0.7051820755004883,-0.8277310729026794,-0.9677870869636536,-0.8102241158485413,-0.9327731132507324,-0.8977590799331665,-1.0203081369400024,-0.8277310729026794,-0.7752100825309753,-0.8102241158485413,-0.3900560140609741,-0.6701680421829224,-0.7401960492134094,-0.8277310729026794,-0.7927170991897583,-0.6526610851287842,-0.5301120281219482,-0.9152660965919495,-0.7927170991897583,-0.6351540684700012,-0.7401960492134094,-0.7401960492134094,-0.6876750588417053,-0.4075630307197571,0.22268907725811005,0.08263305574655533,-0.3025210201740265,-0.09243697673082352,-0.32002800703048706,-0.6526610851287842,-0.8102241158485413,-0.8977590799331665,-1.1078431606292725,-1.5105042457580566,-1.1078431606292725,-1.2829132080078125,-1.2303920984268188,-1.2303920984268188,-1.0028011798858643,-1.0903360843658447,-1.0553221702575684,-1.3179271221160889,-0.9327731132507324,-0.9852941036224365,-0.8977590799331665,-0.8627451062202454,-0.8977590799331665,-0.9152660965919495,-0.9852941036224365,-1.0028011798858643,-0.8627451062202454,-0.8627451062202454,-0.8452380895614624,-0.5651260614395142,-0.47759103775024414,0.6778711676597595,1.255602240562439,0.4327731132507324,-1.1953781843185425,0.450280100107193,1.1505602598190308,0.8004201650619507,1.3256303071975708,1.0980392694473267,1.5007002353668213,1.2030812501907349,1.1155462265014648,0.7478991746902466,0.012605042196810246,0.7654061913490295,0.31022408604621887,1.553221344947815,0.8529411554336548,0.46778711676597595,0.8529411554336548,1.1855741739273071,0.5728291273117065,1.2731091976165771,1.7457983493804932,0.4327731132507324,0.8179271817207336,0.450280100107193,0.36274510622024536,0.13515406847000122,0.4852941036224365,-0.8102241158485413,-1.2128851413726807,-0.3550420105457306,-0.5301120281219482,0.9404761791229248,0.7478991746902466,0.36274510622024536,-0.4425770342350006,0.06512605398893356,0.8179271817207336,0.030112044885754585,0.4852941036224365,-1.4404761791229248,-1.6855741739273071,0.36274510622024536,0.2401960790157318,-0.7401960492134094,-1.755602240562439,-2.0357143878936768,-0.5476190447807312,0.8879551887512207,0.8529411554336548,-0.7927170991897583,-1.7030812501907349,-0.9852941036224365,1.3606442213058472,1.483193278312683,1.168067216873169,-0.0049019609577953815,0.3452380895614624,0.6253501176834106,1.2030812501907349,1.2030812501907349,1.1155462265014648,1.0105042457580566,1.0980392694473267,1.3256303071975708,1.378151297569275,1.0630252361297607,1.5007002353668213,0.9754902124404907,0.8179271817207336,0.5028011202812195,1.168067216873169,0.22268907725811005,0.0476190485060215,-0.9502801299095154,-0.0049019609577953815,0.1001400575041771,0.6253501176834106,-1.6855741739273071,-1.2829132080078125,-1.1603641510009766,-1.0203081369400024,-0.7752100825309753,-0.9327731132507324,-0.9327731132507324,-0.9852941036224365,-0.7577030658721924,-1.0028011798858643,-1.1253501176834106,-0.8802521228790283,-0.6001400351524353,-0.8277310729026794,-0.7226890921592712,-0.6526610851287842,-0.8802521228790283,-0.8802521228790283,-0.4950980246067047,-0.6351540684700012],[-1.1778711080551147,-1.1428571939468384,-1.1253501176834106,-0.4425770342350006,-0.3900560140609741,-0.02240896411240101,0.46778711676597595,0.4327731132507324,0.5553221106529236,1.1505602598190308,1.0630252361297607,1.0980392694473267,0.7128851413726807,0.41526609659194946,0.9229691624641418,1.465686321258545,1.7983193397521973,1.7107843160629272,1.6232492923736572,1.6232492923736572,0.9754902124404907,0.41526609659194946,0.25770309567451477,0.4852941036224365,0.8529411554336548,-0.21498599648475647,-0.6001400351524353,-0.7577030658721924,-2.0357143878936768,-1.3354341983795166,0.6428571343421936,1.080532193183899,1.045518159866333,1.168067216873169,0.7478991746902466,0.6253501176834106,-0.0049019609577953815,0.9054622054100037,1.255602240562439,1.343137264251709,1.483193278312683,1.395658254623413,1.0980392694473267,1.483193278312683,1.8333333730697632,0.8704481720924377,0.450280100107193,0.7829131484031677,0.8354341983795166,0.6778711676597595,0.5378151535987854,-0.6351540684700012,-1.5280112028121948,-1.6505602598190308,-1.4404761791229248,-1.4404761791229248,-1.1953781843185425,-1.1953781843185425,-1.1603641510009766,-0.9327731132507324,-0.5476190447807312,-1.2303920984268188,-1.0553221702575684,-1.0028011798858643,-0.8102241158485413,-0.7577030658721924,-0.25,-0.6876750588417053,-1.1428571939468384,-0.7577030658721924,-1.1778711080551147,-1.2303920984268188,-1.3179271221160889,-0.8452380895614624,-1.1078431606292725,-1.0378150939941406,-0.7051820755004883,-0.9327731132507324,-0.7226890921592712,-1.1428571939468384,-0.6001400351524353,-0.8102241158485413,-0.7577030658721924,-0.8277310729026794,-0.3900560140609741,-0.7051820755004883,-0.5126050710678101,-0.5126050710678101,-0.6701680421829224,-0.8102241158485413,-0.42507001757621765,-0.47759103775024414,-0.0049019609577953815,-0.1974789947271347,-0.1974789947271347,-0.07492997497320175,-0.37254902720451355,-0.5826330780982971,-0.6876750588417053,-0.9327731132507324,-1.0903360843658447,-1.3704482316970825,-1.2829132080078125,-1.3004201650619507,-1.4054621458053589,-1.3179271221160889,-1.1253501176834106,-1.1428571939468384,-1.1428571939468384,-1.1953781843185425,-0.7401960492134094,-1.1253501176834106,-0.9327731132507324,-0.9502801299095154,-0.9852941036224365,-1.0553221702575684,-0.8977590799331665,-0.8102241158485413,-0.4950980246067047,-0.5476190447807312,-0.5301120281219482,-0.42507001757621765,-0.6351540684700012,-0.47759103775024414,-0.1974789947271347,1.5357142686843872,1.0630252361297607,-0.5651260614395142,-0.6526610851287842,0.06512605398893356,0.11764705926179886,1.5882352590560913,1.2030812501907349,1.308123230934143,1.308123230934143,1.133053183555603,0.8704481720924377,0.22268907725811005,0.11764705926179886,0.13515406847000122,1.378151297569275,1.2030812501907349,0.6253501176834106,0.9054622054100037,0.46778711676597595,0.030112044885754585,1.3606442213058472,1.8333333730697632,0.1001400575041771,0.2401960790157318,-0.4075630307197571,-0.17997199296951294,0.20518207550048828,-0.16246499121189117,-0.47759103775024414,-0.4950980246067047,1.255602240562439,-0.37254902720451355,0.4327731132507324,0.46778711676597595,0.012605042196810246,0.06512605398893356,0.22268907725811005,1.133053183555603,-0.10994397848844528,0.9579831957817078,-1.4054621458053589,-1.3179271221160889,0.3452380895614624,0.27521008253097534,-0.6001400351524353,-1.9131652116775513,-1.545518159866333,0.32773110270500183,0.8529411554336548,0.46778711676597595,-1.5980392694473267,-0.6876750588417053,0.38025209307670593,1.0980392694473267,1.255602240562439,1.1855741739273071,1.4481792449951172,0.11764705926179886,0.5553221106529236,0.8004201650619507,0.8179271817207336,0.6428571343421936,1.2731091976165771,0.9404761791229248,1.045518159866333,1.4131652116775513,1.518207311630249,1.133053183555603,1.6232492923736572,0.38025209307670593,0.32773110270500183,1.080532193183899,0.27521008253097534,0.0476190485060215,-0.6701680421829224,0.4327731132507324,0.20518207550048828,0.4327731132507324,-1.7380952835083008,-1.1953781843185425,-1.1078431606292725,-1.1253501176834106,-0.9852941036224365,-0.7577030658721924,-0.7752100825309753,-0.7226890921592712,-0.9152660965919495,-0.6526610851287842,-0.9677870869636536,-0.8627451062202454,-0.8102241158485413,-1.0203081369400024,-0.7226890921592712,-0.8277310729026794,-0.9852941036224365,-0.5301120281219482,-0.28501400351524353,-0.1974789947271347],[-1.3879551887512207,-1.5280112028121948,-1.0728291273117065,-0.7401960492134094,-0.03991596773266792,0.36274510622024536,0.3977591097354889,0.8704481720924377,1.0980392694473267,1.3256303071975708,0.9929971694946289,0.5378151535987854,0.36274510622024536,0.4327731132507324,0.6428571343421936,1.5882352590560913,1.605742335319519,1.378151297569275,1.0280112028121948,1.168067216873169,0.7478991746902466,1.0105042457580566,1.045518159866333,1.1505602598190308,0.5903361439704895,0.8704481720924377,0.36274510622024536,0.32773110270500183,-1.4054621458053589,-1.7380952835083008,0.7303921580314636,0.9229691624641418,0.9929971694946289,1.2030812501907349,0.5378151535987854,0.4327731132507324,0.9579831957817078,1.045518159866333,1.220588207244873,1.255602240562439,1.2380952835083008,1.133053183555603,1.1855741739273071,1.045518159866333,1.8508403301239014,0.9754902124404907,0.5203081369400024,0.2927170991897583,0.8004201650619507,0.5028011202812195,0.32773110270500183,-0.8277310729026794,-1.4229692220687866,-1.3004201650619507,-1.3879551887512207,-1.3704482316970825,-1.457983136177063,-1.2303920984268188,-1.1078431606292725,-1.1603641510009766,-1.1428571939468384,-1.3179271221160889,-1.4229692220687866,-1.1253501176834106,-1.1253501176834106,-0.28501400351524353,-1.4229692220687866,-1.0028011798858643,-0.8277310729026794,-0.8452380895614624,-1.3179271221160889,-1.3529411554336548,-1.2654061317443848,-1.1778711080551147,-1.1603641510009766,-1.2478991746902466,-1.1953781843185425,-1.0553221702575684,-0.9152660965919495,-0.7927170991897583,-0.5301120281219482,-0.7401960492134094,-0.6876750588417053,-0.8627451062202454,-0.7752100825309753,-0.6001400351524353,-0.5476190447807312,-0.7927170991897583,-0.8627451062202454,-0.8277310729026794,-0.4075630307197571,0.22268907725811005,-0.17997199296951294,-0.1449579894542694,-0.37254902720451355,-0.33753502368927,-0.5826330780982971,-0.9502801299095154,-1.0553221702575684,-1.2478991746902466,-1.2478991746902466,-1.1778711080551147,-1.1603641510009766,-1.4229692220687866,-1.1428571939468384,-1.2478991746902466,-1.1253501176834106,-1.0728291273117065,-1.0903360843658447,-0.8802521228790283,-1.1253501176834106,-0.8802521228790283,-1.0378150939941406,-0.8452380895614624,-0.9152660965919495,-0.9152660965919495,-0.7927170991897583,-0.7577030658721924,-0.7577030658721924,-0.8627451062202454,-0.6526610851287842,-1.0378150939941406,-0.7752100825309753,-0.6876750588417053,-0.3550420105457306,1.378151297569275,1.1855741739273071,0.6778711676597595,-0.7752100825309753,-1.1428571939468384,-0.9327731132507324,1.483193278312683,0.6603641510009766,1.2731091976165771,1.255602240562439,1.5882352590560913,1.2030812501907349,0.450280100107193,0.3452380895614624,0.3977591097354889,0.8179271817207336,1.255602240562439,0.5028011202812195,0.7654061913490295,0.18767507374286652,-0.3025210201740265,1.0980392694473267,2.0784313678741455,0.4852941036224365,1.8158262968063354,0.0476190485060215,-0.4950980246067047,0.25770309567451477,0.11764705926179886,0.7654061913490295,-0.1449579894542694,0.9054622054100037,-0.09243697673082352,0.5203081369400024,0.2927170991897583,-0.09243697673082352,0.27521008253097534,0.31022408604621887,0.9929971694946289,0.27521008253097534,0.27521008253097534,-1.2303920984268188,0.8704481720924377,0.13515406847000122,-0.12745098769664764,-1.8256303071975708,-1.930672287940979,-1.9131652116775513,0.36274510622024536,1.2731091976165771,-0.4600840210914612,-0.7577030658721924,0.11764705926179886,1.5007002353668213,1.553221344947815,1.430672287940979,1.1155462265014648,0.7829131484031677,0.27521008253097534,-0.3900560140609741,0.27521008253097534,0.8004201650619507,0.32773110270500183,0.6603641510009766,1.0630252361297607,0.9579831957817078,1.6407562494277954,1.1855741739273071,0.8179271817207336,1.553221344947815,1.1855741739273071,0.13515406847000122,0.9929971694946289,0.8004201650619507,-0.12745098769664764,-0.10994397848844528,1.308123230934143,0.9579831957817078,0.4327731132507324,-1.5105042457580566,-1.0378150939941406,-1.2128851413726807,-0.8977590799331665,-0.8977590799331665,-0.8977590799331665,-0.7401960492134094,-1.0028011798858643,-0.7577030658721924,-0.7226890921592712,-1.0903360843658447,-1.0728291273117065,-0.9502801299095154,-0.9327731132507324,-0.8802521228790283,-0.5476190447807312,-0.6701680421829224,-0.7226890921592712,-0.6176470518112183,-0.6526610851287842],[-1.4754902124404907,-1.2478991746902466,-1.2478991746902466,-0.7051820755004883,-0.47759103775024414,0.36274510622024536,0.6428571343421936,0.6778711676597595,0.9579831957817078,0.8879551887512207,0.2927170991897583,0.22268907725811005,-0.5826330780982971,-0.21498599648475647,0.8179271817207336,1.6232492923736572,1.1505602598190308,0.25770309567451477,-0.47759103775024414,-1.1253501176834106,0.18767507374286652,1.1505602598190308,1.6582633256912231,1.6232492923736572,1.518207311630249,1.6407562494277954,0.9929971694946289,0.6603641510009766,-0.10994397848844528,-1.3529411554336548,0.7478991746902466,0.8879551887512207,0.8179271817207336,0.9929971694946289,0.46778711676597595,0.31022408604621887,0.8354341983795166,1.2380952835083008,1.0980392694473267,1.0280112028121948,1.308123230934143,1.2030812501907349,0.7654061913490295,1.0105042457580566,0.9754902124404907,1.1505602598190308,0.15266107022762299,0.450280100107193,-0.07492997497320175,0.030112044885754585,-0.17997199296951294,-1.1253501176834106,-1.7906162738800049,-1.580532193183899,-1.0903360843658447,-1.0028011798858643,-0.7752100825309753,-1.1953781843185425,-0.7927170991897583,-0.7226890921592712,-1.0203081369400024,-0.8102241158485413,-0.7577030658721924,-1.0553221702575684,-0.4425770342350006,-0.9152660965919495,-0.9677870869636536,-0.6001400351524353,-1.1253501176834106,-1.2478991746902466,-1.0553221702575684,-1.5280112028121948,-1.668067216873169,-1.4404761791229248,-1.3704482316970825,-1.0728291273117065,-0.8102241158485413,-0.8802521228790283,-0.9502801299095154,-0.9852941036224365,-0.9327731132507324,-0.8102241158485413,-0.7401960492134094,-0.7401960492134094,-0.7752100825309753,-0.7927170991897583,-0.5301120281219482,-0.5826330780982971,-0.6701680421829224,-0.3550420105457306,0.1001400575041771,-0.17997199296951294,-0.25,-0.23249299824237823,-0.5476190447807312,-0.6001400351524353,-1.0728291273117065,-1.2654061317443848,-1.1078431606292725,-1.1603641510009766,-0.8277310729026794,-1.2654061317443848,-1.1428571939468384,-1.1603641510009766,-1.3704482316970825,-1.1778711080551147,-1.1253501176834106,-0.8802521228790283,-1.0553221702575684,-0.8977590799331665,-1.0903360843658447,-0.8802521228790283,-0.8452380895614624,-0.7577030658721924,-0.7051820755004883,-0.4600840210914612,-0.8627451062202454,-0.6701680421829224,-0.7752100825309753,-0.6876750588417053,-0.28501400351524353,-0.4950980246067047,-0.6176470518112183,-0.8802521228790283,-0.4950980246067047,1.220588207244873,1.483193278312683,1.168067216873169,0.9754902124404907,-0.42507001757621765,-0.9502801299095154,-0.4425770342350006,0.7829131484031677,1.4131652116775513,1.0630252361297607,1.465686321258545,1.2030812501907349,0.8354341983795166,0.0476190485060215,0.0476190485060215,0.9404761791229248,1.168067216873169,0.5728291273117065,0.27521008253097534,-0.16246499121189117,-0.3900560140609741,-1.0903360843658447,1.1855741739273071,1.5882352590560913,0.6078431606292725,-0.09243697673082352,-0.10994397848844528,0.6428571343421936,0.012605042196810246,0.2401960790157318,0.1001400575041771,0.6428571343421936,-0.8452380895614624,0.5728291273117065,0.5903361439704895,0.5203081369400024,-0.32002800703048706,-0.05742296949028969,1.343137264251709,0.18767507374286652,-1.8256303071975708,-0.4075630307197571,-2.0357143878936768,-0.6876750588417053,-1.4754902124404907,-1.720588207244873,-1.9481792449951172,-1.6505602598190308,0.06512605398893356,0.8704481720924377,-0.17997199296951294,-0.33753502368927,1.343137264251709,1.3256303071975708,1.168067216873169,1.2731091976165771,1.220588207244873,1.2380952835083008,1.308123230934143,-0.7226890921592712,0.06512605398893356,0.5553221106529236,0.41526609659194946,0.450280100107193,1.168067216873169,0.9754902124404907,1.1855741739273071,1.0630252361297607,0.6253501176834106,0.8179271817207336,0.4327731132507324,0.7654061913490295,1.553221344947815,0.8879551887512207,0.31022408604621887,0.32773110270500183,1.5707283020019531,0.9054622054100037,0.41526609659194946,-1.3529411554336548,-1.1603641510009766,-0.8802521228790283,-0.8277310729026794,-0.9327731132507324,-0.8102241158485413,-0.7752100825309753,-0.7051820755004883,-0.9502801299095154,-1.0378150939941406,-0.8627451062202454,-1.1428571939468384,-1.0378150939941406,-0.6876750588417053,-0.7927170991897583,-0.42507001757621765,-0.6701680421829224,-0.9152660965919495,-0.6351540684700012,-0.5651260614395142],[-1.457983136177063,-1.1078431606292725,-1.2303920984268188,-0.9502801299095154,-0.02240896411240101,0.17016807198524475,0.8529411554336548,0.9054622054100037,0.7478991746902466,0.6428571343421936,0.7303921580314636,0.6953781247138977,0.8004201650619507,0.9754902124404907,1.2906162738800049,1.2906162738800049,0.7478991746902466,-0.6526610851287842,-1.0028011798858643,-1.457983136177063,-0.6176470518112183,0.2401960790157318,0.1001400575041771,1.2731091976165771,1.8333333730697632,0.9929971694946289,1.4481792449951172,0.9579831957817078,0.20518207550048828,0.2401960790157318,0.7128851413726807,0.9579831957817078,0.6078431606292725,0.46778711676597595,0.5378151535987854,0.4852941036224365,0.8879551887512207,1.220588207244873,1.2906162738800049,1.080532193183899,1.4131652116775513,1.0980392694473267,0.5028011202812195,0.46778711676597595,0.17016807198524475,0.15266107022762299,-1.1778711080551147,-0.8802521228790283,-0.7051820755004883,-0.4950980246067047,-0.3900560140609741,-1.7731091976165771,-1.5105042457580566,-1.5280112028121948,-1.5630252361297607,-1.457983136177063,-1.4229692220687866,-1.0203081369400024,-1.3529411554336548,-1.545518159866333,-1.0203081369400024,-0.9152660965919495,-1.2478991746902466,-0.3025210201740265,-0.6526610851287842,-0.8277310729026794,-0.9502801299095154,-1.492997169494629,-1.4754902124404907,-1.457983136177063,-1.668067216873169,-1.7731091976165771,-1.7380952835083008,-1.755602240562439,-1.720588207244873,-1.633053183555603,-1.0903360843658447,-1.0903360843658447,-1.0553221702575684,-0.9852941036224365,-0.7226890921592712,-0.9327731132507324,-0.8277310729026794,-0.8627451062202454,-1.0028011798858643,-0.5126050710678101,-0.6001400351524353,-0.6176470518112183,-0.12745098769664764,0.0476190485060215,-0.1974789947271347,0.0476190485060215,-0.32002800703048706,-0.6351540684700012,-0.7752100825309753,-0.9152660965919495,-1.1603641510009766,-1.2128851413726807,-1.2829132080078125,-1.3704482316970825,-1.1603641510009766,-1.1953781843185425,-0.9502801299095154,-1.0203081369400024,-1.1428571939468384,-1.2128851413726807,-0.8802521228790283,-1.0728291273117065,-0.9677870869636536,-1.0203081369400024,-0.9677870869636536,-1.0203081369400024,-0.9852941036224365,-0.8102241158485413,-0.8977590799331665,-0.6176470518112183,-0.6876750588417053,-0.5826330780982971,-0.7226890921592712,-0.26750701665878296,-0.4600840210914612,-0.7226890921592712,-0.8627451062202454,-0.8452380895614624,-1.1953781843185425,-0.28501400351524353,0.25770309567451477,0.7128851413726807,1.3606442213058472,0.2401960790157318,0.5553221106529236,-1.3004201650619507,-0.6701680421829224,1.2030812501907349,1.2731091976165771,1.2380952835083008,0.8354341983795166,1.168067216873169,0.2927170991897583,-0.16246499121189117,0.38025209307670593,0.6603641510009766,1.0980392694473267,0.4327731132507324,-0.16246499121189117,-1.0028011798858643,-1.1253501176834106,1.6232492923736572,1.7457983493804932,1.1505602598190308,-0.07492997497320175,-0.0049019609577953815,0.4327731132507324,0.2401960790157318,0.4327731132507324,0.32773110270500183,0.5553221106529236,-1.0028011798858643,0.3977591097354889,0.18767507374286652,0.5903361439704895,-1.492997169494629,-0.8977590799331665,2.3235294818878174,0.5903361439704895,-2.0357143878936768,0.06512605398893356,-1.580532193183899,-0.4600840210914612,-1.2303920984268188,-1.895658254623413,-1.8256303071975708,-1.457983136177063,0.8704481720924377,0.012605042196810246,-0.12745098769664764,0.2927170991897583,1.780812382698059,1.255602240562439,0.9754902124404907,0.27521008253097534,0.9404761791229248,1.430672287940979,1.080532193183899,-1.4054621458053589,-1.720588207244873,-0.6351540684700012,-0.10994397848844528,0.20518207550048828,0.012605042196810246,0.7829131484031677,0.7303921580314636,0.4852941036224365,0.4327731132507324,0.6428571343421936,0.6778711676597595,0.9054622054100037,1.4131652116775513,0.9929971694946289,0.7478991746902466,0.8354341983795166,0.0476190485060215,0.20518207550048828,-1.5105042457580566,-1.3004201650619507,-1.2478991746902466,-0.9852941036224365,-0.8802521228790283,-0.8452380895614624,-0.9502801299095154,-0.8627451062202454,-0.8627451062202454,-0.7226890921592712,-0.8627451062202454,-0.6701680421829224,-1.2478991746902466,-0.9677870869636536,-0.9852941036224365,-0.8102241158485413,-0.5651260614395142,-0.5826330780982971,-0.7226890921592712,-0.6176470518112183,-0.42507001757621765],[-1.4229692220687866,-1.3354341983795166,-1.0903360843658447,-0.9677870869636536,-0.42507001757621765,0.8179271817207336,0.7128851413726807,0.9754902124404907,1.0630252361297607,1.255602240562439,1.1505602598190308,1.308123230934143,1.0980392694473267,1.395658254623413,1.255602240562439,0.6428571343421936,-0.4425770342350006,-0.6001400351524353,-0.8452380895614624,-0.9152660965919495,-1.0203081369400024,-0.6526610851287842,-0.12745098769664764,1.0630252361297607,0.9579831957817078,1.9033613204956055,1.7107843160629272,0.9054622054100037,0.9754902124404907,0.8354341983795166,0.5203081369400024,1.045518159866333,0.7128851413726807,0.38025209307670593,0.6253501176834106,0.31022408604621887,0.8179271817207336,1.1505602598190308,1.133053183555603,1.2731091976165771,1.1855741739273071,0.8529411554336548,0.7478991746902466,0.9229691624641418,0.41526609659194946,0.012605042196810246,-0.4950980246067047,-1.0378150939941406,-1.0203081369400024,-0.8802521228790283,-1.2478991746902466,-1.6155462265014648,-1.6155462265014648,-1.580532193183899,-1.3879551887512207,-1.457983136177063,-1.1953781843185425,-1.545518159866333,-0.6351540684700012,-1.0028011798858643,-0.9677870869636536,-0.7577030658721924,-0.4600840210914612,-0.8627451062202454,-0.6876750588417053,-0.9677870869636536,-1.4754902124404907,-1.8606442213058472,-1.4054621458053589,-1.633053183555603,-1.492997169494629,-1.580532193183899,-1.668067216873169,-1.7030812501907349,-1.6855741739273071,-1.3354341983795166,-0.9327731132507324,-0.8802521228790283,-1.2478991746902466,-1.0203081369400024,-0.8452380895614624,-0.9152660965919495,-0.9152660965919495,-0.9327731132507324,-0.5476190447807312,-1.1428571939468384,-0.6526610851287842,-0.16246499121189117,-0.3550420105457306,-0.33753502368927,-0.3900560140609741,-0.6351540684700012,-0.5651260614395142,-0.7051820755004883,-0.8802521228790283,-1.1953781843185425,-1.2829132080078125,-1.457983136177063,-1.2478991746902466,-1.1078431606292725,-1.2654061317443848,-1.2478991746902466,-0.9852941036224365,-1.3004201650619507,-1.2128851413726807,-1.1778711080551147,-1.1953781843185425,-0.8802521228790283,-0.9677870869636536,-0.6876750588417053,-0.8627451062202454,-0.8802521228790283,-0.6701680421829224,-0.8977590799331665,-0.5301120281219482,-0.5651260614395142,-0.7226890921592712,-0.26750701665878296,-0.47759103775024414,-0.4075630307197571,-0.47759103775024414,-0.8277310729026794,-0.9852941036224365,-0.4600840210914612,-1.0728291273117065,0.4852941036224365,0.27521008253097534,0.0476190485060215,0.5728291273117065,0.9929971694946289,0.9229691624641418,-0.1449579894542694,-1.0728291273117065,-0.25,1.395658254623413,1.0980392694473267,1.168067216873169,0.3977591097354889,0.38025209307670593,0.17016807198524475,0.38025209307670593,0.38025209307670593,0.31022408604621887,0.6078431606292725,0.25770309567451477,-0.6351540684700012,-0.6526610851287842,-0.02240896411240101,1.553221344947815,1.308123230934143,0.8704481720924377,0.08263305574655533,-0.6176470518112183,-0.6176470518112183,0.5903361439704895,0.15266107022762299,-0.5126050710678101,-0.5476190447807312,-0.5651260614395142,-0.02240896411240101,-0.8802521228790283,-1.8606442213058472,-1.5980392694473267,0.22268907725811005,-0.6701680421829224,-2.0007002353668213,-1.8606442213058472,-1.2128851413726807,-1.633053183555603,-1.5280112028121948,-1.7906162738800049,-1.755602240562439,-0.6176470518112183,0.5028011202812195,0.7128851413726807,0.41526609659194946,0.8354341983795166,0.8004201650619507,0.6078431606292725,-0.1449579894542694,1.4481792449951172,1.6757702827453613,1.308123230934143,1.2906162738800049,-0.0049019609577953815,-1.3529411554336548,-1.4754902124404907,-1.895658254623413,-1.7380952835083008,-1.1953781843185425,-0.16246499121189117,0.6603641510009766,0.7654061913490295,-0.09243697673082352,0.32773110270500183,0.450280100107193,0.8354341983795166,0.6603641510009766,0.7303921580314636,0.7303921580314636,1.2906162738800049,0.6428571343421936,-1.755602240562439,-1.3179271221160889,-0.9677870869636536,-0.8802521228790283,-0.7226890921592712,-0.7927170991897583,-0.7752100825309753,-0.6176470518112183,-0.8627451062202454,-0.8627451062202454,-0.7927170991897583,-0.9502801299095154,-1.0378150939941406,-1.0203081369400024,-0.8277310729026794,-0.6526610851287842,-0.6701680421829224,-0.7577030658721924,-0.4600840210914612,-0.4075630307197571,-0.5826330780982971,-0.5476190447807312],[-1.3354341983795166,-1.3529411554336548,-0.8977590799331665,0.6078431606292725,0.6253501176834106,0.8879551887512207,1.395658254623413,1.2030812501907349,1.483193278312683,1.343137264251709,1.0280112028121948,1.1505602598190308,1.1505602598190308,0.9754902124404907,0.13515406847000122,0.0476190485060215,-0.3025210201740265,-0.6876750588417053,-0.8452380895614624,-0.8102241158485413,-1.0378150939941406,-1.545518159866333,-1.3879551887512207,-0.28501400351524353,0.4852941036224365,1.378151297569275,0.6953781247138977,0.38025209307670593,0.8354341983795166,0.6078431606292725,0.5903361439704895,1.0630252361297607,0.6953781247138977,0.2401960790157318,0.41526609659194946,0.4852941036224365,0.6253501176834106,0.9054622054100037,1.168067216873169,0.8704481720924377,0.6778711676597595,0.5553221106529236,0.030112044885754585,0.7478991746902466,0.7303921580314636,0.18767507374286652,0.27521008253097534,-0.4950980246067047,-0.6876750588417053,-1.5105042457580566,-1.7731091976165771,-1.580532193183899,-1.4754902124404907,-1.0028011798858643,-1.4754902124404907,-1.2478991746902466,-1.0728291273117065,0.31022408604621887,-1.3179271221160889,-0.7226890921592712,-1.3704482316970825,-0.6701680421829224,-0.7927170991897583,-1.1253501176834106,-0.9152660965919495,-1.580532193183899,-0.9852941036224365,-1.580532193183899,-1.668067216873169,-1.580532193183899,-1.6855741739273071,-1.930672287940979,-1.668067216873169,-1.633053183555603,-1.633053183555603,-1.5630252361297607,-1.4229692220687866,-1.2303920984268188,-1.2303920984268188,-0.9677870869636536,-1.1253501176834106,-1.1428571939468384,-0.9152660965919495,-1.1428571939468384,-0.6526610851287842,0.0476190485060215,0.13515406847000122,0.0476190485060215,-0.10994397848844528,-0.25,-0.7577030658721924,-0.6701680421829224,-0.8277310729026794,-1.1428571939468384,-1.2303920984268188,-1.0903360843658447,-1.1953781843185425,-0.9677870869636536,-1.2829132080078125,-1.1253501176834106,-1.0028011798858643,-1.0553221702575684,-0.9677870869636536,-1.0728291273117065,-1.0903360843658447,-0.8277310729026794,-0.7927170991897583,-0.9327731132507324,-0.8627451062202454,-0.6701680421829224,-0.6001400351524353,-0.7577030658721924,-0.6526610851287842,-0.7927170991897583,-0.47759103775024414,-0.3900560140609741,-0.6526610851287842,-0.4950980246067047,-0.6176470518112183,-0.37254902720451355,-0.5126050710678101,-0.6526610851287842,-1.0903360843658447,-0.8802521228790283,-1.0553221702575684,-0.07492997497320175,1.1855741739273071,0.17016807198524475,-1.1078431606292725,0.7478991746902466,0.5378151535987854,0.27521008253097534,-0.05742296949028969,-1.545518159866333,-1.0728291273117065,0.6778711676597595,0.5203081369400024,0.7303921580314636,0.2401960790157318,0.31022408604621887,-0.33753502368927,0.22268907725811005,-0.47759103775024414,-0.5476190447807312,-0.03991596773266792,-0.7051820755004883,-0.9852941036224365,-1.3004201650619507,1.308123230934143,1.308123230934143,0.6253501176834106,-0.09243697673082352,-0.5651260614395142,-0.4950980246067047,-0.6176470518112183,0.32773110270500183,-0.4950980246067047,0.06512605398893356,-0.5651260614395142,-0.8627451062202454,-1.878151297569275,-1.808123230934143,-1.7906162738800049,-0.4425770342350006,-2.0357143878936768,0.8179271817207336,-0.9502801299095154,-1.9131652116775513,-1.808123230934143,-1.983193278312683,-1.983193278312683,-1.8256303071975708,-0.16246499121189117,0.7303921580314636,0.9054622054100037,1.308123230934143,1.1505602598190308,0.36274510622024536,1.168067216873169,0.9929971694946289,1.2380952835083008,1.7633053064346313,1.0980392694473267,0.9754902124404907,-0.25,-0.5476190447807312,-1.3529411554336548,-1.720588207244873,-1.7731091976165771,-1.668067216873169,-1.4754902124404907,-1.3529411554336548,-1.1428571939468384,-1.492997169494629,-1.457983136177063,-1.755602240562439,-1.5980392694473267,-2.0357143878936768,-1.808123230934143,-1.878151297569275,-1.668067216873169,-1.3879551887512207,-1.3354341983795166,-0.7226890921592712,-0.5651260614395142,-0.7401960492134094,-0.7401960492134094,-0.7401960492134094,-0.7051820755004883,-0.8277310729026794,-1.0903360843658447,-1.0728291273117065,-0.9152660965919495,-0.8627451062202454,-0.9852941036224365,-0.9327731132507324,-0.6176470518112183,-0.5301120281219482,-0.4600840210914612,-0.5476190447807312,-0.4600840210914612,-0.5301120281219482,-0.4950980246067047,-0.6001400351524353],[-1.492997169494629,-1.0378150939941406,-0.5826330780982971,0.06512605398893356,0.36274510622024536,0.3977591097354889,1.0980392694473267,1.0105042457580566,1.220588207244873,1.045518159866333,0.9404761791229248,0.8354341983795166,0.8354341983795166,0.7478991746902466,0.450280100107193,0.9579831957817078,0.7478991746902466,0.9579831957817078,0.9929971694946289,0.11764705926179886,-1.6855741739273071,-1.2478991746902466,-1.6855741739273071,-0.6001400351524353,-0.26750701665878296,0.5903361439704895,-0.17997199296951294,0.5028011202812195,0.5553221106529236,0.32773110270500183,0.7303921580314636,1.0980392694473267,1.0105042457580566,0.15266107022762299,-0.16246499121189117,0.6078431606292725,0.38025209307670593,0.8179271817207336,1.080532193183899,0.6078431606292725,0.13515406847000122,0.8004201650619507,0.38025209307670593,0.41526609659194946,0.6253501176834106,0.32773110270500183,0.7303921580314636,0.13515406847000122,-1.3004201650619507,-1.843137264251709,-1.668067216873169,-1.633053183555603,-1.3879551887512207,-1.7731091976165771,-1.492997169494629,-1.1253501176834106,-1.2829132080078125,-1.4054621458053589,-0.9677870869636536,-1.545518159866333,-0.6526610851287842,-0.32002800703048706,-0.6876750588417053,-1.3704482316970825,-1.7030812501907349,-1.5280112028121948,-1.2829132080078125,-1.633053183555603,-1.8256303071975708,-1.6505602598190308,-1.7906162738800049,-1.720588207244873,-1.7030812501907349,-1.7030812501907349,-1.720588207244873,-1.492997169494629,-1.492997169494629,-1.2654061317443848,-1.0378150939941406,-1.4054621458053589,-1.0728291273117065,-1.0553221702575684,-1.1603641510009766,-0.42507001757621765,-0.1449579894542694,-0.5826330780982971,-0.21498599648475647,-0.1974789947271347,-0.4075630307197571,-0.28501400351524353,-0.7051820755004883,-1.0553221702575684,-1.1253501176834106,-1.0378150939941406,-1.3004201650619507,-1.1778711080551147,-1.3704482316970825,-1.1953781843185425,-1.2829132080078125,-1.0728291273117065,-1.1078431606292725,-1.0553221702575684,-1.1778711080551147,-1.1428571939468384,-0.9327731132507324,-0.7226890921592712,-1.1603641510009766,-0.8277310729026794,-0.7051820755004883,-1.0028011798858643,-0.5826330780982971,-0.6876750588417053,-0.3900560140609741,-0.4075630307197571,-0.33753502368927,-0.47759103775024414,-0.6701680421829224,-0.1449579894542694,-0.32002800703048706,-0.8627451062202454,-0.5651260614395142,-0.8452380895614624,-0.6526610851287842,-0.9502801299095154,-0.8977590799331665,-0.3025210201740265,0.9404761791229248,0.030112044885754585,-0.42507001757621765,-1.492997169494629,-0.6701680421829224,0.17016807198524475,0.8704481720924377,-0.1974789947271347,-0.9502801299095154,0.030112044885754585,0.450280100107193,0.7303921580314636,0.46778711676597595,1.0105042457580566,0.22268907725811005,-0.12745098769664764,-0.1449579894542694,-1.1078431606292725,-1.0203081369400024,-0.6176470518112183,-1.1253501176834106,-0.6701680421829224,1.0280112028121948,1.0630252361297607,-0.5126050710678101,-0.03991596773266792,-0.37254902720451355,-0.10994397848844528,-0.07492997497320175,0.4852941036224365,0.31022408604621887,0.4327731132507324,0.5028011202812195,-0.09243697673082352,-1.2654061317443848,-1.878151297569275,2.288515329360962,0.46778711676597595,2.0609242916107178,-2.0357143878936768,-1.843137264251709,-1.6505602598190308,-1.7731091976165771,-1.808123230934143,-1.843137264251709,-1.7731091976165771,-0.9502801299095154,0.4327731132507324,1.2731091976165771,1.080532193183899,1.080532193183899,1.133053183555603,1.3256303071975708,1.4131652116775513,1.395658254623413,1.4131652116775513,1.5357142686843872,-0.28501400351524353,-1.668067216873169,-0.3900560140609741,-1.1603641510009766,-1.3004201650619507,-1.2303920984268188,-1.4054621458053589,-1.5980392694473267,-1.457983136177063,-1.5980392694473267,-1.6505602598190308,-1.808123230934143,-1.7030812501907349,-1.7380952835083008,-1.7731091976165771,-1.7906162738800049,-1.7731091976165771,-1.545518159866333,-1.1953781843185425,-0.8452380895614624,-0.6526610851287842,-0.4600840210914612,-0.8627451062202454,-0.6351540684700012,-0.8277310729026794,-0.7927170991897583,-1.0378150939941406,-1.3004201650619507,-1.1253501176834106,-0.9677870869636536,-1.1428571939468384,-1.0903360843658447,-0.7226890921592712,-0.6876750588417053,-0.6176470518112183,-0.4950980246067047,-0.6351540684700012,-0.4075630307197571,-0.3900560140609741,-0.6001400351524353,-0.6876750588417053],[-1.2478991746902466,-1.1428571939468384,-0.8102241158485413,-0.5301120281219482,-0.23249299824237823,-0.25,0.6428571343421936,0.5728291273117065,0.7654061913490295,0.7829131484031677,0.27521008253097534,0.38025209307670593,0.3452380895614624,0.6778711676597595,1.045518159866333,1.255602240562439,1.5357142686843872,1.7983193397521973,1.518207311630249,1.2731091976165771,0.450280100107193,-1.457983136177063,-1.7731091976165771,-1.4754902124404907,-1.0203081369400024,-0.8627451062202454,-0.03991596773266792,-0.23249299824237823,0.6953781247138977,0.2927170991897583,0.8354341983795166,0.8529411554336548,0.8704481720924377,0.5553221106529236,-0.02240896411240101,0.5728291273117065,0.31022408604621887,0.8179271817207336,0.5903361439704895,0.06512605398893356,0.8529411554336548,0.5378151535987854,0.4327731132507324,0.17016807198524475,0.4852941036224365,0.2927170991897583,0.8529411554336548,0.38025209307670593,-1.6505602598190308,-1.7380952835083008,-1.6505602598190308,-1.5105042457580566,-1.0028011798858643,-1.0553221702575684,-1.8256303071975708,-1.3529411554336548,-0.09243697673082352,-1.5280112028121948,-0.7401960492134094,-0.8802521228790283,-0.3900560140609741,-0.6701680421829224,-1.4754902124404907,-1.4229692220687866,-1.5280112028121948,-1.0553221702575684,-1.755602240562439,-1.580532193183899,-1.633053183555603,-1.755602240562439,-1.7906162738800049,-1.808123230934143,-1.720588207244873,-1.878151297569275,-1.878151297569275,-1.633053183555603,-1.6855741739273071,-1.4229692220687866,-1.0378150939941406,-0.9502801299095154,-1.2303920984268188,-1.3529411554336548,-0.12745098769664764,-0.10994397848844528,-0.5476190447807312,-0.5126050710678101,-0.33753502368927,-0.09243697673082352,-0.3900560140609741,-0.8977590799331665,-0.9502801299095154,-1.1428571939468384,-1.0028011798858643,-1.1953781843185425,-1.2478991746902466,-1.2128851413726807,-1.1253501176834106,-1.2303920984268188,-1.0378150939941406,-1.1078431606292725,-0.9677870869636536,-1.0728291273117065,-1.0028011798858643,-0.9677870869636536,-0.8627451062202454,-0.7226890921592712,-0.7226890921592712,-0.7226890921592712,-0.7927170991897583,-0.8277310729026794,-0.5651260614395142,-0.37254902720451355,-0.32002800703048706,-0.10994397848844528,-0.4950980246067047,0.06512605398893356,-0.26750701665878296,-0.8277310729026794,-0.8802521228790283,-0.9852941036224365,-1.0903360843658447,-1.3179271221160889,-1.1078431606292725,-0.7752100825309753,-0.8977590799331665,-1.3354341983795166,0.6778711676597595,0.6953781247138977,-0.1449579894542694,-0.6876750588417053,-1.1953781843185425,0.4327731132507324,0.9579831957817078,0.8704481720924377,-0.32002800703048706,-1.3704482316970825,0.25770309567451477,0.36274510622024536,0.8704481720924377,0.1001400575041771,0.27521008253097534,-0.07492997497320175,-0.4950980246067047,-1.0028011798858643,-1.5280112028121948,-1.4404761791229248,-1.457983136177063,-0.3550420105457306,1.3606442213058472,0.8354341983795166,0.3977591097354889,0.20518207550048828,-1.1953781843185425,-0.4425770342350006,-0.07492997497320175,0.6078431606292725,0.6428571343421936,0.030112044885754585,0.8704481720924377,0.8354341983795166,-1.1253501176834106,-1.3354341983795166,-1.0378150939941406,-1.492997169494629,-1.843137264251709,-0.09243697673082352,-1.4754902124404907,-1.8256303071975708,-1.7731091976165771,-1.720588207244873,-1.633053183555603,-1.9131652116775513,-1.8606442213058472,0.25770309567451477,1.0980392694473267,0.5553221106529236,1.168067216873169,1.0630252361297607,1.045518159866333,0.7478991746902466,1.0630252361297607,1.080532193183899,1.255602240562439,-0.6001400351524353,-1.895658254623413,0.22268907725811005,-0.4950980246067047,-1.2303920984268188,-1.4054621458053589,-1.4054621458053589,-1.4404761791229248,-1.668067216873169,-1.545518159866333,-1.633053183555603,-1.5280112028121948,-1.7380952835083008,-1.8256303071975708,-1.8606442213058472,-1.720588207244873,-1.545518159866333,-1.4404761791229248,-0.9852941036224365,-0.7401960492134094,-0.3550420105457306,-0.8627451062202454,-0.7401960492134094,-0.8277310729026794,-0.7401960492134094,-0.9152660965919495,-1.0553221702575684,-1.1078431606292725,-1.1078431606292725,-0.9327731132507324,-0.7226890921592712,-1.0553221702575684,-0.7051820755004883,-0.7401960492134094,-0.5476190447807312,-0.6176470518112183,-0.5651260614395142,-0.37254902720451355,-0.5826330780982971,-0.7752100825309753,-0.9327731132507324],[-1.4054621458053589,-1.633053183555603,-1.545518159866333,-0.7401960492134094,-1.0903360843658447,-0.5126050710678101,0.27521008253097534,0.5028011202812195,0.450280100107193,0.6078431606292725,0.2927170991897583,0.15266107022762299,0.06512605398893356,0.2927170991897583,1.0630252361297607,1.0980392694473267,1.4481792449951172,1.7282912731170654,1.378151297569275,1.2380952835083008,0.3452380895614624,-1.3354341983795166,-1.7380952835083008,-0.9152660965919495,-1.0028011798858643,-1.1603641510009766,0.5028011202812195,-0.3025210201740265,0.7829131484031677,0.46778711676597595,0.9054622054100037,0.5553221106529236,0.2401960790157318,0.3452380895614624,-0.02240896411240101,0.2401960790157318,0.46778711676597595,0.36274510622024536,0.5028011202812195,1.2380952835083008,-0.17997199296951294,0.5553221106529236,-0.25,-0.9852941036224365,-1.2303920984268188,-0.33753502368927,-0.28501400351524353,-0.3025210201740265,-1.6855741739273071,-1.6855741739273071,-1.3354341983795166,-1.2654061317443848,-1.1253501176834106,-1.4754902124404907,-1.1603641510009766,-0.7401960492134094,-1.0553221702575684,-1.5280112028121948,-1.0728291273117065,-0.6351540684700012,-0.7401960492134094,-1.6505602598190308,-1.4754902124404907,-0.8627451062202454,-1.1078431606292725,-1.755602240562439,-1.3704482316970825,-1.580532193183899,-1.5280112028121948,-1.9481792449951172,-1.895658254623413,-1.6505602598190308,-1.7906162738800049,-1.8606442213058472,-1.9131652116775513,-1.7380952835083008,-1.492997169494629,-1.5280112028121948,-1.0903360843658447,-1.3879551887512207,-0.33753502368927,0.15266107022762299,-0.1974789947271347,-0.1974789947271347,0.18767507374286652,-0.32002800703048706,-0.5651260614395142,-0.8452380895614624,-0.9502801299095154,-1.1603641510009766,-1.0903360843658447,-1.1253501176834106,-1.0728291273117065,-1.1253501176834106,-1.1078431606292725,-1.3879551887512207,-1.3004201650619507,-1.0203081369400024,-1.0553221702575684,-0.9677870869636536,-0.9677870869636536,-1.0203081369400024,-0.9327731132507324,-0.8452380895614624,-0.9327731132507324,-0.7226890921592712,-0.5826330780982971,-0.8977590799331665,-0.5126050710678101,-0.8277310729026794,-0.42507001757621765,-0.37254902720451355,-0.09243697673082352,-0.03991596773266792,-0.12745098769664764,-0.5476190447807312,-0.42507001757621765,-0.8102241158485413,-0.7226890921592712,-0.5826330780982971,-0.7752100825309753,-1.1953781843185425,-0.5826330780982971,-1.1953781843185425,-1.2303920984268188,-0.7752100825309753,0.9929971694946289,-0.7401960492134094,-0.17997199296951294,-0.16246499121189117,-0.17997199296951294,-1.4404761791229248,-0.4600840210914612,-0.37254902720451355,0.41526609659194946,-0.6526610851287842,-0.4600840210914612,-0.23249299824237823,0.3452380895614624,-0.25,0.18767507374286652,0.22268907725811005,-0.0049019609577953815,-0.6876750588417053,-0.7927170991897583,-1.1428571939468384,-1.0903360843658447,-1.2303920984268188,1.045518159866333,-0.05742296949028969,0.6078431606292725,0.6603641510009766,-0.6001400351524353,-0.5301120281219482,0.15266107022762299,0.5728291273117065,0.2401960790157318,-0.21498599648475647,1.133053183555603,1.2731091976165771,-0.9677870869636536,-0.6876750588417053,2.3060224056243896,1.343137264251709,0.5203081369400024,-1.5105042457580566,-1.4404761791229248,-1.668067216873169,-1.668067216873169,-1.6505602598190308,-1.8256303071975708,-1.8606442213058472,-1.633053183555603,-0.8452380895614624,-0.1974789947271347,1.2030812501907349,1.220588207244873,1.4481792449951172,0.7654061913490295,1.0105042457580566,1.378151297569275,1.7457983493804932,0.8179271817207336,-0.7927170991897583,-0.6701680421829224,0.15266107022762299,0.6953781247138977,-0.8977590799331665,-1.0553221702575684,-1.1253501176834106,-1.4054621458053589,-1.3879551887512207,-1.4404761791229248,-1.4404761791229248,-1.3179271221160889,-1.5980392694473267,-1.6155462265014648,-1.6505602598190308,-1.7731091976165771,-1.457983136177063,-1.0728291273117065,-1.1253501176834106,-0.4075630307197571,-0.6526610851287842,-0.8452380895614624,-0.8102241158485413,-0.7401960492134094,-0.8452380895614624,-1.1953781843185425,-1.0553221702575684,-1.0553221702575684,-1.2128851413726807,-1.1953781843185425,-0.8977590799331665,-0.7577030658721924,-0.5651260614395142,-0.4600840210914612,-0.5126050710678101,-0.5476190447807312,-0.7752100825309753,-0.6001400351524353,-0.33753502368927,-0.7401960492134094,-0.4075630307197571],[-1.0728291273117065,-1.2128851413726807,-1.0553221702575684,-1.2303920984268188,-1.2829132080078125,-1.4404761791229248,-0.6876750588417053,0.22268907725811005,1.133053183555603,1.0280112028121948,1.0630252361297607,0.8529411554336548,0.27521008253097534,-0.25,0.06512605398893356,0.06512605398893356,0.8354341983795166,1.5007002353668213,1.8333333730697632,1.7107843160629272,1.483193278312683,-0.03991596773266792,-0.4950980246067047,-0.37254902720451355,-0.4425770342350006,-0.12745098769664764,0.6778711676597595,0.32773110270500183,1.0280112028121948,0.7128851413726807,0.7654061913490295,0.41526609659194946,-0.33753502368927,-0.1974789947271347,-0.02240896411240101,0.27521008253097534,0.6078431606292725,0.2927170991897583,1.255602240562439,0.9754902124404907,0.15266107022762299,0.7829131484031677,0.25770309567451477,0.06512605398893356,-1.5980392694473267,-0.7577030658721924,-0.9852941036224365,-0.7927170991897583,-1.5980392694473267,-1.7030812501907349,-1.5280112028121948,-2.0007002353668213,-2.0007002353668213,-1.2128851413726807,-1.3704482316970825,-0.37254902720451355,-0.4950980246067047,-0.7051820755004883,-1.4229692220687866,-0.7577030658721924,-0.8802521228790283,-0.6876750588417053,-0.9852941036224365,-1.545518159866333,-1.3879551887512207,-1.3704482316970825,-1.965686321258545,-1.7030812501907349,-1.7030812501907349,-1.3704482316970825,-1.5105042457580566,-1.545518159866333,-2.0357143878936768,-1.930672287940979,-1.843137264251709,-2.0007002353668213,-1.720588207244873,-1.4054621458053589,-1.4229692220687866,-0.16246499121189117,-0.23249299824237823,-0.02240896411240101,-0.1974789947271347,-0.5301120281219482,-0.5651260614395142,-0.9327731132507324,-0.5301120281219482,-0.8977590799331665,-1.0728291273117065,-1.2654061317443848,-1.1253501176834106,-1.2128851413726807,-1.2478991746902466,-1.2303920984268188,-1.2654061317443848,-1.0378150939941406,-1.0728291273117065,-1.1603641510009766,-1.0378150939941406,-0.8627451062202454,-0.9852941036224365,-0.9677870869636536,-1.0728291273117065,-0.7226890921592712,-0.6876750588417053,-0.6176470518112183,-0.6351540684700012,-0.7401960492134094,-0.4950980246067047,-0.3025210201740265,-0.3900560140609741,-0.25,-0.1449579894542694,-0.6526610851287842,-0.37254902720451355,-0.8452380895614624,-0.9152660965919495,-0.9152660965919495,-1.0028011798858643,-1.0203081369400024,-0.9327731132507324,-1.0903360843658447,-1.3704482316970825,-1.0903360843658447,-0.9677870869636536,-0.8627451062202454,1.9908963441848755,1.2906162738800049,-1.4404761791229248,-1.0553221702575684,-0.42507001757621765,-1.0903360843658447,-1.4054621458053589,0.5028011202812195,0.0476190485060215,-0.12745098769664764,-1.1078431606292725,-0.4425770342350006,-0.1974789947271347,0.17016807198524475,0.31022408604621887,-0.0049019609577953815,0.3977591097354889,-0.7401960492134094,-0.28501400351524353,-0.5826330780982971,-0.23249299824237823,1.9208683967590332,0.450280100107193,0.36274510622024536,0.7478991746902466,1.2731091976165771,-0.7051820755004883,-0.42507001757621765,0.22268907725811005,0.5903361439704895,0.25770309567451477,-0.6876750588417053,0.5378151535987854,1.1855741739273071,-0.6001400351524353,1.168067216873169,-1.843137264251709,-1.720588207244873,-1.0728291273117065,-1.492997169494629,-1.2654061317443848,-1.5630252361297607,-1.5280112028121948,-1.5280112028121948,-1.5980392694473267,-1.7906162738800049,-1.633053183555603,-2.018207311630249,-1.0903360843658447,1.0630252361297607,1.4481792449951172,1.378151297569275,1.255602240562439,1.8333333730697632,1.7107843160629272,1.5882352590560913,0.27521008253097534,-0.4425770342350006,-0.28501400351524353,0.5203081369400024,1.308123230934143,-0.3025210201740265,-1.1078431606292725,-1.3004201650619507,-1.2128851413726807,-1.3179271221160889,-1.2829132080078125,-1.2829132080078125,-1.5630252361297607,-1.2478991746902466,-1.7906162738800049,-1.755602240562439,-1.7030812501907349,-0.8452380895614624,-1.0203081369400024,-0.6001400351524353,-0.4600840210914612,-0.5476190447807312,-0.8277310729026794,-0.9152660965919495,-0.9677870869636536,-0.7927170991897583,-1.1078431606292725,-1.2654061317443848,-1.1078431606292725,-0.6876750588417053,-0.9852941036224365,-0.7226890921592712,-0.5476190447807312,-0.7401960492134094,-0.6351540684700012,-0.7401960492134094,-0.6176470518112183,-0.8277310729026794,-0.4075630307197571,-0.4600840210914612,-0.6526610851287842,-0.8627451062202454],[-1.1078431606292725,-1.3704482316970825,-1.1253501176834106,-1.3354341983795166,-1.457983136177063,-1.4754902124404907,-1.2128851413726807,0.18767507374286652,0.9579831957817078,0.8354341983795166,0.9579831957817078,0.8704481720924377,0.27521008253097534,0.2401960790157318,0.31022408604621887,1.045518159866333,1.308123230934143,1.483193278312683,1.518207311630249,1.5882352590560913,0.9579831957817078,1.0630252361297607,1.045518159866333,1.7457983493804932,1.0980392694473267,1.1855741739273071,-0.05742296949028969,-0.23249299824237823,0.4327731132507324,0.3452380895614624,0.450280100107193,0.6078431606292725,-0.21498599648475647,-0.8802521228790283,-0.5301120281219482,0.2401960790157318,-0.07492997497320175,0.8529411554336548,0.8004201650619507,0.0476190485060215,0.3977591097354889,0.6253501176834106,0.20518207550048828,0.11764705926179886,-1.457983136177063,-1.6155462265014648,-1.3704482316970825,-1.7906162738800049,-1.755602240562439,-1.3704482316970825,-1.2478991746902466,-1.580532193183899,-1.720588207244873,-1.5105042457580566,-0.32002800703048706,-0.12745098769664764,-0.03991596773266792,-0.5826330780982971,-0.5476190447807312,0.4327731132507324,-0.9852941036224365,-1.1603641510009766,-1.5105042457580566,-1.7731091976165771,-1.633053183555603,-1.983193278312683,-1.5630252361297607,-1.2128851413726807,-1.4404761791229248,-1.6505602598190308,-1.5630252361297607,-1.9131652116775513,-1.8606442213058472,-2.0007002353668213,-1.930672287940979,-1.7731091976165771,-1.5630252361297607,-1.4054621458053589,-0.37254902720451355,-0.09243697673082352,0.08263305574655533,-0.33753502368927,-0.16246499121189117,-0.32002800703048706,-0.5301120281219482,-0.6526610851287842,-1.0203081369400024,-1.0903360843658447,-1.1253501176834106,-1.1953781843185425,-1.3529411554336548,-1.0553221702575684,-1.2303920984268188,-1.0903360843658447,-1.1603641510009766,-1.1428571939468384,-1.1078431606292725,-0.9152660965919495,-0.8452380895614624,-0.8277310729026794,-1.0028011798858643,-0.6701680421829224,-0.7927170991897583,-0.8977590799331665,-0.8102241158485413,-0.6176470518112183,-0.5826330780982971,-0.6351540684700012,-0.6526610851287842,-0.47759103775024414,-0.4425770342350006,-0.21498599648475647,-0.28501400351524353,-0.6001400351524353,-0.4075630307197571,-1.0378150939941406,-0.9852941036224365,-0.8452380895614624,-0.4950980246067047,-0.9502801299095154,-0.9502801299095154,-0.7752100825309753,-0.6351540684700012,-0.4425770342350006,-0.9677870869636536,-0.5651260614395142,1.8158262968063354,0.22268907725811005,1.0630252361297607,-1.720588207244873,0.22268907725811005,-0.6001400351524353,-1.1253501176834106,-1.1428571939468384,-0.7051820755004883,-0.17997199296951294,-0.6876750588417053,-0.8977590799331665,-0.23249299824237823,-0.07492997497320175,0.27521008253097534,0.6953781247138977,0.030112044885754585,-0.0049019609577953815,0.3452380895614624,0.25770309567451477,-0.6176470518112183,1.6582633256912231,0.2401960790157318,0.6253501176834106,1.4131652116775513,0.9054622054100037,-0.26750701665878296,-0.1974789947271347,-0.09243697673082352,0.7478991746902466,-0.10994397848844528,-1.1778711080551147,-0.9152660965919495,0.7654061913490295,-0.1974789947271347,0.6078431606292725,1.5707283020019531,0.32773110270500183,-1.4754902124404907,-1.2654061317443848,-1.492997169494629,-1.5630252361297607,-1.545518159866333,-1.720588207244873,-1.720588207244873,-1.808123230934143,-1.6505602598190308,-1.7380952835083008,-1.7030812501907349,0.5553221106529236,1.465686321258545,1.255602240562439,1.378151297569275,1.5882352590560913,1.8508403301239014,0.7654061913490295,-0.12745098769664764,-1.3179271221160889,1.0630252361297607,1.2030812501907349,1.220588207244873,-0.4075630307197571,-1.1603641510009766,-1.2829132080078125,-1.2303920984268188,-1.3354341983795166,-1.2478991746902466,-1.5630252361297607,-1.492997169494629,-1.668067216873169,-1.633053183555603,-1.7906162738800049,-1.2478991746902466,-0.9502801299095154,-1.0028011798858643,-0.6526610851287842,-0.7226890921592712,-0.5301120281219482,-1.0028011798858643,-0.7577030658721924,-0.7226890921592712,-1.1253501176834106,-1.1603641510009766,-1.1253501176834106,-0.9502801299095154,-0.7752100825309753,-0.8802521228790283,-0.6701680421829224,-0.6001400351524353,-0.6001400351524353,-0.4425770342350006,-0.3550420105457306,-0.5476190447807312,-0.4600840210914612,-0.5651260614395142,-0.6001400351524353,-0.8452380895614624,-0.47759103775024414],[-1.0028011798858643,-1.3879551887512207,-1.492997169494629,-1.5630252361297607,-1.3879551887512207,-1.6505602598190308,-1.1428571939468384,-0.5301120281219482,0.20518207550048828,0.5203081369400024,0.6428571343421936,0.7829131484031677,0.8179271817207336,1.0105042457580566,1.168067216873169,1.4481792449951172,1.553221344947815,1.3606442213058472,1.7633053064346313,1.168067216873169,1.6757702827453613,1.9208683967590332,1.0630252361297607,1.343137264251709,1.6582633256912231,0.7829131484031677,0.5553221106529236,-0.9502801299095154,0.0476190485060215,0.15266107022762299,-0.0049019609577953815,-0.21498599648475647,-0.32002800703048706,-0.8977590799331665,-0.1449579894542694,-0.0049019609577953815,-0.4075630307197571,0.4327731132507324,-0.26750701665878296,-0.3025210201740265,-0.5476190447807312,0.41526609659194946,0.25770309567451477,0.08263305574655533,-1.1253501176834106,-1.895658254623413,-1.930672287940979,-1.755602240562439,-1.3879551887512207,-1.457983136177063,-1.3704482316970825,-1.5980392694473267,-1.4754902124404907,-1.3529411554336548,-1.1603641510009766,-1.1078431606292725,-1.2128851413726807,-1.2128851413726807,-0.7927170991897583,-1.755602240562439,-0.8627451062202454,-1.4404761791229248,-1.6155462265014648,-1.7906162738800049,-1.3879551887512207,-1.1078431606292725,-1.3704482316970825,-1.545518159866333,-1.7906162738800049,-1.755602240562439,-1.7380952835083008,-1.843137264251709,-1.9131652116775513,-2.018207311630249,-1.7380952835083008,-1.983193278312683,-0.8627451062202454,-0.05742296949028969,-0.3900560140609741,0.15266107022762299,-0.02240896411240101,-0.4600840210914612,-0.32002800703048706,-0.8452380895614624,-1.0203081369400024,-0.9327731132507324,-1.2478991746902466,-1.0903360843658447,-0.9327731132507324,-1.2478991746902466,-0.9677870869636536,-1.1603641510009766,-1.2829132080078125,-1.0728291273117065,-1.0728291273117065,-0.9152660965919495,-1.0028011798858643,-0.7752100825309753,-0.8452380895614624,-0.9152660965919495,-0.6701680421829224,-0.7401960492134094,-0.6001400351524353,-0.6876750588417053,-0.4425770342350006,-0.6001400351524353,-0.33753502368927,-0.32002800703048706,-0.3550420105457306,-0.3550420105457306,-0.26750701665878296,-0.3900560140609741,-0.32002800703048706,-0.4950980246067047,-0.7051820755004883,-0.6526610851287842,-0.7401960492134094,-0.8452380895614624,-0.8277310729026794,-1.0028011798858643,-1.1778711080551147,-1.0903360843658447,-0.6001400351524353,-1.1078431606292725,-0.37254902720451355,0.25770309567451477,1.8858543634414673,0.18767507374286652,0.25770309567451477,-0.5301120281219482,-1.4054621458053589,-0.4600840210914612,-1.0728291273117065,-1.5630252361297607,-0.8802521228790283,-0.9327731132507324,-0.1449579894542694,-0.32002800703048706,-1.1253501176834106,0.32773110270500183,-0.07492997497320175,0.27521008253097534,0.13515406847000122,0.8354341983795166,-1.983193278312683,-0.7051820755004883,-0.6001400351524353,0.9754902124404907,0.8704481720924377,1.308123230934143,1.255602240562439,0.5728291273117065,0.06512605398893356,0.012605042196810246,-0.07492997497320175,0.38025209307670593,-0.25,-0.8277310729026794,-0.6876750588417053,0.3452380895614624,1.0630252361297607,0.3452380895614624,1.430672287940979,-0.42507001757621765,-1.457983136177063,-1.3179271221160889,-1.633053183555603,-1.492997169494629,-1.3179271221160889,-1.668067216873169,-1.6505602598190308,-1.6155462265014648,-1.633053183555603,-1.580532193183899,-1.7731091976165771,-0.7051820755004883,0.8354341983795166,1.430672287940979,1.1505602598190308,1.3256303071975708,2.043417453765869,0.9229691624641418,-0.9677870869636536,0.32773110270500183,1.553221344947815,1.465686321258545,1.045518159866333,0.8004201650619507,-1.1603641510009766,-1.0728291273117065,-1.1428571939468384,-1.3354341983795166,-1.545518159866333,-1.3704482316970825,-1.5980392694473267,-1.5630252361297607,-1.633053183555603,-1.4054621458053589,-0.8802521228790283,-0.8627451062202454,-0.9152660965919495,-0.4950980246067047,-0.7752100825309753,-0.7927170991897583,-0.8627451062202454,-1.1778711080551147,-1.3879551887512207,-0.9327731132507324,-0.9852941036224365,-1.0728291273117065,-1.2128851413726807,-0.7051820755004883,-0.7051820755004883,-0.8277310729026794,-0.6876750588417053,-0.5826330780982971,-0.4600840210914612,-0.25,-0.6526610851287842,-0.4075630307197571,-0.42507001757621765,-0.5301120281219482,-0.5301120281219482,-0.9677870869636536],[-0.4950980246067047,-1.0903360843658447,-1.3354341983795166,-1.0203081369400024,-1.4404761791229248,-1.580532193183899,-1.4229692220687866,-0.8102241158485413,0.11764705926179886,0.5553221106529236,0.8004201650619507,0.5903361439704895,0.8879551887512207,1.133053183555603,1.343137264251709,1.133053183555603,1.343137264251709,1.5007002353668213,1.1855741739273071,1.4481792449951172,2.0784313678741455,1.343137264251709,0.6253501176834106,0.46778711676597595,-1.1253501176834106,0.46778711676597595,-2.018207311630249,-1.545518159866333,-1.1778711080551147,-0.7752100825309753,-0.25,-0.7752100825309753,-0.7577030658721924,-0.8627451062202454,-0.28501400351524353,0.27521008253097534,0.8004201650619507,0.6428571343421936,0.22268907725811005,0.6253501176834106,0.7303921580314636,0.9229691624641418,0.22268907725811005,0.030112044885754585,-0.03991596773266792,-1.2303920984268188,-1.580532193183899,-1.5280112028121948,-1.4754902124404907,-1.0028011798858643,-1.2303920984268188,-1.8256303071975708,-1.668067216873169,-0.5651260614395142,-1.755602240562439,-0.12745098769664764,-0.5126050710678101,-0.7752100825309753,-1.4229692220687866,-1.3179271221160889,-0.9502801299095154,-0.8977590799331665,-1.5630252361297607,-0.9852941036224365,-1.8256303071975708,-1.5630252361297607,-1.7030812501907349,-1.720588207244873,-1.843137264251709,-1.8606442213058472,-1.9481792449951172,-2.0007002353668213,-1.9131652116775513,-1.843137264251709,-0.7577030658721924,-0.47759103775024414,-0.21498599648475647,-0.12745098769664764,-0.21498599648475647,-0.1974789947271347,-0.3550420105457306,-0.5651260614395142,-0.5476190447807312,-1.1603641510009766,-0.9852941036224365,-1.0728291273117065,-1.3704482316970825,-1.2128851413726807,-1.1253501176834106,-1.0553221702575684,-1.2478991746902466,-1.2478991746902466,-1.1253501176834106,-1.0378150939941406,-1.0378150939941406,-0.9852941036224365,-1.0028011798858643,-0.8977590799331665,-0.9852941036224365,-0.8102241158485413,-1.0553221702575684,-0.7577030658721924,-0.6876750588417053,-0.8452380895614624,-0.47759103775024414,-0.5301120281219482,-0.6001400351524353,-0.26750701665878296,-0.37254902720451355,-0.33753502368927,-0.3900560140609741,-0.8452380895614624,-0.7577030658721924,-0.28501400351524353,-0.3550420105457306,-1.0378150939941406,-0.7927170991897583,-1.0203081369400024,-0.7226890921592712,-0.8977590799331665,-0.9852941036224365,-0.6001400351524353,-0.5126050710678101,-0.6876750588417053,-0.7401960492134094,0.46778711676597595,1.5707283020019531,1.693277359008789,0.22268907725811005,-0.05742296949028969,0.06512605398893356,-1.2654061317443848,-0.4075630307197571,-0.02240896411240101,-1.2478991746902466,-1.3004201650619507,-0.7051820755004883,-0.26750701665878296,-0.4600840210914612,-0.7577030658721924,0.18767507374286652,0.1001400575041771,-0.12745098769664764,0.32773110270500183,-0.8627451062202454,-0.05742296949028969,-0.6701680421829224,-0.07492997497320175,0.7303921580314636,0.06512605398893356,0.8179271817207336,-0.02240896411240101,-0.10994397848844528,-0.12745098769664764,-0.28501400351524353,0.11764705926179886,0.2401960790157318,0.46778711676597595,-0.4950980246067047,-0.0049019609577953815,1.0630252361297607,1.168067216873169,-1.0728291273117065,-1.3704482316970825,-1.3179271221160889,-1.545518159866333,-1.4229692220687866,-1.5280112028121948,-1.7030812501907349,-1.2654061317443848,-1.4229692220687866,-1.5105042457580566,-1.4754902124404907,-1.633053183555603,-1.5105042457580566,-1.580532193183899,-1.1953781843185425,1.6407562494277954,1.6407562494277954,1.7282912731170654,0.7128851413726807,0.9929971694946289,1.0980392694473267,2.043417453765869,1.605742335319519,1.168067216873169,1.133053183555603,1.308123230934143,1.0630252361297607,-1.1078431606292725,-1.3354341983795166,-1.3179271221160889,-1.4754902124404907,-1.4054621458053589,-1.5280112028121948,-1.580532193183899,-1.3879551887512207,-1.0028011798858643,-0.9502801299095154,-0.9502801299095154,-0.8277310729026794,-0.6176470518112183,-0.6351540684700012,-0.9502801299095154,-1.2654061317443848,-1.1953781843185425,-1.1078431606292725,-1.0728291273117065,-1.2303920984268188,-0.8452380895614624,-1.2303920984268188,-0.7752100825309753,0.32773110270500183,-0.4425770342350006,-0.6351540684700012,-0.7401960492134094,-0.5476190447807312,-0.3900560140609741,-0.7401960492134094,-0.7752100825309753,-0.7927170991897583,-1.0728291273117065,-0.8802521228790283,-0.8627451062202454],[-0.7401960492134094,-0.8277310729026794,-1.1953781843185425,-1.2829132080078125,-1.3529411554336548,-1.3354341983795166,-1.5980392694473267,-0.7226890921592712,0.25770309567451477,0.7654061913490295,0.9754902124404907,0.8529411554336548,1.1855741739273071,0.9404761791229248,0.7829131484031677,1.045518159866333,0.32773110270500183,1.0280112028121948,0.18767507374286652,0.8179271817207336,1.2906162738800049,0.9404761791229248,0.13515406847000122,-1.0028011798858643,-1.2303920984268188,-1.0728291273117065,-1.983193278312683,-1.895658254623413,-1.4404761791229248,-1.2303920984268188,-0.17997199296951294,-0.7226890921592712,-0.9152660965919495,-0.12745098769664764,0.030112044885754585,0.32773110270500183,0.012605042196810246,0.6953781247138977,0.3977591097354889,0.5028011202812195,1.0280112028121948,0.7654061913490295,0.22268907725811005,0.11764705926179886,0.030112044885754585,-0.8452380895614624,-1.0903360843658447,-1.3529411554336548,-0.8102241158485413,-1.1078431606292725,-1.5105042457580566,-2.018207311630249,-1.5980392694473267,-2.0007002353668213,-1.4404761791229248,-0.6176470518112183,-1.1603641510009766,-0.5476190447807312,-1.3004201650619507,-0.6876750588417053,-1.5630252361297607,-1.4229692220687866,-1.4754902124404907,-1.7906162738800049,-1.4404761791229248,-1.545518159866333,-1.7906162738800049,-1.3704482316970825,-1.755602240562439,-1.9131652116775513,-1.983193278312683,-1.983193278312683,-1.843137264251709,-0.42507001757621765,-0.7927170991897583,-0.26750701665878296,-0.25,-0.6176470518112183,-0.0049019609577953815,-0.4075630307197571,-0.9152660965919495,-0.7577030658721924,-1.0553221702575684,-1.1778711080551147,-0.9327731132507324,-1.1603641510009766,-0.9502801299095154,-0.9852941036224365,-0.8277310729026794,-1.0028011798858643,-1.0728291273117065,-0.9152660965919495,-0.8102241158485413,-1.0378150939941406,-1.0028011798858643,-0.6351540684700012,-0.6701680421829224,-0.8102241158485413,-0.6701680421829224,-0.5476190447807312,-0.5126050710678101,-0.8277310729026794,-0.3900560140609741,-0.28501400351524353,-0.47759103775024414,-0.3025210201740265,-0.6001400351524353,-0.25,-0.4600840210914612,-0.3900560140609741,-0.02240896411240101,-0.8452380895614624,-0.6176470518112183,-0.8802521228790283,-1.1428571939468384,-0.7051820755004883,-0.9327731132507324,-0.9677870869636536,-0.6526610851287842,-0.6526610851287842,-0.5126050710678101,-0.5301120281219482,-0.4425770342350006,-0.6176470518112183,-0.3900560140609741,-0.5651260614395142,1.3256303071975708,1.168067216873169,1.080532193183899,-0.6701680421829224,-0.17997199296951294,-0.25,-0.9852941036224365,-1.2303920984268188,-0.3025210201740265,-1.7906162738800049,-0.5476190447807312,-0.7752100825309753,-0.5651260614395142,-0.7752100825309753,-0.9677870869636536,0.5028011202812195,0.030112044885754585,-0.6526610851287842,-0.7577030658721924,0.2927170991897583,-0.7226890921592712,-0.5476190447807312,0.27521008253097534,-0.07492997497320175,0.6603641510009766,-0.25,0.36274510622024536,0.5903361439704895,0.1001400575041771,0.4852941036224365,0.9054622054100037,0.18767507374286652,-0.8102241158485413,-0.09243697673082352,0.8704481720924377,0.8004201650619507,-1.0028011798858643,-1.2654061317443848,-1.2829132080078125,-1.2829132080078125,-1.2829132080078125,-1.3354341983795166,-1.4054621458053589,-1.5630252361297607,-1.4404761791229248,-1.5105042457580566,-1.3879551887512207,-1.492997169494629,-1.633053183555603,-1.5105042457580566,-1.668067216873169,0.5028011202812195,1.3256303071975708,1.483193278312683,0.9754902124404907,1.483193278312683,1.518207311630249,1.7983193397521973,1.5882352590560913,1.220588207244873,1.3256303071975708,1.0105042457580566,0.9929971694946289,-0.17997199296951294,-1.4754902124404907,-1.4054621458053589,-1.457983136177063,-1.5280112028121948,-1.633053183555603,-1.5105042457580566,-1.492997169494629,-0.8452380895614624,-0.7577030658721924,-0.8102241158485413,-0.7401960492134094,-0.7401960492134094,-1.0728291273117065,-1.1078431606292725,-1.4754902124404907,-1.3704482316970825,-1.7030812501907349,-1.457983136177063,-1.0378150939941406,-0.7051820755004883,-0.6876750588417053,-0.6701680421829224,-0.5826330780982971,-0.8102241158485413,-0.5651260614395142,-0.5301120281219482,-0.4425770342350006,-0.7051820755004883,-0.7401960492134094,-0.47759103775024414,-0.8802521228790283,-0.9502801299095154,-0.8452380895614624,-1.1428571939468384],[-0.37254902720451355,-0.4075630307197571,-0.6876750588417053,-0.6176470518112183,-1.0553221702575684,-1.1603641510009766,-0.8277310729026794,-0.5651260614395142,-0.10994397848844528,0.32773110270500183,1.2380952835083008,1.1855741739273071,0.8354341983795166,0.8354341983795166,0.5553221106529236,-0.4600840210914612,-0.5476190447807312,-1.0728291273117065,0.6253501176834106,0.5728291273117065,0.5028011202812195,1.133053183555603,0.1001400575041771,-1.3354341983795166,-1.1778711080551147,-1.7380952835083008,-1.545518159866333,-0.8102241158485413,-0.42507001757621765,-0.5826330780982971,-0.4075630307197571,-0.4425770342350006,-0.5126050710678101,0.11764705926179886,0.06512605398893356,0.27521008253097534,0.17016807198524475,0.17016807198524475,0.2401960790157318,0.6078431606292725,0.2401960790157318,0.8179271817207336,0.8354341983795166,0.8879551887512207,1.220588207244873,1.0280112028121948,0.9579831957817078,0.6953781247138977,-0.05742296949028969,-0.7226890921592712,-1.457983136177063,-1.7731091976165771,-0.7051820755004883,-0.9852941036224365,-1.5980392694473267,-0.32002800703048706,-0.9852941036224365,-0.4075630307197571,-0.5301120281219482,-1.808123230934143,0.5728291273117065,-1.6155462265014648,-1.8606442213058472,-1.808123230934143,-1.6155462265014648,-1.3879551887512207,-1.633053183555603,-1.9481792449951172,-1.8606442213058472,-1.9131652116775513,-1.983193278312683,-1.2829132080078125,-0.32002800703048706,0.15266107022762299,-0.21498599648475647,-0.42507001757621765,-0.6001400351524353,-0.9502801299095154,-1.1428571939468384,-0.6876750588417053,-0.9502801299095154,-1.1078431606292725,-0.9502801299095154,-0.9327731132507324,-1.0203081369400024,-0.8102241158485413,-1.1603641510009766,-1.0553221702575684,-1.0028011798858643,-1.2128851413726807,-1.0728291273117065,-1.0203081369400024,-0.8977590799331665,-0.7577030658721924,-0.8277310729026794,-0.6701680421829224,-0.8977590799331665,-0.6876750588417053,-0.37254902720451355,-0.4075630307197571,-0.33753502368927,-0.3550420105457306,-0.17997199296951294,-0.4950980246067047,-0.1974789947271347,-0.07492997497320175,-0.5126050710678101,-0.23249299824237823,-0.6876750588417053,-0.16246499121189117,-0.33753502368927,-0.5126050710678101,-0.8452380895614624,-1.0728291273117065,-0.7752100825309753,-0.6526610851287842,-0.8452380895614624,-0.8102241158485413,-0.7927170991897583,-0.6176470518112183,-0.17997199296951294,-0.5476190447807312,-0.5301120281219482,-0.09243697673082352,-0.32002800703048706,-0.10994397848844528,1.0980392694473267,0.3977591097354889,1.395658254623413,0.4852941036224365,-0.8802521228790283,-0.17997199296951294,-0.33753502368927,-1.1953781843185425,-1.0028011798858643,-0.7752100825309753,-1.843137264251709,-1.3529411554336548,-0.7927170991897583,-0.7401960492134094,-0.9152660965919495,-0.3900560140609741,0.13515406847000122,-0.09243697673082352,-1.1953781843185425,0.13515406847000122,0.030112044885754585,0.2927170991897583,0.2401960790157318,0.11764705926179886,0.36274510622024536,-0.1974789947271347,-0.17997199296951294,0.2927170991897583,0.030112044885754585,0.17016807198524475,1.045518159866333,0.31022408604621887,-1.3704482316970825,-0.23249299824237823,0.9054622054100037,0.5903361439704895,-0.47759103775024414,-1.0553221702575684,-1.4229692220687866,-1.4054621458053589,-1.3179271221160889,-1.3004201650619507,-1.1778711080551147,-1.2829132080078125,-1.457983136177063,-1.4229692220687866,-1.4404761791229248,-1.5280112028121948,-1.4754902124404907,-1.5280112028121948,-1.3879551887512207,-0.8102241158485413,1.0980392694473267,1.6757702827453613,1.6232492923736572,1.4481792449951172,1.5882352590560913,0.9754902124404907,1.693277359008789,1.605742335319519,1.395658254623413,1.0280112028121948,1.0630252361297607,0.8704481720924377,-1.4229692220687866,-1.492997169494629,-1.4754902124404907,-1.492997169494629,-1.2829132080078125,-1.2654061317443848,-1.1428571939468384,-0.6176470518112183,-0.9502801299095154,-0.9327731132507324,-0.8102241158485413,-1.0553221702575684,-1.3004201650619507,-1.2654061317443848,-1.3179271221160889,-1.457983136177063,-0.9327731132507324,-1.0203081369400024,-0.9852941036224365,-0.8102241158485413,-0.6876750588417053,-0.7752100825309753,-0.7226890921592712,-0.5476190447807312,-0.32002800703048706,-0.3550420105457306,-0.8977590799331665,-0.9502801299095154,-0.4425770342350006,-1.1078431606292725,-0.9327731132507324,-1.1428571939468384,-0.8977590799331665,-0.9677870869636536],[0.20518207550048828,-0.02240896411240101,-0.6876750588417053,-0.7226890921592712,-0.6701680421829224,-1.2478991746902466,-1.0028011798858643,-0.8102241158485413,-0.3025210201740265,0.32773110270500183,0.7303921580314636,0.5378151535987854,0.5203081369400024,0.32773110270500183,0.06512605398893356,-0.5651260614395142,-1.1078431606292725,-1.2303920984268188,-0.6526610851287842,0.06512605398893356,-0.7752100825309753,-0.8977590799331665,-1.545518159866333,-0.7051820755004883,-1.492997169494629,-0.9852941036224365,-1.4054621458053589,-0.02240896411240101,0.3452380895614624,0.1001400575041771,-0.5126050710678101,-0.07492997497320175,-0.17997199296951294,0.17016807198524475,0.2401960790157318,0.2401960790157318,0.3977591097354889,0.38025209307670593,0.4327731132507324,0.7829131484031677,0.4327731132507324,0.6778711676597595,0.9579831957817078,1.4481792449951172,1.5357142686843872,1.5707283020019531,1.7983193397521973,1.7633053064346313,1.5357142686843872,1.4131652116775513,0.22268907725811005,-0.9327731132507324,-1.983193278312683,-2.0007002353668213,-0.9152660965919495,-0.9677870869636536,-0.8977590799331665,-0.9152660965919495,-1.5980392694473267,0.08263305574655533,-1.5105042457580566,-1.9131652116775513,-1.930672287940979,-1.2654061317443848,-1.2128851413726807,-1.7380952835083008,-1.5630252361297607,-1.8606442213058472,-1.8606442213058472,-1.8606442213058472,-0.5476190447807312,-0.4950980246067047,-0.26750701665878296,-0.12745098769664764,0.20518207550048828,0.08263305574655533,-0.6526610851287842,-0.47759103775024414,-0.7927170991897583,-1.1078431606292725,-1.0728291273117065,-1.0203081369400024,-1.2303920984268188,-1.1953781843185425,-1.0203081369400024,-0.9327731132507324,-1.1253501176834106,-1.2654061317443848,-0.9327731132507324,-0.9502801299095154,-1.0203081369400024,-1.0378150939941406,-0.8977590799331665,-0.8977590799331665,-0.5651260614395142,-0.6701680421829224,-0.7401960492134094,-0.7752100825309753,-0.28501400351524353,-0.47759103775024414,-0.3025210201740265,-0.37254902720451355,-0.5651260614395142,-0.07492997497320175,-0.25,-0.3550420105457306,-0.4425770342350006,-0.4075630307197571,-0.25,-0.32002800703048706,-0.4950980246067047,-0.7401960492134094,-1.1078431606292725,-1.1253501176834106,-0.7401960492134094,-0.4950980246067047,-0.37254902720451355,-0.26750701665878296,-0.5126050710678101,-0.5301120281219482,-0.6001400351524353,-0.6176470518112183,-0.8452380895614624,-0.37254902720451355,-0.33753502368927,-0.37254902720451355,1.1505602598190308,0.2401960790157318,0.5203081369400024,1.1155462265014648,0.2401960790157318,-0.5476190447807312,-0.07492997497320175,-0.6176470518112183,-1.3879551887512207,-1.0903360843658447,-0.5651260614395142,-1.8256303071975708,-1.1428571939468384,-0.6701680421829224,0.17016807198524475,-1.492997169494629,-1.1953781843185425,-0.5301120281219482,-0.6701680421829224,0.27521008253097534,-0.1974789947271347,0.4852941036224365,-0.37254902720451355,-0.6526610851287842,-0.25,0.06512605398893356,0.5203081369400024,-0.03991596773266792,-0.05742296949028969,-0.7051820755004883,0.31022408604621887,0.5903361439704895,-0.8627451062202454,-1.1953781843185425,0.17016807198524475,0.25770309567451477,-1.1953781843185425,-1.2128851413726807,-1.1603641510009766,-1.4404761791229248,-1.3879551887512207,-1.2478991746902466,-1.2654061317443848,-1.4754902124404907,-1.3704482316970825,-1.3704482316970825,-1.1078431606292725,-1.3354341983795166,-1.4054621458053589,-1.4054621458053589,-1.457983136177063,-1.4404761791229248,0.7478991746902466,1.605742335319519,1.6407562494277954,1.5007002353668213,1.6407562494277954,1.9558823108673096,1.7633053064346313,1.7107843160629272,1.378151297569275,0.8529411554336548,1.308123230934143,1.3256303071975708,-0.17997199296951294,-1.4404761791229248,-1.5105042457580566,-1.4229692220687866,-1.3704482316970825,-1.2128851413726807,-0.7927170991897583,-0.8627451062202454,-0.8977590799331665,-1.0378150939941406,-1.0028011798858643,-1.0028011798858643,-1.492997169494629,-1.3879551887512207,-1.3179271221160889,-1.0903360843658447,-1.0203081369400024,-1.0378150939941406,-0.7927170991897583,-0.6876750588417053,-0.7752100825309753,-0.5126050710678101,-0.6526610851287842,-0.5476190447807312,-0.4950980246067047,-0.7927170991897583,-0.8627451062202454,-0.8102241158485413,-0.7577030658721924,-0.7226890921592712,-0.8977590799331665,-0.9677870869636536,-0.8627451062202454,-0.8277310729026794],[-0.09243697673082352,-0.10994397848844528,-0.47759103775024414,-0.32002800703048706,-0.6001400351524353,-0.9152660965919495,-0.9852941036224365,-1.0203081369400024,-0.02240896411240101,0.3977591097354889,0.6778711676597595,0.7128851413726807,0.3452380895614624,0.7829131484031677,0.9579831957817078,0.1001400575041771,-0.7752100825309753,-1.3704482316970825,-1.5980392694473267,-1.930672287940979,-1.633053183555603,-2.0007002353668213,-1.5630252361297607,-1.755602240562439,-1.633053183555603,-0.5476190447807312,-0.6176470518112183,0.4852941036224365,0.5028011202812195,0.38025209307670593,-0.6351540684700012,0.08263305574655533,-0.5126050710678101,-0.05742296949028969,0.06512605398893356,0.22268907725811005,-0.0049019609577953815,-0.3025210201740265,-0.02240896411240101,0.3452380895614624,0.4852941036224365,0.8179271817207336,1.133053183555603,1.080532193183899,1.7983193397521973,1.6582633256912231,1.6232492923736572,1.9733893871307373,1.9733893871307373,1.8683472871780396,1.780812382698059,0.9754902124404907,-0.8802521228790283,-1.545518159866333,-0.6876750588417053,-1.3004201650619507,-0.3900560140609741,-0.5651260614395142,0.5728291273117065,-1.1428571939468384,-1.5280112028121948,-1.9131652116775513,-0.6526610851287842,-1.720588207244873,-1.7906162738800049,-1.4229692220687866,-1.895658254623413,-1.8606442213058472,-1.3529411554336548,-0.5301120281219482,-0.6351540684700012,-0.32002800703048706,-0.12745098769664764,-0.28501400351524353,-0.3900560140609741,-0.6176470518112183,-0.3900560140609741,-0.9677870869636536,-0.9677870869636536,-1.1078431606292725,-1.0903360843658447,-1.3879551887512207,-1.2128851413726807,-1.0553221702575684,-1.2128851413726807,-1.0903360843658447,-1.0903360843658447,-0.8452380895614624,-1.2303920984268188,-1.0728291273117065,-0.7051820755004883,-0.9852941036224365,-0.9152660965919495,-0.6351540684700012,-0.7927170991897583,-0.7927170991897583,-0.7226890921592712,-0.37254902720451355,-0.4950980246067047,-0.5126050710678101,-0.6876750588417053,-0.16246499121189117,-0.37254902720451355,-0.03991596773266792,-0.10994397848844528,-0.3025210201740265,-0.33753502368927,-0.25,-0.5301120281219482,-0.21498599648475647,-0.8802521228790283,-0.5651260614395142,-0.5476190447807312,-0.7752100825309753,-0.6526610851287842,-0.3025210201740265,-0.5651260614395142,-0.26750701665878296,-0.32002800703048706,-0.6176470518112183,-0.6176470518112183,-0.6876750588417053,-0.3550420105457306,-0.8452380895614624,-0.5826330780982971,-0.7752100825309753,-0.21498599648475647,0.1001400575041771,-0.23249299824237823,0.2927170991897583,0.8004201650619507,-0.33753502368927,-0.4075630307197571,-0.4425770342350006,-0.8277310729026794,-1.6155462265014648,-1.6855741739273071,-1.3004201650619507,-1.2829132080078125,-0.8977590799331665,-0.07492997497320175,0.0476190485060215,-0.07492997497320175,-0.7401960492134094,-0.7401960492134094,0.2927170991897583,0.5728291273117065,0.27521008253097534,-0.7752100825309753,0.4327731132507324,-0.32002800703048706,-0.4950980246067047,-0.5826330780982971,0.41526609659194946,0.5378151535987854,-1.3354341983795166,-0.5476190447807312,1.080532193183899,-0.8277310729026794,-0.9152660965919495,-1.1603641510009766,0.7654061913490295,-0.9677870869636536,-1.4054621458053589,-1.3704482316970825,-1.0553221702575684,-1.2128851413726807,-1.2829132080078125,-1.4054621458053589,-1.0553221702575684,-1.3704482316970825,-1.3179271221160889,-1.2654061317443848,-1.4054621458053589,-1.4404761791229248,-1.580532193183899,-1.3004201650619507,-1.545518159866333,-1.2829132080078125,0.9404761791229248,1.6407562494277954,1.7457983493804932,1.7107843160629272,1.7983193397521973,1.8158262968063354,1.605742335319519,1.8858543634414673,1.3256303071975708,0.9404761791229248,1.553221344947815,0.8704481720924377,-1.3179271221160889,-1.4054621458053589,-1.4754902124404907,-0.7577030658721924,-0.8452380895614624,-0.8102241158485413,-1.0553221702575684,-0.9852941036224365,-1.0203081369400024,-1.2303920984268188,-1.3879551887512207,-1.6505602598190308,-1.2829132080078125,-1.3004201650619507,-1.0028011798858643,-0.9152660965919495,-0.8802521228790283,-1.1078431606292725,-0.5476190447807312,-0.5826330780982971,-0.7927170991897583,-0.7226890921592712,-0.7752100825309753,-0.7226890921592712,-0.9152660965919495,-1.0378150939941406,-0.8802521228790283,-0.7752100825309753,-0.6701680421829224,-0.9852941036224365,-0.9502801299095154,-0.7752100825309753,-1.0378150939941406],[0.08263305574655533,0.012605042196810246,-0.1974789947271347,-0.21498599648475647,-0.4075630307197571,-0.7927170991897583,-0.7401960492134094,-0.5476190447807312,-0.12745098769664764,0.5378151535987854,0.36274510622024536,0.6078431606292725,1.080532193183899,1.2380952835083008,1.1155462265014648,1.080532193183899,0.27521008253097534,0.18767507374286652,-1.1078431606292725,-0.7577030658721924,-1.6855741739273071,-1.2478991746902466,-1.1603641510009766,-1.895658254623413,-1.545518159866333,-1.0728291273117065,0.5728291273117065,0.9754902124404907,0.8704481720924377,0.6953781247138977,-0.37254902720451355,-0.07492997497320175,-0.5826330780982971,-0.6701680421829224,0.36274510622024536,0.22268907725811005,-1.0028011798858643,-0.1974789947271347,-0.42507001757621765,0.25770309567451477,0.27521008253097534,0.5553221106529236,0.8179271817207336,1.255602240562439,1.7457983493804932,1.8683472871780396,1.9033613204956055,2.0084033012390137,1.8683472871780396,1.9383753538131714,1.7983193397521973,1.693277359008789,0.36274510622024536,-0.6351540684700012,-1.755602240562439,-1.843137264251709,-1.0203081369400024,-0.8977590799331665,-0.4950980246067047,-1.7030812501907349,-2.018207311630249,-1.2478991746902466,-1.2829132080078125,-1.4054621458053589,-1.6855741739273071,-2.0357143878936768,-2.018207311630249,-0.8277310729026794,-0.6526610851287842,-0.12745098769664764,-0.09243697673082352,-0.17997199296951294,-0.05742296949028969,0.0476190485060215,-0.47759103775024414,-1.0203081369400024,-1.2478991746902466,-1.0203081369400024,-1.1778711080551147,-1.0728291273117065,-1.2128851413726807,-1.1078431606292725,-0.9152660965919495,-1.0728291273117065,-0.9677870869636536,-0.8452380895614624,-0.9152660965919495,-0.9152660965919495,-0.8802521228790283,-0.8977590799331665,-0.5651260614395142,-0.5476190447807312,-0.8977590799331665,-0.7927170991897583,-0.7051820755004883,-0.6176470518112183,-0.5301120281219482,-0.6176470518112183,-0.4425770342350006,-0.3900560140609741,-0.10994397848844528,-0.16246499121189117,-0.3550420105457306,-0.05742296949028969,-0.26750701665878296,-0.37254902720451355,-0.7752100825309753,-0.7927170991897583,-0.8627451062202454,-0.47759103775024414,-0.9852941036224365,-0.6001400351524353,-0.6176470518112183,-0.6526610851287842,-0.28501400351524353,-0.8627451062202454,-0.4425770342350006,-0.47759103775024414,-0.47759103775024414,-0.4950980246067047,-0.5476190447807312,-0.1974789947271347,-0.33753502368927,-0.6526610851287842,-0.7752100825309753,-1.0378150939941406,-0.47759103775024414,0.1001400575041771,-0.32002800703048706,-0.32002800703048706,0.3977591097354889,0.41526609659194946,-0.8802521228790283,-0.6001400351524353,-0.28501400351524353,-0.8977590799331665,-1.633053183555603,-1.4404761791229248,-1.2478991746902466,-1.8606442213058472,-1.580532193183899,-0.9502801299095154,0.15266107022762299,0.22268907725811005,-0.1974789947271347,-0.5126050710678101,-1.6155462265014648,0.6428571343421936,1.2731091976165771,0.3977591097354889,-0.3025210201740265,0.46778711676597595,0.9054622054100037,-0.16246499121189117,-0.4425770342350006,0.18767507374286652,0.7303921580314636,0.6953781247138977,-0.6526610851287842,-1.0728291273117065,-0.25,1.430672287940979,-1.2829132080078125,-1.3354341983795166,-0.9502801299095154,-1.2128851413726807,-1.3179271221160889,-1.1078431606292725,-1.1253501176834106,-1.5105042457580566,-1.2478991746902466,-1.4229692220687866,-1.1428571939468384,-1.1428571939468384,-1.2478991746902466,-1.4404761791229248,-1.3704482316970825,-1.1778711080551147,-1.3004201650619507,-0.9152660965919495,1.7282912731170654,1.7282912731170654,0.9229691624641418,1.553221344947815,1.8333333730697632,2.1484594345092773,1.6582633256912231,1.6757702827453613,1.483193278312683,1.3606442213058472,1.3256303071975708,0.36274510622024536,-1.492997169494629,-1.0028011798858643,-1.1078431606292725,-0.8627451062202454,-1.0378150939941406,-1.1428571939468384,-0.8277310729026794,-1.3179271221160889,-1.545518159866333,-1.930672287940979,-1.3704482316970825,-1.3354341983795166,-1.0728291273117065,-1.1428571939468384,-1.0378150939941406,-0.7577030658721924,-0.4950980246067047,-0.5826330780982971,-0.6526610851287842,-0.4600840210914612,-0.7577030658721924,-0.37254902720451355,-0.9152660965919495,-1.1603641510009766,-0.9152660965919495,-0.7927170991897583,-0.6351540684700012,-0.8627451062202454,-1.1078431606292725,-1.0553221702575684,-0.8977590799331665,-0.8627451062202454],[-0.21498599648475647,0.06512605398893356,0.0476190485060215,-0.1449579894542694,-0.26750701665878296,-0.3550420105457306,-0.5826330780982971,-0.8452380895614624,-0.4950980246067047,0.1001400575041771,0.5378151535987854,0.8179271817207336,1.3256303071975708,0.8529411554336548,1.080532193183899,0.36274510622024536,0.8354341983795166,0.7829131484031677,0.6253501176834106,0.22268907725811005,0.06512605398893356,0.08263305574655533,0.13515406847000122,-0.9502801299095154,-0.5476190447807312,0.41526609659194946,0.8529411554336548,0.8529411554336548,0.8879551887512207,0.38025209307670593,-0.5476190447807312,-0.3550420105457306,-0.25,-0.6876750588417053,-0.1449579894542694,-0.6876750588417053,-0.6176470518112183,-0.6176470518112183,-0.12745098769664764,-0.1974789947271347,-0.17997199296951294,0.4327731132507324,0.7478991746902466,0.7829131484031677,1.483193278312683,1.780812382698059,1.9383753538131714,1.9558823108673096,1.693277359008789,1.8683472871780396,1.8508403301239014,1.553221344947815,1.2906162738800049,1.045518159866333,-1.5630252361297607,-1.930672287940979,-1.7906162738800049,-1.3704482316970825,-1.895658254623413,-1.4754902124404907,-0.9852941036224365,-1.0728291273117065,-1.633053183555603,-1.6155462265014648,-1.7030812501907349,-2.0357143878936768,-0.42507001757621765,-0.3025210201740265,-0.16246499121189117,-0.07492997497320175,-0.0049019609577953815,-0.17997199296951294,-0.4075630307197571,-0.47759103775024414,-0.7226890921592712,-0.7577030658721924,-1.0028011798858643,-1.0903360843658447,-1.1253501176834106,-1.3179271221160889,-0.9502801299095154,-1.0728291273117065,-1.0203081369400024,-0.9152660965919495,-0.9327731132507324,-0.9327731132507324,-0.8277310729026794,-0.7752100825309753,-0.7577030658721924,-0.9502801299095154,-0.6701680421829224,-0.8452380895614624,-0.5301120281219482,-0.4950980246067047,-0.7401960492134094,-0.9327731132507324,-0.5826330780982971,-0.4950980246067047,0.012605042196810246,0.012605042196810246,-0.05742296949028969,-0.1974789947271347,-0.02240896411240101,-0.02240896411240101,-0.32002800703048706,-0.4425770342350006,-0.3900560140609741,-0.42507001757621765,-0.6001400351524353,-0.5301120281219482,-0.3025210201740265,-0.6876750588417053,-0.6001400351524353,-0.1449579894542694,-0.16246499121189117,-0.25,-0.42507001757621765,-0.7401960492134094,-0.25,-0.37254902720451355,-0.7226890921592712,-0.5126050710678101,-0.5301120281219482,-0.09243697673082352,-0.7752100825309753,-0.6176470518112183,-0.6701680421829224,0.012605042196810246,-0.28501400351524353,-0.4425770342350006,0.08263305574655533,0.32773110270500183,-0.09243697673082352,-0.7401960492134094,-0.3550420105457306,-0.17997199296951294,-1.0728291273117065,-0.7226890921592712,-0.5826330780982971,-1.3004201650619507,-1.0728291273117065,-0.1974789947271347,0.25770309567451477,-0.07492997497320175,0.41526609659194946,0.7478991746902466,0.6078431606292725,-1.0028011798858643,-1.7030812501907349,0.9754902124404907,-0.5826330780982971,0.22268907725811005,-0.02240896411240101,-0.28501400351524353,0.17016807198524475,0.5378151535987854,0.6953781247138977,0.4852941036224365,-0.1449579894542694,-1.2478991746902466,0.6778711676597595,1.4131652116775513,-1.1603641510009766,-1.1953781843185425,-1.0903360843658447,-1.4054621458053589,-1.1603641510009766,-1.1778711080551147,-1.3004201650619507,-1.2303920984268188,-1.3004201650619507,-1.2303920984268188,-1.0553221702575684,-1.3004201650619507,-1.3004201650619507,-1.2478991746902466,-1.3179271221160889,-1.1428571939468384,-1.1253501176834106,-1.0203081369400024,1.5707283020019531,1.7282912731170654,1.6582633256912231,1.5357142686843872,1.9383753538131714,1.8508403301239014,1.8858543634414673,0.9054622054100037,1.553221344947815,1.430672287940979,1.518207311630249,1.1155462265014648,-1.2128851413726807,-1.1603641510009766,-0.9327731132507324,-0.8277310729026794,-1.0203081369400024,-1.2654061317443848,-1.4054621458053589,-1.4054621458053589,-1.5280112028121948,-1.5630252361297607,-1.5630252361297607,-1.3704482316970825,-1.0028011798858643,-0.7401960492134094,-0.6876750588417053,-0.6701680421829224,-0.4950980246067047,-0.5301120281219482,-0.6176470518112183,-0.7401960492134094,-0.6176470518112183,-0.8627451062202454,-0.6526610851287842,-1.1428571939468384,-0.7226890921592712,-0.8277310729026794,-0.6701680421829224,-0.8452380895614624,-0.8977590799331665,-0.6526610851287842,-0.9502801299095154,-0.9152660965919495],[0.25770309567451477,-0.05742296949028969,-0.09243697673082352,-0.05742296949028969,-0.10994397848844528,-0.28501400351524353,-0.28501400351524353,-0.26750701665878296,-0.37254902720451355,0.13515406847000122,0.7654061913490295,0.6253501176834106,0.7478991746902466,0.3452380895614624,-0.6001400351524353,-0.21498599648475647,-0.8277310729026794,-0.10994397848844528,0.9929971694946289,1.5707283020019531,1.1155462265014648,1.2380952835083008,1.343137264251709,0.5553221106529236,1.693277359008789,1.518207311630249,1.1505602598190308,0.9229691624641418,0.7478991746902466,0.012605042196810246,-0.6526610851287842,-0.3025210201740265,-0.1449579894542694,-0.6176470518112183,-0.6526610851287842,-0.6701680421829224,-0.32002800703048706,-0.7051820755004883,-0.8627451062202454,-0.7226890921592712,-0.7226890921592712,-0.3025210201740265,0.3452380895614624,1.3256303071975708,1.518207311630249,1.6407562494277954,1.8333333730697632,1.5707283020019531,1.5007002353668213,1.3606442213058472,1.1155462265014648,1.5007002353668213,1.0280112028121948,0.7303921580314636,0.3452380895614624,-1.9131652116775513,-1.7380952835083008,-1.3704482316970825,-1.4229692220687866,-1.1253501176834106,-1.1253501176834106,-1.3704482316970825,-1.878151297569275,-1.983193278312683,-0.9677870869636536,-0.5126050710678101,-0.1449579894542694,-0.25,-0.21498599648475647,-0.4950980246067047,-0.7577030658721924,-0.6701680421829224,-0.8277310729026794,-0.9327731132507324,-0.8977590799331665,-1.1253501176834106,-1.0728291273117065,-1.2128851413726807,-1.2303920984268188,-1.2478991746902466,-1.1078431606292725,-1.1078431606292725,-1.0903360843658447,-1.0903360843658447,-0.8102241158485413,-0.9502801299095154,-0.8277310729026794,-0.8452380895614624,-0.7577030658721924,-0.8802521228790283,-0.8102241158485413,-0.6351540684700012,-0.4075630307197571,-0.5476190447807312,-0.8452380895614624,-0.4950980246067047,-0.32002800703048706,-0.1974789947271347,-0.09243697673082352,0.20518207550048828,0.11764705926179886,-0.02240896411240101,0.11764705926179886,-0.37254902720451355,-0.12745098769664764,-0.4075630307197571,-0.3900560140609741,-0.32002800703048706,-0.8977590799331665,-0.47759103775024414,-0.6176470518112183,-0.6526610851287842,-0.1449579894542694,-0.09243697673082352,-0.6351540684700012,-0.1974789947271347,-0.26750701665878296,-0.4600840210914612,-0.32002800703048706,-0.3900560140609741,-0.09243697673082352,-0.5301120281219482,-0.3550420105457306,-0.12745098769664764,-0.6876750588417053,-0.6701680421829224,-0.9502801299095154,0.32773110270500183,0.0476190485060215,-0.3550420105457306,-0.26750701665878296,-0.32002800703048706,0.5028011202812195,-0.7226890921592712,-0.32002800703048706,-0.7051820755004883,0.22268907725811005,-0.1449579894542694,-0.7752100825309753,-0.6876750588417053,-1.2303920984268188,-0.6351540684700012,-1.4229692220687866,-0.9852941036224365,-0.6876750588417053,1.1155462265014648,0.450280100107193,0.18767507374286652,-1.1953781843185425,-0.42507001757621765,0.6428571343421936,0.3452380895614624,0.3452380895614624,0.030112044885754585,-0.4600840210914612,-0.05742296949028969,1.1855741739273071,1.378151297569275,-1.7731091976165771,-0.8627451062202454,-0.8802521228790283,-1.0903360843658447,-1.1778711080551147,-1.1078431606292725,-1.0728291273117065,-1.2303920984268188,-1.0903360843658447,-1.1253501176834106,-1.2654061317443848,-1.3179271221160889,-1.2478991746902466,-1.0378150939941406,-1.1778711080551147,-1.3179271221160889,-1.3354341983795166,-1.1253501176834106,-1.3004201650619507,-1.0378150939941406,-1.3704482316970825,-1.3879551887512207,-1.2654061317443848,1.9733893871307373,1.8683472871780396,1.343137264251709,0.7128851413726807,1.6407562494277954,1.7633053064346313,2.0784313678741455,1.5882352590560913,0.450280100107193,1.465686321258545,1.3606442213058472,0.18767507374286652,-0.7051820755004883,-1.1253501176834106,-1.0378150939941406,-1.3354341983795166,-1.6855741739273071,-1.633053183555603,-1.5980392694473267,-1.5280112028121948,-1.5630252361297607,-1.1778711080551147,-0.8452380895614624,-0.7401960492134094,-0.5476190447807312,-0.3900560140609741,-0.4950980246067047,-0.4950980246067047,-1.0203081369400024,-1.0028011798858643,-0.4950980246067047,-0.8277310729026794,-0.8102241158485413,-1.0028011798858643,-0.9677870869636536,-0.9502801299095154,-0.8102241158485413,-0.9502801299095154,-0.6351540684700012,-0.8977590799331665,-0.8277310729026794,-0.8452380895614624,-0.6701680421829224],[0.08263305574655533,0.0476190485060215,-0.1974789947271347,-0.33753502368927,-0.26750701665878296,0.06512605398893356,-0.23249299824237823,-0.26750701665878296,0.012605042196810246,0.5378151535987854,0.5553221106529236,0.9229691624641418,0.46778711676597595,0.06512605398893356,-0.6876750588417053,-1.1078431606292725,-0.7752100825309753,-1.1078431606292725,0.6078431606292725,0.06512605398893356,1.6582633256912231,1.4481792449951172,1.5357142686843872,0.8354341983795166,1.9733893871307373,1.080532193183899,0.8704481720924377,0.25770309567451477,0.4852941036224365,-0.4075630307197571,-0.5476190447807312,0.15266107022762299,-0.1974789947271347,-0.4600840210914612,-0.4075630307197571,-0.47759103775024414,-0.7752100825309753,-0.5126050710678101,-0.42507001757621765,-0.6176470518112183,-1.0378150939941406,-0.6526610851287842,0.6253501176834106,0.9229691624641418,1.395658254623413,1.4481792449951172,1.6757702827453613,1.4481792449951172,1.465686321258545,1.2380952835083008,0.6603641510009766,1.045518159866333,1.430672287940979,1.0280112028121948,0.4852941036224365,-1.668067216873169,-1.983193278312683,-1.8256303071975708,-1.7380952835083008,-1.668067216873169,-1.720588207244873,-1.930672287940979,-1.843137264251709,-0.6876750588417053,-0.33753502368927,0.0476190485060215,0.06512605398893356,-0.1974789947271347,-0.5651260614395142,-0.6001400351524353,-0.7051820755004883,-0.9327731132507324,-1.0728291273117065,-1.0553221702575684,-1.1428571939468384,-1.1428571939468384,-1.2128851413726807,-1.2128851413726807,-1.0553221702575684,-1.1078431606292725,-1.1078431606292725,-1.0028011798858643,-0.8977590799331665,-0.8802521228790283,-0.8102241158485413,-0.9152660965919495,-0.5651260614395142,-0.8102241158485413,-0.7577030658721924,-0.5476190447807312,-0.5126050710678101,-0.4600840210914612,-0.6001400351524353,-0.6526610851287842,-0.3550420105457306,-0.4600840210914612,-0.4600840210914612,-0.28501400351524353,-0.6001400351524353,-0.02240896411240101,0.012605042196810246,0.36274510622024536,0.030112044885754585,-0.1449579894542694,-0.37254902720451355,-0.6001400351524353,-0.6176470518112183,-0.5126050710678101,-0.28501400351524353,-0.3900560140609741,-0.7401960492134094,-0.26750701665878296,-0.4600840210914612,-0.4075630307197571,-0.42507001757621765,-0.1974789947271347,-0.42507001757621765,-0.21498599648475647,-0.5826330780982971,-0.8102241158485413,-0.1449579894542694,-0.6701680421829224,-0.26750701665878296,-0.8627451062202454,-0.3550420105457306,-0.6351540684700012,0.8354341983795166,0.31022408604621887,0.3452380895614624,-0.9152660965919495,-0.6876750588417053,-0.21498599648475647,-0.12745098769664764,-0.3550420105457306,0.2401960790157318,-0.10994397848844528,-0.7752100825309753,0.15266107022762299,-0.09243697673082352,-1.0903360843658447,-0.21498599648475647,-1.878151297569275,-1.878151297569275,-0.9327731132507324,-0.5826330780982971,-0.25,0.8704481720924377,0.31022408604621887,0.012605042196810246,-0.3025210201740265,0.08263305574655533,-0.8452380895614624,-0.3025210201740265,-0.5826330780982971,0.5728291273117065,1.0105042457580566,1.168067216873169,-0.33753502368927,0.11764705926179886,-0.47759103775024414,-0.33753502368927,-1.0903360843658447,-1.2654061317443848,-1.0903360843658447,-1.0203081369400024,-1.1953781843185425,-1.0903360843658447,-1.1778711080551147,-1.1253501176834106,-1.0903360843658447,-1.2654061317443848,-1.2478991746902466,-1.2303920984268188,-1.1778711080551147,-1.1603641510009766,-1.2654061317443848,-1.1603641510009766,-1.2478991746902466,-1.1778711080551147,-0.9677870869636536,-0.9502801299095154,1.6407562494277954,1.5007002353668213,1.5882352590560913,1.7457983493804932,1.8158262968063354,2.341036319732666,1.8683472871780396,1.518207311630249,0.9929971694946289,1.605742335319519,1.518207311630249,1.1505602598190308,-0.42507001757621765,-1.3704482316970825,-1.1078431606292725,-1.4229692220687866,-1.7731091976165771,-1.7030812501907349,-1.3529411554336548,-1.4229692220687866,-1.2128851413726807,-0.8102241158485413,-0.7927170991897583,-0.6001400351524353,-0.42507001757621765,-0.6001400351524353,-0.5126050710678101,-0.9327731132507324,-1.0028011798858643,-0.7401960492134094,-0.9327731132507324,-0.8802521228790283,-0.9152660965919495,-0.8627451062202454,-0.7226890921592712,-0.7226890921592712,-0.9677870869636536,-0.9677870869636536,-0.8977590799331665,-0.5476190447807312,-0.7401960492134094,-0.8277310729026794,-0.8102241158485413],[0.22268907725811005,-0.09243697673082352,-0.4075630307197571,0.11764705926179886,-0.1974789947271347,0.08263305574655533,0.13515406847000122,-0.21498599648475647,-0.10994397848844528,0.06512605398893356,0.5553221106529236,0.3977591097354889,0.25770309567451477,-0.6176470518112183,-0.5301120281219482,-0.7752100825309753,-0.8102241158485413,-1.580532193183899,-1.2829132080078125,0.5553221106529236,0.6428571343421936,1.080532193183899,0.8879551887512207,1.430672287940979,1.255602240562439,0.5903361439704895,0.41526609659194946,-0.28501400351524353,0.20518207550048828,-0.32002800703048706,-0.23249299824237823,-0.33753502368927,-0.23249299824237823,-0.3025210201740265,-0.32002800703048706,-0.3550420105457306,-0.42507001757621765,-0.7577030658721924,-0.33753502368927,-0.5651260614395142,-0.6351540684700012,-0.33753502368927,0.27521008253097534,0.9404761791229248,1.133053183555603,0.8354341983795166,0.9229691624641418,1.395658254623413,1.605742335319519,1.308123230934143,0.9229691624641418,0.27521008253097534,0.6778711676597595,0.6953781247138977,0.5203081369400024,-0.32002800703048706,-2.0357143878936768,-1.983193278312683,-1.6505602598190308,-1.895658254623413,-2.018207311630249,-1.755602240562439,-0.7226890921592712,-0.37254902720451355,-0.1974789947271347,-0.07492997497320175,-0.1974789947271347,0.25770309567451477,-0.4075630307197571,-1.0203081369400024,-1.0728291273117065,-0.9502801299095154,-1.1253501176834106,-1.1078431606292725,-1.1778711080551147,-0.9852941036224365,-0.9502801299095154,-1.0028011798858643,-1.0728291273117065,-0.7577030658721924,-0.9327731132507324,-0.9852941036224365,-1.0028011798858643,-1.0203081369400024,-0.7752100825309753,-0.5826330780982971,-0.7051820755004883,-0.47759103775024414,-0.4075630307197571,-0.5476190447807312,-0.6351540684700012,-0.7051820755004883,-0.33753502368927,-0.8277310729026794,-0.7401960492134094,-0.4075630307197571,-0.6176470518112183,-0.37254902720451355,-0.07492997497320175,-0.4425770342350006,0.030112044885754585,0.06512605398893356,-0.21498599648475647,-0.23249299824237823,-0.6351540684700012,-0.6876750588417053,-0.5301120281219482,-0.5476190447807312,-0.47759103775024414,-0.6001400351524353,-0.3900560140609741,-0.42507001757621765,-0.16246499121189117,-0.37254902720451355,-0.37254902720451355,-0.42507001757621765,-0.42507001757621765,-0.23249299824237823,-0.42507001757621765,-0.28501400351524353,-0.4075630307197571,-0.5651260614395142,-0.4425770342350006,-0.28501400351524353,-0.6701680421829224,-1.0203081369400024,0.41526609659194946,0.7654061913490295,0.6428571343421936,-0.12745098769664764,-0.32002800703048706,-0.8802521228790283,-0.8977590799331665,-0.6701680421829224,-1.720588207244873,0.3452380895614624,0.32773110270500183,-0.8277310729026794,0.1001400575041771,-0.3900560140609741,-0.17997199296951294,-1.4054621458053589,-1.1603641510009766,-0.7752100825309753,0.18767507374286652,-0.9852941036224365,-1.1428571939468384,-1.1603641510009766,0.38025209307670593,0.15266107022762299,0.20518207550048828,0.8179271817207336,0.46778711676597595,-0.05742296949028969,0.450280100107193,1.2030812501907349,-1.1428571939468384,0.1001400575041771,0.6778711676597595,0.0476190485060215,0.31022408604621887,-1.457983136177063,-1.3354341983795166,-1.2303920984268188,-1.1428571939468384,-1.3179271221160889,-1.2829132080078125,-0.8802521228790283,-1.0553221702575684,-1.0028011798858643,-1.1428571939468384,-0.9852941036224365,-1.1253501176834106,-1.0553221702575684,-1.1253501176834106,-1.2478991746902466,-1.2654061317443848,-0.8802521228790283,-1.0553221702575684,-1.0903360843658447,-0.8277310729026794,0.4852941036224365,1.9733893871307373,1.8508403301239014,2.1834733486175537,2.1309523582458496,2.0084033012390137,2.1834733486175537,1.780812382698059,-1.0203081369400024,1.6757702827453613,1.553221344947815,1.2731091976165771,1.1155462265014648,-1.4404761791229248,-1.545518159866333,-1.5280112028121948,-1.580532193183899,-1.668067216873169,-1.5280112028121948,-1.3879551887512207,-1.0728291273117065,-0.6176470518112183,-0.6351540684700012,-0.7752100825309753,-0.6176470518112183,-0.5301120281219482,-0.8102241158485413,-0.5651260614395142,-0.4425770342350006,-0.8802521228790283,-1.0378150939941406,-1.1253501176834106,-0.8277310729026794,-0.6526610851287842,-0.7577030658721924,-0.7226890921592712,-0.7051820755004883,-0.7051820755004883,-0.4950980246067047,-0.7752100825309753,-0.9677870869636536,-1.0378150939941406,-0.8102241158485413],[0.32773110270500183,0.0476190485060215,-0.26750701665878296,-0.4075630307197571,-0.26750701665878296,-0.16246499121189117,-0.17997199296951294,-0.02240896411240101,0.13515406847000122,0.22268907725811005,0.8004201650619507,0.6428571343421936,-0.03991596773266792,0.012605042196810246,-0.1449579894542694,0.450280100107193,-0.33753502368927,-0.23249299824237823,0.1001400575041771,0.7478991746902466,1.6582633256912231,0.6603641510009766,2.0959384441375732,0.8704481720924377,0.08263305574655533,-0.9327731132507324,-0.8802521228790283,-0.7752100825309753,-0.32002800703048706,-0.23249299824237823,-0.05742296949028969,-0.0049019609577953815,-0.3550420105457306,-1.0028011798858643,0.13515406847000122,-0.10994397848844528,-0.02240896411240101,0.27521008253097534,-0.3550420105457306,-0.8102241158485413,-0.7752100825309753,-0.7577030658721924,0.15266107022762299,0.27521008253097534,1.0105042457580566,0.25770309567451477,0.5728291273117065,0.6603641510009766,1.4481792449951172,1.2030812501907349,1.343137264251709,0.38025209307670593,0.38025209307670593,0.6778711676597595,0.6778711676597595,0.31022408604621887,-1.9131652116775513,-1.7030812501907349,-1.3879551887512207,-1.3004201650619507,-1.4404761791229248,-0.6001400351524353,-0.37254902720451355,-0.26750701665878296,-0.1974789947271347,-0.28501400351524353,-0.6351540684700012,0.030112044885754585,-0.9502801299095154,-1.0028011798858643,-0.9502801299095154,-1.1253501176834106,-0.9852941036224365,-1.0903360843658447,-0.9502801299095154,-1.0903360843658447,-0.9152660965919495,-1.1253501176834106,-0.9152660965919495,-0.8627451062202454,-0.8627451062202454,-1.0028011798858643,-0.6351540684700012,-0.8802521228790283,-0.7051820755004883,-0.8452380895614624,-0.6701680421829224,-0.6351540684700012,-0.4950980246067047,-0.7226890921592712,-0.6351540684700012,-0.8102241158485413,-0.47759103775024414,-0.42507001757621765,-0.5126050710678101,-0.5126050710678101,-0.6176470518112183,-0.33753502368927,-0.21498599648475647,0.17016807198524475,-0.02240896411240101,0.20518207550048828,-0.03991596773266792,-0.09243697673082352,-0.3550420105457306,-0.32002800703048706,-0.6176470518112183,-0.5826330780982971,-0.42507001757621765,-0.32002800703048706,-0.5826330780982971,-0.25,-0.07492997497320175,-0.4600840210914612,-0.7051820755004883,-0.28501400351524353,-0.6001400351524353,-0.7226890921592712,-0.6176470518112183,-0.23249299824237823,-0.42507001757621765,-0.6001400351524353,-0.3900560140609741,-0.6001400351524353,-0.28501400351524353,0.9229691624641418,0.46778711676597595,0.8704481720924377,0.7303921580314636,-0.05742296949028969,0.08263305574655533,-1.3529411554336548,-1.4054621458053589,-1.1953781843185425,-1.7731091976165771,-1.5980392694473267,-0.16246499121189117,-0.05742296949028969,-0.9852941036224365,-0.5301120281219482,-0.26750701665878296,-0.1974789947271347,-1.6855741739273071,0.20518207550048828,-0.17997199296951294,-0.9502801299095154,0.32773110270500183,-0.1449579894542694,0.4852941036224365,0.6253501176834106,0.450280100107193,0.9404761791229248,-0.21498599648475647,1.1155462265014648,-1.1603641510009766,0.7128851413726807,-0.5476190447807312,0.5028011202812195,0.9754902124404907,0.32773110270500183,0.3452380895614624,-1.755602240562439,-1.3529411554336548,-1.2829132080078125,-1.2829132080078125,-1.2478991746902466,-0.9152660965919495,-1.1603641510009766,-1.1778711080551147,-1.1078431606292725,-0.8627451062202454,-1.0903360843658447,-1.3879551887512207,-1.2128851413726807,-1.2478991746902466,-0.9852941036224365,-0.9677870869636536,-1.1253501176834106,-0.8452380895614624,-0.7401960492134094,-0.8627451062202454,-1.0203081369400024,1.6757702827453613,1.9558823108673096,2.1309523582458496,2.113445281982422,2.165966272354126,2.0959384441375732,1.518207311630249,-0.1974789947271347,1.5882352590560913,1.780812382698059,1.308123230934143,1.0630252361297607,0.6253501176834106,-1.5280112028121948,-1.895658254623413,-1.843137264251709,-1.5105042457580566,-1.2478991746902466,-1.1428571939468384,-0.8977590799331665,-0.7401960492134094,-0.7927170991897583,-0.6701680421829224,-0.8977590799331665,-0.7051820755004883,-1.0028011798858643,-0.6876750588417053,-0.6876750588417053,-0.7577030658721924,-1.0553221702575684,-0.7226890921592712,-0.6001400351524353,-0.7752100825309753,-0.8102241158485413,-0.6001400351524353,-0.5126050710678101,-0.6351540684700012,-0.4600840210914612,-0.5476190447807312,-0.7927170991897583,-0.5826330780982971,-0.5826330780982971],[0.46778711676597595,0.030112044885754585,-0.21498599648475647,-0.7051820755004883,-0.3900560140609741,-0.4075630307197571,-0.37254902720451355,0.0476190485060215,0.3977591097354889,0.5203081369400024,0.11764705926179886,0.46778711676597595,0.31022408604621887,0.5203081369400024,0.38025209307670593,1.255602240562439,1.0105042457580566,0.0476190485060215,0.3452380895614624,0.7478991746902466,0.6428571343421936,-0.23249299824237823,0.6078431606292725,1.255602240562439,0.17016807198524475,-0.9677870869636536,-1.0903360843658447,-1.0728291273117065,-0.8277310729026794,-0.1974789947271347,-0.16246499121189117,0.030112044885754585,-0.21498599648475647,-0.37254902720451355,0.3977591097354889,0.27521008253097534,0.13515406847000122,-0.25,-0.25,0.15266107022762299,-0.4425770342350006,-0.4425770342350006,0.030112044885754585,-0.09243697673082352,0.22268907725811005,-0.6001400351524353,-1.2654061317443848,0.15266107022762299,0.41526609659194946,1.1505602598190308,1.1505602598190308,0.36274510622024536,-0.26750701665878296,0.18767507374286652,0.6078431606292725,0.5203081369400024,-1.2303920984268188,-2.018207311630249,-1.6855741739273071,-1.9481792449951172,-1.3704482316970825,-0.3900560140609741,-0.25,-0.03991596773266792,-0.3550420105457306,-0.7577030658721924,-0.9502801299095154,-0.3900560140609741,-0.8802521228790283,-1.0728291273117065,-1.2128851413726807,-1.1778711080551147,-1.3004201650619507,-1.2303920984268188,-1.0378150939941406,-1.1428571939468384,-0.8802521228790283,-0.8452380895614624,-0.8102241158485413,-0.8102241158485413,-0.8277310729026794,-0.7752100825309753,-0.8452380895614624,-0.42507001757621765,-0.7577030658721924,-0.7051820755004883,-0.8277310729026794,-0.6876750588417053,-0.5826330780982971,-0.5476190447807312,-0.3025210201740265,-0.37254902720451355,-0.3025210201740265,-0.3900560140609741,-0.3550420105457306,-0.42507001757621765,-0.5651260614395142,-0.4600840210914612,-0.3550420105457306,-0.3025210201740265,0.11764705926179886,-0.5126050710678101,-0.10994397848844528,-0.28501400351524353,-0.23249299824237823,-0.4950980246067047,-0.7927170991897583,-0.6351540684700012,-0.6001400351524353,-0.3550420105457306,-0.3900560140609741,-0.1449579894542694,-0.12745098769664764,-0.4950980246067047,-0.5651260614395142,-0.3550420105457306,-0.5126050710678101,-0.5301120281219482,-0.5126050710678101,-0.47759103775024414,-0.6351540684700012,-0.4950980246067047,-0.4600840210914612,-0.1449579894542694,-0.25,0.4327731132507324,0.15266107022762299,0.20518207550048828,0.36274510622024536,-0.42507001757621765,0.2401960790157318,-0.9852941036224365,-1.1778711080551147,-1.6855741739273071,-1.545518159866333,0.15266107022762299,-0.5476190447807312,-0.4600840210914612,-1.1603641510009766,-0.16246499121189117,-0.9852941036224365,0.5903361439704895,-0.3025210201740265,-1.1078431606292725,-0.3900560140609741,-0.7927170991897583,-0.32002800703048706,-0.42507001757621765,-0.9677870869636536,0.1001400575041771,0.25770309567451477,-0.33753502368927,1.378151297569275,0.8354341983795166,0.6253501176834106,0.06512605398893356,-0.3550420105457306,0.0476190485060215,0.27521008253097534,0.6078431606292725,0.3977591097354889,-1.1953781843185425,-1.2829132080078125,-1.4229692220687866,-1.1428571939468384,-1.1253501176834106,-1.1953781843185425,-1.1253501176834106,-0.9852941036224365,-1.0028011798858643,-1.2128851413726807,-1.0028011798858643,-1.0378150939941406,-1.2829132080078125,-1.0553221702575684,-0.8977590799331665,-1.1253501176834106,-1.1603641510009766,-1.0203081369400024,-0.6526610851287842,-0.6876750588417053,-0.7226890921592712,0.6428571343421936,2.0959384441375732,2.113445281982422,1.7282912731170654,1.1855741739273071,1.6757702827453613,0.9404761791229248,0.41526609659194946,1.7107843160629272,1.2380952835083008,1.2030812501907349,1.1505602598190308,1.5357142686843872,0.6603641510009766,-1.457983136177063,-1.633053183555603,-1.1428571939468384,-1.0378150939941406,-1.1428571939468384,-0.9852941036224365,-0.9152660965919495,-1.0378150939941406,-0.8452380895614624,-0.8627451062202454,-0.7752100825309753,-0.9677870869636536,-0.8627451062202454,-0.7927170991897583,-0.7752100825309753,-0.7577030658721924,-0.8627451062202454,-0.7401960492134094,-0.6351540684700012,-0.5651260614395142,-0.8452380895614624,-0.7577030658721924,-0.37254902720451355,-0.47759103775024414,-0.6176470518112183,-0.6351540684700012,-0.9502801299095154,-0.8802521228790283],[0.5203081369400024,0.2927170991897583,-0.05742296949028969,-0.5301120281219482,-0.6176470518112183,-0.4950980246067047,-0.23249299824237823,0.030112044885754585,0.11764705926179886,0.32773110270500183,0.4327731132507324,0.31022408604621887,-0.1974789947271347,0.8879551887512207,0.6953781247138977,1.1155462265014648,0.7654061913490295,0.06512605398893356,0.5728291273117065,-0.8452380895614624,-1.4054621458053589,0.5903361439704895,-1.3354341983795166,-1.5105042457580566,-1.0028011798858643,-1.3354341983795166,-1.545518159866333,-1.2478991746902466,-0.8452380895614624,-0.25,0.3977591097354889,0.18767507374286652,0.06512605398893356,-0.4075630307197571,-0.0049019609577953815,0.7829131484031677,0.030112044885754585,-0.8452380895614624,-0.7051820755004883,-0.33753502368927,-0.16246499121189117,-0.1449579894542694,-0.10994397848844528,-0.1974789947271347,-0.32002800703048706,-1.7731091976165771,-1.633053183555603,-0.9502801299095154,-0.07492997497320175,0.6603641510009766,0.9054622054100037,0.8354341983795166,-0.25,-0.37254902720451355,0.36274510622024536,0.41526609659194946,-0.1449579894542694,-1.755602240562439,-1.7731091976165771,-1.457983136177063,-0.7401960492134094,-0.10994397848844528,-0.0049019609577953815,-0.3025210201740265,-0.5301120281219482,-0.42507001757621765,-0.8102241158485413,-0.7927170991897583,-1.0553221702575684,-1.1778711080551147,-1.1253501176834106,-1.1253501176834106,-1.1253501176834106,-0.9852941036224365,-1.0378150939941406,-0.9852941036224365,-1.0028011798858643,-0.8802521228790283,-1.1603641510009766,-0.6526610851287842,-0.5651260614395142,-0.9852941036224365,-0.6876750588417053,-0.7226890921592712,-0.6351540684700012,-0.5301120281219482,-0.5126050710678101,-0.47759103775024414,-0.6876750588417053,-0.3025210201740265,-0.1974789947271347,-0.33753502368927,-0.5126050710678101,-0.4950980246067047,-0.4600840210914612,-0.12745098769664764,-0.5301120281219482,-0.3900560140609741,-0.26750701665878296,-0.21498599648475647,0.1001400575041771,0.012605042196810246,-0.1974789947271347,0.08263305574655533,-0.26750701665878296,-0.37254902720451355,-0.37254902720451355,-0.4425770342350006,-0.3025210201740265,-0.4600840210914612,-0.16246499121189117,-0.33753502368927,-0.26750701665878296,-0.7051820755004883,-0.7401960492134094,-0.4425770342350006,-0.4075630307197571,-0.32002800703048706,-0.4425770342350006,-0.7051820755004883,-0.4600840210914612,-0.3550420105457306,-0.4600840210914612,-0.3025210201740265,0.46778711676597595,0.0476190485060215,0.13515406847000122,0.2401960790157318,0.11764705926179886,-0.33753502368927,-0.26750701665878296,-0.8627451062202454,-1.1253501176834106,-1.4754902124404907,-1.3179271221160889,-0.7051820755004883,-0.8102241158485413,-0.1449579894542694,-0.6176470518112183,-0.10994397848844528,-0.28501400351524353,0.2927170991897583,0.11764705926179886,-0.33753502368927,-1.0028011798858643,-0.47759103775024414,-0.7927170991897583,-0.6001400351524353,-0.8102241158485413,0.030112044885754585,0.08263305574655533,0.6078431606292725,0.6603641510009766,-1.580532193183899,-0.32002800703048706,-0.26750701665878296,-0.9677870869636536,-0.42507001757621765,-0.6351540684700012,0.0476190485060215,-1.5105042457580566,-1.2128851413726807,-1.2829132080078125,-1.2654061317443848,-1.2829132080078125,-1.0728291273117065,-0.8977590799331665,-1.0378150939941406,-1.0553221702575684,-0.9152660965919495,-1.1078431606292725,-1.0378150939941406,-0.8102241158485413,-0.9852941036224365,-1.0553221702575684,-1.1078431606292725,-0.9677870869636536,-0.9152660965919495,-0.7577030658721924,-1.0728291273117065,-1.0378150939941406,-0.9852941036224365,-0.9152660965919495,1.9208683967590332,2.1484594345092773,2.0784313678741455,2.0084033012390137,2.0784313678741455,1.2731091976165771,1.395658254623413,1.7983193397521973,0.46778711676597595,1.4131652116775513,1.483193278312683,1.255602240562439,1.1855741739273071,0.32773110270500183,-1.0378150939941406,-1.3879551887512207,-1.0203081369400024,-1.1778711080551147,-1.0553221702575684,-0.8277310729026794,-1.1953781843185425,-1.0903360843658447,-0.8102241158485413,-0.8627451062202454,-0.8102241158485413,-0.8452380895614624,-0.8102241158485413,-0.6701680421829224,-0.7051820755004883,-0.8102241158485413,-0.7401960492134094,-0.7051820755004883,-0.7226890921592712,-0.7401960492134094,-0.5826330780982971,-0.6526610851287842,-0.7051820755004883,-0.7401960492134094,-1.1428571939468384,-0.5826330780982971,-0.5476190447807312],[0.450280100107193,0.012605042196810246,-0.47759103775024414,-0.8802521228790283,-0.8802521228790283,-0.4950980246067047,-0.17997199296951294,-0.16246499121189117,0.32773110270500183,0.6603641510009766,0.17016807198524475,0.41526609659194946,0.5553221106529236,0.27521008253097534,1.3256303071975708,1.0630252361297607,-0.26750701665878296,-0.8977590799331665,-0.7752100825309753,-0.6701680421829224,-1.545518159866333,-1.0028011798858643,-1.7906162738800049,-1.895658254623413,-1.755602240562439,-0.9852941036224365,-0.7752100825309753,-1.1603641510009766,-1.4404761791229248,-0.6351540684700012,0.27521008253097534,0.32773110270500183,0.31022408604621887,-0.3550420105457306,-0.4075630307197571,0.8179271817207336,-0.07492997497320175,-0.7752100825309753,-0.6701680421829224,-0.8277310729026794,-0.7051820755004883,-0.12745098769664764,-0.5651260614395142,-1.0903360843658447,-0.7927170991897583,-1.2303920984268188,-1.5630252361297607,-1.2829132080078125,-1.1253501176834106,0.17016807198524475,0.6778711676597595,0.2401960790157318,-0.42507001757621765,-0.42507001757621765,0.25770309567451477,0.3977591097354889,0.36274510622024536,-1.7906162738800049,-1.3354341983795166,-0.7577030658721924,-0.3025210201740265,-0.16246499121189117,-0.1974789947271347,0.06512605398893356,-0.37254902720451355,-0.4950980246067047,-0.8977590799331665,-0.9677870869636536,-1.0728291273117065,-1.1078431606292725,-1.0378150939941406,-1.0378150939941406,-1.0378150939941406,-0.8102241158485413,-1.0028011798858643,-1.0728291273117065,-0.8277310729026794,-1.1428571939468384,-1.0903360843658447,-0.7051820755004883,-0.7401960492134094,-0.7927170991897583,-0.5651260614395142,-0.8627451062202454,-0.5126050710678101,-0.42507001757621765,-0.32002800703048706,-0.5126050710678101,-0.6001400351524353,-0.33753502368927,-0.17997199296951294,-0.42507001757621765,-0.6176470518112183,-0.6526610851287842,-0.5651260614395142,-0.3550420105457306,-0.6526610851287842,-0.47759103775024414,-0.5476190447807312,-0.25,-0.25,-0.28501400351524353,-0.12745098769664764,-0.25,-0.26750701665878296,-0.4425770342350006,-0.26750701665878296,-0.28501400351524353,-0.16246499121189117,-0.32002800703048706,-0.37254902720451355,-0.28501400351524353,0.15266107022762299,-0.26750701665878296,-0.0049019609577953815,-0.4075630307197571,-0.1974789947271347,-0.37254902720451355,-0.5126050710678101,-0.5651260614395142,-0.6176470518112183,-0.42507001757621765,-0.6176470518112183,-0.6351540684700012,-0.23249299824237823,-0.6701680421829224,-0.28501400351524353,-0.28501400351524353,-0.28501400351524353,-0.7927170991897583,-0.8802521228790283,-1.0203081369400024,-0.9327731132507324,-1.2829132080078125,-1.2478991746902466,-1.2829132080078125,-1.0728291273117065,-0.37254902720451355,-0.5476190447807312,-0.32002800703048706,-0.6351540684700012,0.7303921580314636,-0.23249299824237823,-0.3900560140609741,0.20518207550048828,0.36274510622024536,-0.4600840210914612,-0.4425770342350006,-0.32002800703048706,0.3977591097354889,-0.05742296949028969,-0.21498599648475647,-0.7577030658721924,-1.0203081369400024,-0.4950980246067047,-1.1953781843185425,-1.4404761791229248,-1.5105042457580566,-1.3179271221160889,-1.3354341983795166,-1.3179271221160889,-1.0903360843658447,-1.3004201650619507,-1.1953781843185425,-1.2128851413726807,-0.8627451062202454,-0.9327731132507324,-1.1603641510009766,-1.0553221702575684,-1.0728291273117065,-0.9327731132507324,-1.0028011798858643,-0.9152660965919495,-0.8102241158485413,-0.8452380895614624,-0.8977590799331665,-0.9152660965919495,-0.8102241158485413,-1.0203081369400024,-0.7401960492134094,-0.8802521228790283,-0.9152660965919495,-1.1778711080551147,1.1505602598190308,1.9558823108673096,2.1309523582458496,2.113445281982422,1.8683472871780396,1.6757702827453613,1.8333333730697632,1.7633053064346313,1.2380952835083008,1.308123230934143,1.395658254623413,1.133053183555603,1.395658254623413,1.430672287940979,-0.8977590799331665,-0.9502801299095154,-1.0553221702575684,-0.9852941036224365,-0.8802521228790283,-1.0203081369400024,-0.9852941036224365,-0.9677870869636536,-1.0378150939941406,-0.7577030658721924,-0.9152660965919495,-0.8102241158485413,-0.9677870869636536,-0.8452380895614624,-0.7927170991897583,-0.8102241158485413,-0.7577030658721924,-0.6701680421829224,-0.7927170991897583,-0.7752100825309753,-0.6351540684700012,-0.5476190447807312,-0.6701680421829224,-0.8102241158485413,-0.7051820755004883,-0.6176470518112183,-0.5126050710678101],[0.11764705926179886,0.2927170991897583,-0.21498599648475647,-0.6876750588417053,-0.8802521228790283,-1.1603641510009766,-0.8277310729026794,-0.23249299824237823,0.2401960790157318,0.5728291273117065,0.9929971694946289,1.4131652116775513,0.9754902124404907,1.6757702827453613,1.168067216873169,0.6778711676597595,0.4327731132507324,-0.12745098769664764,-0.7752100825309753,-0.8627451062202454,-1.5630252361297607,-1.5980392694473267,-1.633053183555603,-0.8277310729026794,0.31022408604621887,0.31022408604621887,0.06512605398893356,-1.0028011798858643,-1.2478991746902466,-0.6001400351524353,0.38025209307670593,0.46778711676597595,0.5203081369400024,-0.28501400351524353,-0.8627451062202454,-0.7752100825309753,0.7654061913490295,-0.9152660965919495,-0.0049019609577953815,-0.1974789947271347,-0.28501400351524353,-0.1449579894542694,-0.4075630307197571,-0.9852941036224365,-1.3179271221160889,-1.3879551887512207,-1.6505602598190308,-1.1953781843185425,-1.0728291273117065,-0.7226890921592712,0.22268907725811005,0.46778711676597595,1.2731091976165771,-0.02240896411240101,-0.16246499121189117,0.5553221106529236,1.045518159866333,-1.4754902124404907,-1.0553221702575684,-0.5651260614395142,-0.33753502368927,-0.5826330780982971,-0.6176470518112183,-0.8802521228790283,-0.9852941036224365,-1.0028011798858643,-1.0028011798858643,-1.0378150939941406,-1.0728291273117065,-1.0203081369400024,-0.9152660965919495,-1.0553221702575684,-1.1953781843185425,-1.0903360843658447,-0.8277310729026794,-1.0203081369400024,-0.8627451062202454,-0.8802521228790283,-0.7752100825309753,-0.7927170991897583,-0.5651260614395142,-0.4950980246067047,-0.32002800703048706,-0.6876750588417053,-0.4425770342350006,-0.6001400351524353,-0.26750701665878296,-0.42507001757621765,-0.25,-0.4075630307197571,-0.4075630307197571,-0.5476190447807312,-0.4600840210914612,-0.5126050710678101,-0.9152660965919495,-0.6351540684700012,-0.3550420105457306,-0.5476190447807312,-0.6701680421829224,-0.10994397848844528,-0.1449579894542694,0.0476190485060215,-0.0049019609577953815,-0.10994397848844528,0.36274510622024536,-0.1449579894542694,-0.28501400351524353,-0.47759103775024414,-0.7051820755004883,-0.5651260614395142,-0.47759103775024414,-0.3900560140609741,-0.17997199296951294,-0.5651260614395142,-0.5826330780982971,-0.23249299824237823,-0.3025210201740265,-0.42507001757621765,-0.47759103775024414,-0.32002800703048706,-0.10994397848844528,-0.6701680421829224,-0.23249299824237823,-0.8977590799331665,-0.4600840210914612,-0.5126050710678101,-0.9502801299095154,-0.4075630307197571,-0.5301120281219482,-0.5301120281219482,-0.1974789947271347,-0.6701680421829224,0.6428571343421936,0.6603641510009766,0.3452380895614624,0.9404761791229248,0.6253501176834106,0.20518207550048828,0.3452380895614624,0.2401960790157318,0.1001400575041771,0.030112044885754585,-0.33753502368927,-0.7226890921592712,-0.17997199296951294,-0.47759103775024414,-0.3550420105457306,0.38025209307670593,1.0105042457580566,0.3452380895614624,0.8354341983795166,0.31022408604621887,-0.23249299824237823,-0.6176470518112183,-1.457983136177063,-1.895658254623413,-1.5630252361297607,-1.1428571939468384,-1.4404761791229248,-1.1428571939468384,-1.2829132080078125,-1.2128851413726807,-1.2303920984268188,-1.2654061317443848,-0.6876750588417053,-1.0028011798858643,-0.8102241158485413,-0.9502801299095154,-0.6526610851287842,-0.6526610851287842,-0.8802521228790283,-1.0728291273117065,-0.8452380895614624,-0.9677870869636536,-0.8452380895614624,-1.0553221702575684,-1.0903360843658447,-1.0028011798858643,-1.1953781843185425,-0.8452380895614624,-0.8802521228790283,-1.1253501176834106,-1.3179271221160889,-1.5630252361297607,1.9208683967590332,1.8858543634414673,2.043417453765869,1.8158262968063354,2.0784313678741455,2.0784313678741455,0.7829131484031677,1.1855741739273071,1.395658254623413,1.2380952835083008,1.553221344947815,1.465686321258545,1.5882352590560913,1.6757702827453613,-1.0553221702575684,-0.8802521228790283,-1.3529411554336548,-1.2478991746902466,-0.9852941036224365,-1.1603641510009766,-1.0378150939941406,-0.8627451062202454,-0.4600840210914612,-0.9327731132507324,-0.9152660965919495,-0.8277310729026794,-0.7927170991897583,-0.6351540684700012,-0.6701680421829224,-0.6701680421829224,-0.5301120281219482,-0.4950980246067047,-0.1974789947271347,-0.5476190447807312,-0.7226890921592712,-0.8627451062202454,-0.6351540684700012,-0.5826330780982971,-0.8102241158485413,-0.7226890921592712],[0.27521008253097534,0.32773110270500183,-0.05742296949028969,-0.6351540684700012,-0.7927170991897583,-0.9327731132507324,-0.7401960492134094,-0.7577030658721924,0.46778711676597595,1.045518159866333,1.080532193183899,1.1155462265014648,1.2731091976165771,1.605742335319519,1.378151297569275,1.518207311630249,1.255602240562439,0.46778711676597595,0.6603641510009766,0.46778711676597595,0.13515406847000122,-1.0203081369400024,-0.4600840210914612,0.27521008253097534,0.8004201650619507,0.4327731132507324,0.3977591097354889,-0.7051820755004883,-0.9677870869636536,-0.7226890921592712,0.3977591097354889,0.38025209307670593,0.5553221106529236,0.5203081369400024,0.27521008253097534,0.32773110270500183,0.4852941036224365,0.0476190485060215,0.27521008253097534,0.4852941036224365,0.27521008253097534,0.31022408604621887,0.32773110270500183,0.0476190485060215,-0.3025210201740265,-0.6351540684700012,-1.1778711080551147,-1.633053183555603,-0.6526610851287842,-0.5476190447807312,-1.1428571939468384,0.5728291273117065,0.9929971694946289,0.11764705926179886,0.08263305574655533,0.6428571343421936,0.6778711676597595,-1.5280112028121948,-1.3879551887512207,-0.4425770342350006,-0.1974789947271347,-0.6526610851287842,-0.8802521228790283,-0.7577030658721924,-0.8277310729026794,-1.0728291273117065,-1.0728291273117065,-1.2478991746902466,-0.9852941036224365,-1.0903360843658447,-1.0553221702575684,-1.1078431606292725,-0.9152660965919495,-0.9327731132507324,-0.9327731132507324,-0.8802521228790283,-0.9152660965919495,-0.8627451062202454,-0.5826330780982971,-0.7401960492134094,-0.7401960492134094,-0.47759103775024414,-0.7927170991897583,-0.47759103775024414,-0.8627451062202454,-0.6176470518112183,-0.28501400351524353,-0.37254902720451355,-0.25,-0.1449579894542694,-0.17997199296951294,-0.5126050710678101,-0.23249299824237823,-0.5826330780982971,-0.4950980246067047,-0.6526610851287842,-0.4075630307197571,-0.4600840210914612,-0.4075630307197571,-0.32002800703048706,-0.16246499121189117,0.15266107022762299,-0.09243697673082352,-0.12745098769664764,0.11764705926179886,-0.17997199296951294,-0.6001400351524353,-0.4425770342350006,-0.6701680421829224,-0.5126050710678101,-0.3900560140609741,-0.25,-0.10994397848844528,-0.28501400351524353,-0.05742296949028969,-0.23249299824237823,-0.5301120281219482,-0.1974789947271347,-0.28501400351524353,-0.37254902720451355,-0.6176470518112183,-0.7051820755004883,-0.47759103775024414,-0.5476190447807312,-1.1603641510009766,-0.7752100825309753,-0.47759103775024414,-0.7051820755004883,-0.5826330780982971,-0.4600840210914612,-0.32002800703048706,1.1855741739273071,0.32773110270500183,-0.1974789947271347,0.11764705926179886,0.7829131484031677,1.2030812501907349,1.0280112028121948,-0.1449579894542694,0.6953781247138977,0.2927170991897583,-0.16246499121189117,-0.7226890921592712,0.17016807198524475,0.46778711676597595,0.32773110270500183,-0.3025210201740265,0.5378151535987854,-0.33753502368927,0.46778711676597595,0.450280100107193,-0.7226890921592712,0.7303921580314636,-1.457983136177063,-1.668067216873169,-1.668067216873169,-1.3529411554336548,-1.1253501176834106,-1.2478991746902466,-1.2303920984268188,-1.1953781843185425,-1.1778711080551147,-1.0903360843658447,-0.9327731132507324,-0.8452380895614624,-0.9327731132507324,-0.5651260614395142,-0.8277310729026794,-0.7927170991897583,-0.8102241158485413,-0.7927170991897583,-0.9152660965919495,-0.8452380895614624,-0.8627451062202454,-0.6876750588417053,-0.8277310729026794,-0.8452380895614624,-0.7577030658721924,-0.8977590799331665,-0.7577030658721924,-0.8802521228790283,-0.8802521228790283,-1.3004201650619507,-1.633053183555603,1.0980392694473267,1.8333333730697632,1.9033613204956055,1.5707283020019531,1.5707283020019531,1.9033613204956055,1.9208683967590332,1.605742335319519,1.465686321258545,1.5007002353668213,1.5007002353668213,1.465686321258545,1.2380952835083008,1.8333333730697632,-1.3004201650619507,-1.3879551887512207,-1.0028011798858643,-1.0028011798858643,-1.0728291273117065,-1.0203081369400024,-0.9152660965919495,-0.8277310729026794,-0.8102241158485413,-0.8452380895614624,-0.7927170991897583,-0.7927170991897583,-0.8627451062202454,-0.6876750588417053,-0.7577030658721924,-0.7577030658721924,-0.5476190447807312,-0.7226890921592712,-0.6526610851287842,-0.32002800703048706,-0.7577030658721924,-1.0378150939941406,-0.8452380895614624,-0.7752100825309753,-0.6876750588417053,-0.8452380895614624],[0.36274510622024536,0.27521008253097534,0.0476190485060215,-0.4075630307197571,-0.7226890921592712,-1.3004201650619507,-0.6526610851287842,-0.25,0.41526609659194946,0.6603641510009766,0.8004201650619507,0.7478991746902466,1.255602240562439,1.6582633256912231,1.3606442213058472,0.8004201650619507,1.3606442213058472,1.3256303071975708,1.378151297569275,1.343137264251709,0.3452380895614624,0.3452380895614624,0.450280100107193,0.41526609659194946,1.1505602598190308,0.7478991746902466,-0.02240896411240101,-1.1253501176834106,-0.9152660965919495,-0.6351540684700012,0.2927170991897583,0.41526609659194946,0.9929971694946289,0.2927170991897583,-0.28501400351524353,0.25770309567451477,-0.5476190447807312,0.08263305574655533,0.3452380895614624,0.31022408604621887,0.5378151535987854,0.3452380895614624,0.6953781247138977,0.5553221106529236,0.22268907725811005,0.15266107022762299,-0.28501400351524353,-0.9852941036224365,-0.9327731132507324,0.15266107022762299,-0.25,-0.23249299824237823,0.7654061913490295,-0.6876750588417053,-0.05742296949028969,0.25770309567451477,-0.6526610851287842,-1.2128851413726807,-0.33753502368927,-0.4950980246067047,-0.4600840210914612,-0.8102241158485413,-0.7226890921592712,-0.9502801299095154,-1.0553221702575684,-1.0203081369400024,-1.1953781843185425,-1.0728291273117065,-1.1253501176834106,-1.0728291273117065,-0.9152660965919495,-0.7226890921592712,-1.0028011798858643,-0.6876750588417053,-0.9852941036224365,-0.6526610851287842,-0.7577030658721924,-0.5476190447807312,-0.6001400351524353,-0.6001400351524353,-0.5126050710678101,-0.42507001757621765,-0.3025210201740265,-0.28501400351524353,-0.21498599648475647,-0.3025210201740265,-0.02240896411240101,-0.23249299824237823,-0.4075630307197571,-0.26750701665878296,-0.4600840210914612,-0.26750701665878296,-0.37254902720451355,-0.32002800703048706,-0.6701680421829224,-0.28501400351524353,-0.5301120281219482,-0.6526610851287842,-0.42507001757621765,-0.3025210201740265,-0.1974789947271347,-0.12745098769664764,0.25770309567451477,0.012605042196810246,0.030112044885754585,-0.21498599648475647,-0.5301120281219482,-0.4600840210914612,-0.5476190447807312,-0.8452380895614624,-0.7752100825309753,-0.42507001757621765,-0.16246499121189117,0.012605042196810246,0.08263305574655533,-0.25,-0.3900560140609741,-0.25,-0.42507001757621765,-0.25,-0.5301120281219482,-0.42507001757621765,-0.33753502368927,-0.9152660965919495,-1.0903360843658447,-1.1953781843185425,-0.9327731132507324,-0.9327731132507324,-0.4075630307197571,0.9404761791229248,1.133053183555603,0.8179271817207336,0.41526609659194946,-0.7226890921592712,-0.7577030658721924,-0.3025210201740265,0.9404761791229248,0.9404761791229248,1.378151297569275,0.36274510622024536,1.1155462265014648,0.5553221106529236,1.1155462265014648,-0.16246499121189117,0.5028011202812195,0.06512605398893356,-0.0049019609577953815,0.25770309567451477,0.6778711676597595,0.450280100107193,0.6078431606292725,0.3452380895614624,-2.018207311630249,-1.668067216873169,-1.720588207244873,-1.2478991746902466,-0.9852941036224365,-1.1078431606292725,-0.9502801299095154,-1.1428571939468384,-0.9852941036224365,-1.0028011798858643,-0.7752100825309753,-0.8277310729026794,-0.8977590799331665,-0.6176470518112183,-0.8277310729026794,-0.5826330780982971,-1.0028011798858643,-0.6876750588417053,-0.8977590799331665,-0.6701680421829224,-0.8277310729026794,-0.7752100825309753,-0.8802521228790283,-0.7401960492134094,-0.7226890921592712,-0.7752100825309753,-0.7927170991897583,-0.7577030658721924,-0.9677870869636536,-1.1428571939468384,-1.0728291273117065,-1.580532193183899,-0.6876750588417053,2.0784313678741455,1.8333333730697632,1.8333333730697632,1.1505602598190308,1.5707283020019531,1.7457983493804932,1.7457983493804932,1.9208683967590332,1.518207311630249,1.518207311630249,1.518207311630249,1.605742335319519,1.6407562494277954,-0.6526610851287842,-1.3354341983795166,-1.4754902124404907,-1.1428571939468384,-1.1253501176834106,-1.1253501176834106,-1.1953781843185425,-1.1778711080551147,-1.0028011798858643,-0.7051820755004883,-0.8977590799331665,-0.7577030658721924,-0.8977590799331665,-0.7927170991897583,-0.6176470518112183,-0.6701680421829224,-0.5826330780982971,-0.7051820755004883,-0.6001400351524353,-0.6351540684700012,-0.7051820755004883,-0.8452380895614624,-0.8977590799331665,-0.7226890921592712,-0.7226890921592712,-0.7226890921592712],[0.32773110270500183,0.32773110270500183,0.0476190485060215,-0.17997199296951294,-0.9152660965919495,-0.7927170991897583,-1.1078431606292725,-0.7577030658721924,0.012605042196810246,0.18767507374286652,0.450280100107193,0.8529411554336548,0.5203081369400024,1.220588207244873,0.32773110270500183,0.9054622054100037,1.1505602598190308,1.7282912731170654,1.605742335319519,0.6253501176834106,0.9754902124404907,1.0980392694473267,1.133053183555603,0.6603641510009766,0.8529411554336548,0.5378151535987854,-0.05742296949028969,-1.0553221702575684,-0.4600840210914612,-0.25,0.8529411554336548,0.2401960790157318,0.8354341983795166,0.7478991746902466,0.1001400575041771,-1.4229692220687866,-0.02240896411240101,0.46778711676597595,0.31022408604621887,0.38025209307670593,0.41526609659194946,0.31022408604621887,0.8354341983795166,0.7829131484031677,0.5903361439704895,0.15266107022762299,-0.10994397848844528,-0.5826330780982971,-1.0728291273117065,-0.37254902720451355,-0.10994397848844528,-0.12745098769664764,-0.10994397848844528,-1.492997169494629,-0.3550420105457306,0.27521008253097534,-1.1953781843185425,-0.5126050710678101,-0.42507001757621765,-0.6526610851287842,-0.6351540684700012,-0.8102241158485413,-0.9677870869636536,-1.1078431606292725,-1.2478991746902466,-1.1603641510009766,-1.1428571939468384,-0.9327731132507324,-0.8977590799331665,-0.8977590799331665,-0.9327731132507324,-0.8802521228790283,-0.9852941036224365,-0.6876750588417053,-0.8802521228790283,-0.6001400351524353,-0.9502801299095154,-0.42507001757621765,-0.3900560140609741,-0.32002800703048706,-0.26750701665878296,-0.6351540684700012,-0.3550420105457306,-0.05742296949028969,-0.4075630307197571,-0.26750701665878296,-0.25,-0.07492997497320175,-0.5826330780982971,-0.10994397848844528,-0.16246499121189117,-0.42507001757621765,-0.6176470518112183,-0.4950980246067047,-0.6351540684700012,-0.5301120281219482,-0.5126050710678101,-0.9677870869636536,-0.5476190447807312,-0.5126050710678101,-0.5651260614395142,-0.17997199296951294,-0.25,0.06512605398893356,-0.17997199296951294,-0.10994397848844528,-0.4600840210914612,-0.7577030658721924,-0.5651260614395142,-0.8452380895614624,-0.6001400351524353,-0.26750701665878296,-0.42507001757621765,-0.5651260614395142,-0.3550420105457306,-0.33753502368927,-0.42507001757621765,-0.3025210201740265,-0.4950980246067047,-0.6176470518112183,-0.8802521228790283,-0.6701680421829224,-0.7051820755004883,-0.9327731132507324,-1.1253501176834106,-0.6176470518112183,0.030112044885754585,0.8004201650619507,0.6953781247138977,0.7128851413726807,0.0476190485060215,-0.42507001757621765,-0.5651260614395142,-0.9677870869636536,-0.8102241158485413,-1.0728291273117065,-0.47759103775024414,0.6953781247138977,0.6253501176834106,0.5378151535987854,-0.6351540684700012,-0.23249299824237823,-0.6001400351524353,0.18767507374286652,0.5028011202812195,0.8354341983795166,1.5007002353668213,0.8179271817207336,0.1001400575041771,1.080532193183899,1.3606442213058472,-0.37254902720451355,-1.1953781843185425,-1.2829132080078125,-1.3179271221160889,-1.3879551887512207,-1.1428571939468384,-1.0903360843658447,-1.0728291273117065,-1.0728291273117065,-0.8102241158485413,-0.8452380895614624,-0.6526610851287842,-0.9327731132507324,-0.8977590799331665,-0.5826330780982971,-0.7927170991897583,-0.6701680421829224,-0.7051820755004883,-0.6351540684700012,-0.9677870869636536,-0.7226890921592712,-0.7051820755004883,-0.9852941036224365,-0.7051820755004883,-0.4425770342350006,-0.7752100825309753,-0.8102241158485413,-0.9502801299095154,-0.5301120281219482,-0.9152660965919495,-0.9152660965919495,-1.2128851413726807,-1.633053183555603,-1.4404761791229248,1.5007002353668213,1.8333333730697632,1.8158262968063354,0.31022408604621887,1.465686321258545,2.0084033012390137,1.9733893871307373,1.8333333730697632,1.7983193397521973,1.6582633256912231,1.4481792449951172,1.5357142686843872,1.518207311630249,1.4131652116775513,-1.580532193183899,-1.3879551887512207,-1.0728291273117065,-1.3179271221160889,-1.1778711080551147,-1.2128851413726807,-0.9677870869636536,-0.7927170991897583,-0.9852941036224365,-0.8102241158485413,-0.9502801299095154,-0.6001400351524353,-0.7226890921592712,-0.9677870869636536,-0.7577030658721924,-0.5826330780982971,-0.7051820755004883,-1.0378150939941406,-0.7927170991897583,-0.8277310729026794,-0.8802521228790283,-0.8102241158485413,-0.4425770342350006,-1.0028011798858643,-0.47759103775024414],[0.3452380895614624,0.3452380895614624,0.18767507374286652,-0.4425770342350006,-0.12745098769664764,-1.1603641510009766,-1.1428571939468384,-0.9152660965919495,-0.5126050710678101,-0.09243697673082352,0.32773110270500183,0.13515406847000122,-0.16246499121189117,-0.21498599648475647,-0.7752100825309753,0.6253501176834106,0.2401960790157318,1.045518159866333,0.5378151535987854,1.1505602598190308,1.9208683967590332,0.6953781247138977,0.8879551887512207,0.32773110270500183,0.8704481720924377,0.6253501176834106,-0.25,-1.3354341983795166,-0.6526610851287842,-0.05742296949028969,1.518207311630249,-0.26750701665878296,0.32773110270500183,1.2380952835083008,0.31022408604621887,-1.6855741739273071,-0.7226890921592712,0.9754902124404907,0.31022408604621887,0.8879551887512207,0.8004201650619507,0.27521008253097534,-0.03991596773266792,-0.12745098769664764,0.5378151535987854,0.030112044885754585,-0.5826330780982971,0.1001400575041771,-0.4950980246067047,-0.47759103775024414,-0.6001400351524353,-0.7927170991897583,0.0476190485060215,-0.47759103775024414,0.012605042196810246,-1.7380952835083008,-0.8977590799331665,-0.3900560140609741,-0.5126050710678101,-0.7577030658721924,-1.0203081369400024,-1.1603641510009766,-1.0203081369400024,-1.1078431606292725,-1.0903360843658447,-1.0903360843658447,-1.0903360843658447,-1.0553221702575684,-1.0028011798858643,-1.0028011798858643,-0.9502801299095154,-0.7226890921592712,-0.6001400351524353,-0.8277310729026794,-0.8452380895614624,-0.6176470518112183,-0.5651260614395142,-0.5301120281219482,-0.3900560140609741,-0.23249299824237823,-0.28501400351524353,-0.10994397848844528,-0.26750701665878296,-0.5651260614395142,-0.28501400351524353,-0.42507001757621765,-0.10994397848844528,-0.10994397848844528,-0.1449579894542694,-0.42507001757621765,-0.12745098769664764,-0.17997199296951294,-0.4600840210914612,-0.5826330780982971,-0.17997199296951294,-0.6876750588417053,-0.7051820755004883,-0.3550420105457306,-0.37254902720451355,-0.4075630307197571,-0.3900560140609741,-0.1449579894542694,0.0476190485060215,0.20518207550048828,0.18767507374286652,0.0476190485060215,0.030112044885754585,-0.33753502368927,-0.6876750588417053,-0.6876750588417053,-0.4425770342350006,-0.7226890921592712,-0.4600840210914612,-0.6176470518112183,-0.10994397848844528,-0.16246499121189117,-0.32002800703048706,-0.4425770342350006,-0.28501400351524353,-0.23249299824237823,-0.6701680421829224,-1.0553221702575684,-0.6876750588417053,-0.4950980246067047,-0.3900560140609741,0.2927170991897583,0.450280100107193,0.4852941036224365,-0.4950980246067047,-0.28501400351524353,-0.7927170991897583,-0.28501400351524353,-0.7226890921592712,-0.7051820755004883,-0.42507001757621765,-0.5651260614395142,-0.4075630307197571,-0.6701680421829224,-1.0553221702575684,-0.9852941036224365,-1.3179271221160889,-1.6855741739273071,-0.9852941036224365,-0.7752100825309753,-0.4600840210914612,-1.2478991746902466,0.6253501176834106,1.1155462265014648,1.1505602598190308,0.9229691624641418,-0.9852941036224365,-1.668067216873169,-1.2303920984268188,-1.0378150939941406,-1.1253501176834106,-0.9677870869636536,-0.9327731132507324,-1.0203081369400024,-1.0028011798858643,-0.8802521228790283,-0.8802521228790283,-0.8102241158485413,-0.8277310729026794,-0.6001400351524353,-0.6701680421829224,-0.6176470518112183,-0.8802521228790283,-0.7577030658721924,-0.5476190447807312,-0.8277310729026794,-0.7752100825309753,-0.5826330780982971,-0.6176470518112183,-0.8277310729026794,-0.6701680421829224,-0.5826330780982971,-0.26750701665878296,-0.6526610851287842,-0.6876750588417053,-0.6176470518112183,-0.7752100825309753,-0.9502801299095154,-1.2303920984268188,-1.0903360843658447,-0.5126050710678101,-0.1974789947271347,1.133053183555603,1.6232492923736572,0.41526609659194946,1.8158262968063354,1.9208683967590332,1.518207311630249,2.1309523582458496,1.9383753538131714,1.8683472871780396,1.0630252361297607,1.6757702827453613,1.605742335319519,1.5882352590560913,-1.5980392694473267,-0.9677870869636536,-1.1953781843185425,-1.2654061317443848,-1.2128851413726807,-0.9502801299095154,-0.8452380895614624,-0.8802521228790283,-0.7401960492134094,-0.8977590799331665,-0.9152660965919495,-0.9677870869636536,-0.8627451062202454,-0.9677870869636536,-0.9152660965919495,-0.8277310729026794,-0.7752100825309753,-0.8977590799331665,-0.6876750588417053,-0.7226890921592712,-0.5826330780982971,-0.9152660965919495,-0.7051820755004883,-0.5126050710678101,-0.6526610851287842],[0.3452380895614624,0.38025209307670593,0.2927170991897583,0.012605042196810246,-0.7401960492134094,-0.8277310729026794,-1.2128851413726807,-1.0028011798858643,-0.33753502368927,-0.0049019609577953815,0.2927170991897583,0.20518207550048828,-0.7927170991897583,-0.6526610851287842,-0.23249299824237823,-0.10994397848844528,-0.28501400351524353,-0.42507001757621765,-0.1449579894542694,0.18767507374286652,1.0980392694473267,0.6778711676597595,0.450280100107193,0.030112044885754585,0.32773110270500183,0.4327731132507324,-0.21498599648475647,-1.1428571939468384,-0.7577030658721924,-0.02240896411240101,1.6232492923736572,-0.02240896411240101,-0.21498599648475647,1.2030812501907349,-0.5826330780982971,-1.4054621458053589,-1.2128851413726807,-0.5826330780982971,0.38025209307670593,0.4852941036224365,0.8004201650619507,0.5028011202812195,0.17016807198524475,-0.28501400351524353,-0.5651260614395142,-0.6001400351524353,-0.4425770342350006,-0.16246499121189117,-0.28501400351524353,-0.37254902720451355,-0.25,-0.6701680421829224,-0.9152660965919495,-0.9327731132507324,-1.0028011798858643,-0.5126050710678101,-0.5476190447807312,-0.6001400351524353,-1.2478991746902466,-0.8977590799331665,-0.9852941036224365,-0.9677870869636536,-1.1953781843185425,-0.9502801299095154,-1.0028011798858643,-1.0378150939941406,-1.0028011798858643,-0.9677870869636536,-0.7226890921592712,-0.7752100825309753,-0.8277310729026794,-0.6526610851287842,-0.6701680421829224,-0.5476190447807312,-0.5301120281219482,-0.4950980246067047,-0.7226890921592712,-0.26750701665878296,-0.21498599648475647,-0.16246499121189117,-0.28501400351524353,-0.21498599648475647,-0.4425770342350006,-0.02240896411240101,-0.10994397848844528,-0.03991596773266792,0.030112044885754585,0.08263305574655533,-0.05742296949028969,-0.3550420105457306,-0.26750701665878296,-0.26750701665878296,-0.02240896411240101,-0.6001400351524353,-0.17997199296951294,-0.3900560140609741,-0.4600840210914612,-0.42507001757621765,-0.4075630307197571,-0.47759103775024414,-0.0049019609577953815,-0.25,-0.07492997497320175,-0.16246499121189117,-0.03991596773266792,-0.10994397848844528,-0.26750701665878296,-0.33753502368927,-0.5476190447807312,-0.4075630307197571,-0.1974789947271347,-0.4600840210914612,-0.21498599648475647,-0.21498599648475647,-0.03991596773266792,-0.4425770342350006,-0.26750701665878296,-0.6526610851287842,-0.5476190447807312,-0.4950980246067047,-0.6176470518112183,-0.6001400351524353,-0.7226890921592712,-0.4600840210914612,-0.6701680421829224,-0.6001400351524353,-0.6876750588417053,-0.6526610851287842,-0.28501400351524353,-0.6876750588417053,-0.6526610851287842,-0.17997199296951294,-0.42507001757621765,-0.6876750588417053,-0.8627451062202454,-0.8277310729026794,-0.8452380895614624,-1.0378150939941406,-0.8452380895614624,-1.0553221702575684,-0.6001400351524353,-1.0028011798858643,-1.1253501176834106,-1.2478991746902466,-1.4229692220687866,-1.1253501176834106,-1.7030812501907349,-0.3025210201740265,-1.1603641510009766,-0.8452380895614624,-0.9502801299095154,-1.0728291273117065,-0.9152660965919495,-0.8977590799331665,-0.9677870869636536,-0.8977590799331665,-0.8627451062202454,-0.9677870869636536,-0.5476190447807312,-0.8277310729026794,-0.8277310729026794,-0.7401960492134094,-0.8452380895614624,-0.8802521228790283,-0.9152660965919495,-0.5651260614395142,-0.6001400351524353,-0.7927170991897583,-0.7051820755004883,-0.7051820755004883,-0.8802521228790283,-0.7226890921592712,-0.8802521228790283,-0.4950980246067047,-0.7577030658721924,-0.6001400351524353,-0.47759103775024414,-0.7226890921592712,-0.8452380895614624,-0.5826330780982971,-1.0903360843658447,-1.1253501176834106,-1.1078431606292725,-1.1078431606292725,-0.32002800703048706,-0.10994397848844528,-0.5651260614395142,0.6778711676597595,1.8333333730697632,1.9208683967590332,1.8333333730697632,1.5882352590560913,2.1309523582458496,2.043417453765869,1.8333333730697632,1.308123230934143,1.7107843160629272,1.9383753538131714,1.6757702827453613,-1.7380952835083008,-1.3179271221160889,-1.1253501176834106,-0.9852941036224365,-0.9852941036224365,-1.0203081369400024,-0.9852941036224365,-0.9152660965919495,-1.0553221702575684,-0.9677870869636536,-0.8802521228790283,-0.8102241158485413,-0.8627451062202454,-0.6876750588417053,-0.6701680421829224,-0.8802521228790283,-0.8452380895614624,-0.7927170991897583,-0.8627451062202454,-0.6701680421829224,-1.0903360843658447,-0.8277310729026794,-0.9852941036224365,-0.8977590799331665,-0.6701680421829224],[0.22268907725811005,0.36274510622024536,0.32773110270500183,0.06512605398893356,-0.23249299824237823,-0.7226890921592712,-1.1603641510009766,-0.7401960492134094,-0.7752100825309753,-0.23249299824237823,0.08263305574655533,-0.05742296949028969,-0.47759103775024414,-0.37254902720451355,0.11764705926179886,-0.6351540684700012,-0.8627451062202454,0.32773110270500183,-0.4425770342350006,0.5028011202812195,-1.5105042457580566,0.2927170991897583,0.5203081369400024,-0.4425770342350006,-0.7577030658721924,-0.1974789947271347,-0.4950980246067047,-1.3004201650619507,-1.2128851413726807,0.0476190485060215,1.308123230934143,0.5203081369400024,-0.28501400351524353,0.4852941036224365,-0.7401960492134094,-1.2654061317443848,-1.633053183555603,-1.2654061317443848,-0.17997199296951294,0.3452380895614624,0.450280100107193,0.6253501176834106,0.41526609659194946,-0.1974789947271347,-0.37254902720451355,-0.4425770342350006,-0.25,-0.4425770342350006,-0.33753502368927,-0.5301120281219482,-0.3900560140609741,-0.1974789947271347,-0.10994397848844528,-0.05742296949028969,-0.3900560140609741,-0.5126050710678101,-0.6351540684700012,-0.8802521228790283,-0.8102241158485413,-1.0378150939941406,-0.8977590799331665,-1.1603641510009766,-1.1428571939468384,-1.1253501176834106,-1.3004201650619507,-0.8977590799331665,-0.9677870869636536,-1.2128851413726807,-1.0903360843658447,-0.8627451062202454,-0.6526610851287842,-0.7401960492134094,-0.8102241158485413,-0.4425770342350006,-0.7051820755004883,-0.3550420105457306,-0.28501400351524353,-0.4600840210914612,-0.3900560140609741,-0.37254902720451355,-0.32002800703048706,-0.3550420105457306,0.0476190485060215,-0.25,0.08263305574655533,0.11764705926179886,-0.21498599648475647,-0.28501400351524353,-0.32002800703048706,-0.23249299824237823,-0.33753502368927,-0.28501400351524353,-0.37254902720451355,-0.3900560140609741,-0.1974789947271347,-0.4075630307197571,-0.4075630307197571,-0.7752100825309753,-0.1974789947271347,-0.32002800703048706,-0.26750701665878296,-0.0049019609577953815,-0.10994397848844528,-0.4075630307197571,-0.16246499121189117,-0.03991596773266792,-0.23249299824237823,-0.3900560140609741,-0.5651260614395142,-0.25,-0.21498599648475647,-0.33753502368927,-0.6001400351524353,-0.6526610851287842,-0.4600840210914612,-0.25,-0.5126050710678101,-0.4950980246067047,-0.3900560140609741,-0.6001400351524353,-0.5826330780982971,-0.8977590799331665,-0.8802521228790283,-0.5826330780982971,-0.8802521228790283,-0.9502801299095154,-0.7051820755004883,-0.7226890921592712,-0.4425770342350006,-0.8627451062202454,-0.4600840210914612,-0.4075630307197571,-0.5301120281219482,-0.5126050710678101,-0.7226890921592712,-0.8452380895614624,-0.6701680421829224,-0.7226890921592712,-0.6701680421829224,-0.7752100825309753,-1.1078431606292725,-1.3004201650619507,-1.0028011798858643,-0.8102241158485413,-1.3354341983795166,-1.2654061317443848,0.012605042196810246,-1.1953781843185425,-0.4950980246067047,-0.05742296949028969,-0.8977590799331665,-0.7752100825309753,-0.9152660965919495,-0.8277310729026794,-0.8452380895614624,-0.7401960492134094,-0.7927170991897583,-0.7577030658721924,-0.8977590799331665,-0.7401960492134094,-0.7401960492134094,-0.4950980246067047,-0.7226890921592712,-0.8452380895614624,-0.6876750588417053,-0.6176470518112183,-0.7226890921592712,-0.6701680421829224,-0.7401960492134094,-0.7577030658721924,-0.6176470518112183,-0.5301120281219482,-0.5301120281219482,-0.4600840210914612,-0.4425770342350006,-0.3900560140609741,-0.7927170991897583,-0.8452380895614624,-1.0728291273117065,-0.6351540684700012,-0.8627451062202454,-1.4054621458053589,-1.0553221702575684,-0.7927170991897583,-0.4425770342350006,-0.42507001757621765,-0.17997199296951294,-0.8977590799331665,1.9383753538131714,2.0609242916107178,2.0259103775024414,1.1155462265014648,1.378151297569275,2.218487501144409,1.8333333730697632,1.6232492923736572,1.5882352590560913,2.0259103775024414,1.9558823108673096,-0.6351540684700012,-0.4425770342350006,-1.4054621458053589,-1.0553221702575684,-0.8977590799331665,-0.8102241158485413,-0.8102241158485413,-0.8102241158485413,-0.8627451062202454,-0.8627451062202454,-0.8802521228790283,-1.1428571939468384,-0.8452380895614624,-0.6001400351524353,-0.9327731132507324,-0.9852941036224365,-0.8277310729026794,-0.9502801299095154,-0.9152660965919495,-0.8802521228790283,-0.9677870869636536,-0.8627451062202454,-0.6876750588417053,-0.8102241158485413,-0.9327731132507324],[0.25770309567451477,0.4327731132507324,0.20518207550048828,0.1001400575041771,-0.07492997497320175,-0.47759103775024414,-1.2654061317443848,-0.9852941036224365,-0.6701680421829224,0.06512605398893356,0.9404761791229248,0.7654061913490295,0.8879551887512207,1.3256303071975708,0.7478991746902466,0.9929971694946289,0.38025209307670593,-0.6526610851287842,-0.5126050710678101,-1.3879551887512207,-0.5476190447807312,-1.6155462265014648,-0.7401960492134094,-0.4075630307197571,-0.9677870869636536,-1.0903360843658447,-1.2128851413726807,-1.3529411554336548,-1.2829132080078125,-0.5826330780982971,1.2030812501907349,0.20518207550048828,-0.12745098769664764,0.2401960790157318,-0.10994397848844528,-1.5980392694473267,-1.3354341983795166,-1.3004201650619507,-0.37254902720451355,-0.37254902720451355,-0.0049019609577953815,0.13515406847000122,0.06512605398893356,0.41526609659194946,-0.25,-0.6001400351524353,-0.5826330780982971,-0.25,-0.3025210201740265,-0.28501400351524353,-0.26750701665878296,-0.4425770342350006,-0.5476190447807312,-0.5476190447807312,-0.8627451062202454,-0.6351540684700012,-0.9852941036224365,-1.0203081369400024,-1.0028011798858643,-1.2303920984268188,-1.1253501176834106,-0.8627451062202454,-0.9677870869636536,-1.0553221702575684,-0.8102241158485413,-0.9327731132507324,-0.7927170991897583,-0.8452380895614624,-0.7401960492134094,-0.5651260614395142,-0.6001400351524353,-0.37254902720451355,-0.6176470518112183,-0.47759103775024414,-0.3900560140609741,-0.4425770342350006,-0.3900560140609741,-0.26750701665878296,-0.25,-0.09243697673082352,-0.3550420105457306,-0.07492997497320175,-0.21498599648475647,0.0476190485060215,-0.4600840210914612,-0.3025210201740265,0.030112044885754585,-0.12745098769664764,-0.6001400351524353,-0.4075630307197571,-0.28501400351524353,0.012605042196810246,-0.3900560140609741,-0.47759103775024414,-0.37254902720451355,-0.12745098769664764,-0.03991596773266792,-0.05742296949028969,-0.16246499121189117,-0.12745098769664764,-0.1974789947271347,-0.16246499121189117,-0.1449579894542694,0.012605042196810246,0.06512605398893356,-0.02240896411240101,-0.42507001757621765,-0.37254902720451355,-0.5301120281219482,-0.7752100825309753,-0.37254902720451355,-0.21498599648475647,-0.28501400351524353,-0.1974789947271347,-0.3025210201740265,-0.28501400351524353,-0.5476190447807312,-0.4075630307197571,-0.3550420105457306,-0.6876750588417053,-0.4425770342350006,-0.8977590799331665,-0.6351540684700012,0.31022408604621887,-0.6351540684700012,0.030112044885754585,-0.4425770342350006,-0.28501400351524353,-0.6176470518112183,-0.1974789947271347,-0.7401960492134094,-0.25,-0.28501400351524353,-0.7752100825309753,-0.6176470518112183,-0.7752100825309753,-0.5476190447807312,-0.4600840210914612,-0.6176470518112183,-1.2654061317443848,-0.9152660965919495,-1.0728291273117065,-0.7401960492134094,-0.9502801299095154,-0.9327731132507324,-0.8977590799331665,-0.5651260614395142,-0.8277310729026794,0.9404761791229248,-0.23249299824237823,-0.7051820755004883,-0.8277310729026794,-0.5126050710678101,-0.7051820755004883,-0.6176470518112183,-0.6526610851287842,-0.6526610851287842,-0.7226890921592712,-0.6001400351524353,-0.3550420105457306,-0.3900560140609741,-0.6526610851287842,-0.33753502368927,-0.4425770342350006,-0.5126050710678101,-0.6001400351524353,-0.8277310729026794,-0.7226890921592712,-0.8277310729026794,-0.7226890921592712,-0.7577030658721924,-0.6351540684700012,-0.6701680421829224,-0.5826330780982971,-0.8452380895614624,-0.5476190447807312,-0.7051820755004883,-0.7927170991897583,-0.7752100825309753,-1.0903360843658447,-1.2303920984268188,-0.9677870869636536,-0.8277310729026794,-0.3900560140609741,-0.3025210201740265,-0.23249299824237823,-0.21498599648475647,-0.7401960492134094,-0.05742296949028969,1.6232492923736572,1.2380952835083008,1.7633053064346313,1.9733893871307373,0.9579831957817078,1.8858543634414673,1.8158262968063354,2.0959384441375732,1.9733893871307373,-0.21498599648475647,-1.1953781843185425,-1.3704482316970825,-1.2478991746902466,-0.5826330780982971,-0.5126050710678101,-0.7752100825309753,-0.8627451062202454,-0.9852941036224365,-0.6351540684700012,-0.9502801299095154,-0.8452380895614624,-0.7577030658721924,-0.8627451062202454,-0.8452380895614624,-0.9677870869636536,-0.6876750588417053,-0.7927170991897583,-0.8627451062202454,-0.7577030658721924,-0.5826330780982971,-0.9502801299095154,-0.6526610851287842,-0.8802521228790283,-0.9327731132507324,-0.8452380895614624],[0.08263305574655533,0.32773110270500183,0.2401960790157318,0.22268907725811005,-0.02240896411240101,-0.4950980246067047,-1.3179271221160889,-1.0378150939941406,-0.4425770342350006,0.38025209307670593,0.9054622054100037,1.2030812501907349,0.6078431606292725,0.8704481720924377,0.8004201650619507,1.4131652116775513,1.2030812501907349,0.11764705926179886,0.450280100107193,0.18767507374286652,0.1001400575041771,0.18767507374286652,-0.1974789947271347,-0.17997199296951294,0.030112044885754585,-0.6176470518112183,-1.720588207244873,-1.1778711080551147,-1.580532193183899,-0.7927170991897583,0.8004201650619507,0.0476190485060215,-0.1449579894542694,-0.07492997497320175,0.030112044885754585,-0.5826330780982971,-1.1253501176834106,-1.1953781843185425,-0.8977590799331665,-0.8802521228790283,-0.8102241158485413,0.25770309567451477,0.15266107022762299,0.012605042196810246,-0.16246499121189117,-0.5126050710678101,-0.5126050710678101,-0.6176470518112183,-0.3550420105457306,-0.3550420105457306,-0.32002800703048706,-0.5826330780982971,-0.4950980246067047,-0.6701680421829224,-0.8102241158485413,-1.1428571939468384,-1.3004201650619507,-1.1428571939468384,-1.0203081369400024,-1.2303920984268188,-1.0203081369400024,-1.1078431606292725,-0.9327731132507324,-0.9152660965919495,-0.6701680421829224,-0.7927170991897583,-0.6176470518112183,-0.7577030658721924,-0.7927170991897583,-0.47759103775024414,-0.7927170991897583,-0.47759103775024414,-0.28501400351524353,-0.3900560140609741,-0.4075630307197571,-0.17997199296951294,-0.32002800703048706,-0.3550420105457306,-0.42507001757621765,-0.10994397848844528,-0.17997199296951294,0.030112044885754585,-0.3550420105457306,-0.23249299824237823,-0.05742296949028969,0.06512605398893356,-0.09243697673082352,-0.16246499121189117,-0.1449579894542694,-0.37254902720451355,-0.0049019609577953815,-0.1449579894542694,-0.4075630307197571,-0.26750701665878296,-0.47759103775024414,-0.5826330780982971,-0.1449579894542694,-0.3025210201740265,-0.3025210201740265,-0.1974789947271347,0.06512605398893356,0.13515406847000122,-0.23249299824237823,-0.21498599648475647,-0.0049019609577953815,-0.10994397848844528,-0.3025210201740265,-0.32002800703048706,-0.32002800703048706,-0.6876750588417053,-0.5826330780982971,-0.6351540684700012,-0.3900560140609741,-0.12745098769664764,-0.6526610851287842,-0.23249299824237823,-0.5651260614395142,-0.3900560140609741,-0.21498599648475647,-0.6001400351524353,-0.0049019609577953815,-0.5651260614395142,-0.8277310729026794,-0.3025210201740265,-0.7927170991897583,-0.4075630307197571,-0.8802521228790283,-0.8627451062202454,-0.4950980246067047,-0.5301120281219482,-0.8102241158485413,-0.5826330780982971,-0.42507001757621765,-0.6701680421829224,-0.7752100825309753,-0.5126050710678101,-0.7226890921592712,-0.7401960492134094,-0.8277310729026794,-0.37254902720451355,-0.5126050710678101,-0.42507001757621765,-1.0553221702575684,-0.8977590799331665,-0.47759103775024414,-0.7226890921592712,-0.4600840210914612,-0.5651260614395142,0.20518207550048828,-0.26750701665878296,-0.09243697673082352,-0.6701680421829224,-0.37254902720451355,-0.5476190447807312,-0.5826330780982971,-0.3550420105457306,-0.5826330780982971,-0.5126050710678101,-0.6176470518112183,-0.7401960492134094,-0.6526610851287842,-0.7401960492134094,-0.5651260614395142,-0.5301120281219482,-0.4600840210914612,-0.7401960492134094,-0.4950980246067047,-0.3550420105457306,-0.4950980246067047,-0.4600840210914612,-0.6701680421829224,-0.5301120281219482,-0.5651260614395142,-0.7927170991897583,-0.4425770342350006,-0.6876750588417053,-0.9152660965919495,-0.6701680421829224,-0.6351540684700012,-0.6351540684700012,-0.7401960492134094,-0.9327731132507324,-0.6001400351524353,-0.1974789947271347,-0.17997199296951294,-0.4950980246067047,-0.47759103775024414,-0.7226890921592712,-1.895658254623413,1.1155462265014648,1.5707283020019531,2.165966272354126,2.0084033012390137,1.7633053064346313,1.8158262968063354,1.9033613204956055,1.7633053064346313,1.553221344947815,-0.28501400351524353,-1.5280112028121948,-1.7030812501907349,-0.9677870869636536,-0.7752100825309753,-0.42507001757621765,-0.3900560140609741,-0.5651260614395142,-0.8102241158485413,-0.7577030658721924,-0.6701680421829224,-0.7927170991897583,-0.8802521228790283,-0.8627451062202454,-0.6701680421829224,-0.6001400351524353,-0.8452380895614624,-0.7051820755004883,-0.6001400351524353,-0.7401960492134094,-0.9852941036224365,-0.8102241158485413,-1.0203081369400024,-0.5476190447807312,-0.7401960492134094,-0.8102241158485413],[-0.0049019609577953815,0.18767507374286652,0.17016807198524475,0.18767507374286652,-0.28501400351524353,-0.37254902720451355,-0.8802521228790283,-1.2128851413726807,-0.4425770342350006,0.08263305574655533,0.450280100107193,0.6778711676597595,0.5553221106529236,0.7128851413726807,1.2731091976165771,1.7107843160629272,1.1155462265014648,1.343137264251709,1.133053183555603,1.308123230934143,0.9404761791229248,1.2380952835083008,0.32773110270500183,0.0476190485060215,-0.37254902720451355,-0.6176470518112183,-1.4054621458053589,-1.1603641510009766,-1.4054621458053589,-1.1953781843185425,0.46778711676597595,-0.02240896411240101,-0.21498599648475647,-0.10994397848844528,-0.23249299824237823,-0.5301120281219482,-1.1603641510009766,-1.3179271221160889,-0.9152660965919495,-0.6001400351524353,-0.6876750588417053,-0.25,0.2927170991897583,0.08263305574655533,-0.17997199296951294,-0.4600840210914612,-0.3550420105457306,-0.6001400351524353,-0.6351540684700012,-0.4600840210914612,-0.6001400351524353,-0.8627451062202454,-1.1078431606292725,-0.8452380895614624,-0.7401960492134094,-0.9502801299095154,-1.0903360843658447,-1.3354341983795166,-1.3529411554336548,-1.0553221702575684,-1.1428571939468384,-1.1953781843185425,-0.8802521228790283,-0.7927170991897583,-0.7927170991897583,-0.4425770342350006,-0.5651260614395142,-0.7752100825309753,-0.5651260614395142,-0.4950980246067047,-0.3550420105457306,-0.23249299824237823,-0.26750701665878296,-0.09243697673082352,-0.6351540684700012,-0.16246499121189117,-0.3900560140609741,-0.37254902720451355,-0.6001400351524353,-0.47759103775024414,-0.6526610851287842,0.11764705926179886,-0.10994397848844528,-0.3025210201740265,-0.1974789947271347,-0.25,-0.09243697673082352,-0.37254902720451355,-0.1449579894542694,-0.1974789947271347,-0.05742296949028969,-0.1974789947271347,-0.1449579894542694,-0.1974789947271347,-0.5651260614395142,-0.16246499121189117,0.08263305574655533,-0.10994397848844528,-0.33753502368927,-0.21498599648475647,-0.42507001757621765,-0.1449579894542694,-0.12745098769664764,0.18767507374286652,-0.07492997497320175,-0.16246499121189117,-0.25,-0.3550420105457306,-0.5651260614395142,-0.8802521228790283,-0.5126050710678101,-0.5301120281219482,-0.5301120281219482,-0.28501400351524353,-0.25,-0.17997199296951294,-0.3900560140609741,-0.4075630307197571,-0.6001400351524353,-0.3025210201740265,-0.5476190447807312,-0.5126050710678101,-0.5826330780982971,-0.7577030658721924,-0.5651260614395142,-0.5301120281219482,-0.5126050710678101,-0.4425770342350006,-0.5476190447807312,-0.47759103775024414,-0.6701680421829224,-0.7051820755004883,-0.5476190447807312,-0.5126050710678101,-0.47759103775024414,-0.3550420105457306,-0.6526610851287842,-0.9152660965919495,-0.37254902720451355,-0.42507001757621765,-0.4600840210914612,-0.8277310729026794,-0.7577030658721924,-0.7752100825309753,-0.5301120281219482,-0.8802521228790283,-0.7226890921592712,-1.0903360843658447,-0.5126050710678101,-0.5651260614395142,-0.7577030658721924,-0.28501400351524353,-0.5126050710678101,-0.5126050710678101,-0.5826330780982971,-0.3550420105457306,-0.3900560140609741,-0.47759103775024414,-0.7577030658721924,-0.5826330780982971,-0.4600840210914612,-0.5301120281219482,-0.42507001757621765,-0.6701680421829224,-0.6176470518112183,-0.3900560140609741,-0.4425770342350006,-0.4600840210914612,-0.4950980246067047,-0.5826330780982971,-0.4600840210914612,-0.4075630307197571,-0.7401960492134094,-0.7051820755004883,-0.4075630307197571,-0.6001400351524353,-0.7401960492134094,-0.7927170991897583,-0.6876750588417053,-0.8102241158485413,-0.6701680421829224,-0.5301120281219482,-0.4600840210914612,-0.21498599648475647,-0.10994397848844528,-0.37254902720451355,-0.4950980246067047,-0.7752100825309753,-1.9131652116775513,0.17016807198524475,1.7107843160629272,2.0784313678741455,1.8683472871780396,1.9733893871307373,1.6232492923736572,2.1309523582458496,2.1309523582458496,0.38025209307670593,-1.5980392694473267,-1.633053183555603,-1.457983136177063,-1.1253501176834106,-0.21498599648475647,-0.23249299824237823,-0.5651260614395142,-0.7401960492134094,-0.5651260614395142,-0.8452380895614624,-0.7577030658721924,-0.6351540684700012,-0.4950980246067047,-0.6876750588417053,-0.5651260614395142,-0.33753502368927,-0.5826330780982971,-0.42507001757621765,-0.7927170991897583,-0.6701680421829224,-0.8277310729026794,-0.7051820755004883,-0.6701680421829224,-0.9677870869636536,-0.6526610851287842,-0.7051820755004883],[0.06512605398893356,0.41526609659194946,0.27521008253097534,0.2401960790157318,-0.17997199296951294,-0.0049019609577953815,-0.42507001757621765,-1.0028011798858643,-1.1428571939468384,-0.7401960492134094,0.08263305574655533,-0.10994397848844528,0.7128851413726807,0.9929971694946289,1.605742335319519,1.4131652116775513,1.378151297569275,1.465686321258545,1.430672287940979,1.9558823108673096,1.6757702827453613,1.220588207244873,0.7654061913490295,-0.4950980246067047,-0.1449579894542694,-0.5651260614395142,-1.1778711080551147,-1.2829132080078125,-1.2829132080078125,-0.8277310729026794,0.06512605398893356,0.012605042196810246,-0.5126050710678101,-0.23249299824237823,-0.5476190447807312,-0.8977590799331665,-0.8102241158485413,-0.8102241158485413,-0.4425770342350006,-0.17997199296951294,-0.4600840210914612,-0.6526610851287842,-0.05742296949028969,-0.5301120281219482,-0.07492997497320175,-0.5301120281219482,-0.6176470518112183,-1.0903360843658447,-0.9152660965919495,-1.0028011798858643,-0.9502801299095154,-1.0028011798858643,-1.0903360843658447,-1.2128851413726807,-1.0378150939941406,-1.3004201650619507,-1.0203081369400024,-1.1603641510009766,-0.8452380895614624,-0.7577030658721924,-0.7226890921592712,-0.6001400351524353,-0.7401960492134094,-0.8452380895614624,-0.5126050710678101,-0.6526610851287842,-0.6526610851287842,-0.3025210201740265,-0.21498599648475647,-0.4425770342350006,-0.4600840210914612,-0.25,-0.4075630307197571,-0.28501400351524353,-0.3550420105457306,0.1001400575041771,-0.3900560140609741,-0.26750701665878296,-0.12745098769664764,-0.28501400351524353,-0.3025210201740265,-0.6351540684700012,-0.3025210201740265,-0.32002800703048706,-0.4425770342350006,-0.23249299824237823,-0.10994397848844528,-0.23249299824237823,-0.05742296949028969,0.25770309567451477,0.06512605398893356,-0.28501400351524353,-0.32002800703048706,0.08263305574655533,-0.02240896411240101,-0.02240896411240101,-0.0049019609577953815,-0.10994397848844528,-0.37254902720451355,-0.23249299824237823,-0.3550420105457306,0.030112044885754585,-0.16246499121189117,-0.10994397848844528,-0.21498599648475647,-0.5476190447807312,-0.47759103775024414,-0.9677870869636536,-0.6351540684700012,-0.5126050710678101,-0.5651260614395142,-0.4075630307197571,-0.12745098769664764,-0.33753502368927,-0.5301120281219482,-0.05742296949028969,-0.7226890921592712,-0.23249299824237823,-0.4075630307197571,-0.47759103775024414,-0.26750701665878296,-0.07492997497320175,-0.4600840210914612,-0.6001400351524353,-0.42507001757621765,-0.23249299824237823,-0.1974789947271347,-0.9327731132507324,-0.5826330780982971,-0.37254902720451355,-0.6526610851287842,-0.6526610851287842,-0.5126050710678101,-0.33753502368927,-0.6176470518112183,-0.6876750588417053,-0.5126050710678101,-0.8802521228790283,-0.7752100825309753,-0.5651260614395142,-0.7401960492134094,-0.4950980246067047,-0.47759103775024414,-0.7927170991897583,-0.4950980246067047,-0.7051820755004883,-0.42507001757621765,0.18767507374286652,-0.3900560140609741,-0.4600840210914612,-0.6001400351524353,-0.3025210201740265,-0.4950980246067047,-0.4600840210914612,-0.6876750588417053,-0.3900560140609741,-0.4950980246067047,-0.42507001757621765,-0.5826330780982971,-0.42507001757621765,-0.5651260614395142,-0.6001400351524353,-0.3900560140609741,-0.3550420105457306,-0.5301120281219482,-0.6176470518112183,-0.32002800703048706,-0.6701680421829224,-0.5126050710678101,-0.4950980246067047,-0.4075630307197571,-0.7401960492134094,-0.4950980246067047,-0.6876750588417053,-0.8277310729026794,-0.6001400351524353,-0.7226890921592712,-0.5826330780982971,-0.7752100825309753,-0.5826330780982971,-0.6176470518112183,-0.6876750588417053,-0.37254902720451355,-0.42507001757621765,-0.07492997497320175,-0.32002800703048706,-0.7401960492134094,-0.8452380895614624,-1.755602240562439,-1.720588207244873,1.465686321258545,2.0959384441375732,0.08263305574655533,2.4285714626312256,1.133053183555603,2.2009804248809814,2.043417453765869,-1.0728291273117065,-1.5280112028121948,-1.5105042457580566,-1.1078431606292725,-0.7927170991897583,-0.37254902720451355,-0.16246499121189117,-0.42507001757621765,-0.3900560140609741,-0.7401960492134094,-0.7226890921592712,-0.7226890921592712,-0.9152660965919495,-0.7577030658721924,-0.7226890921592712,-0.8277310729026794,-0.5826330780982971,-0.47759103775024414,-0.6001400351524353,-0.8102241158485413,-0.8277310729026794,-0.7752100825309753,-0.7401960492134094,-0.6351540684700012,-0.47759103775024414,-0.9327731132507324,-0.8452380895614624],[0.0476190485060215,0.18767507374286652,0.2927170991897583,0.11764705926179886,-0.0049019609577953815,-0.33753502368927,-0.6001400351524353,-0.7051820755004883,-1.0203081369400024,-0.7577030658721924,-0.3025210201740265,0.11764705926179886,-0.02240896411240101,0.6603641510009766,0.9229691624641418,1.395658254623413,1.8158262968063354,1.518207311630249,1.8858543634414673,2.1484594345092773,1.0280112028121948,1.045518159866333,0.8004201650619507,0.32773110270500183,0.1001400575041771,-0.9677870869636536,-1.1428571939468384,-0.8102241158485413,-0.7927170991897583,-0.8277310729026794,-0.23249299824237823,0.06512605398893356,-0.25,0.2401960790157318,-0.4600840210914612,-0.7401960492134094,-0.6526610851287842,-0.5826330780982971,-0.1449579894542694,-0.17997199296951294,-0.3025210201740265,-0.7577030658721924,-0.6351540684700012,-0.26750701665878296,-0.7927170991897583,-0.7927170991897583,-0.42507001757621765,-0.7401960492134094,-1.0028011798858643,-1.0028011798858643,-1.1078431606292725,-1.1253501176834106,-1.2128851413726807,-1.0378150939941406,-1.1603641510009766,-1.0378150939941406,-0.7051820755004883,-0.9502801299095154,-0.8802521228790283,-0.7226890921592712,-0.6876750588417053,-0.6351540684700012,-0.5651260614395142,-0.7051820755004883,-0.6876750588417053,-0.6176470518112183,-0.3900560140609741,-0.5826330780982971,-0.32002800703048706,-0.33753502368927,-0.37254902720451355,-0.25,-0.10994397848844528,-0.33753502368927,-0.17997199296951294,-0.03991596773266792,-0.28501400351524353,-0.3025210201740265,-0.1449579894542694,-0.42507001757621765,-0.37254902720451355,0.0476190485060215,-0.09243697673082352,0.012605042196810246,-0.25,-0.16246499121189117,-0.4425770342350006,-0.02240896411240101,-0.26750701665878296,-0.03991596773266792,0.17016807198524475,-0.10994397848844528,0.11764705926179886,-0.25,-0.09243697673082352,-0.4950980246067047,-0.05742296949028969,-0.23249299824237823,-0.02240896411240101,-0.32002800703048706,0.030112044885754585,-0.07492997497320175,-0.1974789947271347,-0.32002800703048706,-0.4600840210914612,-0.4950980246067047,-0.5476190447807312,-0.3900560140609741,-0.4425770342350006,-0.9152660965919495,-0.5826330780982971,-0.4950980246067047,-0.4600840210914612,-0.3025210201740265,-0.37254902720451355,-0.3900560140609741,-0.4425770342350006,-0.9152660965919495,-0.21498599648475647,-0.33753502368927,-0.17997199296951294,-0.7752100825309753,-0.1449579894542694,-0.8102241158485413,-0.6001400351524353,-0.4075630307197571,-0.4425770342350006,-0.5301120281219482,-0.37254902720451355,-0.5126050710678101,-0.28501400351524353,-0.1974789947271347,-0.21498599648475647,-0.21498599648475647,-0.6176470518112183,-0.7577030658721924,-0.47759103775024414,-0.6351540684700012,-0.32002800703048706,-0.42507001757621765,-0.6526610851287842,-0.4950980246067047,-0.6701680421829224,-0.7226890921592712,-0.21498599648475647,-0.37254902720451355,0.15266107022762299,-0.0049019609577953815,-0.3550420105457306,-0.5301120281219482,-0.4075630307197571,-0.5826330780982971,-0.5651260614395142,-0.4950980246067047,-0.4600840210914612,-0.32002800703048706,-0.6701680421829224,-0.5651260614395142,-0.4075630307197571,-0.5126050710678101,-0.33753502368927,-0.5826330780982971,-0.5126050710678101,-0.3550420105457306,-0.4600840210914612,-0.7752100825309753,-0.33753502368927,-0.5651260614395142,-0.42507001757621765,-0.5826330780982971,-0.8277310729026794,-0.6701680421829224,-0.4600840210914612,-0.6351540684700012,-0.7226890921592712,-0.7577030658721924,-0.6526610851287842,-0.8102241158485413,-0.5476190447807312,-0.7226890921592712,-0.3900560140609741,-0.26750701665878296,-0.28501400351524353,0.06512605398893356,-0.1449579894542694,-0.23249299824237823,-0.8277310729026794,-0.8277310729026794,-1.5105042457580566,-1.7030812501907349,-0.6526610851287842,2.1309523582458496,2.1309523582458496,-0.0049019609577953815,0.32773110270500183,1.8858543634414673,-1.457983136177063,-1.0553221702575684,-1.4404761791229248,-1.3704482316970825,-0.9502801299095154,-0.9677870869636536,-0.17997199296951294,-0.09243697673082352,-0.33753502368927,-0.6876750588417053,-0.8452380895614624,-0.9327731132507324,-0.9327731132507324,-0.9152660965919495,-0.7752100825309753,-0.8977590799331665,-0.5826330780982971,-0.6351540684700012,-0.7401960492134094,-0.5476190447807312,-0.6001400351524353,-0.6701680421829224,-0.4600840210914612,-0.8802521228790283,-0.6526610851287842,-0.33753502368927,-0.7401960492134094,-1.1253501176834106],[0.06512605398893356,-0.07492997497320175,0.06512605398893356,0.06512605398893356,-0.07492997497320175,0.0476190485060215,-0.23249299824237823,-0.8452380895614624,-1.2829132080078125,-0.8627451062202454,-0.5126050710678101,0.32773110270500183,0.6603641510009766,0.8004201650619507,1.080532193183899,1.5357142686843872,1.5707283020019531,1.7457983493804932,1.7983193397521973,1.220588207244873,1.2380952835083008,0.7654061913490295,0.9054622054100037,0.8179271817207336,0.2401960790157318,-0.5476190447807312,-1.1428571939468384,-0.6876750588417053,-0.7051820755004883,-0.8802521228790283,-0.23249299824237823,-0.02240896411240101,-0.07492997497320175,-0.12745098769664764,-0.3550420105457306,-0.3025210201740265,-0.42507001757621765,-0.33753502368927,-0.5826330780982971,-0.3025210201740265,-0.4950980246067047,-0.7051820755004883,-0.9677870869636536,-1.1428571939468384,-1.0378150939941406,-1.1253501176834106,-1.0203081369400024,-0.9152660965919495,-1.2654061317443848,-1.1253501176834106,-1.0028011798858643,-0.8627451062202454,-0.8452380895614624,-0.8977590799331665,-0.9152660965919495,-0.6526610851287842,-0.8452380895614624,-0.7226890921592712,-0.6176470518112183,-0.7051820755004883,-0.7577030658721924,-0.4075630307197571,-0.42507001757621765,-0.3900560140609741,-0.26750701665878296,-0.33753502368927,-0.21498599648475647,-0.4425770342350006,-0.42507001757621765,-0.12745098769664764,-0.25,-0.3900560140609741,0.17016807198524475,-0.07492997497320175,-0.4425770342350006,-0.21498599648475647,-0.33753502368927,-0.07492997497320175,-0.0049019609577953815,-0.33753502368927,-0.23249299824237823,-0.17997199296951294,-0.4075630307197571,-0.3550420105457306,-0.16246499121189117,-0.42507001757621765,-0.37254902720451355,-0.3550420105457306,-0.1974789947271347,-0.03991596773266792,0.06512605398893356,-0.1974789947271347,-0.12745098769664764,-0.4075630307197571,0.1001400575041771,0.06512605398893356,0.17016807198524475,-0.0049019609577953815,-0.09243697673082352,-0.16246499121189117,0.012605042196810246,-0.1449579894542694,0.08263305574655533,0.08263305574655533,-0.5126050710678101,-0.6176470518112183,-0.47759103775024414,-0.8102241158485413,-0.3900560140609741,-0.6701680421829224,-0.09243697673082352,-0.1449579894542694,-0.28501400351524353,-0.32002800703048706,-0.4075630307197571,-0.33753502368927,-0.32002800703048706,-0.5476190447807312,-0.4950980246067047,-0.37254902720451355,-0.28501400351524353,-0.6001400351524353,-0.5826330780982971,-0.4425770342350006,-0.3900560140609741,-0.10994397848844528,-0.3550420105457306,-0.26750701665878296,-0.4425770342350006,-0.6001400351524353,-0.4075630307197571,-0.8452380895614624,-0.6176470518112183,-0.4075630307197571,-0.6351540684700012,-0.7226890921592712,-0.5476190447807312,-0.3900560140609741,-0.8102241158485413,-0.3025210201740265,-0.47759103775024414,-0.4075630307197571,-0.3900560140609741,-0.33753502368927,-0.7401960492134094,-0.1449579894542694,0.08263305574655533,-0.4600840210914612,-0.4950980246067047,-0.6526610851287842,-0.42507001757621765,-0.6001400351524353,-0.3025210201740265,-0.5301120281219482,-0.6526610851287842,-0.26750701665878296,-0.47759103775024414,-0.5651260614395142,-0.33753502368927,-0.6351540684700012,-0.6526610851287842,-0.37254902720451355,-0.33753502368927,-0.28501400351524353,-0.3025210201740265,-0.7226890921592712,-0.6351540684700012,-0.4075630307197571,-0.4600840210914612,-0.7226890921592712,-0.7401960492134094,-0.5126050710678101,-0.7051820755004883,-0.8627451062202454,-0.5126050710678101,-0.6001400351524353,-0.6351540684700012,-0.6701680421829224,-0.5476190447807312,-0.3550420105457306,-0.28501400351524353,-0.3025210201740265,-0.12745098769664764,-0.1449579894542694,-0.32002800703048706,-0.25,-0.7577030658721924,-0.8277310729026794,-1.492997169494629,-1.4404761791229248,-1.4054621458053589,-1.4229692220687866,-0.4075630307197571,-0.5126050710678101,-1.6855741739273071,-1.457983136177063,-1.2128851413726807,-1.2303920984268188,-1.4754902124404907,-0.9852941036224365,-1.2128851413726807,-0.6526610851287842,-0.3025210201740265,-0.07492997497320175,-0.05742296949028969,-0.3900560140609741,-0.6701680421829224,-0.7752100825309753,-1.0903360843658447,-0.9327731132507324,-0.6701680421829224,-0.8627451062202454,-0.4425770342350006,-0.5476190447807312,-0.6351540684700012,-0.5476190447807312,-0.5476190447807312,-0.4950980246067047,-0.7051820755004883,-0.4950980246067047,-0.7577030658721924,-0.9152660965919495,-0.6876750588417053,-0.7927170991897583],[-0.16246499121189117,-0.07492997497320175,-0.1449579894542694,0.11764705926179886,0.012605042196810246,0.06512605398893356,-0.28501400351524353,-0.5476190447807312,-0.9677870869636536,-1.0728291273117065,-0.37254902720451355,0.25770309567451477,0.41526609659194946,0.5028011202812195,0.6428571343421936,0.4327731132507324,1.5357142686843872,0.5903361439704895,1.2906162738800049,1.378151297569275,1.7633053064346313,0.5553221106529236,0.7829131484031677,0.9054622054100037,0.2927170991897583,-0.09243697673082352,-1.0553221702575684,-0.8802521228790283,-1.0203081369400024,-0.7051820755004883,-0.1974789947271347,-0.09243697673082352,0.11764705926179886,-0.3900560140609741,-0.42507001757621765,-0.5651260614395142,-0.7051820755004883,-0.5826330780982971,-0.8102241158485413,-0.5826330780982971,-0.8452380895614624,-0.8802521228790283,-0.8627451062202454,-0.8977590799331665,-0.9502801299095154,-1.0728291273117065,-1.0728291273117065,-0.9327731132507324,-1.0378150939941406,-1.1253501176834106,-0.8452380895614624,-0.9327731132507324,-0.8452380895614624,-0.8977590799331665,-0.8277310729026794,-0.8627451062202454,-0.5476190447807312,-0.6351540684700012,-0.8102241158485413,-0.6701680421829224,-0.6526610851287842,-0.42507001757621765,-0.8277310729026794,-0.5651260614395142,-0.3025210201740265,-0.3900560140609741,-0.0049019609577953815,-0.23249299824237823,-0.25,-0.26750701665878296,-0.03991596773266792,-0.23249299824237823,0.1001400575041771,-0.12745098769664764,-0.3025210201740265,-0.32002800703048706,-0.21498599648475647,-0.26750701665878296,-0.42507001757621765,-0.5126050710678101,-0.32002800703048706,-0.17997199296951294,-0.21498599648475647,-0.3025210201740265,-0.3900560140609741,-0.16246499121189117,-0.16246499121189117,-0.1449579894542694,-0.10994397848844528,-0.33753502368927,-0.02240896411240101,0.030112044885754585,-0.03991596773266792,-0.17997199296951294,-0.23249299824237823,-0.10994397848844528,0.0476190485060215,-0.0049019609577953815,-0.42507001757621765,-0.17997199296951294,0.030112044885754585,-0.47759103775024414,-0.26750701665878296,-0.3900560140609741,-0.4425770342350006,-0.7051820755004883,-0.37254902720451355,-0.6701680421829224,-0.6701680421829224,-0.7927170991897583,-0.5126050710678101,-0.3550420105457306,-0.28501400351524353,-0.0049019609577953815,-0.4950980246067047,-0.6001400351524353,-0.42507001757621765,-0.5826330780982971,-0.42507001757621765,-0.5826330780982971,-0.6701680421829224,-0.33753502368927,-0.23249299824237823,-0.10994397848844528,-0.0049019609577953815,-0.09243697673082352,-0.4075630307197571,-0.6876750588417053,-0.26750701665878296,-0.4425770342350006,-0.28501400351524353,-0.02240896411240101,-0.28501400351524353,-0.25,-0.6876750588417053,-0.8102241158485413,-0.6876750588417053,-0.5826330780982971,-0.5301120281219482,-0.1974789947271347,-0.28501400351524353,-0.8452380895614624,-0.7927170991897583,-0.8102241158485413,-0.32002800703048706,-0.0049019609577953815,-0.21498599648475647,-0.6176470518112183,-0.07492997497320175,-0.37254902720451355,-0.5301120281219482,-0.4600840210914612,-0.28501400351524353,-0.3550420105457306,-0.6001400351524353,-0.25,-0.4600840210914612,-0.7401960492134094,-0.33753502368927,-0.6351540684700012,-0.4950980246067047,-0.4075630307197571,-0.16246499121189117,-0.23249299824237823,-0.4075630307197571,-0.1974789947271347,-0.28501400351524353,-0.47759103775024414,-0.32002800703048706,-0.5826330780982971,-0.5651260614395142,-0.4425770342350006,-0.7226890921592712,-0.5126050710678101,-0.6526610851287842,-0.42507001757621765,-0.5476190447807312,-0.37254902720451355,-0.5126050710678101,-0.1974789947271347,-0.16246499121189117,-0.02240896411240101,0.11764705926179886,-0.09243697673082352,-0.4950980246067047,-0.4950980246067047,-0.9502801299095154,-1.1078431606292725,-1.4229692220687866,-1.492997169494629,-1.492997169494629,-0.9327731132507324,-0.3550420105457306,-0.4950980246067047,-1.3004201650619507,-1.1603641510009766,-1.2303920984268188,-1.4229692220687866,-1.3529411554336548,-1.2128851413726807,-0.8277310729026794,-0.7226890921592712,-0.21498599648475647,-0.25,0.06512605398893356,0.1001400575041771,-0.4075630307197571,-0.7051820755004883,-0.8627451062202454,-0.7927170991897583,-0.5476190447807312,-0.6876750588417053,-0.6876750588417053,-0.7401960492134094,-0.42507001757621765,-0.3900560140609741,-0.5476190447807312,-0.7577030658721924,-0.47759103775024414,-0.4950980246067047,-0.37254902720451355,-0.6526610851287842,-0.6526610851287842,-0.5476190447807312],[-0.02240896411240101,-0.16246499121189117,-0.09243697673082352,-0.09243697673082352,-0.23249299824237823,-0.02240896411240101,-0.17997199296951294,-0.6001400351524353,-0.8977590799331665,-0.6876750588417053,-0.4950980246067047,-0.6001400351524353,0.11764705926179886,1.1155462265014648,0.9054622054100037,0.6603641510009766,-0.25,0.2927170991897583,0.4327731132507324,1.3256303071975708,1.343137264251709,0.22268907725811005,0.6253501176834106,0.6778711676597595,-0.8452380895614624,-1.1428571939468384,-1.3354341983795166,-1.1253501176834106,-1.0728291273117065,-1.2128851413726807,-0.8452380895614624,-0.8452380895614624,-0.4075630307197571,-0.7051820755004883,-0.5651260614395142,-0.6701680421829224,-0.8977590799331665,-1.0378150939941406,-0.9677870869636536,-0.8627451062202454,-1.0553221702575684,-1.4404761791229248,-1.0028011798858643,-0.8102241158485413,-0.7401960492134094,-0.8452380895614624,-0.7927170991897583,-0.8977590799331665,-1.0903360843658447,-0.8627451062202454,-1.0028011798858643,-0.4425770342350006,-0.4950980246067047,-0.5826330780982971,-0.4075630307197571,-0.5126050710678101,-0.8627451062202454,-0.6701680421829224,-0.4075630307197571,-0.4425770342350006,-0.3900560140609741,-0.32002800703048706,-0.5126050710678101,-0.37254902720451355,-0.6176470518112183,-0.42507001757621765,0.11764705926179886,-0.4425770342350006,-0.28501400351524353,-0.1449579894542694,-0.21498599648475647,-0.4075630307197571,-0.03991596773266792,-0.32002800703048706,0.06512605398893356,-0.4075630307197571,-0.42507001757621765,-0.09243697673082352,-0.09243697673082352,-0.17997199296951294,-0.33753502368927,0.13515406847000122,-0.1974789947271347,-0.5651260614395142,-0.6526610851287842,-0.02240896411240101,-0.33753502368927,-0.23249299824237823,0.012605042196810246,-0.37254902720451355,0.1001400575041771,-0.12745098769664764,-0.1449579894542694,-0.26750701665878296,-0.1449579894542694,-0.37254902720451355,-0.3550420105457306,-0.1449579894542694,-0.02240896411240101,-0.5126050710678101,-0.37254902720451355,-0.28501400351524353,-0.23249299824237823,-0.26750701665878296,-0.8452380895614624,-0.8802521228790283,-0.3900560140609741,-0.42507001757621765,-0.42507001757621765,-0.5126050710678101,-0.4950980246067047,-0.3900560140609741,-0.4600840210914612,-0.4950980246067047,-0.6351540684700012,-0.25,-0.28501400351524353,-0.4950980246067047,-0.12745098769664764,-0.25,-0.3025210201740265,-0.37254902720451355,-0.25,0.0476190485060215,-0.1974789947271347,-0.42507001757621765,-0.42507001757621765,-0.5301120281219482,-0.5126050710678101,-0.4950980246067047,-0.6176470518112183,-0.4600840210914612,-0.37254902720451355,-0.9852941036224365,-1.0028011798858643,-0.5651260614395142,-0.3900560140609741,-0.5476190447807312,-0.4600840210914612,-0.26750701665878296,-0.4075630307197571,-0.4950980246067047,-0.25,-0.21498599648475647,-0.7226890921592712,-0.33753502368927,-0.23249299824237823,-0.17997199296951294,-0.4425770342350006,-0.3550420105457306,-0.12745098769664764,-0.3900560140609741,-0.1974789947271347,-0.5126050710678101,-0.4950980246067047,-0.3025210201740265,-0.4425770342350006,-0.3550420105457306,-0.5126050710678101,-0.42507001757621765,-0.7051820755004883,-0.8277310729026794,-0.47759103775024414,-0.4075630307197571,-0.4075630307197571,-0.5301120281219482,-0.5476190447807312,-0.5126050710678101,-0.6701680421829224,-0.5826330780982971,-0.7577030658721924,-0.4425770342350006,-0.5826330780982971,-0.7401960492134094,-0.4075630307197571,-0.8802521228790283,-0.23249299824237823,-0.07492997497320175,-0.25,-0.23249299824237823,-0.07492997497320175,-0.09243697673082352,-0.32002800703048706,-0.4075630307197571,-0.5476190447807312,-0.8627451062202454,-0.7577030658721924,-1.2128851413726807,-1.4229692220687866,-1.5980392694473267,-1.0203081369400024,-0.7927170991897583,-0.42507001757621765,-0.6001400351524353,-1.492997169494629,-1.1253501176834106,-1.2654061317443848,-1.0553221702575684,-1.0903360843658447,-1.1953781843185425,-1.0203081369400024,-0.6701680421829224,-0.4075630307197571,-0.25,-0.1974789947271347,-0.21498599648475647,-0.47759103775024414,-0.33753502368927,-0.6876750588417053,-0.8627451062202454,-1.1603641510009766,-0.7401960492134094,-0.7051820755004883,-0.7401960492134094,-0.3550420105457306,-0.25,-0.47759103775024414,-0.6176470518112183,-0.5301120281219482,-0.6701680421829224,-0.4950980246067047,-0.47759103775024414,-0.6001400351524353,-0.33753502368927],[-0.1449579894542694,-0.3550420105457306,0.18767507374286652,-0.23249299824237823,-0.02240896411240101,0.27521008253097534,0.17016807198524475,-0.33753502368927,-0.5476190447807312,-0.7226890921592712,-0.9327731132507324,-0.6526610851287842,0.36274510622024536,0.9229691624641418,0.8704481720924377,0.8529411554336548,1.0630252361297607,1.308123230934143,1.220588207244873,1.6232492923736572,1.395658254623413,0.7829131484031677,0.7128851413726807,0.41526609659194946,-0.8452380895614624,-1.1778711080551147,-1.3354341983795166,-1.3704482316970825,-1.3879551887512207,-1.0203081369400024,-0.9327731132507324,-1.0553221702575684,-0.8102241158485413,-0.6701680421829224,-0.9677870869636536,-0.9152660965919495,-1.0553221702575684,-0.9502801299095154,-1.0903360843658447,-0.9852941036224365,-1.1603641510009766,-0.9152660965919495,-1.0028011798858643,-0.7927170991897583,-0.8452380895614624,-1.1428571939468384,-0.6176470518112183,-0.42507001757621765,-0.8102241158485413,-0.4425770342350006,-0.6176470518112183,-0.7577030658721924,-0.5126050710678101,-0.8802521228790283,-0.5651260614395142,-0.6176470518112183,-0.5476190447807312,-0.17997199296951294,-0.25,-0.05742296949028969,-0.37254902720451355,-0.32002800703048706,-0.4075630307197571,-0.16246499121189117,-0.25,-0.6701680421829224,-0.17997199296951294,-0.4425770342350006,-0.10994397848844528,-0.26750701665878296,-0.12745098769664764,-0.37254902720451355,-0.17997199296951294,-0.05742296949028969,-0.16246499121189117,-0.28501400351524353,-0.42507001757621765,-0.17997199296951294,-0.16246499121189117,-0.16246499121189117,-0.32002800703048706,-0.05742296949028969,-0.17997199296951294,-0.37254902720451355,-0.16246499121189117,-0.32002800703048706,-0.28501400351524353,-0.1449579894542694,-0.07492997497320175,-0.03991596773266792,0.11764705926179886,-0.1449579894542694,0.08263305574655533,0.06512605398893356,-0.05742296949028969,-0.1974789947271347,-0.05742296949028969,-0.07492997497320175,-0.05742296949028969,-0.4425770342350006,-0.17997199296951294,-0.16246499121189117,-0.5126050710678101,-0.7401960492134094,-0.7051820755004883,-0.7226890921592712,-0.6351540684700012,-0.47759103775024414,-0.42507001757621765,-0.5651260614395142,-0.25,-0.1449579894542694,-0.23249299824237823,-0.3025210201740265,-0.6701680421829224,-0.42507001757621765,-0.12745098769664764,-0.33753502368927,-0.6876750588417053,-0.6876750588417053,-0.4425770342350006,-0.09243697673082352,-0.5826330780982971,-0.21498599648475647,-0.4600840210914612,-0.10994397848844528,-0.37254902720451355,-0.7927170991897583,-0.7927170991897583,-0.33753502368927,-0.32002800703048706,-0.26750701665878296,-0.0049019609577953815,-0.5301120281219482,-0.42507001757621765,-0.5826330780982971,-0.6876750588417053,-1.0203081369400024,-0.6526610851287842,-0.6876750588417053,-0.5476190447807312,-0.32002800703048706,-0.32002800703048706,-0.33753502368927,-0.10994397848844528,-0.3550420105457306,-0.4950980246067047,-0.42507001757621765,-0.32002800703048706,-0.28501400351524353,-0.17997199296951294,-0.21498599648475647,-0.42507001757621765,-0.3025210201740265,-0.1974789947271347,-0.3900560140609741,-0.33753502368927,-0.6176470518112183,-0.42507001757621765,-0.33753502368927,-0.4950980246067047,-0.37254902720451355,-0.4075630307197571,-0.4600840210914612,-0.3550420105457306,-0.8102241158485413,-0.5476190447807312,-0.47759103775024414,-0.6876750588417053,-0.7226890921592712,-0.6001400351524353,-0.32002800703048706,-0.4600840210914612,-0.5651260614395142,-0.6526610851287842,-0.4425770342350006,-0.5301120281219482,-0.3900560140609741,-0.02240896411240101,-0.33753502368927,-0.07492997497320175,-0.16246499121189117,-0.37254902720451355,-0.4075630307197571,-0.4075630307197571,-0.8802521228790283,-0.9152660965919495,-1.3529411554336548,-1.4404761791229248,-1.4754902124404907,-1.1778711080551147,-0.8977590799331665,-0.25,-0.5301120281219482,-1.4229692220687866,-1.2478991746902466,-1.0203081369400024,-0.9152660965919495,-1.0028011798858643,-0.9502801299095154,-1.2478991746902466,-0.4425770342350006,-0.37254902720451355,-0.37254902720451355,-0.26750701665878296,-0.10994397848844528,-0.23249299824237823,-0.26750701665878296,-0.4950980246067047,-1.0028011798858643,-0.9677870869636536,-1.0378150939941406,-0.8102241158485413,-0.7226890921592712,-0.7752100825309753,-0.6351540684700012,-0.5126050710678101,-0.5476190447807312,-0.5651260614395142,-0.6001400351524353,-0.6176470518112183,-0.42507001757621765,-0.7226890921592712,-0.5651260614395142],[-0.09243697673082352,-0.12745098769664764,-0.05742296949028969,-0.05742296949028969,-0.03991596773266792,-0.6701680421829224,-0.09243697673082352,-0.33753502368927,-0.4075630307197571,-0.26750701665878296,-0.5301120281219482,0.1001400575041771,0.41526609659194946,1.1155462265014648,0.8004201650619507,0.8354341983795166,1.430672287940979,1.6407562494277954,1.430672287940979,1.6757702827453613,1.2030812501907349,0.7128851413726807,0.4852941036224365,0.25770309567451477,-0.6876750588417053,-1.965686321258545,-1.4054621458053589,-1.3529411554336548,-1.3004201650619507,-1.0728291273117065,-1.0553221702575684,-1.0203081369400024,-0.8802521228790283,-1.1603641510009766,-0.9502801299095154,-0.9677870869636536,-0.9502801299095154,-1.1253501176834106,-0.8802521228790283,-0.9327731132507324,-0.9852941036224365,-0.9152660965919495,-0.9852941036224365,-0.6001400351524353,-0.9152660965919495,-0.6701680421829224,-0.6001400351524353,-0.47759103775024414,-0.6176470518112183,-0.4950980246067047,-0.7051820755004883,-0.32002800703048706,-0.5301120281219482,-0.47759103775024414,-0.33753502368927,-0.37254902720451355,-0.3550420105457306,-0.3025210201740265,-0.1974789947271347,-0.05742296949028969,-0.21498599648475647,-0.3550420105457306,-0.28501400351524353,-0.32002800703048706,-0.28501400351524353,-0.05742296949028969,-0.07492997497320175,-0.4600840210914612,-0.25,-0.17997199296951294,-0.28501400351524353,-0.32002800703048706,-0.0049019609577953815,0.030112044885754585,-0.37254902720451355,-0.4425770342350006,-0.28501400351524353,-0.21498599648475647,0.030112044885754585,-0.3550420105457306,-0.3900560140609741,-0.4075630307197571,-0.10994397848844528,-0.6526610851287842,-0.3550420105457306,-0.7927170991897583,-0.03991596773266792,-0.09243697673082352,-0.4075630307197571,0.18767507374286652,0.012605042196810246,-0.10994397848844528,-0.07492997497320175,-0.1974789947271347,0.17016807198524475,-0.23249299824237823,-0.02240896411240101,0.030112044885754585,0.15266107022762299,-0.6876750588417053,-0.6001400351524353,-0.33753502368927,-0.16246499121189117,-0.5126050710678101,-0.5651260614395142,-0.6001400351524353,-0.42507001757621765,-0.4950980246067047,-0.6701680421829224,-0.7401960492134094,-0.5826330780982971,-0.47759103775024414,-0.37254902720451355,-0.26750701665878296,-0.32002800703048706,-0.6351540684700012,-0.3900560140609741,-0.5476190447807312,-0.07492997497320175,-0.12745098769664764,-0.09243697673082352,-0.6176470518112183,-0.5126050710678101,-0.17997199296951294,-0.42507001757621765,-0.32002800703048706,-0.1974789947271347,-0.21498599648475647,-0.42507001757621765,-0.6001400351524353,-0.3025210201740265,-0.4600840210914612,-0.25,-0.37254902720451355,-0.6876750588417053,-0.42507001757621765,-0.21498599648475647,-0.28501400351524353,-0.25,-0.6526610851287842,-0.5126050710678101,-0.6701680421829224,-0.09243697673082352,-0.3550420105457306,-0.02240896411240101,-0.3550420105457306,-0.4075630307197571,-0.32002800703048706,-0.25,-0.42507001757621765,-0.3550420105457306,-0.32002800703048706,-0.5476190447807312,-0.32002800703048706,-0.42507001757621765,-0.32002800703048706,-0.5826330780982971,-0.17997199296951294,-0.42507001757621765,-0.33753502368927,-0.42507001757621765,-0.28501400351524353,-0.1974789947271347,-0.26750701665878296,-0.4950980246067047,-0.6001400351524353,-0.37254902720451355,-0.4075630307197571,-0.5826330780982971,-0.5126050710678101,-0.5301120281219482,-0.4425770342350006,-0.3550420105457306,-0.33753502368927,-0.32002800703048706,-0.3900560140609741,-0.32002800703048706,-0.12745098769664764,-0.3900560140609741,-0.16246499121189117,-0.05742296949028969,-0.3025210201740265,-0.47759103775024414,-0.3025210201740265,-0.5651260614395142,-0.8102241158485413,-1.0028011798858643,-1.1428571939468384,-1.2303920984268188,-1.3354341983795166,-0.9677870869636536,-0.42507001757621765,-0.3900560140609741,-0.8277310729026794,-1.492997169494629,-1.2829132080078125,-1.0903360843658447,-1.0553221702575684,-0.8277310729026794,-1.1428571939468384,-1.2654061317443848,-1.1078431606292725,-0.8802521228790283,-0.28501400351524353,-0.4600840210914612,-0.03991596773266792,0.030112044885754585,-0.32002800703048706,-0.6351540684700012,-0.6701680421829224,-0.9852941036224365,-0.9677870869636536,-0.6351540684700012,-0.7577030658721924,-0.7401960492134094,-0.5826330780982971,-0.6701680421829224,-0.5476190447807312,-0.6176470518112183,-0.4950980246067047,-0.5651260614395142,-0.5476190447807312,-0.4600840210914612,-0.7051820755004883],[0.08263305574655533,-0.33753502368927,0.0476190485060215,-0.32002800703048706,0.012605042196810246,-0.25,0.06512605398893356,-0.0049019609577953815,-0.7051820755004883,-0.37254902720451355,-0.5476190447807312,-0.33753502368927,0.3977591097354889,1.1855741739273071,1.080532193183899,1.2906162738800049,1.9033613204956055,-0.12745098769664764,1.045518159866333,0.27521008253097534,0.8529411554336548,0.4327731132507324,0.4852941036224365,-0.09243697673082352,-1.1953781843185425,-1.4404761791229248,-1.6155462265014648,-1.1078431606292725,-1.1253501176834106,-1.2654061317443848,-1.2128851413726807,-1.0553221702575684,-1.2303920984268188,-1.0903360843658447,-0.9327731132507324,-0.8627451062202454,-1.0728291273117065,-0.9852941036224365,-0.9677870869636536,-0.8102241158485413,-0.8977590799331665,-0.9677870869636536,-0.8102241158485413,-0.5826330780982971,-0.3900560140609741,-0.4075630307197571,-0.5826330780982971,-0.4600840210914612,-0.1974789947271347,-0.37254902720451355,-0.17997199296951294,-0.4075630307197571,-0.37254902720451355,-0.32002800703048706,-0.28501400351524353,-0.47759103775024414,-0.3550420105457306,-0.5301120281219482,-0.47759103775024414,-0.25,-0.21498599648475647,-0.1449579894542694,-0.05742296949028969,-0.5651260614395142,-0.47759103775024414,-0.1449579894542694,-0.3025210201740265,-0.16246499121189117,-0.47759103775024414,-0.05742296949028969,-0.0049019609577953815,-0.09243697673082352,0.17016807198524475,0.2401960790157318,-0.17997199296951294,-0.26750701665878296,-0.33753502368927,-0.12745098769664764,-0.21498599648475647,-0.4600840210914612,-0.28501400351524353,-0.26750701665878296,-0.23249299824237823,-0.25,-0.5126050710678101,-0.23249299824237823,-0.42507001757621765,-0.1449579894542694,-0.21498599648475647,0.3452380895614624,-0.21498599648475647,0.15266107022762299,0.0476190485060215,0.17016807198524475,-0.02240896411240101,0.15266107022762299,0.012605042196810246,-0.17997199296951294,-0.09243697673082352,-0.7226890921592712,-0.6351540684700012,-0.02240896411240101,-0.25,-0.47759103775024414,-0.6351540684700012,-0.5826330780982971,-0.4425770342350006,-0.47759103775024414,-0.26750701665878296,-0.42507001757621765,-0.4600840210914612,-0.3550420105457306,-0.37254902720451355,-0.4425770342350006,-0.4600840210914612,-0.12745098769664764,-0.1449579894542694,-0.3025210201740265,-0.6176470518112183,-0.3025210201740265,-0.3025210201740265,-0.1974789947271347,-0.1974789947271347,-0.33753502368927,-0.26750701665878296,-0.0049019609577953815,-0.4075630307197571,-0.3550420105457306,-0.4600840210914612,-0.47759103775024414,-0.33753502368927,-0.28501400351524353,-0.4600840210914612,-0.8102241158485413,-0.6526610851287842,-0.8802521228790283,-0.6701680421829224,-0.3550420105457306,-0.25,-0.5476190447807312,-0.42507001757621765,-0.33753502368927,-0.37254902720451355,-0.6351540684700012,-0.02240896411240101,-0.23249299824237823,-0.3550420105457306,-0.28501400351524353,-0.4950980246067047,-0.5476190447807312,-0.7051820755004883,-0.33753502368927,-0.4075630307197571,-0.47759103775024414,-0.6176470518112183,-0.4600840210914612,-0.4075630307197571,-0.3900560140609741,-0.4425770342350006,-0.5301120281219482,-0.3025210201740265,-0.3550420105457306,-0.32002800703048706,-0.28501400351524353,-0.4950980246067047,-0.32002800703048706,-0.4425770342350006,-0.3900560140609741,-0.33753502368927,-0.4950980246067047,-0.28501400351524353,-0.3025210201740265,-0.3025210201740265,-0.4425770342350006,-0.5476190447807312,-0.12745098769664764,-0.23249299824237823,-0.12745098769664764,-0.4075630307197571,-0.3025210201740265,-0.1449579894542694,-0.23249299824237823,-0.33753502368927,-0.7401960492134094,-0.8452380895614624,-0.8277310729026794,-0.7226890921592712,-1.2128851413726807,-1.3879551887512207,-1.3004201650619507,-0.7401960492134094,-0.16246499121189117,-0.3900560140609741,-0.9327731132507324,-1.2128851413726807,-1.4404761791229248,-0.9852941036224365,-0.7401960492134094,-0.9502801299095154,-1.3004201650619507,-1.2654061317443848,-1.2478991746902466,-0.8277310729026794,-0.17997199296951294,-0.4075630307197571,-0.1974789947271347,-0.0049019609577953815,-0.12745098769664764,-0.4600840210914612,-0.7226890921592712,-0.7752100825309753,-0.8802521228790283,-0.9852941036224365,-0.8452380895614624,-0.5126050710678101,-0.7927170991897583,-0.6351540684700012,-0.5301120281219482,-0.6351540684700012,-0.5651260614395142,-0.5476190447807312,-0.4600840210914612,-0.42507001757621765,-0.42507001757621765],[-0.02240896411240101,-0.02240896411240101,0.08263305574655533,-0.16246499121189117,-0.02240896411240101,-0.03991596773266792,0.11764705926179886,-0.32002800703048706,-0.33753502368927,-0.5651260614395142,-0.7226890921592712,-0.5301120281219482,0.5728291273117065,1.465686321258545,0.8704481720924377,0.9054622054100037,0.41526609659194946,-0.5651260614395142,-0.4075630307197571,-0.03991596773266792,0.2401960790157318,0.2927170991897583,0.5728291273117065,-0.6351540684700012,-1.7030812501907349,-1.457983136177063,-1.3879551887512207,-1.3879551887512207,-1.3354341983795166,-0.9852941036224365,-1.0728291273117065,-0.8277310729026794,-0.9502801299095154,-1.2128851413726807,-1.0378150939941406,-1.0203081369400024,-0.9327731132507324,-0.9677870869636536,-0.8277310729026794,-0.6876750588417053,-0.8627451062202454,-0.7051820755004883,-0.8627451062202454,-0.7577030658721924,-0.7226890921592712,-0.6876750588417053,-0.23249299824237823,0.06512605398893356,-0.3900560140609741,-0.23249299824237823,-0.12745098769664764,-0.6176470518112183,-0.1974789947271347,-0.5301120281219482,-0.32002800703048706,-0.10994397848844528,-0.1449579894542694,-0.3900560140609741,0.0476190485060215,-0.0049019609577953815,-0.07492997497320175,-0.07492997497320175,-0.4425770342350006,-0.47759103775024414,-0.37254902720451355,-0.47759103775024414,-0.17997199296951294,-0.09243697673082352,-0.33753502368927,-0.17997199296951294,-0.07492997497320175,-0.02240896411240101,0.32773110270500183,0.012605042196810246,0.17016807198524475,-0.5476190447807312,-0.05742296949028969,-0.3550420105457306,-0.4600840210914612,-0.4950980246067047,-0.17997199296951294,-0.5476190447807312,-0.07492997497320175,-0.23249299824237823,-0.17997199296951294,-0.16246499121189117,-0.28501400351524353,-0.5476190447807312,-0.07492997497320175,-0.03991596773266792,0.41526609659194946,-0.10994397848844528,-0.02240896411240101,-0.17997199296951294,-0.05742296949028969,-0.05742296949028969,-0.12745098769664764,-0.6351540684700012,-0.6876750588417053,-0.7927170991897583,-0.21498599648475647,-0.26750701665878296,-0.1449579894542694,-0.3900560140609741,-0.6001400351524353,-0.6176470518112183,-0.3900560140609741,-0.37254902720451355,-0.4075630307197571,-0.32002800703048706,-0.4950980246067047,-0.7927170991897583,-0.3900560140609741,-0.02240896411240101,-0.25,-0.28501400351524353,-0.10994397848844528,-0.09243697673082352,-0.09243697673082352,-0.23249299824237823,-0.3025210201740265,-0.23249299824237823,-0.09243697673082352,-0.32002800703048706,-0.28501400351524353,-0.42507001757621765,-0.10994397848844528,-0.4600840210914612,-0.10994397848844528,-0.6351540684700012,-0.4950980246067047,-0.4425770342350006,-0.12745098769664764,-0.6001400351524353,-0.3900560140609741,-0.6526610851287842,-0.3900560140609741,-0.7401960492134094,-0.6526610851287842,-0.4950980246067047,-0.6176470518112183,-0.5126050710678101,-0.4950980246067047,-0.33753502368927,-0.5301120281219482,-0.23249299824237823,-0.47759103775024414,-0.5651260614395142,-0.28501400351524353,-0.6876750588417053,-0.6701680421829224,-0.28501400351524353,-0.5126050710678101,-0.3550420105457306,-0.6701680421829224,-0.4425770342350006,-0.42507001757621765,-0.3025210201740265,-0.32002800703048706,-0.4075630307197571,-0.32002800703048706,-0.21498599648475647,-0.5826330780982971,-0.32002800703048706,-0.3900560140609741,-0.5126050710678101,-0.4950980246067047,-0.5651260614395142,-0.6001400351524353,-0.4600840210914612,-0.6526610851287842,-0.21498599648475647,-0.28501400351524353,-0.07492997497320175,-0.3025210201740265,-0.4075630307197571,-0.1974789947271347,-0.21498599648475647,-0.07492997497320175,-0.12745098769664764,-0.3550420105457306,-0.17997199296951294,-0.4600840210914612,-0.4950980246067047,-1.0378150939941406,-1.0553221702575684,-1.1253501176834106,-1.0203081369400024,-1.0903360843658447,-1.3004201650619507,-0.6001400351524353,-0.3550420105457306,-0.4950980246067047,-0.8452380895614624,-1.2829132080078125,-1.2654061317443848,-1.2303920984268188,-0.9327731132507324,-0.8277310729026794,-0.9502801299095154,-1.3179271221160889,-1.1778711080551147,-0.7927170991897583,-0.4425770342350006,-0.16246499121189117,-0.3900560140609741,0.012605042196810246,0.06512605398893356,-0.4075630307197571,-0.3550420105457306,-0.6701680421829224,-0.6876750588417053,-0.9152660965919495,-1.0203081369400024,-1.0728291273117065,-0.6876750588417053,-0.7051820755004883,-0.4075630307197571,-0.4950980246067047,-0.4950980246067047,-0.6876750588417053,-0.5126050710678101,-0.7226890921592712,-0.42507001757621765],[0.27521008253097534,-0.02240896411240101,-0.17997199296951294,-0.3550420105457306,0.1001400575041771,0.1001400575041771,-0.1449579894542694,-0.32002800703048706,-0.3025210201740265,-0.37254902720451355,-0.3025210201740265,-0.3550420105457306,0.11764705926179886,1.6232492923736572,0.9929971694946289,0.4852941036224365,0.6253501176834106,0.20518207550048828,0.5728291273117065,-0.09243697673082352,-0.4075630307197571,0.36274510622024536,0.2401960790157318,-1.0728291273117065,-1.457983136177063,-1.5980392694473267,-1.1603641510009766,-1.2829132080078125,-1.1253501176834106,-1.3004201650619507,-1.1428571939468384,-1.1778711080551147,-1.1603641510009766,-0.9327731132507324,-1.0028011798858643,-1.0903360843658447,-0.9677870869636536,-0.8452380895614624,-0.6701680421829224,-0.7401960492134094,-0.8802521228790283,-0.6176470518112183,-0.47759103775024414,-0.7226890921592712,-0.5301120281219482,-0.4425770342350006,-0.25,-0.1449579894542694,-0.3900560140609741,-0.28501400351524353,0.030112044885754585,-0.05742296949028969,-0.4425770342350006,-0.32002800703048706,-0.09243697673082352,-0.4075630307197571,-0.26750701665878296,-0.07492997497320175,-0.1449579894542694,-0.12745098769664764,-0.3550420105457306,-0.05742296949028969,-0.05742296949028969,-0.23249299824237823,-0.42507001757621765,-0.33753502368927,-0.09243697673082352,-0.07492997497320175,-0.3025210201740265,-0.25,-0.4600840210914612,-0.07492997497320175,-0.3550420105457306,-0.28501400351524353,-0.02240896411240101,-0.26750701665878296,-0.07492997497320175,-0.12745098769664764,-0.17997199296951294,0.012605042196810246,0.0476190485060215,-0.5476190447807312,-0.17997199296951294,-0.17997199296951294,-0.5301120281219482,-0.09243697673082352,-0.21498599648475647,-0.1974789947271347,-0.05742296949028969,-0.0049019609577953815,-0.32002800703048706,-0.1449579894542694,0.08263305574655533,-0.42507001757621765,-0.17997199296951294,-0.05742296949028969,-0.21498599648475647,-0.5126050710678101,-0.37254902720451355,-0.4425770342350006,-0.37254902720451355,-0.17997199296951294,-0.10994397848844528,-0.5826330780982971,-0.6176470518112183,-0.6176470518112183,-0.4600840210914612,-0.4600840210914612,-0.4425770342350006,-0.32002800703048706,-0.21498599648475647,-0.37254902720451355,-0.4425770342350006,-0.1449579894542694,-0.6526610851287842,-0.4425770342350006,-0.42507001757621765,0.0476190485060215,-0.26750701665878296,-0.1449579894542694,-0.4425770342350006,-0.10994397848844528,-0.3900560140609741,-0.25,-0.17997199296951294,-0.23249299824237823,-0.09243697673082352,-0.33753502368927,-0.5826330780982971,-0.3900560140609741,-0.4950980246067047,-0.4075630307197571,-0.47759103775024414,-0.6526610851287842,-0.4950980246067047,-0.4425770342350006,-0.4600840210914612,-0.5301120281219482,-0.5301120281219482,-0.23249299824237823,-0.28501400351524353,-0.28501400351524353,-0.28501400351524353,-0.4600840210914612,-0.16246499121189117,-0.32002800703048706,-0.42507001757621765,-0.07492997497320175,-0.21498599648475647,-0.3025210201740265,-0.37254902720451355,-0.26750701665878296,-0.42507001757621765,-0.6526610851287842,-0.37254902720451355,-0.23249299824237823,-0.32002800703048706,-0.3025210201740265,-0.3550420105457306,-0.3025210201740265,-0.37254902720451355,-0.37254902720451355,-0.26750701665878296,-0.6876750588417053,-0.6876750588417053,-0.7051820755004883,-0.5651260614395142,-0.8802521228790283,-0.6001400351524353,-0.42507001757621765,-0.3900560140609741,-0.5301120281219482,-0.4600840210914612,-0.3900560140609741,-0.26750701665878296,-0.6001400351524353,-0.28501400351524353,-0.17997199296951294,-0.21498599648475647,0.012605042196810246,-0.42507001757621765,-0.5301120281219482,-0.5651260614395142,-0.6526610851287842,-0.8277310729026794,-0.9852941036224365,-1.0728291273117065,-1.2829132080078125,-1.3179271221160889,-1.1778711080551147,-0.4600840210914612,-0.3025210201740265,-0.7226890921592712,-0.8452380895614624,-1.1603641510009766,-1.1428571939468384,-1.1253501176834106,-0.9152660965919495,-0.7577030658721924,-0.8277310729026794,-0.8977590799331665,-1.2303920984268188,-1.1253501176834106,-0.3900560140609741,-0.3550420105457306,-0.26750701665878296,-0.17997199296951294,-0.02240896411240101,-0.1449579894542694,-0.5126050710678101,-0.4075630307197571,-0.8452380895614624,-1.1078431606292725,-0.9677870869636536,-1.1253501176834106,-1.0903360843658447,-0.7051820755004883,-0.5826330780982971,-0.7401960492134094,-0.8102241158485413,-0.5301120281219482,-0.33753502368927,-0.4600840210914612,-0.5476190447807312],[-0.03991596773266792,-0.03991596773266792,-0.5651260614395142,-0.28501400351524353,-0.3025210201740265,-0.03991596773266792,-0.10994397848844528,-0.17997199296951294,-0.4600840210914612,-0.5651260614395142,-0.33753502368927,-0.3025210201740265,0.25770309567451477,1.395658254623413,1.133053183555603,0.9579831957817078,1.2380952835083008,0.7303921580314636,0.08263305574655533,-1.3704482316970825,-0.10994397848844528,0.38025209307670593,0.46778711676597595,-1.1953781843185425,-1.6155462265014648,-1.2128851413726807,-1.3529411554336548,-1.0728291273117065,-1.3004201650619507,-1.1953781843185425,-1.0028011798858643,-1.2478991746902466,-1.0028011798858643,-1.2829132080078125,-1.0903360843658447,-0.8802521228790283,-0.7752100825309753,-0.9677870869636536,-0.8277310729026794,-0.6176470518112183,-0.8977590799331665,-0.42507001757621765,-0.7051820755004883,-0.5476190447807312,-0.6001400351524353,-0.25,-0.28501400351524353,-0.32002800703048706,-0.33753502368927,-0.32002800703048706,0.20518207550048828,-0.03991596773266792,-0.10994397848844528,-0.21498599648475647,-0.05742296949028969,-0.21498599648475647,-0.32002800703048706,-0.12745098769664764,-0.4075630307197571,-0.10994397848844528,-0.25,-0.02240896411240101,-0.5301120281219482,-0.37254902720451355,-0.32002800703048706,0.20518207550048828,-0.03991596773266792,-0.4600840210914612,-0.32002800703048706,-0.10994397848844528,-0.25,-0.3900560140609741,-0.5126050710678101,-0.4075630307197571,-0.0049019609577953815,-0.1449579894542694,-0.12745098769664764,-0.03991596773266792,-0.3900560140609741,-0.25,-0.12745098769664764,-0.16246499121189117,-0.1974789947271347,-0.16246499121189117,0.06512605398893356,-0.05742296949028969,-0.17997199296951294,-0.0049019609577953815,0.18767507374286652,0.0476190485060215,0.25770309567451477,0.13515406847000122,-0.21498599648475647,-0.5126050710678101,-0.6176470518112183,-0.5126050710678101,-0.3025210201740265,0.030112044885754585,-0.16246499121189117,-0.1449579894542694,-0.0049019609577953815,-0.1974789947271347,-0.1449579894542694,-0.28501400351524353,-0.4075630307197571,-0.47759103775024414,-0.3550420105457306,-0.6876750588417053,-0.4600840210914612,-0.6351540684700012,-0.17997199296951294,-0.21498599648475647,-0.26750701665878296,-0.25,-0.47759103775024414,-0.4075630307197571,-0.25,-0.5826330780982971,-0.17997199296951294,-0.12745098769664764,-0.37254902720451355,-0.4075630307197571,-0.03991596773266792,-0.23249299824237823,-0.21498599648475647,-0.3550420105457306,-0.1974789947271347,-0.5301120281219482,-0.32002800703048706,-0.33753502368927,-1.0203081369400024,-0.8977590799331665,-0.4950980246067047,-0.5826330780982971,-0.6526610851287842,-0.5126050710678101,-0.6351540684700012,-0.5126050710678101,-0.47759103775024414,-0.6351540684700012,-0.25,-0.42507001757621765,-0.5651260614395142,-0.3550420105457306,-0.26750701665878296,-0.12745098769664764,-0.23249299824237823,-0.4075630307197571,-0.16246499121189117,-0.3550420105457306,-0.4425770342350006,-0.33753502368927,-0.42507001757621765,-0.7051820755004883,-0.37254902720451355,-0.28501400351524353,-0.21498599648475647,-0.1974789947271347,-0.3900560140609741,-0.3900560140609741,-0.42507001757621765,-0.4600840210914612,-0.47759103775024414,-0.4075630307197571,-0.6001400351524353,-0.42507001757621765,-0.3900560140609741,-0.5651260614395142,-0.5301120281219482,-0.8102241158485413,-0.32002800703048706,-0.32002800703048706,-0.28501400351524353,0.17016807198524475,-0.17997199296951294,0.0476190485060215,-0.10994397848844528,-0.16246499121189117,-0.33753502368927,-0.28501400351524353,-0.37254902720451355,-0.6701680421829224,-0.4950980246067047,-0.6001400351524353,-0.7927170991897583,-0.9852941036224365,-1.3179271221160889,-1.2128851413726807,-1.2478991746902466,-0.9677870869636536,-0.5301120281219482,-0.1974789947271347,-0.6001400351524353,-0.7051820755004883,-0.9677870869636536,-1.1603641510009766,-1.2303920984268188,-0.9327731132507324,-0.7051820755004883,-1.0903360843658447,-1.2829132080078125,-1.2478991746902466,-1.0028011798858643,-0.8627451062202454,-0.1974789947271347,-0.32002800703048706,-0.25,-0.16246499121189117,-0.10994397848844528,-0.4075630307197571,-0.47759103775024414,-0.4950980246067047,-0.9327731132507324,-1.0028011798858643,-0.7577030658721924,-0.8627451062202454,-0.8977590799331665,-0.8452380895614624,-0.8802521228790283,-0.8627451062202454,-0.8802521228790283,-0.7226890921592712,-0.6351540684700012,-0.5476190447807312],[0.22268907725811005,-0.32002800703048706,-0.5301120281219482,-0.12745098769664764,-0.23249299824237823,-0.3550420105457306,-0.05742296949028969,-0.12745098769664764,-0.33753502368927,-0.3900560140609741,-0.4950980246067047,-0.3025210201740265,-0.10994397848844528,1.7107843160629272,1.4481792449951172,1.5707283020019531,1.8683472871780396,0.8879551887512207,0.4852941036224365,0.20518207550048828,-0.03991596773266792,0.25770309567451477,0.11764705926179886,-0.8102241158485413,-1.4229692220687866,-1.2654061317443848,-1.2478991746902466,-1.1428571939468384,-1.0903360843658447,-1.1953781843185425,-1.0203081369400024,-0.9502801299095154,-1.1778711080551147,-1.2303920984268188,-0.9852941036224365,-1.2829132080078125,-0.8977590799331665,-1.0378150939941406,-0.7051820755004883,-0.8977590799331665,-0.8277310729026794,-0.6351540684700012,-0.42507001757621765,-0.5301120281219482,-0.3900560140609741,-0.42507001757621765,-0.33753502368927,-0.7051820755004883,-0.33753502368927,-0.07492997497320175,-0.3900560140609741,-0.25,-0.02240896411240101,-0.3900560140609741,-0.33753502368927,0.012605042196810246,-0.07492997497320175,0.15266107022762299,-0.09243697673082352,-0.28501400351524353,-0.02240896411240101,-0.0049019609577953815,-0.17997199296951294,-0.5651260614395142,0.17016807198524475,0.17016807198524475,0.1001400575041771,-0.4425770342350006,0.08263305574655533,-0.16246499121189117,-0.32002800703048706,0.06512605398893356,-0.3025210201740265,-0.3025210201740265,-0.4425770342350006,-0.5476190447807312,-0.12745098769664764,-0.09243697673082352,-0.25,-0.7051820755004883,-0.17997199296951294,-0.10994397848844528,-0.21498599648475647,-0.5651260614395142,-0.7401960492134094,-0.25,-0.07492997497320175,-0.21498599648475647,-0.21498599648475647,-0.1449579894542694,0.0476190485060215,-0.07492997497320175,-0.0049019609577953815,-0.3900560140609741,-0.7226890921592712,-0.5301120281219482,-0.4600840210914612,-0.5476190447807312,-0.3025210201740265,-0.10994397848844528,-0.05742296949028969,-0.3550420105457306,0.08263305574655533,-0.25,-0.4075630307197571,-0.32002800703048706,-0.3900560140609741,-0.6351540684700012,-0.4425770342350006,-0.6876750588417053,-0.6176470518112183,-0.1974789947271347,-0.10994397848844528,-0.42507001757621765,-0.3025210201740265,-0.28501400351524353,-0.33753502368927,-0.26750701665878296,-0.1449579894542694,-0.12745098769664764,-0.33753502368927,-0.28501400351524353,-0.23249299824237823,-0.25,-0.3550420105457306,-0.33753502368927,-0.12745098769664764,-0.26750701665878296,-0.23249299824237823,-0.32002800703048706,-0.5301120281219482,-0.4425770342350006,-0.4950980246067047,-0.7577030658721924,-0.47759103775024414,-0.8627451062202454,-0.5476190447807312,-0.42507001757621765,-0.4950980246067047,-0.42507001757621765,-0.4075630307197571,-0.5826330780982971,-0.5301120281219482,-0.4075630307197571,-0.5651260614395142,-0.42507001757621765,-0.1449579894542694,-0.3900560140609741,-0.23249299824237823,-0.42507001757621765,-0.21498599648475647,-0.3900560140609741,-0.4425770342350006,-0.4600840210914612,-0.5826330780982971,-0.7927170991897583,-0.5301120281219482,-0.28501400351524353,-0.37254902720451355,-0.4075630307197571,-0.3900560140609741,-0.37254902720451355,-0.23249299824237823,-0.6876750588417053,-0.7401960492134094,-0.32002800703048706,-0.3550420105457306,-0.6351540684700012,-0.6526610851287842,-0.47759103775024414,-0.26750701665878296,-0.3550420105457306,-0.26750701665878296,-0.21498599648475647,-0.28501400351524353,-0.10994397848844528,-0.09243697673082352,-0.1974789947271347,-0.17997199296951294,-0.5126050710678101,-0.7051820755004883,-0.42507001757621765,-0.5476190447807312,-0.7752100825309753,-0.8627451062202454,-1.1953781843185425,-1.1603641510009766,-1.3004201650619507,-1.3704482316970825,-0.8452380895614624,-0.16246499121189117,-0.21498599648475647,-0.7226890921592712,-0.8627451062202454,-1.0203081369400024,-1.3529411554336548,-1.0203081369400024,-0.8802521228790283,-0.9327731132507324,-0.6526610851287842,-0.9852941036224365,-1.2303920984268188,-1.3879551887512207,-0.7226890921592712,-0.6176470518112183,-0.1449579894542694,-0.4075630307197571,-0.07492997497320175,0.012605042196810246,-0.17997199296951294,-0.3550420105457306,-0.5826330780982971,-0.7927170991897583,-0.8802521228790283,-1.2128851413726807,-0.8452380895614624,-0.9152660965919495,-0.6701680421829224,-0.7577030658721924,-0.8102241158485413,-0.6001400351524353,-0.5651260614395142,-0.6176470518112183,-0.6176470518112183],[0.11764705926179886,-0.21498599648475647,-0.26750701665878296,-0.17997199296951294,-0.1974789947271347,-0.16246499121189117,-0.26750701665878296,0.030112044885754585,-0.23249299824237823,0.18767507374286652,-0.32002800703048706,-0.3900560140609741,0.11764705926179886,1.5357142686843872,1.133053183555603,1.7633053064346313,1.780812382698059,1.465686321258545,0.7128851413726807,1.0105042457580566,0.5203081369400024,0.31022408604621887,0.41526609659194946,-1.3529411554336548,-1.4404761791229248,-1.2478991746902466,-1.2128851413726807,-1.2478991746902466,-1.0203081369400024,-1.0028011798858643,-1.1253501176834106,-1.0903360843658447,-0.8627451062202454,-0.9677870869636536,-0.9852941036224365,-0.6876750588417053,-0.9677870869636536,-0.9327731132507324,-0.7927170991897583,-0.6876750588417053,-0.6701680421829224,-0.4950980246067047,-0.6876750588417053,-0.42507001757621765,-0.26750701665878296,-0.25,-0.17997199296951294,-0.3025210201740265,-0.25,-0.3025210201740265,-0.33753502368927,-0.10994397848844528,-0.26750701665878296,-0.25,-0.05742296949028969,-0.5651260614395142,-0.02240896411240101,0.06512605398893356,0.17016807198524475,-0.09243697673082352,-0.4075630307197571,0.030112044885754585,-0.33753502368927,-0.1974789947271347,-0.03991596773266792,-0.1449579894542694,-0.4425770342350006,-0.02240896411240101,-0.21498599648475647,-0.5476190447807312,0.030112044885754585,-0.3025210201740265,-0.1974789947271347,-0.12745098769664764,-0.37254902720451355,-0.25,-0.26750701665878296,-0.1449579894542694,-0.3900560140609741,-0.7401960492134094,-0.26750701665878296,-0.3550420105457306,-0.3550420105457306,-0.12745098769664764,-0.3025210201740265,-0.1449579894542694,-0.02240896411240101,-0.16246499121189117,-0.32002800703048706,-0.09243697673082352,-0.10994397848844528,-0.12745098769664764,-0.16246499121189117,-0.6001400351524353,-0.7051820755004883,-0.8802521228790283,-0.9502801299095154,-1.0028011798858643,-0.25,-0.17997199296951294,0.36274510622024536,0.06512605398893356,0.15266107022762299,-0.1449579894542694,-0.10994397848844528,-0.6001400351524353,-0.7226890921592712,-0.3550420105457306,-0.4950980246067047,-0.28501400351524353,-0.4600840210914612,-0.1974789947271347,-0.05742296949028969,-0.42507001757621765,-0.4425770342350006,-0.28501400351524353,-0.17997199296951294,-0.10994397848844528,0.08263305574655533,-0.05742296949028969,-0.12745098769664764,-0.4600840210914612,-0.37254902720451355,-0.47759103775024414,-0.3900560140609741,-0.32002800703048706,0.012605042196810246,-0.26750701665878296,-0.6351540684700012,-0.32002800703048706,-0.21498599648475647,-0.26750701665878296,-0.26750701665878296,-0.47759103775024414,-0.4600840210914612,-0.26750701665878296,-0.4425770342350006,-0.7051820755004883,-0.3900560140609741,-0.4425770342350006,-0.3025210201740265,-0.37254902720451355,-0.4075630307197571,-0.4425770342350006,-0.23249299824237823,-0.12745098769664764,-0.03991596773266792,-0.07492997497320175,-0.23249299824237823,-0.21498599648475647,-0.4950980246067047,-0.33753502368927,-0.6701680421829224,-0.5126050710678101,-0.3025210201740265,-0.28501400351524353,-0.4075630307197571,-0.26750701665878296,-0.47759103775024414,-0.47759103775024414,-0.6176470518112183,-0.17997199296951294,-0.33753502368927,-0.3900560140609741,-0.33753502368927,-0.25,-0.37254902720451355,-0.6001400351524353,-0.4075630307197571,-0.07492997497320175,-0.5126050710678101,-0.3900560140609741,-0.17997199296951294,-0.28501400351524353,-0.07492997497320175,-0.09243697673082352,-0.28501400351524353,-0.3550420105457306,-0.33753502368927,-0.5126050710678101,-0.6176470518112183,-0.9152660965919495,-1.0028011798858643,-1.0028011798858643,-0.9502801299095154,-0.8802521228790283,-1.1253501176834106,-1.1953781843185425,-0.9152660965919495,-0.6351540684700012,-0.25,-0.28501400351524353,-0.6876750588417053,-1.0553221702575684,-0.9502801299095154,-1.2303920984268188,-1.0203081369400024,-0.9852941036224365,-0.7226890921592712,-0.7927170991897583,-1.1603641510009766,-1.0028011798858643,-1.2478991746902466,-1.0553221702575684,-0.6701680421829224,-0.23249299824237823,-0.21498599648475647,-0.32002800703048706,-0.25,-0.03991596773266792,-0.16246499121189117,-0.4075630307197571,-0.8452380895614624,-1.0728291273117065,-0.7401960492134094,-0.9852941036224365,-1.2829132080078125,-0.9852941036224365,-0.7401960492134094,-0.7401960492134094,-0.6701680421829224,-0.6701680421829224,-0.6351540684700012,-0.7401960492134094],[0.1001400575041771,0.0476190485060215,-0.33753502368927,-0.21498599648475647,-0.1974789947271347,-0.47759103775024414,-0.33753502368927,-0.3025210201740265,-0.1449579894542694,-0.26750701665878296,-0.4600840210914612,-0.4950980246067047,0.4327731132507324,1.8158262968063354,1.3606442213058472,1.9733893871307373,1.5707283020019531,1.168067216873169,1.1855741739273071,0.4327731132507324,0.3977591097354889,0.5203081369400024,0.7654061913490295,-1.3704482316970825,-1.0903360843658447,-1.2128851413726807,-1.2128851413726807,-1.2303920984268188,-1.1428571939468384,-0.8977590799331665,-1.2478991746902466,-0.9152660965919495,-1.2478991746902466,-1.0378150939941406,-1.0903360843658447,-0.9152660965919495,-0.8627451062202454,-0.8277310729026794,-0.6526610851287842,-0.8977590799331665,-0.7401960492134094,-0.5651260614395142,-0.5651260614395142,-0.7226890921592712,-0.21498599648475647,-0.4425770342350006,-0.4600840210914612,-0.4425770342350006,-0.3025210201740265,-0.10994397848844528,-0.16246499121189117,-0.1449579894542694,-0.12745098769664764,-0.03991596773266792,-0.1449579894542694,0.030112044885754585,-0.1974789947271347,-0.16246499121189117,-0.37254902720451355,-0.16246499121189117,-0.4075630307197571,0.11764705926179886,-0.10994397848844528,-0.21498599648475647,-0.02240896411240101,-0.1449579894542694,-0.23249299824237823,-0.3025210201740265,-0.4600840210914612,-0.07492997497320175,-0.05742296949028969,-0.17997199296951294,-0.3550420105457306,-0.6876750588417053,-0.12745098769664764,-0.42507001757621765,-0.4950980246067047,-0.21498599648475647,-0.42507001757621765,-0.4600840210914612,-0.12745098769664764,-0.4075630307197571,-0.47759103775024414,-0.09243697673082352,-0.12745098769664764,-0.23249299824237823,-0.09243697673082352,-0.05742296949028969,-0.21498599648475647,-0.1974789947271347,-0.17997199296951294,-0.3900560140609741,-0.42507001757621765,-0.6701680421829224,-0.6876750588417053,-0.6001400351524353,-0.3550420105457306,-0.32002800703048706,-0.26750701665878296,0.030112044885754585,-0.0049019609577953815,0.06512605398893356,0.030112044885754585,-0.03991596773266792,-0.21498599648475647,-0.4425770342350006,-0.26750701665878296,-0.1974789947271347,-0.10994397848844528,-0.05742296949028969,-0.16246499121189117,-0.17997199296951294,-0.02240896411240101,-0.21498599648475647,-0.23249299824237823,-0.4425770342350006,0.030112044885754585,-0.4425770342350006,-0.4425770342350006,-0.4075630307197571,-0.4075630307197571,-0.0049019609577953815,-0.10994397848844528,-0.32002800703048706,-0.3025210201740265,-0.4425770342350006,-0.8102241158485413,-0.3900560140609741,-0.16246499121189117,-0.28501400351524353,-0.5476190447807312,-0.4075630307197571,-0.4075630307197571,-0.5826330780982971,-0.4600840210914612,-1.0378150939941406,-0.6876750588417053,-0.5301120281219482,-0.4600840210914612,-0.17997199296951294,-0.33753502368927,-0.26750701665878296,-0.10994397848844528,-0.16246499121189117,-0.5826330780982971,-0.26750701665878296,-0.09243697673082352,0.030112044885754585,-0.23249299824237823,-0.26750701665878296,-0.47759103775024414,-0.7226890921592712,-0.5476190447807312,-0.4950980246067047,-0.6351540684700012,-0.16246499121189117,-0.47759103775024414,-0.6001400351524353,-0.4950980246067047,-0.37254902720451355,-0.33753502368927,-0.12745098769664764,-0.10994397848844528,-0.32002800703048706,-0.6876750588417053,-0.6176470518112183,-0.4600840210914612,-0.21498599648475647,-0.4075630307197571,-0.4425770342350006,-0.37254902720451355,-0.3900560140609741,-0.25,-0.07492997497320175,-0.21498599648475647,-0.3025210201740265,-0.10994397848844528,-0.33753502368927,-0.17997199296951294,-0.47759103775024414,-0.4950980246067047,-0.6876750588417053,-0.8627451062202454,-0.9677870869636536,-1.1078431606292725,-1.0553221702575684,-1.1778711080551147,-1.1778711080551147,-1.1078431606292725,-0.5301120281219482,-0.28501400351524353,-0.26750701665878296,-0.6176470518112183,-0.7577030658721924,-0.9327731132507324,-1.0378150939941406,-1.2128851413726807,-1.0203081369400024,-0.7927170991897583,-1.0028011798858643,-0.8802521228790283,-1.3004201650619507,-1.2654061317443848,-0.9502801299095154,-0.8802521228790283,-0.3550420105457306,-0.42507001757621765,-0.37254902720451355,-0.33753502368927,-0.21498599648475647,-0.17997199296951294,-0.32002800703048706,-0.4950980246067047,-0.7401960492134094,-1.0903360843658447,-1.1253501176834106,-0.8452380895614624,-1.1078431606292725,-0.8452380895614624,-0.8452380895614624,-0.9152660965919495,-0.7226890921592712,-0.5301120281219482,-0.6701680421829224],[-0.0049019609577953815,-0.09243697673082352,-0.28501400351524353,-0.02240896411240101,-0.32002800703048706,-0.23249299824237823,-0.25,-0.21498599648475647,-0.23249299824237823,-0.28501400351524353,-0.09243697673082352,-0.6351540684700012,0.32773110270500183,1.7282912731170654,0.9929971694946289,1.6582633256912231,1.6582633256912231,1.465686321258545,0.4327731132507324,0.7128851413726807,0.25770309567451477,0.32773110270500183,0.4852941036224365,-1.1603641510009766,-1.3354341983795166,-1.0378150939941406,-1.2478991746902466,-0.8102241158485413,-0.8977590799331665,-1.0903360843658447,-0.7752100825309753,-0.9852941036224365,-0.9152660965919495,-1.1253501176834106,-0.8452380895614624,-0.9677870869636536,-0.7927170991897583,-0.6701680421829224,-0.8977590799331665,-0.7226890921592712,-0.7226890921592712,-0.4075630307197571,-0.7051820755004883,-0.5301120281219482,-0.42507001757621765,-0.4075630307197571,-0.7051820755004883,-0.4075630307197571,-0.25,-0.1449579894542694,-0.6176470518112183,-0.16246499121189117,-0.25,-0.21498599648475647,-0.03991596773266792,-0.07492997497320175,-0.6001400351524353,-0.4075630307197571,-0.28501400351524353,-0.1449579894542694,-0.17997199296951294,0.08263305574655533,0.31022408604621887,0.3452380895614624,-0.25,-0.23249299824237823,0.15266107022762299,-0.4425770342350006,-0.33753502368927,-0.3025210201740265,-0.3025210201740265,0.13515406847000122,-0.37254902720451355,-0.37254902720451355,-0.5826330780982971,-0.3900560140609741,-0.32002800703048706,-0.17997199296951294,-0.32002800703048706,-0.4425770342350006,0.0476190485060215,-0.42507001757621765,-0.5651260614395142,-0.33753502368927,0.1001400575041771,-0.1974789947271347,-0.4950980246067047,0.012605042196810246,0.20518207550048828,-0.02240896411240101,-0.33753502368927,-0.16246499121189117,-0.21498599648475647,-0.5651260614395142,-0.5126050710678101,-0.7752100825309753,-0.7927170991897583,-0.6176470518112183,-0.25,-0.23249299824237823,0.030112044885754585,0.31022408604621887,0.38025209307670593,-0.03991596773266792,-0.10994397848844528,-0.4950980246067047,-0.4600840210914612,-0.26750701665878296,-0.03991596773266792,-0.12745098769664764,-0.42507001757621765,-0.26750701665878296,-0.05742296949028969,-0.10994397848844528,-0.4950980246067047,-0.21498599648475647,-0.37254902720451355,-0.4075630307197571,-0.6001400351524353,-0.6001400351524353,-0.32002800703048706,-0.5476190447807312,-0.28501400351524353,-0.21498599648475647,-0.6351540684700012,-0.17997199296951294,-0.47759103775024414,-0.21498599648475647,-0.4950980246067047,-0.3900560140609741,-0.4075630307197571,-0.32002800703048706,-0.4600840210914612,-0.5826330780982971,-0.5476190447807312,-0.21498599648475647,-0.1974789947271347,-0.6876750588417053,-0.3550420105457306,-0.5826330780982971,-0.3550420105457306,-0.09243697673082352,-0.4425770342350006,0.0476190485060215,-0.4425770342350006,-0.16246499121189117,-0.10994397848844528,-0.16246499121189117,-0.17997199296951294,-0.5476190447807312,-0.28501400351524353,-0.5476190447807312,-0.4600840210914612,-0.42507001757621765,-0.4075630307197571,-0.47759103775024414,-0.3025210201740265,-0.28501400351524353,-0.1974789947271347,-0.3025210201740265,-0.4425770342350006,-0.47759103775024414,-0.33753502368927,-0.5476190447807312,-0.5301120281219482,-0.5476190447807312,-0.5826330780982971,-0.3550420105457306,-0.28501400351524353,-0.4075630307197571,-0.47759103775024414,-0.26750701665878296,-0.25,-0.07492997497320175,-0.1974789947271347,-0.26750701665878296,-0.4600840210914612,-0.1974789947271347,-0.5126050710678101,-0.5126050710678101,-0.7051820755004883,-0.9152660965919495,-0.8452380895614624,-0.9502801299095154,-1.1253501176834106,-1.0378150939941406,-1.1428571939468384,-1.1078431606292725,-0.8802521228790283,-0.25,-0.33753502368927,-0.28501400351524353,-0.6526610851287842,-0.8102241158485413,-1.0728291273117065,-1.0728291273117065,-1.1428571939468384,-1.0378150939941406,-0.9152660965919495,-0.5126050710678101,-0.9677870869636536,-1.0028011798858643,-1.1778711080551147,-1.2829132080078125,-0.9852941036224365,-0.5126050710678101,-0.4950980246067047,-0.25,-0.33753502368927,-0.23249299824237823,0.030112044885754585,-0.4950980246067047,-0.5126050710678101,-0.7752100825309753,-0.7752100825309753,-1.1778711080551147,-1.0903360843658447,-1.1078431606292725,-1.1428571939468384,-1.0728291273117065,-1.0378150939941406,-0.8277310729026794,-0.6701680421829224,-0.7752100825309753],[0.11764705926179886,-0.02240896411240101,0.012605042196810246,-0.02240896411240101,-0.37254902720451355,-0.4425770342350006,-0.5126050710678101,-0.3550420105457306,-0.5651260614395142,-0.1974789947271347,0.030112044885754585,0.06512605398893356,0.32773110270500183,1.605742335319519,1.6582633256912231,1.7983193397521973,1.343137264251709,1.395658254623413,0.8354341983795166,0.11764705926179886,0.17016807198524475,-0.10994397848844528,0.5203081369400024,-1.0378150939941406,-1.1953781843185425,-1.1428571939468384,-1.0203081369400024,-1.0028011798858643,-1.0028011798858643,-0.7927170991897583,-0.8802521228790283,-0.9502801299095154,-0.8452380895614624,-0.6351540684700012,-0.7752100825309753,-0.7226890921592712,-0.5651260614395142,-0.4425770342350006,-0.5301120281219482,-0.9152660965919495,-0.4425770342350006,-0.6876750588417053,-0.47759103775024414,-0.5301120281219482,-0.5301120281219482,-0.7226890921592712,-0.32002800703048706,-0.33753502368927,-0.7752100825309753,-0.4425770342350006,-0.4425770342350006,-0.7752100825309753,-0.12745098769664764,-0.23249299824237823,-0.26750701665878296,-0.09243697673082352,-0.26750701665878296,-0.5651260614395142,-0.05742296949028969,-0.0049019609577953815,-0.37254902720451355,-0.26750701665878296,0.25770309567451477,0.0476190485060215,-0.1449579894542694,0.11764705926179886,0.030112044885754585,0.1001400575041771,-0.12745098769664764,-0.26750701665878296,-0.12745098769664764,-0.05742296949028969,-0.3550420105457306,-0.4600840210914612,0.06512605398893356,-0.23249299824237823,-0.0049019609577953815,-0.5651260614395142,-0.03991596773266792,-0.42507001757621765,-0.32002800703048706,-0.4075630307197571,-0.3025210201740265,-0.17997199296951294,-0.16246499121189117,-0.33753502368927,-0.1974789947271347,-0.12745098769664764,-0.0049019609577953815,-0.4600840210914612,-0.3025210201740265,-0.6526610851287842,-0.7577030658721924,-0.8977590799331665,-0.3900560140609741,-0.8627451062202454,-0.7752100825309753,-0.7226890921592712,-0.23249299824237823,-0.10994397848844528,0.25770309567451477,-0.6701680421829224,-0.05742296949028969,0.18767507374286652,-0.12745098769664764,-0.4600840210914612,-0.5301120281219482,-0.3900560140609741,-0.23249299824237823,-0.23249299824237823,-0.3025210201740265,-0.03991596773266792,-0.25,-0.3550420105457306,-0.32002800703048706,-0.21498599648475647,0.22268907725811005,-0.1449579894542694,-0.5301120281219482,-0.32002800703048706,-0.4600840210914612,-0.26750701665878296,-0.3550420105457306,-0.5126050710678101,-0.4425770342350006,-0.47759103775024414,-0.4950980246067047,-0.5651260614395142,-0.47759103775024414,-0.33753502368927,-0.4425770342350006,-0.5126050710678101,-0.47759103775024414,-0.5476190447807312,-0.3900560140609741,-0.8277310729026794,-0.4600840210914612,-0.6351540684700012,-0.16246499121189117,-0.4950980246067047,-0.25,-0.6526610851287842,-0.05742296949028969,-0.32002800703048706,-0.0049019609577953815,-0.1449579894542694,-0.07492997497320175,-0.1974789947271347,-0.33753502368927,-0.4075630307197571,-0.26750701665878296,-0.3550420105457306,-0.5476190447807312,-0.3550420105457306,-0.37254902720451355,-0.6351540684700012,-0.4600840210914612,-0.5126050710678101,-0.4425770342350006,-0.5301120281219482,-0.3550420105457306,-0.42507001757621765,-0.23249299824237823,-0.4600840210914612,-0.5126050710678101,-0.6351540684700012,-0.28501400351524353,-0.23249299824237823,-0.5301120281219482,-0.4950980246067047,-0.37254902720451355,-0.10994397848844528,-0.25,-0.16246499121189117,-0.1974789947271347,-0.4075630307197571,-0.32002800703048706,-0.1449579894542694,-0.4425770342350006,-0.5826330780982971,-0.6351540684700012,-0.7401960492134094,-0.8452380895614624,-0.8977590799331665,-1.0028011798858643,-1.1078431606292725,-0.8977590799331665,-1.1778711080551147,-0.7226890921592712,-0.05742296949028969,-0.1974789947271347,-0.4075630307197571,-0.6176470518112183,-0.7752100825309753,-0.9677870869636536,-1.0903360843658447,-1.1778711080551147,-1.0203081369400024,-0.8277310729026794,-0.7577030658721924,-0.6351540684700012,-1.0728291273117065,-1.1953781843185425,-1.2829132080078125,-1.1428571939468384,-0.4075630307197571,-0.02240896411240101,-0.3550420105457306,-0.26750701665878296,-0.16246499121189117,0.012605042196810246,-0.25,-0.3900560140609741,-0.7226890921592712,-0.5651260614395142,-0.8277310729026794,-1.0028011798858643,-1.1078431606292725,-1.1428571939468384,-1.1603641510009766,-0.7927170991897583,-0.7752100825309753,-0.7927170991897583,-0.7226890921592712],[0.2927170991897583,0.08263305574655533,-0.17997199296951294,-0.16246499121189117,-0.32002800703048706,-0.4425770342350006,-0.3900560140609741,-0.8802521228790283,-0.6001400351524353,-0.33753502368927,-0.4425770342350006,-0.23249299824237823,0.22268907725811005,1.7282912731170654,1.220588207244873,1.220588207244873,1.9208683967590332,1.518207311630249,0.9229691624641418,0.012605042196810246,-0.5826330780982971,0.5028011202812195,0.6428571343421936,-1.0903360843658447,-1.0203081369400024,-1.0203081369400024,-0.8627451062202454,-0.9852941036224365,-0.8977590799331665,-0.9852941036224365,-0.9502801299095154,-0.8627451062202454,-0.8977590799331665,-0.7401960492134094,-0.9502801299095154,-0.5476190447807312,-0.3900560140609741,-0.4950980246067047,-0.5651260614395142,-0.4950980246067047,-0.6876750588417053,-0.3550420105457306,-0.1449579894542694,-0.6876750588417053,-0.5826330780982971,-0.4425770342350006,0.012605042196810246,-0.33753502368927,-0.6526610851287842,-0.6176470518112183,-0.5651260614395142,-0.33753502368927,-0.26750701665878296,0.030112044885754585,-0.17997199296951294,-0.4600840210914612,-0.26750701665878296,-0.07492997497320175,0.20518207550048828,-0.32002800703048706,-0.09243697673082352,-0.5651260614395142,-0.23249299824237823,-0.10994397848844528,-0.1449579894542694,0.1001400575041771,0.1001400575041771,0.15266107022762299,0.11764705926179886,-0.0049019609577953815,-0.03991596773266792,-0.12745098769664764,-0.02240896411240101,-0.4950980246067047,-0.28501400351524353,-0.42507001757621765,-0.4075630307197571,-0.07492997497320175,-0.33753502368927,-0.23249299824237823,-0.12745098769664764,-0.28501400351524353,-0.07492997497320175,-0.23249299824237823,-0.0049019609577953815,-0.23249299824237823,-0.32002800703048706,-0.21498599648475647,-0.26750701665878296,-0.32002800703048706,-0.42507001757621765,-0.6876750588417053,-0.9152660965919495,-0.4425770342350006,-0.6526610851287842,-0.4950980246067047,-0.17997199296951294,-0.4950980246067047,-0.09243697673082352,-0.07492997497320175,0.06512605398893356,-0.1449579894542694,0.18767507374286652,0.06512605398893356,0.012605042196810246,-0.4075630307197571,-0.26750701665878296,-0.4075630307197571,-0.12745098769664764,-0.21498599648475647,-0.32002800703048706,-0.33753502368927,-0.12745098769664764,-0.09243697673082352,-0.17997199296951294,-0.3900560140609741,-0.28501400351524353,-0.23249299824237823,-0.4950980246067047,-0.47759103775024414,-0.4950980246067047,-0.26750701665878296,0.012605042196810246,-0.6526610851287842,-0.5301120281219482,-0.21498599648475647,-0.25,-0.5476190447807312,-0.5126050710678101,-0.8102241158485413,-0.25,-0.6526610851287842,-0.3900560140609741,-0.4600840210914612,-0.4425770342350006,-0.9502801299095154,-0.33753502368927,-0.7927170991897583,-0.5301120281219482,-0.26750701665878296,-0.07492997497320175,-0.28501400351524353,-0.12745098769664764,-0.17997199296951294,-0.1449579894542694,-0.10994397848844528,-0.1449579894542694,-0.5126050710678101,-0.42507001757621765,-0.9677870869636536,-0.6526610851287842,-0.8452380895614624,-0.5826330780982971,-0.37254902720451355,-0.33753502368927,-0.47759103775024414,-0.4075630307197571,-0.47759103775024414,-0.32002800703048706,-0.28501400351524353,-0.4600840210914612,-0.4075630307197571,-0.5301120281219482,-0.33753502368927,-0.5301120281219482,-0.3550420105457306,-0.47759103775024414,-0.3025210201740265,-0.3025210201740265,-0.23249299824237823,-0.1449579894542694,-0.26750701665878296,-0.1974789947271347,-0.02240896411240101,-0.1974789947271347,-0.32002800703048706,-0.37254902720451355,-0.4600840210914612,-0.5651260614395142,-0.7226890921592712,-0.3550420105457306,-1.0028011798858643,-0.9852941036224365,-1.0728291273117065,-1.0903360843658447,-1.0903360843658447,-0.9852941036224365,-0.8802521228790283,-0.5476190447807312,-0.32002800703048706,-0.17997199296951294,-0.37254902720451355,-0.6526610851287842,-0.7752100825309753,-0.9327731132507324,-1.0728291273117065,-0.9677870869636536,-1.0378150939941406,-0.7401960492134094,-0.8277310729026794,-0.8102241158485413,-0.9852941036224365,-1.1428571939468384,-1.1953781843185425,-1.1253501176834106,-0.8452380895614624,-0.32002800703048706,-0.37254902720451355,-0.3025210201740265,-0.28501400351524353,-0.1974789947271347,0.06512605398893356,-0.5826330780982971,-0.6001400351524353,-0.7752100825309753,-0.7927170991897583,-0.9327731132507324,-0.9677870869636536,-1.0903360843658447,-1.2478991746902466,-1.2654061317443848,-0.9677870869636536,-0.8277310729026794,-0.7577030658721924],[0.17016807198524475,0.1001400575041771,0.17016807198524475,-0.0049019609577953815,-0.05742296949028969,-0.3550420105457306,-0.47759103775024414,-0.6176470518112183,-0.4075630307197571,-0.6001400351524353,-0.28501400351524353,-0.5651260614395142,0.5203081369400024,1.483193278312683,1.4481792449951172,1.483193278312683,1.9558823108673096,1.2030812501907349,0.8704481720924377,0.8704481720924377,0.0476190485060215,0.5728291273117065,0.5378151535987854,-0.8802521228790283,-1.2829132080078125,-1.1603641510009766,-1.0378150939941406,-0.8802521228790283,-1.1078431606292725,-1.0028011798858643,-0.8627451062202454,-0.8802521228790283,-0.7752100825309753,-0.7401960492134094,-0.8277310729026794,-0.6001400351524353,-0.5301120281219482,-0.6701680421829224,-0.5476190447807312,-0.42507001757621765,-0.21498599648475647,-0.28501400351524353,-0.3025210201740265,-0.42507001757621765,-0.33753502368927,-0.17997199296951294,-0.32002800703048706,-0.37254902720451355,-0.28501400351524353,-0.3550420105457306,-0.03991596773266792,-0.28501400351524353,-0.33753502368927,-0.10994397848844528,-0.3550420105457306,0.030112044885754585,-0.5126050710678101,-0.5126050710678101,-0.5301120281219482,-0.12745098769664764,-0.32002800703048706,0.18767507374286652,-0.28501400351524353,-0.5476190447807312,-0.6351540684700012,0.030112044885754585,-0.3900560140609741,-0.07492997497320175,-0.07492997497320175,-0.09243697673082352,-0.16246499121189117,-0.28501400351524353,-0.16246499121189117,-0.4950980246067047,-0.25,-0.07492997497320175,-0.25,-0.05742296949028969,-0.3900560140609741,-0.32002800703048706,-0.5651260614395142,-0.09243697673082352,-0.4600840210914612,-0.23249299824237823,0.012605042196810246,0.012605042196810246,-0.37254902720451355,-0.32002800703048706,-0.4600840210914612,-0.6701680421829224,-0.3900560140609741,-0.8277310729026794,-0.7051820755004883,-0.9677870869636536,-0.47759103775024414,-0.5126050710678101,-0.05742296949028969,-0.1449579894542694,-0.21498599648475647,-0.1449579894542694,0.030112044885754585,0.25770309567451477,0.1001400575041771,-0.05742296949028969,-0.25,-0.42507001757621765,-0.05742296949028969,-0.25,-0.1974789947271347,-0.21498599648475647,-0.28501400351524353,0.08263305574655533,-0.10994397848844528,-0.37254902720451355,-0.5651260614395142,-0.3900560140609741,-0.05742296949028969,-0.1974789947271347,-0.6351540684700012,-0.6351540684700012,-0.32002800703048706,-0.28501400351524353,-0.05742296949028969,-0.09243697673082352,-0.28501400351524353,-0.5301120281219482,-0.32002800703048706,-0.1974789947271347,-0.4075630307197571,-0.8977590799331665,-0.5651260614395142,-0.4600840210914612,-0.47759103775024414,-0.1449579894542694,-0.32002800703048706,-0.1974789947271347,-0.5301120281219482,-0.6876750588417053,-0.3550420105457306,-0.42507001757621765,-0.25,-0.32002800703048706,-0.28501400351524353,-0.16246499121189117,-0.3900560140609741,-0.21498599648475647,-0.33753502368927,-0.4425770342350006,-0.21498599648475647,-0.3025210201740265,-0.5651260614395142,-0.7577030658721924,-0.6701680421829224,-0.4425770342350006,-0.37254902720451355,-0.5826330780982971,-0.42507001757621765,-0.3550420105457306,-0.8802521228790283,-0.9327731132507324,-0.3025210201740265,-0.26750701665878296,-0.3025210201740265,-0.4950980246067047,-0.42507001757621765,-0.37254902720451355,-0.47759103775024414,-0.09243697673082352,-0.1974789947271347,-0.1974789947271347,-0.3025210201740265,-0.26750701665878296,-0.23249299824237823,0.1001400575041771,-0.26750701665878296,-0.23249299824237823,-0.6876750588417053,-0.4075630307197571,-0.4075630307197571,-0.6701680421829224,-0.7226890921592712,-0.8977590799331665,-1.0028011798858643,-1.1253501176834106,-1.1603641510009766,-1.1428571939468384,-0.8277310729026794,-0.9152660965919495,-0.3025210201740265,-0.17997199296951294,-0.16246499121189117,-0.5126050710678101,-0.7577030658721924,-0.7051820755004883,-0.8627451062202454,-1.0028011798858643,-1.1953781843185425,-0.7752100825309753,-0.6351540684700012,-0.7927170991897583,-0.4075630307197571,-1.1428571939468384,-1.2128851413726807,-1.2478991746902466,-1.1428571939468384,-0.9152660965919495,-0.7577030658721924,-0.21498599648475647,-0.37254902720451355,-0.3550420105457306,-0.16246499121189117,-0.07492997497320175,-0.33753502368927,-0.5301120281219482,-0.47759103775024414,-0.8977590799331665,-0.9502801299095154,-0.9327731132507324,-1.1428571939468384,-0.9327731132507324,-1.1253501176834106,-0.8452380895614624,-0.9152660965919495,-0.8977590799331665],[-0.16246499121189117,0.15266107022762299,0.13515406847000122,0.08263305574655533,0.06512605398893356,-0.02240896411240101,-0.4950980246067047,-0.5651260614395142,-0.7752100825309753,-0.8452380895614624,-0.7051820755004883,-0.25,1.5007002353668213,1.1855741739273071,1.465686321258545,1.3606442213058472,1.605742335319519,1.2731091976165771,1.430672287940979,0.7128851413726807,0.41526609659194946,0.27521008253097534,0.5203081369400024,-1.1953781843185425,-1.2829132080078125,-1.0203081369400024,-0.9502801299095154,-0.9852941036224365,-0.6001400351524353,-0.9152660965919495,-1.0203081369400024,-0.7752100825309753,-0.8452380895614624,-0.9502801299095154,-0.8102241158485413,-0.7051820755004883,-0.7927170991897583,-0.33753502368927,-0.26750701665878296,-0.21498599648475647,-0.28501400351524353,-0.12745098769664764,-0.47759103775024414,-0.5651260614395142,-0.28501400351524353,-0.4600840210914612,-0.12745098769664764,-0.17997199296951294,0.0476190485060215,-0.25,-0.47759103775024414,-0.26750701665878296,-0.8277310729026794,-0.42507001757621765,-0.42507001757621765,-0.1449579894542694,-0.23249299824237823,-0.1449579894542694,-0.28501400351524353,0.030112044885754585,-0.25,-0.4075630307197571,-0.17997199296951294,-0.3550420105457306,-0.12745098769664764,0.0476190485060215,-0.32002800703048706,-0.26750701665878296,-0.3900560140609741,-0.32002800703048706,-0.25,-0.3550420105457306,-0.07492997497320175,0.030112044885754585,-0.23249299824237823,-0.10994397848844528,-0.12745098769664764,-0.28501400351524353,0.15266107022762299,-0.32002800703048706,-0.4600840210914612,-0.33753502368927,-0.6001400351524353,-0.5301120281219482,0.27521008253097534,-0.10994397848844528,-0.28501400351524353,-0.25,-0.10994397848844528,-0.8277310729026794,-0.7401960492134094,-0.8277310729026794,-0.9152660965919495,-0.7927170991897583,-0.32002800703048706,-0.6001400351524353,-0.3900560140609741,-0.5126050710678101,-0.3025210201740265,0.06512605398893356,0.06512605398893356,0.3977591097354889,0.1001400575041771,0.2401960790157318,-0.0049019609577953815,-0.16246499121189117,-0.17997199296951294,-0.03991596773266792,-0.3550420105457306,-0.10994397848844528,-0.3900560140609741,-0.21498599648475647,-0.0049019609577953815,-0.07492997497320175,-0.3900560140609741,-0.4600840210914612,-0.33753502368927,-0.21498599648475647,-0.5126050710678101,-0.7226890921592712,-0.6876750588417053,-0.28501400351524353,-0.5651260614395142,-0.37254902720451355,-0.4075630307197571,-0.6876750588417053,-0.26750701665878296,-0.47759103775024414,-0.33753502368927,-0.25,-0.10994397848844528,-0.5476190447807312,-0.47759103775024414,-0.42507001757621765,-0.4950980246067047,-0.37254902720451355,-0.17997199296951294,-0.3025210201740265,-0.17997199296951294,-0.1974789947271347,-0.1974789947271347,-0.12745098769664764,-0.26750701665878296,-0.4425770342350006,-0.26750701665878296,-0.26750701665878296,-0.37254902720451355,-0.5301120281219482,-0.6701680421829224,-0.8277310729026794,-0.8102241158485413,-0.4425770342350006,-0.3900560140609741,-0.07492997497320175,-0.5651260614395142,-0.26750701665878296,-0.33753502368927,-0.37254902720451355,-0.42507001757621765,-0.6526610851287842,-0.7401960492134094,-0.6001400351524353,-0.3550420105457306,-0.3900560140609741,-0.23249299824237823,-0.4600840210914612,-0.1974789947271347,-0.4425770342350006,-0.37254902720451355,0.0476190485060215,-0.32002800703048706,-0.10994397848844528,-0.16246499121189117,-0.17997199296951294,-0.3550420105457306,-0.6176470518112183,-0.3550420105457306,-0.6526610851287842,-0.7401960492134094,-0.6701680421829224,-0.8627451062202454,-0.8802521228790283,-0.7577030658721924,-0.9502801299095154,-0.9152660965919495,-1.1603641510009766,-0.8452380895614624,-0.47759103775024414,-0.33753502368927,-0.1449579894542694,-0.07492997497320175,-0.4600840210914612,-0.8452380895614624,-0.8452380895614624,-0.8277310729026794,-0.9502801299095154,-1.1778711080551147,-0.7401960492134094,-0.6001400351524353,-0.6526610851287842,-0.8102241158485413,-0.9152660965919495,-1.0728291273117065,-1.2303920984268188,-1.0203081369400024,-1.1428571939468384,-0.8977590799331665,-0.5126050710678101,-0.32002800703048706,-0.28501400351524353,-0.16246499121189117,-0.25,-0.32002800703048706,-0.4600840210914612,-0.25,-0.7051820755004883,-0.8977590799331665,-0.7752100825309753,-0.9852941036224365,-0.9677870869636536,-0.7927170991897583,-1.1603641510009766,-1.1253501176834106,-0.8102241158485413],[0.012605042196810246,0.15266107022762299,0.22268907725811005,0.3977591097354889,-0.16246499121189117,-0.05742296949028969,-0.32002800703048706,-0.23249299824237823,-0.6701680421829224,-0.6001400351524353,-0.8452380895614624,-0.6876750588417053,1.2380952835083008,0.8354341983795166,1.553221344947815,1.518207311630249,1.8508403301239014,1.780812382698059,0.7829131484031677,0.8529411554336548,0.11764705926179886,0.46778711676597595,0.6953781247138977,-1.2829132080078125,-1.2303920984268188,-1.2303920984268188,-0.9327731132507324,-0.7051820755004883,-0.8102241158485413,-1.0028011798858643,-0.7051820755004883,-0.8452380895614624,-0.9327731132507324,-0.7226890921592712,-0.7051820755004883,-0.3900560140609741,-0.25,-0.6351540684700012,-0.5301120281219482,-0.12745098769664764,-0.21498599648475647,-0.47759103775024414,-0.05742296949028969,-0.10994397848844528,-0.21498599648475647,-0.28501400351524353,0.31022408604621887,0.20518207550048828,-0.03991596773266792,-0.37254902720451355,-0.28501400351524353,-0.25,-0.16246499121189117,-0.09243697673082352,-0.1974789947271347,-0.6876750588417053,-0.26750701665878296,-0.21498599648475647,-0.33753502368927,-0.03991596773266792,0.0476190485060215,0.0476190485060215,-0.10994397848844528,-0.21498599648475647,-0.26750701665878296,-0.10994397848844528,0.17016807198524475,-0.0049019609577953815,-0.5301120281219482,-0.09243697673082352,-0.4600840210914612,0.012605042196810246,0.11764705926179886,-0.02240896411240101,-0.5301120281219482,-0.32002800703048706,-0.05742296949028969,-0.12745098769664764,-0.03991596773266792,-0.3550420105457306,-0.26750701665878296,-0.09243697673082352,-0.37254902720451355,-0.07492997497320175,-0.3025210201740265,0.08263305574655533,0.18767507374286652,-0.4075630307197571,-0.1449579894542694,-0.6701680421829224,-0.5826330780982971,-0.7577030658721924,-0.6001400351524353,-0.6526610851287842,-0.37254902720451355,-0.4075630307197571,-0.32002800703048706,-0.42507001757621765,-0.12745098769664764,0.2927170991897583,0.22268907725811005,0.18767507374286652,0.06512605398893356,-0.10994397848844528,-0.3900560140609741,-0.32002800703048706,-0.26750701665878296,-0.3025210201740265,-0.3025210201740265,-0.09243697673082352,-0.4950980246067047,-0.02240896411240101,-0.28501400351524353,-0.21498599648475647,-0.5651260614395142,-0.32002800703048706,-0.5651260614395142,-0.6176470518112183,-0.4600840210914612,-0.8277310729026794,-0.42507001757621765,-0.6701680421829224,-0.3550420105457306,-0.6526610851287842,-0.28501400351524353,-0.4600840210914612,-0.6351540684700012,-0.1974789947271347,-0.1449579894542694,-0.21498599648475647,0.0476190485060215,-0.28501400351524353,-0.5826330780982971,-0.09243697673082352,0.030112044885754585,-0.3550420105457306,-0.47759103775024414,-0.28501400351524353,-0.5301120281219482,-0.7752100825309753,-0.42507001757621765,-0.02240896411240101,-0.23249299824237823,-0.3900560140609741,-0.42507001757621765,-0.6176470518112183,-0.7226890921592712,-0.5826330780982971,-0.5476190447807312,-0.1974789947271347,-0.6526610851287842,-0.28501400351524353,-0.5126050710678101,-0.5301120281219482,-0.47759103775024414,-0.37254902720451355,-0.6351540684700012,-0.4600840210914612,-0.37254902720451355,-0.5301120281219482,-0.5476190447807312,-0.5476190447807312,-0.28501400351524353,-0.4425770342350006,-0.25,-0.47759103775024414,-0.25,-0.32002800703048706,-0.3025210201740265,-0.33753502368927,-0.3025210201740265,-0.37254902720451355,-0.1449579894542694,-0.3900560140609741,-0.37254902720451355,-0.17997199296951294,-0.32002800703048706,-0.6176470518112183,-0.6351540684700012,-0.4600840210914612,-0.9677870869636536,-0.7927170991897583,-0.6701680421829224,-0.9502801299095154,-0.8102241158485413,-0.8277310729026794,-0.8102241158485413,-0.5301120281219482,-0.17997199296951294,-0.1974789947271347,-0.10994397848844528,-0.5651260614395142,-0.7401960492134094,-0.7577030658721924,-0.9677870869636536,-1.0028011798858643,-0.9677870869636536,-0.9152660965919495,-0.5476190447807312,-0.5476190447807312,-0.8277310729026794,-1.2478991746902466,-1.0903360843658447,-1.3179271221160889,-1.3354341983795166,-1.1078431606292725,-1.0203081369400024,-0.5651260614395142,-0.25,-0.23249299824237823,-0.4075630307197571,-0.17997199296951294,-0.23249299824237823,-0.28501400351524353,-0.47759103775024414,-0.4425770342350006,-0.7927170991897583,-0.8802521228790283,-1.0903360843658447,-1.1078431606292725,-1.0203081369400024,-1.3354341983795166,-0.8277310729026794,-1.1953781843185425],[-0.26750701665878296,0.13515406847000122,0.06512605398893356,-0.02240896411240101,0.17016807198524475,-0.16246499121189117,-0.25,-0.5476190447807312,-0.6176470518112183,-0.8802521228790283,-0.6526610851287842,-0.7577030658721924,1.343137264251709,1.133053183555603,1.2380952835083008,1.7633053064346313,1.7983193397521973,1.395658254623413,1.0280112028121948,0.5553221106529236,0.3452380895614624,0.5203081369400024,0.6953781247138977,-1.2829132080078125,-1.6155462265014648,-1.1603641510009766,-1.0028011798858643,-1.1778711080551147,-0.9852941036224365,-0.8802521228790283,-1.0728291273117065,-0.8627451062202454,-0.9677870869636536,-0.6876750588417053,-0.4600840210914612,-0.37254902720451355,-0.5476190447807312,-0.7051820755004883,-0.09243697673082352,-0.28501400351524353,-0.32002800703048706,-0.4600840210914612,-0.10994397848844528,-0.10994397848844528,0.25770309567451477,-0.3550420105457306,0.41526609659194946,0.17016807198524475,-0.12745098769664764,-0.32002800703048706,-0.42507001757621765,-0.21498599648475647,-0.1449579894542694,-0.10994397848844528,-0.37254902720451355,-0.4425770342350006,-0.23249299824237823,-0.6001400351524353,0.0476190485060215,0.17016807198524475,-0.33753502368927,-0.26750701665878296,-0.16246499121189117,-0.10994397848844528,-0.03991596773266792,-0.12745098769664764,-0.3550420105457306,0.06512605398893356,0.2927170991897583,0.3452380895614624,-0.4425770342350006,-0.02240896411240101,-0.05742296949028969,-0.25,-0.32002800703048706,0.012605042196810246,-0.32002800703048706,-0.02240896411240101,-0.32002800703048706,-0.12745098769664764,-0.02240896411240101,-0.21498599648475647,0.030112044885754585,-0.12745098769664764,-0.37254902720451355,-0.32002800703048706,-0.03991596773266792,-0.5476190447807312,-0.6351540684700012,-0.5301120281219482,-0.47759103775024414,-0.8102241158485413,-0.6176470518112183,-0.6176470518112183,-0.5126050710678101,-0.23249299824237823,-0.28501400351524353,-0.12745098769664764,-0.03991596773266792,0.1001400575041771,0.08263305574655533,0.18767507374286652,-0.12745098769664764,-0.17997199296951294,-0.07492997497320175,-0.4600840210914612,-0.3900560140609741,-0.1449579894542694,-0.32002800703048706,-0.23249299824237823,-0.1974789947271347,0.0476190485060215,-0.37254902720451355,-0.0049019609577953815,-0.05742296949028969,-0.37254902720451355,-0.42507001757621765,-0.42507001757621765,-0.4425770342350006,-0.7051820755004883,-0.6876750588417053,-0.7752100825309753,-0.23249299824237823,-0.3900560140609741,-0.4075630307197571,-0.32002800703048706,0.13515406847000122,-0.37254902720451355,-0.4075630307197571,-0.1974789947271347,-0.28501400351524353,-0.6526610851287842,-0.5651260614395142,-0.3900560140609741,-0.5476190447807312,-0.7051820755004883,-0.3550420105457306,-0.3550420105457306,-0.4600840210914612,-0.28501400351524353,-0.1974789947271347,-0.17997199296951294,-0.3025210201740265,-0.32002800703048706,-0.5826330780982971,-0.42507001757621765,-0.4600840210914612,-0.32002800703048706,-0.6701680421829224,-0.42507001757621765,-0.7051820755004883,-0.5476190447807312,-0.33753502368927,-0.21498599648475647,-0.5301120281219482,-0.42507001757621765,-0.47759103775024414,-0.23249299824237823,-0.6176470518112183,-0.4950980246067047,-0.33753502368927,-0.33753502368927,-0.37254902720451355,-0.25,-0.28501400351524353,-0.1974789947271347,-0.26750701665878296,-0.25,-0.28501400351524353,-0.10994397848844528,-0.32002800703048706,-0.3550420105457306,-0.03991596773266792,-0.3900560140609741,-0.4425770342350006,-0.37254902720451355,-0.5651260614395142,-0.8102241158485413,-0.7752100825309753,-1.0203081369400024,-0.9327731132507324,-0.8977590799331665,-1.0378150939941406,-1.1603641510009766,-1.1078431606292725,-0.9852941036224365,-0.6701680421829224,-0.5301120281219482,-0.1449579894542694,-0.10994397848844528,-0.42507001757621765,-0.37254902720451355,-0.6526610851287842,-0.6351540684700012,-1.0553221702575684,-0.9502801299095154,-1.0553221702575684,-0.8627451062202454,-0.5651260614395142,-0.8452380895614624,-0.6876750588417053,-0.9502801299095154,-1.0028011798858643,-1.1603641510009766,-1.1253501176834106,-1.1778711080551147,-1.1428571939468384,-0.6351540684700012,-0.32002800703048706,-0.33753502368927,-0.3550420105457306,-0.33753502368927,-0.32002800703048706,-0.21498599648475647,-0.4075630307197571,-0.5301120281219482,-0.5651260614395142,-0.8277310729026794,-0.8977590799331665,-1.0028011798858643,-1.0728291273117065,-1.0378150939941406,-1.1428571939468384,-1.1953781843185425],[-0.10994397848844528,-0.07492997497320175,0.06512605398893356,-0.05742296949028969,0.15266107022762299,-0.0049019609577953815,-0.02240896411240101,-0.28501400351524353,-0.3550420105457306,-0.7577030658721924,-0.5476190447807312,-0.6526610851287842,0.8704481720924377,0.7303921580314636,1.3606442213058472,1.7983193397521973,1.8158262968063354,1.4131652116775513,0.46778711676597595,0.27521008253097534,0.450280100107193,0.3452380895614624,0.6778711676597595,-1.5105042457580566,-1.3704482316970825,-1.1603641510009766,-1.0203081369400024,-0.8977590799331665,-0.8627451062202454,-0.7927170991897583,-0.9327731132507324,-0.7927170991897583,-0.5476190447807312,-0.47759103775024414,-0.7401960492134094,-0.5476190447807312,-0.28501400351524353,-0.33753502368927,-0.4425770342350006,-0.03991596773266792,-0.17997199296951294,-0.1449579894542694,-0.1449579894542694,0.2927170991897583,-0.12745098769664764,-0.25,-0.07492997497320175,-0.23249299824237823,-0.26750701665878296,0.11764705926179886,-0.05742296949028969,-0.09243697673082352,-0.25,-0.0049019609577953815,-0.03991596773266792,-0.07492997497320175,-0.3550420105457306,-0.33753502368927,-0.1449579894542694,-0.17997199296951294,0.36274510622024536,0.012605042196810246,-0.26750701665878296,-0.32002800703048706,-0.17997199296951294,-0.05742296949028969,-0.21498599648475647,-0.03991596773266792,0.08263305574655533,-0.33753502368927,-0.21498599648475647,0.18767507374286652,0.13515406847000122,-0.05742296949028969,0.0476190485060215,0.030112044885754585,-0.23249299824237823,-0.05742296949028969,-0.3025210201740265,-0.10994397848844528,-0.26750701665878296,-0.10994397848844528,-0.12745098769664764,-0.37254902720451355,-0.21498599648475647,-0.25,-0.4950980246067047,-0.5126050710678101,-0.5826330780982971,-0.6526610851287842,-0.8277310729026794,-0.5651260614395142,-0.37254902720451355,-0.5476190447807312,-0.37254902720451355,-0.02240896411240101,-0.5651260614395142,-0.26750701665878296,-0.03991596773266792,-0.0049019609577953815,0.0476190485060215,-0.0049019609577953815,-0.10994397848844528,0.0476190485060215,-0.17997199296951294,-0.32002800703048706,-0.4600840210914612,-0.5651260614395142,-0.4950980246067047,-0.16246499121189117,0.030112044885754585,-0.10994397848844528,-0.23249299824237823,-0.07492997497320175,-0.17997199296951294,-0.5301120281219482,-0.21498599648475647,-0.42507001757621765,-0.5826330780982971,-0.6876750588417053,-0.6176470518112183,-0.5301120281219482,-0.1449579894542694,-0.4600840210914612,-0.42507001757621765,-0.6876750588417053,-0.1974789947271347,-0.28501400351524353,-0.4950980246067047,-0.10994397848844528,-0.7051820755004883,-0.5126050710678101,-0.4075630307197571,-0.33753502368927,-0.42507001757621765,-0.32002800703048706,-0.4425770342350006,-0.37254902720451355,-0.28501400351524353,-0.03991596773266792,-0.37254902720451355,-0.05742296949028969,-0.4075630307197571,-0.0049019609577953815,-0.28501400351524353,-0.26750701665878296,-0.5826330780982971,-0.5301120281219482,-0.3550420105457306,-0.21498599648475647,-0.6526610851287842,-0.6001400351524353,-0.5301120281219482,-0.7226890921592712,-0.33753502368927,-0.12745098769664764,-0.5651260614395142,-0.1974789947271347,-0.37254902720451355,-0.5126050710678101,-0.4075630307197571,-0.33753502368927,-0.1974789947271347,-0.3900560140609741,-0.26750701665878296,-0.26750701665878296,-0.26750701665878296,-0.16246499121189117,-0.26750701665878296,-0.17997199296951294,-0.33753502368927,-0.12745098769664764,-0.4075630307197571,-0.5476190447807312,-0.4950980246067047,-0.7051820755004883,-0.4600840210914612,-0.5476190447807312,-0.7401960492134094,-0.8452380895614624,-0.7401960492134094,-0.9677870869636536,-1.1253501176834106,-0.8102241158485413,-1.0378150939941406,-0.8102241158485413,-0.6351540684700012,-0.4600840210914612,-0.02240896411240101,-0.1974789947271347,-0.37254902720451355,-0.5651260614395142,-0.7577030658721924,-0.8102241158485413,-0.7577030658721924,-1.0903360843658447,-0.9677870869636536,-0.9502801299095154,-0.5651260614395142,-0.5826330780982971,-0.7401960492134094,-0.8977590799331665,-1.0028011798858643,-1.3354341983795166,-1.3354341983795166,-1.2478991746902466,-1.0728291273117065,-0.9852941036224365,-0.5826330780982971,-0.28501400351524353,-0.4075630307197571,-0.33753502368927,-0.3550420105457306,-0.1449579894542694,-0.3025210201740265,-0.4075630307197571,-0.5476190447807312,-0.8277310729026794,-1.0728291273117065,-0.9327731132507324,-1.0378150939941406,-1.1078431606292725,-1.2303920984268188,-1.0028011798858643],[-0.0049019609577953815,-0.07492997497320175,-0.09243697673082352,-0.3025210201740265,0.22268907725811005,0.15266107022762299,0.06512605398893356,-0.23249299824237823,-0.26750701665878296,-0.8277310729026794,-0.5126050710678101,-0.5826330780982971,0.9229691624641418,0.8704481720924377,1.343137264251709,1.693277359008789,2.0259103775024414,1.220588207244873,0.4852941036224365,-0.0049019609577953815,0.27521008253097534,0.3977591097354889,0.6078431606292725,-1.6155462265014648,-1.1253501176834106,-0.9152660965919495,-1.0203081369400024,-1.1253501176834106,-1.0203081369400024,-0.7226890921592712,-0.8977590799331665,-1.0553221702575684,-0.6351540684700012,-0.7401960492134094,-0.4950980246067047,-0.32002800703048706,-0.1974789947271347,-0.6701680421829224,-0.32002800703048706,-0.32002800703048706,-0.33753502368927,-0.25,-0.03991596773266792,-0.03991596773266792,-0.37254902720451355,-0.0049019609577953815,-0.12745098769664764,0.1001400575041771,0.030112044885754585,0.0476190485060215,-0.0049019609577953815,-0.07492997497320175,-0.05742296949028969,-0.1449579894542694,-0.10994397848844528,0.012605042196810246,-0.09243697673082352,-0.07492997497320175,-0.1449579894542694,-0.42507001757621765,-0.3900560140609741,-0.3550420105457306,-0.26750701665878296,-0.0049019609577953815,0.20518207550048828,-0.23249299824237823,-0.5126050710678101,-0.3025210201740265,-0.05742296949028969,0.08263305574655533,-0.3900560140609741,0.0476190485060215,-0.09243697673082352,-0.47759103775024414,-0.10994397848844528,-0.26750701665878296,-0.42507001757621765,-0.21498599648475647,0.012605042196810246,-0.33753502368927,-0.4075630307197571,-0.02240896411240101,-0.0049019609577953815,-0.3900560140609741,-0.5126050710678101,-0.37254902720451355,-0.21498599648475647,-0.6526610851287842,-0.6526610851287842,-0.42507001757621765,-0.6001400351524353,-0.7401960492134094,-0.5651260614395142,-0.33753502368927,-0.1449579894542694,-0.3550420105457306,-0.23249299824237823,-0.3900560140609741,-0.12745098769664764,0.030112044885754585,-0.23249299824237823,0.13515406847000122,-0.05742296949028969,-0.3550420105457306,-0.7752100825309753,-0.33753502368927,-0.12745098769664764,-0.5301120281219482,-0.4425770342350006,-0.1449579894542694,0.1001400575041771,-0.0049019609577953815,-0.6701680421829224,-0.5301120281219482,-0.4425770342350006,-0.7226890921592712,-0.5651260614395142,-0.5301120281219482,-0.7051820755004883,-0.6001400351524353,-0.6001400351524353,-0.6701680421829224,-0.6176470518112183,-0.32002800703048706,-0.47759103775024414,-0.37254902720451355,-0.33753502368927,-0.1974789947271347,-0.28501400351524353,-0.4425770342350006,-0.5126050710678101,-0.33753502368927,-0.5826330780982971,-0.28501400351524353,-0.5651260614395142,-0.4425770342350006,-0.4075630307197571,-0.7226890921592712,-0.4075630307197571,-0.33753502368927,-0.42507001757621765,-0.1974789947271347,-0.3025210201740265,-0.4950980246067047,-0.4075630307197571,-0.4075630307197571,-0.4950980246067047,-0.4950980246067047,-0.4425770342350006,-0.4075630307197571,-0.7051820755004883,-0.4425770342350006,-0.47759103775024414,-0.4425770342350006,-0.32002800703048706,-0.37254902720451355,-0.42507001757621765,-0.42507001757621765,-0.28501400351524353,-0.4075630307197571,-0.07492997497320175,-0.5476190447807312,-0.17997199296951294,-0.23249299824237823,-0.17997199296951294,-0.25,-0.10994397848844528,-0.10994397848844528,-0.3900560140609741,-0.1449579894542694,-0.1974789947271347,-0.17997199296951294,-0.37254902720451355,-0.5301120281219482,-0.7401960492134094,-0.4425770342350006,-0.37254902720451355,-0.6526610851287842,-1.0378150939941406,-0.7927170991897583,-1.1603641510009766,-0.8977590799331665,-0.7401960492134094,-0.8627451062202454,-0.5301120281219482,-0.7051820755004883,-0.28501400351524353,-0.1449579894542694,-0.26750701665878296,-0.16246499121189117,-0.3550420105457306,-0.6876750588417053,-0.7577030658721924,-1.2478991746902466,-0.9677870869636536,-0.8977590799331665,-0.9502801299095154,-1.0378150939941406,-0.8277310729026794,-0.8277310729026794,-0.6876750588417053,-0.6001400351524353,-1.0028011798858643,-1.2654061317443848,-1.2128851413726807,-1.3179271221160889,-1.0728291273117065,-0.9502801299095154,-0.7051820755004883,-0.3550420105457306,-0.4075630307197571,-0.3550420105457306,-0.3550420105457306,-0.10994397848844528,-0.16246499121189117,-0.28501400351524353,-0.6351540684700012,-0.7401960492134094,-0.7226890921592712,-0.7927170991897583,-0.9152660965919495,-0.7577030658721924,-1.0728291273117065,-1.2654061317443848],[-0.23249299824237823,-0.12745098769664764,-0.23249299824237823,-0.05742296949028969,-0.16246499121189117,-0.07492997497320175,0.06512605398893356,-0.03991596773266792,-0.12745098769664764,-0.6701680421829224,-0.33753502368927,-0.3025210201740265,0.6603641510009766,0.8179271817207336,1.6232492923736572,1.5007002353668213,1.7282912731170654,1.518207311630249,0.7478991746902466,0.6603641510009766,0.25770309567451477,0.3452380895614624,0.9579831957817078,-1.668067216873169,-1.5105042457580566,-1.1603641510009766,-1.2128851413726807,-0.9327731132507324,-0.8452380895614624,-0.9152660965919495,-0.9327731132507324,-0.7577030658721924,-0.6001400351524353,-0.5301120281219482,-0.6176470518112183,-0.3900560140609741,-0.4950980246067047,-0.5476190447807312,-0.3025210201740265,-0.4425770342350006,-0.1974789947271347,-0.10994397848844528,-0.4075630307197571,0.15266107022762299,-0.07492997497320175,-0.32002800703048706,0.012605042196810246,0.08263305574655533,0.1001400575041771,0.2927170991897583,0.2401960790157318,-0.0049019609577953815,-0.3550420105457306,0.0476190485060215,0.32773110270500183,0.46778711676597595,0.012605042196810246,0.0476190485060215,-0.4425770342350006,0.1001400575041771,-0.3900560140609741,-0.5126050710678101,-0.28501400351524353,-0.4425770342350006,-0.12745098769664764,-0.07492997497320175,-0.10994397848844528,-0.0049019609577953815,-0.0049019609577953815,0.06512605398893356,-0.17997199296951294,-0.47759103775024414,0.08263305574655533,-0.28501400351524353,-0.23249299824237823,-0.5476190447807312,-0.7577030658721924,-0.07492997497320175,0.15266107022762299,-0.3025210201740265,-0.25,0.2927170991897583,-0.3025210201740265,-0.4075630307197571,-0.5126050710678101,-0.26750701665878296,-0.6526610851287842,-0.3900560140609741,-0.7577030658721924,-0.8627451062202454,-0.5301120281219482,-0.7927170991897583,-0.28501400351524353,-0.16246499121189117,-0.21498599648475647,-0.5301120281219482,-0.4600840210914612,-0.5126050710678101,-0.25,0.08263305574655533,-0.10994397848844528,-0.25,0.0476190485060215,-0.21498599648475647,-0.4950980246067047,-0.47759103775024414,-0.4950980246067047,-0.23249299824237823,-0.21498599648475647,-0.17997199296951294,0.08263305574655533,-0.33753502368927,-0.6876750588417053,-0.7226890921592712,-0.3550420105457306,-0.8452380895614624,-0.6701680421829224,-0.6526610851287842,-0.4600840210914612,-0.8102241158485413,-0.9152660965919495,-0.4425770342350006,-0.07492997497320175,-0.4425770342350006,-0.6176470518112183,-0.28501400351524353,-0.21498599648475647,-0.21498599648475647,-0.26750701665878296,-0.4075630307197571,-0.12745098769664764,-0.28501400351524353,-0.33753502368927,-0.3025210201740265,-0.3550420105457306,-0.3550420105457306,-0.4425770342350006,-0.25,-0.1449579894542694,-0.4425770342350006,-0.28501400351524353,-0.25,-0.3025210201740265,-0.21498599648475647,-0.6001400351524353,-0.25,-0.33753502368927,-0.5301120281219482,-0.47759103775024414,-0.8452380895614624,-0.5301120281219482,-0.4075630307197571,-0.5826330780982971,-0.4075630307197571,-0.23249299824237823,-0.42507001757621765,-0.26750701665878296,-0.4425770342350006,-0.4425770342350006,-0.5126050710678101,-0.42507001757621765,-0.09243697673082352,-0.21498599648475647,-0.4600840210914612,-0.23249299824237823,-0.28501400351524353,-0.25,-0.07492997497320175,-0.37254902720451355,-0.3025210201740265,-0.1449579894542694,-0.10994397848844528,-0.47759103775024414,-0.1974789947271347,-0.6876750588417053,-0.7051820755004883,-0.7401960492134094,-0.8102241158485413,-0.8277310729026794,-0.7927170991897583,-0.7401960492134094,-1.0028011798858643,-1.0728291273117065,-0.8627451062202454,-1.1428571939468384,-0.47759103775024414,-0.47759103775024414,-0.32002800703048706,-0.1974789947271347,-0.23249299824237823,-0.3900560140609741,-0.6526610851287842,-0.7577030658721924,-1.0203081369400024,-0.9502801299095154,-0.8977590799331665,-1.2829132080078125,-0.8452380895614624,-0.8277310729026794,-0.5126050710678101,-0.6701680421829224,-0.7577030658721924,-0.8627451062202454,-1.1078431606292725,-1.3704482316970825,-1.3529411554336548,-1.2478991746902466,-1.0903360843658447,-0.9677870869636536,-0.5651260614395142,-0.42507001757621765,-0.26750701665878296,-0.33753502368927,-0.17997199296951294,-0.17997199296951294,-0.33753502368927,-0.6526610851287842,-0.8802521228790283,-0.8802521228790283,-0.7927170991897583,-1.1078431606292725,-0.8627451062202454,-1.0378150939941406,-1.2128851413726807],[-0.33753502368927,-0.5126050710678101,-0.16246499121189117,-0.3025210201740265,-0.21498599648475647,-0.3550420105457306,0.012605042196810246,-0.17997199296951294,0.012605042196810246,-0.28501400351524353,-0.3025210201740265,-0.25,0.8529411554336548,0.36274510622024536,1.2906162738800049,1.7633053064346313,1.693277359008789,1.2906162738800049,0.8879551887512207,0.18767507374286652,0.3977591097354889,0.2927170991897583,0.9054622054100037,-1.6855741739273071,-1.0728291273117065,-0.9327731132507324,-0.8977590799331665,-0.7752100825309753,-1.0203081369400024,-0.9852941036224365,-1.0553221702575684,-0.7577030658721924,-0.8802521228790283,-0.8977590799331665,-0.5476190447807312,-0.4425770342350006,-0.4425770342350006,-0.09243697673082352,-0.33753502368927,-0.12745098769664764,-0.17997199296951294,0.06512605398893356,-0.05742296949028969,-0.10994397848844528,-0.3550420105457306,-0.09243697673082352,0.030112044885754585,0.13515406847000122,-0.4425770342350006,0.012605042196810246,-0.37254902720451355,-0.1974789947271347,-0.12745098769664764,-0.05742296949028969,0.20518207550048828,0.4852941036224365,0.012605042196810246,0.08263305574655533,-0.1974789947271347,-0.10994397848844528,0.41526609659194946,-0.28501400351524353,-0.4075630307197571,-0.25,-0.28501400351524353,-0.10994397848844528,-0.4600840210914612,-0.02240896411240101,-0.03991596773266792,0.1001400575041771,-0.16246499121189117,-0.3550420105457306,0.012605042196810246,-0.23249299824237823,0.012605042196810246,-0.3025210201740265,-0.28501400351524353,0.22268907725811005,-0.10994397848844528,-0.07492997497320175,-0.10994397848844528,-0.09243697673082352,-0.47759103775024414,-0.23249299824237823,-0.6351540684700012,-0.7051820755004883,-0.5301120281219482,-0.9852941036224365,-0.5476190447807312,-0.47759103775024414,-0.37254902720451355,-0.7226890921592712,-0.4425770342350006,-0.21498599648475647,-0.1974789947271347,-0.5301120281219482,-0.26750701665878296,-0.16246499121189117,0.08263305574655533,-0.0049019609577953815,-0.1449579894542694,-0.05742296949028969,-0.05742296949028969,-0.4425770342350006,-0.32002800703048706,-0.3025210201740265,-0.26750701665878296,-0.37254902720451355,-0.47759103775024414,-0.05742296949028969,-0.10994397848844528,-0.32002800703048706,-0.5476190447807312,-0.7051820755004883,-0.8277310729026794,-0.5126050710678101,-0.5826330780982971,-0.7051820755004883,-0.9677870869636536,-0.4950980246067047,-0.7752100825309753,-0.3900560140609741,-0.32002800703048706,-0.5651260614395142,-0.42507001757621765,-0.3025210201740265,-0.02240896411240101,-0.5301120281219482,-0.16246499121189117,-0.26750701665878296,-0.02240896411240101,-0.3900560140609741,-0.4600840210914612,-0.37254902720451355,-0.4950980246067047,-0.28501400351524353,-0.42507001757621765,-0.16246499121189117,-0.33753502368927,-0.1974789947271347,-0.07492997497320175,-0.28501400351524353,-0.4425770342350006,-0.4425770342350006,-0.6176470518112183,-0.6526610851287842,-0.42507001757621765,-0.3550420105457306,-0.5476190447807312,-0.5301120281219482,-0.3900560140609741,-0.37254902720451355,-0.37254902720451355,-0.1449579894542694,-0.47759103775024414,-0.3025210201740265,-0.47759103775024414,-0.37254902720451355,-0.4075630307197571,-0.33753502368927,-0.37254902720451355,-0.16246499121189117,-0.3025210201740265,-0.3025210201740265,-0.09243697673082352,-0.17997199296951294,-0.21498599648475647,-0.26750701665878296,-0.16246499121189117,-0.3025210201740265,-0.07492997497320175,-0.25,-0.4600840210914612,-0.5126050710678101,-0.25,-0.6176470518112183,-0.6526610851287842,-0.6876750588417053,-0.7401960492134094,-0.6876750588417053,-0.7752100825309753,-0.9677870869636536,-1.0203081369400024,-0.9677870869636536,-0.7051820755004883,-0.42507001757621765,-0.37254902720451355,-0.3025210201740265,-0.37254902720451355,-0.47759103775024414,-0.21498599648475647,-0.8627451062202454,-0.7927170991897583,-0.9852941036224365,-1.0728291273117065,-0.8627451062202454,-0.8102241158485413,-1.0203081369400024,-0.6876750588417053,-0.6526610851287842,-0.5476190447807312,-0.9152660965919495,-1.1603641510009766,-1.2654061317443848,-1.3004201650619507,-1.4404761791229248,-1.0903360843658447,-1.0028011798858643,-0.8627451062202454,-0.23249299824237823,-0.3550420105457306,-0.4075630307197571,-0.26750701665878296,-0.23249299824237823,0.012605042196810246,-0.21498599648475647,-0.5826330780982971,-0.5651260614395142,-0.8977590799331665,-0.6876750588417053,-0.9502801299095154,-0.8802521228790283,-1.0903360843658447,-1.0903360843658447],[-0.16246499121189117,-0.37254902720451355,-0.33753502368927,-0.4075630307197571,-0.33753502368927,-0.3900560140609741,-0.4425770342350006,0.06512605398893356,-0.1974789947271347,-0.21498599648475647,-0.21498599648475647,-0.09243697673082352,0.2927170991897583,0.8879551887512207,1.4131652116775513,1.5007002353668213,1.430672287940979,1.1855741739273071,0.9229691624641418,0.6253501176834106,0.46778711676597595,0.5028011202812195,0.5378151535987854,-1.2654061317443848,-1.2478991746902466,-1.3004201650619507,-1.1953781843185425,-1.0378150939941406,-1.0203081369400024,-1.0203081369400024,-0.8452380895614624,-0.6876750588417053,-0.8102241158485413,-0.8977590799331665,-0.7051820755004883,-0.5301120281219482,-0.1449579894542694,-0.1974789947271347,-0.4950980246067047,-0.17997199296951294,-0.12745098769664764,-0.21498599648475647,-0.1974789947271347,-0.1974789947271347,-0.28501400351524353,0.030112044885754585,-0.10994397848844528,0.0476190485060215,-0.23249299824237823,-0.3550420105457306,-0.16246499121189117,-0.3025210201740265,-0.4950980246067047,0.11764705926179886,-0.26750701665878296,-0.07492997497320175,-0.25,-0.10994397848844528,0.012605042196810246,-0.1449579894542694,-0.03991596773266792,-0.4950980246067047,-0.37254902720451355,-0.10994397848844528,-0.05742296949028969,0.11764705926179886,-0.17997199296951294,-0.47759103775024414,-0.37254902720451355,-0.32002800703048706,-0.23249299824237823,-0.1449579894542694,-0.32002800703048706,-0.4600840210914612,-0.37254902720451355,-0.4425770342350006,-0.3025210201740265,-0.4075630307197571,-0.42507001757621765,0.1001400575041771,-0.6526610851287842,-0.02240896411240101,-0.6701680421829224,-0.5826330780982971,-0.5301120281219482,-0.7927170991897583,-0.4950980246067047,-0.6001400351524353,-0.3550420105457306,-0.6176470518112183,-0.3025210201740265,-0.02240896411240101,-0.25,-0.1449579894542694,-0.32002800703048706,-0.4425770342350006,-0.3900560140609741,-0.21498599648475647,-0.3550420105457306,-0.12745098769664764,-0.33753502368927,-0.5301120281219482,-0.23249299824237823,-0.05742296949028969,-0.5826330780982971,-0.33753502368927,0.06512605398893356,-0.3900560140609741,0.012605042196810246,0.06512605398893356,0.20518207550048828,-0.3900560140609741,-0.42507001757621765,-0.37254902720451355,-0.5651260614395142,-0.5301120281219482,-0.42507001757621765,-0.6176470518112183,-0.5651260614395142,-0.6876750588417053,-0.42507001757621765,-0.6176470518112183,-0.3025210201740265,-0.5126050710678101,-0.5826330780982971,-0.5826330780982971,0.012605042196810246,-0.4075630307197571,-0.3550420105457306,-0.17997199296951294,-0.17997199296951294,-0.1974789947271347,-0.1974789947271347,-0.33753502368927,-0.6351540684700012,-0.42507001757621765,-0.23249299824237823,-0.28501400351524353,-0.10994397848844528,-0.10994397848844528,-0.3025210201740265,-0.37254902720451355,-0.37254902720451355,-0.3025210201740265,-0.47759103775024414,-0.5826330780982971,-0.4600840210914612,-0.4600840210914612,-0.47759103775024414,-0.28501400351524353,-0.33753502368927,-0.5301120281219482,-0.3550420105457306,-0.6701680421829224,-0.6001400351524353,-0.47759103775024414,-0.6001400351524353,-0.1449579894542694,-0.47759103775024414,-0.23249299824237823,-0.28501400351524353,-0.26750701665878296,-0.1449579894542694,-0.3900560140609741,-0.21498599648475647,-0.1449579894542694,-0.1974789947271347,-0.23249299824237823,-0.28501400351524353,-0.42507001757621765,-0.3550420105457306,-0.42507001757621765,-0.4950980246067047,-0.6701680421829224,-0.9152660965919495,-0.5826330780982971,-0.6001400351524353,-0.8277310729026794,-0.6701680421829224,-0.8802521228790283,-0.8802521228790283,-0.8277310729026794,-0.8277310729026794,-0.8627451062202454,-0.6001400351524353,-0.4600840210914612,-0.25,-0.17997199296951294,-0.3550420105457306,-0.4075630307197571,-0.7051820755004883,-0.5826330780982971,-1.0203081369400024,-0.9852941036224365,-1.3179271221160889,-0.8802521228790283,-1.2128851413726807,-0.7752100825309753,-0.8102241158485413,-0.5651260614395142,-0.6001400351524353,-1.0378150939941406,-1.1078431606292725,-1.2128851413726807,-1.457983136177063,-1.457983136177063,-1.2654061317443848,-1.2478991746902466,-1.1778711080551147,-0.7577030658721924,-0.26750701665878296,-0.4600840210914612,-0.32002800703048706,-0.26750701665878296,-0.28501400351524353,-0.21498599648475647,-0.3550420105457306,-0.25,-0.6176470518112183,-0.8277310729026794,-0.5826330780982971,-1.0553221702575684,-0.7752100825309753,-0.7927170991897583],[-0.3025210201740265,-0.33753502368927,-0.1449579894542694,-0.4950980246067047,-0.7226890921592712,-0.5476190447807312,-0.7577030658721924,-0.21498599648475647,-0.3025210201740265,-0.32002800703048706,-0.32002800703048706,-0.21498599648475647,-0.5476190447807312,0.2401960790157318,1.2906162738800049,1.7107843160629272,1.395658254623413,1.0980392694473267,1.2906162738800049,0.18767507374286652,0.5903361439704895,0.5728291273117065,0.6778711676597595,-1.3004201650619507,-1.3704482316970825,-1.3179271221160889,-1.0728291273117065,-0.8277310729026794,-0.8102241158485413,-0.8452380895614624,-1.0203081369400024,-1.0028011798858643,-0.9152660965919495,-0.8277310729026794,-0.7401960492134094,-0.42507001757621765,-0.17997199296951294,-0.16246499121189117,-0.32002800703048706,-0.47759103775024414,-0.09243697673082352,0.0476190485060215,0.030112044885754585,-0.32002800703048706,-0.25,-0.33753502368927,0.1001400575041771,-0.09243697673082352,-0.3900560140609741,-0.6351540684700012,-0.4075630307197571,-0.3550420105457306,-0.26750701665878296,-0.25,-0.03991596773266792,-0.10994397848844528,-0.37254902720451355,-0.0049019609577953815,0.17016807198524475,-0.47759103775024414,0.08263305574655533,-0.4600840210914612,0.08263305574655533,-0.5301120281219482,-0.32002800703048706,-0.07492997497320175,-0.3550420105457306,-0.09243697673082352,-0.4075630307197571,-0.33753502368927,-0.37254902720451355,0.030112044885754585,-0.4075630307197571,-0.42507001757621765,-0.6526610851287842,-0.28501400351524353,-0.5651260614395142,-0.47759103775024414,-0.32002800703048706,-0.02240896411240101,-0.6176470518112183,-0.09243697673082352,-0.5126050710678101,-0.4600840210914612,-0.4600840210914612,-0.3900560140609741,-0.21498599648475647,-0.4600840210914612,-0.5301120281219482,-0.4600840210914612,-0.09243697673082352,-0.17997199296951294,-0.07492997497320175,-0.32002800703048706,-0.3900560140609741,-0.3550420105457306,-0.1449579894542694,-0.37254902720451355,0.030112044885754585,-0.37254902720451355,-0.23249299824237823,-0.03991596773266792,-0.33753502368927,-0.5301120281219482,-0.5651260614395142,-0.37254902720451355,0.06512605398893356,-0.1449579894542694,0.1001400575041771,-0.17997199296951294,-0.26750701665878296,-0.4075630307197571,-0.3025210201740265,-0.6876750588417053,-0.33753502368927,-0.37254902720451355,-0.3900560140609741,-0.4425770342350006,-0.6876750588417053,-0.3900560140609741,-0.4950980246067047,-0.5126050710678101,-0.28501400351524353,-0.37254902720451355,-0.5651260614395142,-0.5476190447807312,-0.6176470518112183,-0.17997199296951294,-0.42507001757621765,-0.23249299824237823,-0.17997199296951294,-0.17997199296951294,-0.32002800703048706,-0.16246499121189117,-0.28501400351524353,-0.28501400351524353,-0.16246499121189117,-0.42507001757621765,0.030112044885754585,-0.3025210201740265,-0.5126050710678101,-0.5826330780982971,-0.42507001757621765,-0.5651260614395142,-0.42507001757621765,-0.5126050710678101,-0.6876750588417053,-0.4425770342350006,-0.6176470518112183,-0.5301120281219482,-0.42507001757621765,-0.5651260614395142,-0.33753502368927,-0.5651260614395142,-0.5126050710678101,-0.3900560140609741,-0.5476190447807312,-0.3550420105457306,-0.23249299824237823,-0.4600840210914612,-0.4425770342350006,-0.1974789947271347,-0.3025210201740265,-0.23249299824237823,-0.16246499121189117,-0.12745098769664764,-0.33753502368927,-0.07492997497320175,-0.26750701665878296,-0.4600840210914612,-0.42507001757621765,-0.47759103775024414,-0.4425770342350006,-0.7927170991897583,-0.6876750588417053,-0.6351540684700012,-0.7226890921592712,-0.8977590799331665,-0.8277310729026794,-0.8277310729026794,-0.9852941036224365,-0.7401960492134094,-0.7752100825309753,-0.7051820755004883,-0.42507001757621765,-0.5651260614395142,-0.17997199296951294,-0.47759103775024414,-0.1974789947271347,-0.3550420105457306,-0.4950980246067047,-0.7051820755004883,-0.6876750588417053,-1.1078431606292725,-0.9152660965919495,-1.1778711080551147,-0.9677870869636536,-0.6876750588417053,-0.8452380895614624,-0.5126050710678101,-0.6701680421829224,-0.8802521228790283,-0.9677870869636536,-1.1253501176834106,-1.2478991746902466,-1.3879551887512207,-1.3879551887512207,-1.2303920984268188,-1.0028011798858643,-0.9152660965919495,-0.26750701665878296,-0.3550420105457306,-0.3900560140609741,-0.26750701665878296,-0.17997199296951294,-0.09243697673082352,-0.3900560140609741,-0.33753502368927,-0.42507001757621765,-0.5651260614395142,-0.8102241158485413,-0.7226890921592712,-0.7051820755004883,-0.9677870869636536],[-0.0049019609577953815,-0.07492997497320175,-0.25,-0.28501400351524353,-0.1974789947271347,-1.0903360843658447,-0.47759103775024414,-0.3550420105457306,-0.5826330780982971,-0.25,0.08263305574655533,-0.5651260614395142,-1.1603641510009766,1.080532193183899,1.133053183555603,1.8333333730697632,1.693277359008789,1.168067216873169,0.9054622054100037,0.6953781247138977,1.308123230934143,0.6603641510009766,0.4327731132507324,-1.1953781843185425,-1.3529411554336548,-1.3004201650619507,-1.0903360843658447,-1.1078431606292725,-1.0903360843658447,-0.7051820755004883,-1.1953781843185425,-1.0203081369400024,-0.8102241158485413,-0.8277310729026794,-0.8102241158485413,-0.7752100825309753,-0.42507001757621765,-0.26750701665878296,-0.4950980246067047,-0.21498599648475647,-0.37254902720451355,-0.10994397848844528,-0.1974789947271347,-0.21498599648475647,0.1001400575041771,-0.10994397848844528,-0.21498599648475647,-0.23249299824237823,-0.28501400351524353,-0.3025210201740265,-0.12745098769664764,-0.03991596773266792,-0.07492997497320175,-0.1449579894542694,0.20518207550048828,-0.4600840210914612,-0.37254902720451355,-0.09243697673082352,0.012605042196810246,-0.03991596773266792,-0.4425770342350006,-0.6526610851287842,-0.23249299824237823,0.08263305574655533,-0.33753502368927,-0.42507001757621765,-0.5651260614395142,0.1001400575041771,-0.1449579894542694,-0.16246499121189117,-0.1449579894542694,-0.37254902720451355,-0.3025210201740265,-0.21498599648475647,-0.25,-0.16246499121189117,-0.02240896411240101,-0.25,-0.03991596773266792,-0.25,-0.6351540684700012,-0.33753502368927,-0.7927170991897583,-0.5126050710678101,-0.7577030658721924,-1.0903360843658447,-0.4950980246067047,-0.09243697673082352,-0.03991596773266792,-0.23249299824237823,-0.12745098769664764,-0.1449579894542694,-0.42507001757621765,-0.1974789947271347,-0.12745098769664764,-0.07492997497320175,-0.09243697673082352,-0.28501400351524353,0.2401960790157318,-0.3550420105457306,-0.3025210201740265,0.08263305574655533,-0.47759103775024414,-0.21498599648475647,-0.37254902720451355,-0.4075630307197571,0.1001400575041771,-0.3550420105457306,0.012605042196810246,-0.3550420105457306,-0.3025210201740265,-0.6176470518112183,-0.4425770342350006,-0.4075630307197571,-0.6701680421829224,-0.47759103775024414,-0.6001400351524353,-0.1974789947271347,-0.7401960492134094,-0.47759103775024414,-0.5651260614395142,-0.5126050710678101,-0.09243697673082352,-0.4425770342350006,-0.37254902720451355,-0.4425770342350006,-0.3900560140609741,-0.3025210201740265,-0.26750701665878296,-0.28501400351524353,-0.42507001757621765,-0.4075630307197571,-0.3900560140609741,-0.33753502368927,-0.5476190447807312,0.0476190485060215,-0.4075630307197571,-0.16246499121189117,-0.09243697673082352,-0.32002800703048706,-0.6351540684700012,-0.28501400351524353,-0.28501400351524353,-0.4425770342350006,-0.28501400351524353,-0.8802521228790283,-0.6876750588417053,-0.3900560140609741,-0.07492997497320175,-0.5126050710678101,-0.23249299824237823,-0.26750701665878296,-0.3900560140609741,-0.25,-0.5826330780982971,-0.7226890921592712,-0.23249299824237823,-0.28501400351524353,-0.3025210201740265,-0.37254902720451355,-0.1974789947271347,-0.07492997497320175,-0.23249299824237823,-0.03991596773266792,-0.12745098769664764,-0.12745098769664764,-0.3025210201740265,-0.25,-0.37254902720451355,-0.5301120281219482,-0.37254902720451355,-0.7401960492134094,-0.47759103775024414,-0.8802521228790283,-0.6526610851287842,-0.9852941036224365,-0.8452380895614624,-0.6001400351524353,-0.9677870869636536,-0.8977590799331665,-0.9502801299095154,-0.9152660965919495,-0.7577030658721924,-0.7051820755004883,-0.5476190447807312,-0.4075630307197571,-0.3900560140609741,-0.1449579894542694,-0.17997199296951294,-0.42507001757621765,-0.32002800703048706,-0.6876750588417053,-0.7927170991897583,-1.1253501176834106,-1.0903360843658447,-1.2303920984268188,-0.9152660965919495,-0.8277310729026794,-0.6351540684700012,-0.6351540684700012,-0.7051820755004883,-0.6351540684700012,-0.9327731132507324,-0.9677870869636536,-1.2478991746902466,-1.3004201650619507,-1.2478991746902466,-1.4404761791229248,-1.2128851413726807,-0.8102241158485413,-0.42507001757621765,-0.37254902720451355,-0.25,-0.21498599648475647,-0.3025210201740265,-0.25,-0.25,-0.42507001757621765,-0.3025210201740265,-0.8277310729026794,-0.7577030658721924,-0.7051820755004883,-0.7226890921592712,-0.8277310729026794],[0.3977591097354889,0.32773110270500183,-0.10994397848844528,-0.5301120281219482,-0.4950980246067047,-0.6176470518112183,-0.7051820755004883,-1.0728291273117065,-0.7051820755004883,-0.4950980246067047,-0.25,-0.37254902720451355,-1.492997169494629,0.36274510622024536,1.2030812501907349,1.5882352590560913,1.9733893871307373,1.133053183555603,0.8354341983795166,0.8354341983795166,0.8354341983795166,0.6428571343421936,0.5378151535987854,-1.2303920984268188,-1.1603641510009766,-1.1953781843185425,-1.0553221702575684,-1.2654061317443848,-0.9152660965919495,-0.9677870869636536,-0.9502801299095154,-1.0378150939941406,-0.9327731132507324,-0.7577030658721924,-0.9677870869636536,-0.9327731132507324,-0.5126050710678101,-0.5301120281219482,-0.6876750588417053,-0.1449579894542694,-0.12745098769664764,-0.5651260614395142,-0.6176470518112183,-0.26750701665878296,-0.3025210201740265,-0.25,-0.4950980246067047,-0.3025210201740265,0.0476190485060215,0.0476190485060215,0.17016807198524475,0.030112044885754585,-0.3025210201740265,-0.07492997497320175,-0.4075630307197571,-0.0049019609577953815,-0.02240896411240101,-0.10994397848844528,-0.33753502368927,-0.1449579894542694,-0.07492997497320175,-0.28501400351524353,-0.5126050710678101,-0.5651260614395142,-0.07492997497320175,-0.32002800703048706,-0.23249299824237823,-0.37254902720451355,-0.09243697673082352,-0.21498599648475647,-0.21498599648475647,-0.28501400351524353,-0.07492997497320175,-0.4425770342350006,-0.17997199296951294,-0.26750701665878296,0.1001400575041771,0.18767507374286652,-0.32002800703048706,-0.5301120281219482,-0.33753502368927,-0.7401960492134094,-0.37254902720451355,-0.8102241158485413,-0.47759103775024414,-0.07492997497320175,-0.28501400351524353,-0.28501400351524353,-0.17997199296951294,-0.02240896411240101,0.17016807198524475,-0.07492997497320175,-0.09243697673082352,-0.33753502368927,-0.17997199296951294,-0.17997199296951294,-0.02240896411240101,-0.09243697673082352,-0.6001400351524353,-1.1953781843185425,-0.26750701665878296,0.012605042196810246,-0.3550420105457306,-0.23249299824237823,-0.47759103775024414,-0.32002800703048706,-0.26750701665878296,-0.4600840210914612,0.030112044885754585,-0.23249299824237823,-0.5126050710678101,-0.7226890921592712,-0.6176470518112183,-0.5651260614395142,-0.26750701665878296,-0.3025210201740265,-0.5826330780982971,-0.3900560140609741,-0.5476190447807312,-0.4950980246067047,-0.7401960492134094,-0.6701680421829224,-0.3900560140609741,-0.42507001757621765,-0.21498599648475647,-0.23249299824237823,-0.3550420105457306,-0.26750701665878296,-0.10994397848844528,-0.03991596773266792,-0.12745098769664764,-0.28501400351524353,-0.5651260614395142,-0.17997199296951294,-0.28501400351524353,-0.17997199296951294,-0.21498599648475647,-0.32002800703048706,-0.17997199296951294,-0.21498599648475647,-0.33753502368927,-0.4600840210914612,-0.6351540684700012,-0.5826330780982971,-0.8102241158485413,-0.6876750588417053,-0.7051820755004883,-0.6701680421829224,-0.16246499121189117,-0.47759103775024414,-0.32002800703048706,-0.42507001757621765,-0.6701680421829224,-0.4600840210914612,-0.28501400351524353,-0.4950980246067047,-0.28501400351524353,-0.28501400351524353,-0.33753502368927,-0.32002800703048706,-0.17997199296951294,-0.1449579894542694,-0.25,-0.16246499121189117,-0.4600840210914612,-0.1974789947271347,-0.09243697673082352,-0.28501400351524353,-0.16246499121189117,-0.6526610851287842,-0.42507001757621765,-0.4075630307197571,-0.6176470518112183,-0.7226890921592712,-0.8452380895614624,-0.9152660965919495,-1.0203081369400024,-0.8802521228790283,-1.0378150939941406,-0.8802521228790283,-0.8277310729026794,-0.7577030658721924,-0.6701680421829224,-0.7577030658721924,-0.5476190447807312,-0.12745098769664764,-0.4075630307197571,-0.3550420105457306,-0.1974789947271347,-0.25,-0.26750701665878296,-0.7401960492134094,-0.7577030658721924,-0.8627451062202454,-0.8452380895614624,-0.8802521228790283,-1.0203081369400024,-0.9852941036224365,-0.6876750588417053,-0.8277310729026794,-0.6001400351524353,-0.6876750588417053,-0.8802521228790283,-1.1603641510009766,-1.3529411554336548,-1.3004201650619507,-1.2303920984268188,-1.492997169494629,-1.0553221702575684,-1.1078431606292725,-0.5826330780982971,-0.4600840210914612,-0.16246499121189117,-0.37254902720451355,-0.33753502368927,-0.23249299824237823,-0.37254902720451355,-0.4425770342350006,-0.42507001757621765,-0.7051820755004883,-0.5651260614395142,-0.42507001757621765,-0.7577030658721924,-0.7051820755004883],[0.08263305574655533,0.08263305574655533,-0.16246499121189117,-0.1974789947271347,-0.4075630307197571,-0.7051820755004883,-0.9677870869636536,-0.8802521228790283,-1.2303920984268188,-0.6701680421829224,-0.16246499121189117,-0.42507001757621765,-1.492997169494629,-0.3025210201740265,1.0630252361297607,1.9383753538131714,1.605742335319519,1.518207311630249,0.9054622054100037,1.045518159866333,0.9754902124404907,0.6078431606292725,0.5378151535987854,-1.6505602598190308,-1.4229692220687866,-1.580532193183899,-1.3704482316970825,-1.2303920984268188,-0.9852941036224365,-1.0553221702575684,-0.9502801299095154,-0.9852941036224365,-1.0728291273117065,-1.0028011798858643,-0.8277310729026794,-0.7577030658721924,-0.6526610851287842,-0.8802521228790283,-0.6876750588417053,-0.6176470518112183,-0.1449579894542694,-0.32002800703048706,0.0476190485060215,-0.28501400351524353,-0.4075630307197571,-0.03991596773266792,-0.37254902720451355,-0.12745098769664764,0.11764705926179886,-0.17997199296951294,0.11764705926179886,-0.05742296949028969,-0.3900560140609741,-0.33753502368927,-0.28501400351524353,0.11764705926179886,-0.05742296949028969,-0.16246499121189117,-0.02240896411240101,-0.25,-0.6351540684700012,-0.09243697673082352,-0.1449579894542694,-0.05742296949028969,-0.03991596773266792,-0.0049019609577953815,-0.4425770342350006,0.0476190485060215,-0.3025210201740265,-0.21498599648475647,-0.07492997497320175,-0.28501400351524353,0.0476190485060215,-0.10994397848844528,-0.4950980246067047,0.1001400575041771,-0.17997199296951294,0.13515406847000122,-0.26750701665878296,-0.6876750588417053,0.17016807198524475,-1.0553221702575684,-0.32002800703048706,-0.8627451062202454,-0.3025210201740265,-0.10994397848844528,-0.28501400351524353,-0.09243697673082352,-0.09243697673082352,-0.1449579894542694,-0.25,-0.16246499121189117,-0.23249299824237823,-0.25,-0.0049019609577953815,-0.17997199296951294,-0.10994397848844528,-0.05742296949028969,-0.26750701665878296,-0.28501400351524353,-0.4600840210914612,-0.3550420105457306,-0.4425770342350006,-0.3550420105457306,-0.33753502368927,-0.17997199296951294,-0.10994397848844528,-0.09243697673082352,-0.3550420105457306,-0.42507001757621765,-0.6176470518112183,-0.47759103775024414,-0.4950980246067047,-0.5476190447807312,-0.25,-0.28501400351524353,-0.42507001757621765,-0.3900560140609741,-0.4600840210914612,-0.6351540684700012,-0.7051820755004883,-0.6351540684700012,-0.26750701665878296,-0.33753502368927,-0.3550420105457306,-0.28501400351524353,-0.17997199296951294,-0.5476190447807312,-0.23249299824237823,-0.5826330780982971,-0.21498599648475647,-0.1974789947271347,-0.09243697673082352,-0.4950980246067047,-0.4075630307197571,-0.33753502368927,-0.17997199296951294,-0.26750701665878296,-0.4600840210914612,-0.26750701665878296,-0.3900560140609741,-0.5476190447807312,-0.5301120281219482,-0.28501400351524353,-0.4425770342350006,-0.6876750588417053,-0.5476190447807312,-0.5126050710678101,-0.5826330780982971,-0.6876750588417053,-0.5826330780982971,-0.3900560140609741,-0.6701680421829224,-0.4425770342350006,-0.4950980246067047,-0.23249299824237823,-0.28501400351524353,-0.28501400351524353,-0.32002800703048706,-0.1974789947271347,-0.1974789947271347,-0.25,-0.1974789947271347,-0.28501400351524353,-0.1974789947271347,-0.32002800703048706,-0.25,-0.28501400351524353,-0.1449579894542694,-0.3025210201740265,-0.3550420105457306,-0.8977590799331665,-0.9152660965919495,-0.6526610851287842,-0.8627451062202454,-0.8977590799331665,-0.7577030658721924,-0.7401960492134094,-0.8277310729026794,-0.8277310729026794,-0.7051820755004883,-0.6526610851287842,-0.7401960492134094,-0.4950980246067047,-0.5126050710678101,-0.1449579894542694,-0.42507001757621765,-0.42507001757621765,-0.33753502368927,-0.33753502368927,-0.5126050710678101,-0.8102241158485413,-0.7401960492134094,-0.8802521228790283,-1.1603641510009766,-1.2478991746902466,-0.8802521228790283,-0.6526610851287842,-1.0028011798858643,-0.7226890921592712,-0.8452380895614624,-0.6876750588417053,-1.1078431606292725,-0.9852941036224365,-1.2654061317443848,-1.3004201650619507,-1.2829132080078125,-1.3529411554336548,-1.2478991746902466,-0.9327731132507324,-0.5651260614395142,-0.3025210201740265,-0.3025210201740265,-0.32002800703048706,-0.3550420105457306,-0.32002800703048706,-0.37254902720451355,-0.5476190447807312,-0.7051820755004883,-0.7577030658721924,-0.5826330780982971,-0.4950980246067047,-0.7577030658721924,-0.6876750588417053],[0.1001400575041771,0.20518207550048828,0.22268907725811005,0.0476190485060215,-0.07492997497320175,-0.5651260614395142,-0.8102241158485413,-0.8627451062202454,-0.7226890921592712,-1.1253501176834106,-0.7927170991897583,-0.3550420105457306,-1.3179271221160889,-0.21498599648475647,1.430672287940979,1.6407562494277954,1.8858543634414673,1.6582633256912231,1.0630252361297607,0.6428571343421936,0.46778711676597595,0.6428571343421936,0.6428571343421936,-1.580532193183899,-1.457983136177063,-1.457983136177063,-1.1953781843185425,-1.0728291273117065,-0.9852941036224365,-1.1078431606292725,-1.0553221702575684,-0.9677870869636536,-0.8452380895614624,-1.0903360843658447,-0.5651260614395142,-0.5651260614395142,-0.5126050710678101,-0.3025210201740265,-0.25,-0.5126050710678101,-0.4425770342350006,-0.09243697673082352,0.22268907725811005,-0.07492997497320175,0.13515406847000122,-0.3900560140609741,-0.37254902720451355,-0.5476190447807312,-0.26750701665878296,0.0476190485060215,0.012605042196810246,-0.28501400351524353,-0.07492997497320175,-0.09243697673082352,-0.23249299824237823,-0.28501400351524353,0.27521008253097534,0.2401960790157318,0.20518207550048828,0.2401960790157318,0.1001400575041771,0.18767507374286652,0.1001400575041771,-0.02240896411240101,-0.1449579894542694,-0.03991596773266792,-0.09243697673082352,-0.07492997497320175,-0.03991596773266792,-0.28501400351524353,-0.33753502368927,0.18767507374286652,-0.5476190447807312,-0.02240896411240101,-0.5301120281219482,0.08263305574655533,-0.5476190447807312,-0.6351540684700012,-0.4600840210914612,-0.6001400351524353,-0.4425770342350006,-0.5301120281219482,-0.4600840210914612,-0.5476190447807312,-0.5476190447807312,-0.37254902720451355,-0.16246499121189117,-0.33753502368927,-0.17997199296951294,-0.12745098769664764,0.0476190485060215,0.08263305574655533,-0.0049019609577953815,0.11764705926179886,-0.03991596773266792,-0.28501400351524353,-0.42507001757621765,-0.32002800703048706,-0.16246499121189117,-0.26750701665878296,-0.6876750588417053,-0.6701680421829224,-0.42507001757621765,-0.26750701665878296,-0.37254902720451355,-0.37254902720451355,-0.6526610851287842,-0.07492997497320175,-0.12745098769664764,-0.16246499121189117,-0.7752100825309753,-0.6526610851287842,-0.33753502368927,-0.6176470518112183,-0.3550420105457306,-0.26750701665878296,-0.33753502368927,-0.47759103775024414,-0.28501400351524353,-0.6001400351524353,-0.6176470518112183,-0.4075630307197571,-0.28501400351524353,-0.12745098769664764,-0.26750701665878296,-0.4600840210914612,-0.6351540684700012,-0.5826330780982971,-0.10994397848844528,-0.4600840210914612,-0.25,-0.4425770342350006,-0.3025210201740265,-0.32002800703048706,-0.3550420105457306,-0.3900560140609741,-0.32002800703048706,-0.25,-0.5126050710678101,-0.12745098769664764,-0.4600840210914612,-0.4425770342350006,-0.7577030658721924,-0.6876750588417053,-0.6001400351524353,-0.6351540684700012,-0.5301120281219482,-0.1974789947271347,-0.6701680421829224,-0.3900560140609741,-0.5301120281219482,-0.4950980246067047,-0.28501400351524353,-0.23249299824237823,-0.26750701665878296,-0.3550420105457306,-0.10994397848844528,-0.21498599648475647,-0.6176470518112183,-0.16246499121189117,-0.17997199296951294,-0.21498599648475647,-0.0049019609577953815,-0.09243697673082352,-0.25,-0.12745098769664764,-0.1974789947271347,-0.3025210201740265,-0.4600840210914612,-0.33753502368927,-0.4950980246067047,-0.5651260614395142,-0.7752100825309753,-0.7226890921592712,-0.9852941036224365,-0.8102241158485413,-0.7927170991897583,-0.8627451062202454,-0.8102241158485413,-0.7401960492134094,-0.6876750588417053,-0.6001400351524353,-0.5476190447807312,-0.5826330780982971,-0.26750701665878296,-0.3025210201740265,-0.42507001757621765,-0.32002800703048706,-0.47759103775024414,-0.5826330780982971,-0.6701680421829224,-0.8102241158485413,-1.0028011798858643,-0.8102241158485413,-0.9852941036224365,-0.9852941036224365,-0.9502801299095154,-0.7401960492134094,-0.7927170991897583,-0.6876750588417053,-0.4950980246067047,-0.7401960492134094,-0.7051820755004883,-0.8452380895614624,-1.0553221702575684,-1.1428571939468384,-1.1953781843185425,-1.1603641510009766,-1.5630252361297607,-1.0728291273117065,-0.8802521228790283,-0.37254902720451355,-0.32002800703048706,-0.6351540684700012,-0.4600840210914612,-0.3025210201740265,-0.28501400351524353,-0.4425770342350006,-0.6876750588417053,-0.5301120281219482,-0.4425770342350006,-0.4425770342350006,-0.6526610851287842,-0.7401960492134094],[0.06512605398893356,0.012605042196810246,0.08263305574655533,0.2401960790157318,0.012605042196810246,-0.32002800703048706,-0.9677870869636536,-0.9852941036224365,-1.0028011798858643,-1.1778711080551147,-1.1603641510009766,-0.8102241158485413,-1.3704482316970825,0.08263305574655533,1.553221344947815,1.7633053064346313,1.6582633256912231,1.5707283020019531,1.0105042457580566,0.9054622054100037,0.18767507374286652,0.7303921580314636,0.6428571343421936,-1.7030812501907349,-1.457983136177063,-1.2829132080078125,-1.2478991746902466,-1.1428571939468384,-1.0203081369400024,-0.7577030658721924,-1.0728291273117065,-1.1078431606292725,-0.9677870869636536,-0.6176470518112183,-0.7577030658721924,-0.6526610851287842,-0.6001400351524353,-0.4075630307197571,-0.42507001757621765,-0.17997199296951294,-0.33753502368927,-0.5301120281219482,-0.5476190447807312,-0.47759103775024414,-0.5126050710678101,-0.21498599648475647,-0.26750701665878296,-0.4075630307197571,-0.3550420105457306,0.1001400575041771,-0.05742296949028969,-0.3025210201740265,-0.37254902720451355,-0.25,-0.4600840210914612,-0.4075630307197571,-0.33753502368927,-0.12745098769664764,-0.09243697673082352,-0.32002800703048706,-0.5301120281219482,-0.25,-0.5476190447807312,-0.05742296949028969,-0.12745098769664764,-0.16246499121189117,0.030112044885754585,-0.5301120281219482,-0.1974789947271347,-0.23249299824237823,-0.03991596773266792,-0.16246499121189117,-0.26750701665878296,-0.09243697673082352,-0.25,-0.5476190447807312,-0.37254902720451355,-0.02240896411240101,-0.6351540684700012,-0.6001400351524353,-0.42507001757621765,-0.47759103775024414,-0.8977590799331665,0.06512605398893356,-0.33753502368927,-0.3550420105457306,0.18767507374286652,-0.16246499121189117,0.030112044885754585,-0.02240896411240101,-0.12745098769664764,0.012605042196810246,-0.02240896411240101,0.06512605398893356,-0.1449579894542694,0.0476190485060215,-0.5476190447807312,-0.3550420105457306,-0.8102241158485413,-0.7401960492134094,-0.7051820755004883,-0.5651260614395142,-0.4600840210914612,-0.3025210201740265,-0.37254902720451355,-0.5476190447807312,-0.26750701665878296,-0.16246499121189117,-0.17997199296951294,-0.6526610851287842,-0.6876750588417053,-0.3550420105457306,-0.6176470518112183,-0.6176470518112183,-0.4425770342350006,-0.32002800703048706,-0.3025210201740265,-0.37254902720451355,-0.4950980246067047,-0.8802521228790283,-0.5826330780982971,-0.6001400351524353,-0.6351540684700012,-0.5301120281219482,-0.42507001757621765,-0.3025210201740265,-0.6351540684700012,-0.3550420105457306,0.012605042196810246,-0.32002800703048706,-0.4950980246067047,-0.47759103775024414,-0.28501400351524353,-0.09243697673082352,-0.4425770342350006,-0.3900560140609741,-0.37254902720451355,-0.26750701665878296,-0.26750701665878296,-0.5126050710678101,-0.26750701665878296,-0.5301120281219482,-0.6876750588417053,-0.6701680421829224,-0.5826330780982971,-0.6876750588417053,-0.3900560140609741,-0.26750701665878296,-0.4950980246067047,-0.32002800703048706,-0.37254902720451355,-0.42507001757621765,-0.21498599648475647,-0.1974789947271347,-0.28501400351524353,-0.1449579894542694,-0.23249299824237823,-0.3550420105457306,-0.47759103775024414,-0.09243697673082352,-0.1449579894542694,-0.1449579894542694,-0.10994397848844528,-0.1974789947271347,-0.32002800703048706,-0.1974789947271347,-0.12745098769664764,-0.3550420105457306,-0.47759103775024414,-0.6176470518112183,-0.8452380895614624,-0.6701680421829224,-0.8102241158485413,-0.6351540684700012,-0.8802521228790283,-0.7226890921592712,-0.6526610851287842,-0.7051820755004883,-0.6701680421829224,-0.6876750588417053,-0.8977590799331665,-0.5301120281219482,-0.5126050710678101,-0.37254902720451355,-0.4950980246067047,-0.37254902720451355,-0.28501400351524353,-0.5301120281219482,-0.4950980246067047,-0.6176470518112183,-0.5126050710678101,-1.0203081369400024,-0.8802521228790283,-0.8627451062202454,-0.9852941036224365,-1.0728291273117065,-0.8452380895614624,-0.8627451062202454,-0.8102241158485413,-0.6701680421829224,-0.9327731132507324,-0.9152660965919495,-0.9852941036224365,-1.0728291273117065,-1.1603641510009766,-1.3004201650619507,-1.3529411554336548,-1.3179271221160889,-1.3179271221160889,-1.2654061317443848,-0.9152660965919495,-0.6001400351524353,-0.17997199296951294,-0.47759103775024414,-0.37254902720451355,-0.3025210201740265,-0.32002800703048706,-0.3550420105457306,-0.4075630307197571,-0.7051820755004883,-0.5476190447807312,-0.7051820755004883,-0.7226890921592712,-0.6876750588417053],[-0.07492997497320175,-0.09243697673082352,0.1001400575041771,-0.07492997497320175,0.20518207550048828,0.030112044885754585,-0.10994397848844528,-0.28501400351524353,-0.5651260614395142,-0.8977590799331665,-1.3529411554336548,-1.0203081369400024,-1.0378150939941406,0.2401960790157318,1.3606442213058472,1.255602240562439,1.6757702827453613,1.308123230934143,0.8529411554336548,0.7303921580314636,0.41526609659194946,0.7303921580314636,0.32773110270500183,-1.3879551887512207,-1.3704482316970825,-1.3179271221160889,-1.1778711080551147,-1.3004201650619507,-1.0728291273117065,-1.1078431606292725,-1.4054621458053589,-1.0378150939941406,-0.8977590799331665,-1.1253501176834106,-0.7927170991897583,-0.9502801299095154,-0.47759103775024414,-0.5651260614395142,-0.25,-0.4075630307197571,-0.6701680421829224,-0.42507001757621765,-0.07492997497320175,-0.17997199296951294,-0.1974789947271347,-0.6876750588417053,-0.02240896411240101,0.012605042196810246,-0.33753502368927,-0.0049019609577953815,-0.03991596773266792,-0.02240896411240101,-0.26750701665878296,0.012605042196810246,-0.12745098769664764,-0.12745098769664764,-0.3550420105457306,-0.10994397848844528,-0.1449579894542694,-0.1449579894542694,-0.21498599648475647,-0.5301120281219482,-0.3025210201740265,-0.02240896411240101,-0.37254902720451355,-0.25,-0.32002800703048706,-0.6526610851287842,-0.21498599648475647,-0.1974789947271347,-0.1449579894542694,-0.3550420105457306,-0.25,-0.10994397848844528,-0.3550420105457306,-0.3025210201740265,-0.1449579894542694,-0.16246499121189117,-0.5651260614395142,-0.05742296949028969,-0.16246499121189117,-0.05742296949028969,-0.09243697673082352,-0.5126050710678101,-0.10994397848844528,0.06512605398893356,-0.26750701665878296,-0.26750701665878296,-0.05742296949028969,-0.16246499121189117,-0.10994397848844528,-0.07492997497320175,0.15266107022762299,-0.09243697673082352,-0.3900560140609741,-0.1449579894542694,-0.3550420105457306,-0.4425770342350006,-0.7752100825309753,-0.6526610851287842,-0.6876750588417053,-0.9852941036224365,-0.4600840210914612,-0.4425770342350006,-0.37254902720451355,-0.05742296949028969,-0.16246499121189117,0.0476190485060215,-0.07492997497320175,-0.5301120281219482,-0.6351540684700012,-0.4075630307197571,-0.33753502368927,-0.21498599648475647,-0.47759103775024414,-0.33753502368927,-0.25,-0.28501400351524353,-0.3025210201740265,-0.4950980246067047,-0.9152660965919495,-0.23249299824237823,-0.3550420105457306,-0.5301120281219482,-0.3550420105457306,-0.5126050710678101,-0.5651260614395142,-0.3900560140609741,-0.3900560140609741,-0.5651260614395142,-0.1974789947271347,-0.37254902720451355,-0.3900560140609741,-0.10994397848844528,-0.25,-0.37254902720451355,-0.3025210201740265,-0.5651260614395142,-0.5301120281219482,-0.6001400351524353,-0.4600840210914612,-0.7401960492134094,-0.7577030658721924,-0.5826330780982971,-0.5651260614395142,-0.5476190447807312,-0.6001400351524353,-0.3025210201740265,-0.17997199296951294,-0.6526610851287842,-0.5651260614395142,-0.3550420105457306,-0.16246499121189117,-0.12745098769664764,-0.1974789947271347,-0.1449579894542694,-0.1449579894542694,-0.3025210201740265,-0.4425770342350006,-0.1449579894542694,-0.16246499121189117,-0.09243697673082352,-0.09243697673082352,-0.3025210201740265,-0.3025210201740265,-0.23249299824237823,-0.17997199296951294,-0.7577030658721924,-0.3550420105457306,-0.6176470518112183,-0.7927170991897583,-0.7927170991897583,-0.8102241158485413,-0.8102241158485413,-0.8802521228790283,-0.9327731132507324,-1.1078431606292725,-1.0028011798858643,-0.6351540684700012,-0.6176470518112183,-0.7051820755004883,-0.4600840210914612,-0.42507001757621765,-0.3025210201740265,-0.33753502368927,-0.3900560140609741,-0.21498599648475647,-0.28501400351524353,-0.7051820755004883,-0.6701680421829224,-0.6701680421829224,-0.9852941036224365,-0.8452380895614624,-0.9502801299095154,-1.0203081369400024,-0.9327731132507324,-0.8452380895614624,-0.9677870869636536,-0.7051820755004883,-0.7051820755004883,-0.8802521228790283,-0.6876750588417053,-0.5826330780982971,-1.0203081369400024,-1.1253501176834106,-1.3529411554336548,-1.3004201650619507,-1.3879551887512207,-1.2128851413726807,-1.4054621458053589,-1.0028011798858643,-0.32002800703048706,-0.42507001757621765,-0.3550420105457306,-0.4950980246067047,-0.3550420105457306,-0.1974789947271347,-0.25,-0.25,-0.5651260614395142,-0.4950980246067047,-0.5826330780982971,-0.7051820755004883,-0.6876750588417053],[-0.37254902720451355,-0.1974789947271347,-0.17997199296951294,-0.0049019609577953815,0.1001400575041771,0.06512605398893356,0.22268907725811005,-0.4425770342350006,-0.8452380895614624,-0.9152660965919495,-1.633053183555603,-1.0903360843658447,-1.3879551887512207,0.6778711676597595,1.605742335319519,0.9754902124404907,1.1155462265014648,1.2030812501907349,0.3452380895614624,0.5903361439704895,-0.09243697673082352,0.450280100107193,0.450280100107193,-1.1253501176834106,-1.3004201650619507,-1.3529411554336548,-1.3004201650619507,-1.0553221702575684,-0.9502801299095154,-1.2128851413726807,-1.1078431606292725,-0.9327731132507324,-0.8627451062202454,-1.0028011798858643,-0.8977590799331665,-0.5651260614395142,-0.5826330780982971,-0.6876750588417053,-0.7226890921592712,-0.23249299824237823,-0.4425770342350006,-0.4600840210914612,-0.32002800703048706,-0.23249299824237823,-0.3025210201740265,-0.3025210201740265,-0.05742296949028969,-0.09243697673082352,-0.47759103775024414,-0.1449579894542694,-0.16246499121189117,-0.4425770342350006,-0.33753502368927,-0.4600840210914612,-0.17997199296951294,-0.17997199296951294,-0.3025210201740265,-0.1974789947271347,-0.09243697673082352,-0.16246499121189117,-0.3550420105457306,0.012605042196810246,-0.05742296949028969,-0.3025210201740265,-0.37254902720451355,-0.3025210201740265,-0.23249299824237823,-0.07492997497320175,-0.26750701665878296,-0.5476190447807312,-0.1449579894542694,-0.37254902720451355,-0.10994397848844528,0.0476190485060215,-0.3900560140609741,-0.03991596773266792,-0.03991596773266792,-0.07492997497320175,-0.6001400351524353,-0.21498599648475647,0.2401960790157318,-0.32002800703048706,-0.02240896411240101,-0.37254902720451355,-0.1974789947271347,-0.02240896411240101,-0.42507001757621765,-0.07492997497320175,-0.23249299824237823,-0.1974789947271347,-0.23249299824237823,-0.07492997497320175,-0.10994397848844528,-0.26750701665878296,-0.42507001757621765,-0.05742296949028969,-0.17997199296951294,-0.8277310729026794,-0.26750701665878296,-0.8277310729026794,-0.8102241158485413,-0.9852941036224365,-0.33753502368927,-0.6176470518112183,-0.05742296949028969,0.2401960790157318,-0.09243697673082352,-0.23249299824237823,-0.25,-0.5826330780982971,-0.5826330780982971,-0.7577030658721924,-0.42507001757621765,-0.25,-0.42507001757621765,-0.32002800703048706,-0.1449579894542694,-0.16246499121189117,-0.37254902720451355,-0.5826330780982971,-0.8452380895614624,-0.33753502368927,-0.28501400351524353,-0.17997199296951294,-0.26750701665878296,-0.7401960492134094,-0.5826330780982971,-0.4950980246067047,-0.5301120281219482,-0.33753502368927,-0.25,-0.17997199296951294,-0.6351540684700012,-0.42507001757621765,-0.28501400351524353,-0.42507001757621765,-0.4600840210914612,-0.4075630307197571,-0.3025210201740265,-0.3900560140609741,-0.6176470518112183,-0.4075630307197571,-0.5651260614395142,-0.4425770342350006,-0.7226890921592712,-0.8102241158485413,-0.6351540684700012,-0.32002800703048706,-0.4950980246067047,-0.28501400351524353,-0.4075630307197571,-0.4600840210914612,-0.33753502368927,-0.09243697673082352,-0.25,-0.03991596773266792,-0.03991596773266792,-0.33753502368927,-0.3900560140609741,-0.09243697673082352,-0.07492997497320175,-0.10994397848844528,-0.3025210201740265,-0.1974789947271347,-0.3025210201740265,-0.21498599648475647,-0.4425770342350006,-0.4950980246067047,-0.33753502368927,-0.6876750588417053,-0.7051820755004883,-0.6701680421829224,-0.8802521228790283,-0.8452380895614624,-0.7927170991897583,-0.7401960492134094,-0.9852941036224365,-0.8102241158485413,-0.6351540684700012,-0.6351540684700012,-0.5476190447807312,-0.28501400351524353,-0.42507001757621765,-0.47759103775024414,-0.3025210201740265,-0.3025210201740265,-0.26750701665878296,-0.32002800703048706,-0.6701680421829224,-0.7226890921592712,-0.7752100825309753,-0.7226890921592712,-0.9677870869636536,-0.9677870869636536,-0.9677870869636536,-0.8977590799331665,-0.9502801299095154,-0.9327731132507324,-0.9502801299095154,-0.7226890921592712,-0.3550420105457306,-0.9502801299095154,-0.9677870869636536,-0.9677870869636536,-1.2128851413726807,-1.3004201650619507,-1.2654061317443848,-1.2829132080078125,-1.4229692220687866,-1.6505602598190308,-1.0378150939941406,-0.7401960492134094,-0.4425770342350006,-0.0049019609577953815,-0.4950980246067047,-0.33753502368927,-0.28501400351524353,-0.4075630307197571,-0.3900560140609741,-0.5301120281219482,-0.42507001757621765,-0.6176470518112183,-0.7752100825309753,-0.7226890921592712],[-0.47759103775024414,-0.4600840210914612,-0.4075630307197571,-0.05742296949028969,-0.10994397848844528,0.15266107022762299,0.030112044885754585,0.08263305574655533,-0.5301120281219482,-0.6351540684700012,-1.3004201650619507,-1.2303920984268188,-1.3529411554336548,1.1855741739273071,1.2380952835083008,0.7478991746902466,1.080532193183899,1.045518159866333,0.450280100107193,0.1001400575041771,0.15266107022762299,0.5553221106529236,0.22268907725811005,-0.6526610851287842,-1.5105042457580566,-1.5280112028121948,-1.2128851413726807,-1.1953781843185425,-1.1778711080551147,-0.8802521228790283,-0.9502801299095154,-0.8977590799331665,-1.0553221702575684,-0.7752100825309753,-0.6001400351524353,-0.8977590799331665,-0.6176470518112183,-0.6176470518112183,-0.4425770342350006,-0.07492997497320175,-0.6176470518112183,-0.1974789947271347,-0.37254902720451355,-0.42507001757621765,-0.16246499121189117,-0.3900560140609741,-0.7226890921592712,-0.6351540684700012,-0.33753502368927,-0.5476190447807312,-0.6701680421829224,-0.1449579894542694,-0.4425770342350006,-0.3550420105457306,-0.28501400351524353,-0.17997199296951294,-0.25,0.11764705926179886,-0.33753502368927,-0.47759103775024414,-0.1974789947271347,-0.26750701665878296,-0.25,-0.4075630307197571,-0.05742296949028969,-0.5476190447807312,-0.17997199296951294,-0.37254902720451355,-0.25,-0.32002800703048706,-0.5126050710678101,-0.12745098769664764,-0.1974789947271347,-0.28501400351524353,-0.05742296949028969,-0.32002800703048706,-0.21498599648475647,-0.5826330780982971,-0.3025210201740265,-0.4425770342350006,0.012605042196810246,-0.5476190447807312,-0.21498599648475647,-0.23249299824237823,-0.1974789947271347,-0.07492997497320175,-0.3025210201740265,0.08263305574655533,0.27521008253097534,0.3452380895614624,-0.09243697673082352,-0.07492997497320175,0.06512605398893356,-0.1974789947271347,-0.1974789947271347,-0.3025210201740265,-0.4600840210914612,-0.8277310729026794,-0.6001400351524353,-1.0028011798858643,-1.0028011798858643,-0.8802521228790283,-0.7226890921592712,-0.6701680421829224,-0.1974789947271347,-0.02240896411240101,-0.25,-0.25,-0.4075630307197571,-0.7226890921592712,-0.47759103775024414,-0.37254902720451355,-0.6701680421829224,0.030112044885754585,-0.10994397848844528,-0.09243697673082352,-0.4950980246067047,-0.23249299824237823,-0.32002800703048706,-0.1449579894542694,-0.17997199296951294,-0.03991596773266792,-0.05742296949028969,-0.16246499121189117,-0.32002800703048706,-0.1449579894542694,-0.8802521228790283,-0.5126050710678101,-0.6526610851287842,-0.5126050710678101,-0.3900560140609741,-0.1449579894542694,-0.4950980246067047,-0.33753502368927,-0.23249299824237823,-0.3550420105457306,-0.33753502368927,-0.1449579894542694,-0.5651260614395142,-0.4950980246067047,-0.6876750588417053,-0.32002800703048706,-0.6526610851287842,-0.5826330780982971,-0.7226890921592712,-0.6001400351524353,-0.7226890921592712,-0.37254902720451355,-0.5126050710678101,-0.5651260614395142,-0.6526610851287842,-0.23249299824237823,-0.3900560140609741,-0.3550420105457306,-0.21498599648475647,-0.25,-0.32002800703048706,-0.33753502368927,-0.26750701665878296,-0.42507001757621765,-0.26750701665878296,-0.12745098769664764,-0.10994397848844528,-0.1974789947271347,-0.23249299824237823,-0.3550420105457306,-0.4425770342350006,-0.6176470518112183,-0.8102241158485413,-0.7401960492134094,-0.7577030658721924,-0.6526610851287842,-0.6526610851287842,-0.6176470518112183,-0.5826330780982971,-0.8627451062202454,-0.7051820755004883,-0.7927170991897583,-0.6526610851287842,-0.4075630307197571,-0.4600840210914612,-0.5126050710678101,-0.7401960492134094,-0.6876750588417053,-0.3550420105457306,-0.3025210201740265,-0.3900560140609741,-0.37254902720451355,-0.4950980246067047,-0.7401960492134094,-0.7051820755004883,-1.0028011798858643,-0.8277310729026794,-1.0203081369400024,-0.8802521228790283,-1.1428571939468384,-0.8802521228790283,-0.5126050710678101,-0.6526610851287842,-0.6876750588417053,-0.8277310729026794,-0.6876750588417053,-0.8102241158485413,-0.8277310729026794,-1.1078431606292725,-1.1953781843185425,-1.3354341983795166,-1.3879551887512207,-1.4754902124404907,-1.545518159866333,-1.0203081369400024,-0.6001400351524353,-0.33753502368927,-0.5301120281219482,-0.6001400351524353,-0.4425770342350006,-0.23249299824237823,-0.4075630307197571,-0.3025210201740265,-0.5301120281219482,-0.7226890921592712,-0.6701680421829224,-0.7401960492134094,-0.6876750588417053],[-0.7051820755004883,-0.7051820755004883,-0.5826330780982971,-0.47759103775024414,-0.23249299824237823,-0.03991596773266792,0.17016807198524475,-0.0049019609577953815,-0.17997199296951294,-0.5301120281219482,-0.8977590799331665,-1.2654061317443848,-0.9327731132507324,1.255602240562439,0.8354341983795166,0.5203081369400024,0.8004201650619507,0.6078431606292725,0.7303921580314636,0.5378151535987854,0.030112044885754585,0.25770309567451477,-0.12745098769664764,-0.5301120281219482,-1.5280112028121948,-1.5105042457580566,-1.3529411554336548,-1.1078431606292725,-1.2654061317443848,-1.0728291273117065,-0.6876750588417053,-0.8977590799331665,-0.8977590799331665,-1.0028011798858643,-0.8977590799331665,-0.8452380895614624,-0.8102241158485413,-0.7752100825309753,-0.7226890921592712,-0.25,-0.4950980246067047,-0.5651260614395142,-0.28501400351524353,-0.42507001757621765,-0.33753502368927,-0.12745098769664764,-0.28501400351524353,-0.23249299824237823,-0.1449579894542694,-0.5301120281219482,-0.6176470518112183,-0.12745098769664764,-0.21498599648475647,-0.4075630307197571,-0.07492997497320175,-0.26750701665878296,-0.28501400351524353,-0.3550420105457306,-0.6001400351524353,-0.1449579894542694,0.18767507374286652,-0.8802521228790283,-0.5126050710678101,-0.23249299824237823,-0.10994397848844528,-0.26750701665878296,-0.37254902720451355,-0.6001400351524353,-0.7051820755004883,-0.5651260614395142,-0.10994397848844528,-0.4600840210914612,-0.21498599648475647,-0.12745098769664764,-0.8277310729026794,-0.7577030658721924,-0.37254902720451355,-0.7401960492134094,-0.5476190447807312,-0.42507001757621765,-0.32002800703048706,-0.1449579894542694,-0.07492997497320175,-0.25,-0.4600840210914612,-0.21498599648475647,-0.10994397848844528,-0.25,0.030112044885754585,0.08263305574655533,-0.10994397848844528,-0.02240896411240101,0.030112044885754585,-0.09243697673082352,-0.32002800703048706,-0.6351540684700012,-0.6701680421829224,-0.4075630307197571,-0.6176470518112183,-0.6176470518112183,-0.7401960492134094,-0.42507001757621765,-0.6526610851287842,-0.6876750588417053,-0.32002800703048706,-0.5126050710678101,-0.3550420105457306,-0.6001400351524353,-0.5826330780982971,-0.47759103775024414,-0.4600840210914612,-0.3550420105457306,-0.21498599648475647,-0.05742296949028969,-0.3900560140609741,-0.33753502368927,-0.4075630307197571,-0.4600840210914612,-0.6001400351524353,-0.23249299824237823,-0.33753502368927,-0.28501400351524353,-0.25,-0.09243697673082352,-0.5651260614395142,-0.7226890921592712,-0.6351540684700012,-0.37254902720451355,-0.37254902720451355,-0.3550420105457306,-0.28501400351524353,-0.16246499121189117,-0.17997199296951294,-0.4950980246067047,-0.32002800703048706,-0.3900560140609741,-0.26750701665878296,-0.42507001757621765,-0.5651260614395142,-0.3900560140609741,-0.5301120281219482,-0.47759103775024414,-0.4950980246067047,-0.6001400351524353,-0.6876750588417053,-0.3550420105457306,-0.42507001757621765,-0.32002800703048706,-0.7226890921592712,-0.33753502368927,-0.28501400351524353,-0.4075630307197571,-0.42507001757621765,-0.37254902720451355,-0.17997199296951294,-0.3025210201740265,-0.3550420105457306,-0.02240896411240101,-0.23249299824237823,-0.21498599648475647,-0.26750701665878296,-0.47759103775024414,-0.4600840210914612,-0.5126050710678101,-0.25,-0.6001400351524353,-0.47759103775024414,-0.7752100825309753,-0.7051820755004883,-0.33753502368927,-1.0203081369400024,-0.9852941036224365,-0.9677870869636536,-0.9852941036224365,-0.7051820755004883,-0.5826330780982971,-0.8102241158485413,-0.5651260614395142,-0.9852941036224365,-0.7927170991897583,-0.4600840210914612,-0.6001400351524353,-0.21498599648475647,-0.32002800703048706,-0.37254902720451355,-0.3900560140609741,-0.4600840210914612,-0.6876750588417053,-0.7752100825309753,-0.7226890921592712,-0.7927170991897583,-0.8277310729026794,-0.9677870869636536,-1.1953781843185425,-1.0553221702575684,-0.9502801299095154,-1.1603641510009766,-0.9677870869636536,-0.5301120281219482,-0.8277310729026794,-0.7226890921592712,-0.8802521228790283,-0.9327731132507324,-1.0028011798858643,-0.8102241158485413,-1.1428571939468384,-1.492997169494629,-1.3004201650619507,-1.3704482316970825,-1.4229692220687866,-1.3879551887512207,-0.9152660965919495,-0.3900560140609741,-0.3900560140609741,-0.5651260614395142,-0.4075630307197571,-0.4075630307197571,-0.23249299824237823,-0.42507001757621765,-0.7051820755004883,-0.6701680421829224,-0.8102241158485413,-0.6526610851287842,-0.7051820755004883],[-0.8452380895614624,-0.6351540684700012,-0.7401960492134094,-0.4075630307197571,-0.7051820755004883,-0.37254902720451355,-0.05742296949028969,0.22268907725811005,0.20518207550048828,-0.4600840210914612,-0.6176470518112183,-0.8627451062202454,-0.5651260614395142,1.308123230934143,0.8354341983795166,0.27521008253097534,0.8179271817207336,1.0105042457580566,0.5028011202812195,0.5728291273117065,-0.12745098769664764,0.13515406847000122,-0.8102241158485413,-0.3550420105457306,-1.720588207244873,-1.4054621458053589,-1.1603641510009766,-1.2654061317443848,-1.1253501176834106,-1.1778711080551147,-1.1253501176834106,-0.9852941036224365,-0.8627451062202454,-0.9327731132507324,-0.9152660965919495,-1.0203081369400024,-0.6701680421829224,-0.5301120281219482,-0.3900560140609741,-0.6001400351524353,-0.1974789947271347,-0.32002800703048706,-0.9502801299095154,-0.28501400351524353,-0.7401960492134094,-0.4075630307197571,-0.6001400351524353,-0.3025210201740265,-0.05742296949028969,-0.32002800703048706,-0.05742296949028969,-0.3550420105457306,-0.12745098769664764,-0.3900560140609741,-0.37254902720451355,-0.4425770342350006,-0.5301120281219482,-0.3550420105457306,-0.16246499121189117,-0.25,-0.47759103775024414,-0.1974789947271347,-0.23249299824237823,-0.32002800703048706,-0.5126050710678101,-0.5826330780982971,-0.7401960492134094,-0.4075630307197571,-0.4600840210914612,-0.9327731132507324,-0.4075630307197571,-0.8102241158485413,-0.21498599648475647,-0.3900560140609741,-0.4425770342350006,-0.6351540684700012,-0.4075630307197571,-0.09243697673082352,-0.03991596773266792,-0.3025210201740265,-0.26750701665878296,-0.25,-0.26750701665878296,-0.4075630307197571,-0.32002800703048706,-0.23249299824237823,-0.3900560140609741,-0.23249299824237823,-0.6351540684700012,-0.26750701665878296,0.15266107022762299,-0.10994397848844528,-0.07492997497320175,-0.26750701665878296,-0.32002800703048706,-0.5126050710678101,-0.5301120281219482,-0.6176470518112183,-0.7051820755004883,-0.8627451062202454,-0.6526610851287842,-0.6001400351524353,-0.5301120281219482,-0.7051820755004883,-0.4075630307197571,-0.4950980246067047,0.22268907725811005,-0.12745098769664764,-1.0378150939941406,-0.5476190447807312,-0.6176470518112183,-0.6176470518112183,-0.05742296949028969,-0.1974789947271347,-0.47759103775024414,-0.28501400351524353,-0.4075630307197571,-0.4075630307197571,-0.5476190447807312,-0.5476190447807312,-0.26750701665878296,-0.16246499121189117,-0.3025210201740265,-0.17997199296951294,-0.5476190447807312,-0.37254902720451355,-0.3550420105457306,-0.07492997497320175,-0.25,-0.09243697673082352,-0.4950980246067047,-0.4075630307197571,-0.3900560140609741,-0.26750701665878296,-0.3025210201740265,-0.07492997497320175,-0.3025210201740265,-0.3900560140609741,-0.6351540684700012,-0.4950980246067047,-0.42507001757621765,-0.4425770342350006,-0.47759103775024414,-0.4950980246067047,-0.5126050710678101,-0.26750701665878296,-0.5126050710678101,-0.33753502368927,-0.5651260614395142,-0.5301120281219482,-0.7226890921592712,-0.4425770342350006,-0.1449579894542694,-0.3550420105457306,-0.32002800703048706,-0.47759103775024414,-0.4600840210914612,-0.21498599648475647,-0.21498599648475647,-0.47759103775024414,-0.25,-0.3900560140609741,-0.32002800703048706,-0.4075630307197571,-0.4600840210914612,-0.5651260614395142,-0.6176470518112183,-0.7226890921592712,-0.5651260614395142,-0.5826330780982971,-0.7927170991897583,-0.9502801299095154,-0.7752100825309753,-0.6001400351524353,-0.4600840210914612,-0.7051820755004883,-0.7226890921592712,-0.6876750588417053,-0.7401960492134094,-0.42507001757621765,-0.6176470518112183,-0.28501400351524353,-0.3900560140609741,-0.47759103775024414,-0.4950980246067047,-0.47759103775024414,-0.4950980246067047,-0.4600840210914612,-0.42507001757621765,-0.5301120281219482,-0.7401960492134094,-0.9152660965919495,-0.8277310729026794,-0.7577030658721924,-0.7401960492134094,-0.7927170991897583,-0.8802521228790283,-0.8627451062202454,-0.8277310729026794,-0.8627451062202454,-0.7752100825309753,-0.6701680421829224,-0.9677870869636536,-1.0203081369400024,-1.2128851413726807,-1.0553221702575684,-1.0553221702575684,-1.3354341983795166,-1.457983136177063,-1.4404761791229248,-1.3004201650619507,-1.3354341983795166,-0.6001400351524353,-0.4950980246067047,-0.7226890921592712,-0.4075630307197571,-0.25,-0.33753502368927,-0.42507001757621765,-0.4600840210914612,-0.8977590799331665,-0.7226890921592712,-0.7577030658721924,-0.7226890921592712],[-0.7401960492134094,-0.6001400351524353,-1.0203081369400024,-0.8102241158485413,-0.7577030658721924,-0.8452380895614624,-0.4075630307197571,-0.12745098769664764,0.1001400575041771,0.06512605398893356,-0.4600840210914612,-0.37254902720451355,-0.7752100825309753,1.2731091976165771,0.6078431606292725,-0.33753502368927,0.5028011202812195,0.7128851413726807,0.9054622054100037,0.31022408604621887,-0.23249299824237823,0.0476190485060215,-0.9152660965919495,-0.4600840210914612,-1.545518159866333,-1.5630252361297607,-1.3879551887512207,-1.0553221702575684,-1.1428571939468384,-1.2654061317443848,-1.0028011798858643,-0.9152660965919495,-1.0028011798858643,-1.0553221702575684,-0.7752100825309753,-0.7577030658721924,-0.6526610851287842,-0.6876750588417053,-0.6526610851287842,-0.6876750588417053,-0.47759103775024414,-0.4600840210914612,-0.26750701665878296,-0.3900560140609741,-0.4425770342350006,-0.32002800703048706,-0.32002800703048706,-0.4075630307197571,-0.7226890921592712,-0.42507001757621765,-0.3025210201740265,-0.1974789947271347,-0.5826330780982971,-0.3900560140609741,-0.3550420105457306,-0.4600840210914612,-0.4075630307197571,-0.4075630307197571,-0.4950980246067047,-0.6351540684700012,-0.1449579894542694,-0.47759103775024414,-0.7226890921592712,-0.28501400351524353,-0.3550420105457306,-0.25,-0.17997199296951294,-0.8802521228790283,-0.4075630307197571,-0.42507001757621765,-0.3025210201740265,-0.5651260614395142,-0.33753502368927,-0.7051820755004883,-0.07492997497320175,-0.3025210201740265,-0.03991596773266792,-0.17997199296951294,-0.33753502368927,-0.25,-0.07492997497320175,-0.33753502368927,-0.21498599648475647,-0.4075630307197571,-0.09243697673082352,-0.25,-0.32002800703048706,-0.1974789947271347,-0.4600840210914612,-0.47759103775024414,0.030112044885754585,-0.1449579894542694,-0.09243697673082352,-0.09243697673082352,-0.6176470518112183,-0.6701680421829224,-0.4075630307197571,-0.7226890921592712,-0.42507001757621765,-0.4950980246067047,-0.5826330780982971,-0.7401960492134094,-0.5651260614395142,-0.6701680421829224,-0.21498599648475647,-0.37254902720451355,-0.33753502368927,-0.5301120281219482,-0.5826330780982971,-0.5651260614395142,-1.0028011798858643,-0.7051820755004883,-0.6351540684700012,-0.3025210201740265,-0.07492997497320175,-0.3025210201740265,-0.33753502368927,-0.23249299824237823,-0.42507001757621765,-0.6701680421829224,-0.32002800703048706,-0.1449579894542694,-0.21498599648475647,-0.5126050710678101,-0.4600840210914612,-0.5301120281219482,-0.5301120281219482,-0.16246499121189117,-0.16246499121189117,-0.1974789947271347,-0.3550420105457306,-0.33753502368927,-0.5301120281219482,-0.10994397848844528,-0.17997199296951294,-0.10994397848844528,-0.23249299824237823,-0.4425770342350006,-0.7226890921592712,-0.3900560140609741,-0.8102241158485413,-0.6526610851287842,-0.6526610851287842,-0.7752100825309753,-0.5301120281219482,-0.6701680421829224,-0.5126050710678101,-0.5301120281219482,-0.4425770342350006,-0.6876750588417053,-0.6001400351524353,-0.42507001757621765,-0.23249299824237823,-0.4425770342350006,-0.25,-0.26750701665878296,-0.1974789947271347,-0.33753502368927,0.0476190485060215,-0.16246499121189117,-0.1974789947271347,-0.05742296949028969,-0.4600840210914612,-0.37254902720451355,-0.25,-0.6701680421829224,-0.5826330780982971,-0.32002800703048706,-0.6001400351524353,-0.8277310729026794,-1.0553221702575684,-0.6351540684700012,-0.7577030658721924,-0.6176470518112183,-0.8452380895614624,-0.6876750588417053,-0.8627451062202454,-0.5826330780982971,-0.5476190447807312,-0.6876750588417053,-0.4075630307197571,-0.32002800703048706,-0.4950980246067047,-0.4600840210914612,-0.3900560140609741,-0.5301120281219482,-0.4425770342350006,-0.7051820755004883,-0.7226890921592712,-0.8977590799331665,-0.7051820755004883,-0.5301120281219482,-0.7577030658721924,-0.8452380895614624,-1.1428571939468384,-0.8977590799331665,-0.8802521228790283,-0.5826330780982971,-0.6176470518112183,-0.9327731132507324,-1.0728291273117065,-0.8802521228790283,-0.8977590799331665,-1.0028011798858643,-1.2128851413726807,-1.2478991746902466,-1.457983136177063,-1.2478991746902466,-1.4229692220687866,-1.3179271221160889,-1.545518159866333,-1.1428571939468384,-0.47759103775024414,-0.6176470518112183,-0.6876750588417053,-0.5476190447807312,-0.3025210201740265,-0.37254902720451355,-0.6701680421829224,-0.5651260614395142,-0.5651260614395142,-0.7752100825309753,-0.7401960492134094,-0.6701680421829224],[-0.5126050710678101,-0.4950980246067047,-0.8977590799331665,-0.7927170991897583,-0.6176470518112183,-0.5651260614395142,-0.7752100825309753,-0.3900560140609741,0.030112044885754585,0.0476190485060215,-0.23249299824237823,-0.05742296949028969,-0.4075630307197571,1.220588207244873,0.9229691624641418,-0.6001400351524353,0.450280100107193,0.9754902124404907,0.8179271817207336,0.6253501176834106,-0.17997199296951294,-0.17997199296951294,-1.0903360843658447,-0.37254902720451355,-1.5105042457580566,-1.3704482316970825,-1.2654061317443848,-1.3354341983795166,-1.2829132080078125,-1.2303920984268188,-1.1953781843185425,-0.8627451062202454,-0.9152660965919495,-0.6001400351524353,-0.7051820755004883,-0.7226890921592712,-0.8102241158485413,-0.4950980246067047,-0.4950980246067047,-0.5651260614395142,-0.8452380895614624,-0.6176470518112183,-0.7927170991897583,-0.33753502368927,-0.28501400351524353,-0.32002800703048706,-0.6176470518112183,-0.4075630307197571,-0.4600840210914612,-0.4425770342350006,-0.4950980246067047,-0.3025210201740265,-0.03991596773266792,-0.4425770342350006,-0.28501400351524353,-0.3550420105457306,-0.17997199296951294,-0.3900560140609741,-0.4075630307197571,-0.4425770342350006,-0.6176470518112183,-0.7051820755004883,-0.5651260614395142,-0.3025210201740265,-0.12745098769664764,-0.6176470518112183,-0.37254902720451355,-0.6701680421829224,-0.5826330780982971,-0.7927170991897583,-0.26750701665878296,-0.4075630307197571,-1.0553221702575684,-0.6001400351524353,-0.37254902720451355,-0.23249299824237823,-0.47759103775024414,-0.4600840210914612,-0.3025210201740265,-0.23249299824237823,-0.33753502368927,-0.17997199296951294,-0.5301120281219482,-0.33753502368927,-0.37254902720451355,-0.17997199296951294,-0.0049019609577953815,-0.42507001757621765,-0.3550420105457306,-0.0049019609577953815,-0.16246499121189117,-0.33753502368927,-0.1974789947271347,-0.4075630307197571,-0.4950980246067047,-0.6351540684700012,-0.4600840210914612,-0.5301120281219482,-0.5651260614395142,-0.4425770342350006,-0.5126050710678101,-0.33753502368927,-0.1449579894542694,-0.7752100825309753,-0.6351540684700012,-0.47759103775024414,-0.5476190447807312,-0.5826330780982971,-0.5301120281219482,-0.7577030658721924,-0.3900560140609741,-0.3900560140609741,-0.33753502368927,-0.26750701665878296,-0.28501400351524353,-0.5301120281219482,-0.21498599648475647,-0.28501400351524353,-0.6001400351524353,-0.6176470518112183,-0.26750701665878296,-0.5301120281219482,-0.23249299824237823,-0.5651260614395142,-0.28501400351524353,-0.7051820755004883,-0.8277310729026794,-0.7226890921592712,-0.16246499121189117,-0.03991596773266792,-0.4950980246067047,-0.23249299824237823,-0.12745098769664764,-0.5126050710678101,-0.4600840210914612,-0.5126050710678101,-0.47759103775024414,-0.6176470518112183,-0.6701680421829224,-0.7927170991897583,-0.6351540684700012,-0.7927170991897583,-0.4600840210914612,-0.47759103775024414,-0.3900560140609741,-0.7226890921592712,-0.12745098769664764,-0.4425770342350006,-0.6351540684700012,-0.4075630307197571,-0.3900560140609741,-0.37254902720451355,-0.5826330780982971,-0.4425770342350006,-0.16246499121189117,-0.28501400351524353,-0.4950980246067047,-0.3025210201740265,-0.1974789947271347,0.08263305574655533,-0.10994397848844528,-0.03991596773266792,-0.5476190447807312,-0.5651260614395142,-0.6526610851287842,-0.8452380895614624,-0.7226890921592712,-0.6001400351524353,-0.6001400351524353,-0.7226890921592712,-1.0553221702575684,-0.8277310729026794,-1.0553221702575684,-0.8102241158485413,-0.7577030658721924,-0.7401960492134094,-0.4075630307197571,-0.4950980246067047,-0.16246499121189117,-0.8102241158485413,-0.33753502368927,-0.3025210201740265,-0.4075630307197571,-0.4075630307197571,-0.33753502368927,-0.3025210201740265,-0.3900560140609741,-0.7401960492134094,-0.6876750588417053,-0.7051820755004883,-0.6001400351524353,-0.8627451062202454,-0.8977590799331665,-0.8627451062202454,-0.7927170991897583,-0.9152660965919495,-1.1078431606292725,-0.6176470518112183,-0.9852941036224365,-0.6351540684700012,-0.9502801299095154,-1.1603641510009766,-0.8977590799331665,-1.0028011798858643,-1.1953781843185425,-1.0728291273117065,-1.3879551887512207,-1.1778711080551147,-1.3004201650619507,-1.580532193183899,-1.545518159866333,-1.3004201650619507,-0.7401960492134094,-0.6351540684700012,-0.5826330780982971,-0.4075630307197571,-0.23249299824237823,-0.3025210201740265,-0.1974789947271347,-0.4950980246067047,-0.5126050710678101,-0.5476190447807312,-0.6876750588417053,-0.8977590799331665],[-0.33753502368927,-0.6001400351524353,-0.7752100825309753,-0.7577030658721924,-0.7051820755004883,-0.7927170991897583,-0.9152660965919495,-0.6701680421829224,-0.3900560140609741,-0.16246499121189117,0.15266107022762299,0.012605042196810246,0.22268907725811005,1.080532193183899,0.7128851413726807,-0.4950980246067047,0.6953781247138977,0.13515406847000122,0.012605042196810246,0.6778711676597595,-0.10994397848844528,-0.47759103775024414,-0.8802521228790283,0.11764705926179886,-1.2128851413726807,-1.3354341983795166,-1.1253501176834106,-1.3354341983795166,-1.1778711080551147,-0.8102241158485413,-0.9677870869636536,-0.8452380895614624,-0.8977590799331665,-0.8802521228790283,-0.47759103775024414,-0.47759103775024414,-0.23249299824237823,-0.6351540684700012,-0.4600840210914612,-0.4950980246067047,-0.5301120281219482,-0.8802521228790283,-0.47759103775024414,-0.9852941036224365,-0.42507001757621765,-0.21498599648475647,-0.3550420105457306,-0.42507001757621765,-0.6176470518112183,-0.5126050710678101,-0.6001400351524353,-0.21498599648475647,-0.4075630307197571,-0.4075630307197571,-0.10994397848844528,-0.25,-0.32002800703048706,-0.5826330780982971,-0.8977590799331665,-0.42507001757621765,-0.7401960492134094,-0.7401960492134094,-0.37254902720451355,-0.4950980246067047,-0.37254902720451355,-0.4425770342350006,-0.7226890921592712,-0.5301120281219482,-0.5651260614395142,-0.5476190447807312,-0.4950980246067047,-0.7226890921592712,-0.07492997497320175,-0.10994397848844528,-0.4600840210914612,-0.5126050710678101,-0.42507001757621765,0.20518207550048828,-0.33753502368927,-0.37254902720451355,-0.05742296949028969,-0.09243697673082352,-0.37254902720451355,-0.1974789947271347,-0.12745098769664764,0.11764705926179886,-0.1449579894542694,-0.26750701665878296,-0.17997199296951294,-0.1449579894542694,-0.21498599648475647,-0.23249299824237823,-0.37254902720451355,-0.7752100825309753,-0.6176470518112183,-0.21498599648475647,-0.8802521228790283,-0.6351540684700012,-0.6001400351524353,-0.7051820755004883,-0.6526610851287842,-0.4950980246067047,-0.17997199296951294,-0.4950980246067047,-0.6876750588417053,-0.4950980246067047,-0.42507001757621765,-0.4425770342350006,-0.5301120281219482,-0.3550420105457306,-0.4075630307197571,-0.1974789947271347,-0.33753502368927,-0.4075630307197571,-0.4425770342350006,-0.28501400351524353,-0.4075630307197571,-0.6526610851287842,-0.5826330780982971,-0.6176470518112183,0.012605042196810246,-0.0049019609577953815,0.0476190485060215,-0.21498599648475647,-0.6001400351524353,-0.42507001757621765,-0.7577030658721924,-0.6526610851287842,-0.17997199296951294,-0.32002800703048706,-0.07492997497320175,-0.33753502368927,-0.33753502368927,-0.5476190447807312,-0.7401960492134094,-0.8102241158485413,-0.47759103775024414,-0.8452380895614624,-0.4950980246067047,-0.4950980246067047,-0.3900560140609741,-0.6876750588417053,-0.3900560140609741,-0.5301120281219482,-0.5651260614395142,-0.26750701665878296,-0.3025210201740265,-0.5476190447807312,-0.3900560140609741,-0.42507001757621765,-0.5301120281219482,-0.42507001757621765,-0.26750701665878296,-0.23249299824237823,-0.5651260614395142,-0.1974789947271347,-0.07492997497320175,-0.16246499121189117,-0.16246499121189117,0.06512605398893356,-0.3025210201740265,-0.4075630307197571,-0.4600840210914612,-0.8102241158485413,-0.6351540684700012,-0.8277310729026794,-0.6876750588417053,-0.8102241158485413,-0.6001400351524353,-0.8977590799331665,-0.6876750588417053,-0.7226890921592712,-0.6876750588417053,-0.7577030658721924,-0.7577030658721924,-0.6351540684700012,-0.6176470518112183,-0.6526610851287842,-0.6001400351524353,-0.5476190447807312,-0.25,-0.37254902720451355,-0.3900560140609741,-0.37254902720451355,-0.6001400351524353,-0.5126050710678101,-0.4600840210914612,-0.3025210201740265,-0.7752100825309753,-0.7401960492134094,-0.8802521228790283,-0.7577030658721924,-1.0028011798858643,-0.8102241158485413,-1.1078431606292725,-0.8277310729026794,-0.5301120281219482,-0.6701680421829224,-0.9852941036224365,-1.1428571939468384,-0.7577030658721924,-0.6001400351524353,-0.9677870869636536,-1.0728291273117065,-0.9677870869636536,-1.1078431606292725,-1.0903360843658447,-1.1603641510009766,-1.3179271221160889,-1.3179271221160889,-1.3529411554336548,-1.633053183555603,-0.7401960492134094,-0.7051820755004883,-0.4600840210914612,-0.6001400351524353,-0.5826330780982971,-0.23249299824237823,-0.5476190447807312,-0.37254902720451355,-0.6876750588417053,-0.5651260614395142,-0.7401960492134094,-0.6001400351524353],[-0.3550420105457306,-0.4075630307197571,-0.4425770342350006,-0.6876750588417053,-0.7401960492134094,-0.6526610851287842,-0.6351540684700012,-0.9852941036224365,-0.8102241158485413,-0.6351540684700012,-0.4425770342350006,0.1001400575041771,0.41526609659194946,0.7654061913490295,0.8179271817207336,-0.33753502368927,0.8704481720924377,0.5553221106529236,-0.7051820755004883,0.9054622054100037,-0.5476190447807312,-0.6001400351524353,-1.633053183555603,-0.26750701665878296,-1.6155462265014648,-1.5105042457580566,-1.1953781843185425,-1.2478991746902466,-1.2303920984268188,-1.2654061317443848,-0.7401960492134094,-0.5126050710678101,-1.0903360843658447,-0.47759103775024414,-0.33753502368927,-0.6526610851287842,-0.6351540684700012,-0.7226890921592712,-0.6701680421829224,-0.10994397848844528,-0.6701680421829224,-0.6876750588417053,-0.3025210201740265,-0.5301120281219482,-0.42507001757621765,-0.6876750588417053,-0.42507001757621765,-0.37254902720451355,-0.4425770342350006,-0.10994397848844528,0.11764705926179886,-0.07492997497320175,-0.4600840210914612,-0.6001400351524353,-0.6526610851287842,-0.5826330780982971,-0.6526610851287842,-0.3550420105457306,-0.3900560140609741,-0.8452380895614624,-0.4075630307197571,-0.6351540684700012,-0.37254902720451355,-0.33753502368927,-0.5826330780982971,-0.7927170991897583,-0.6001400351524353,-0.6526610851287842,-0.6351540684700012,-0.8452380895614624,-0.4075630307197571,-0.5826330780982971,-0.6001400351524353,-0.28501400351524353,-0.5826330780982971,-0.6176470518112183,-0.4075630307197571,-0.42507001757621765,-0.6876750588417053,-0.23249299824237823,-0.26750701665878296,-0.32002800703048706,-0.25,-0.23249299824237823,-0.3550420105457306,-0.21498599648475647,0.030112044885754585,-0.1449579894542694,-0.26750701665878296,-0.5301120281219482,-0.3025210201740265,-0.28501400351524353,-0.3550420105457306,-0.8102241158485413,-0.6176470518112183,-1.2654061317443848,-0.7927170991897583,-0.6526610851287842,-0.5476190447807312,-0.6351540684700012,-0.4425770342350006,-0.5126050710678101,-0.6351540684700012,-0.5126050710678101,-0.8452380895614624,-0.28501400351524353,-0.32002800703048706,-0.6176470518112183,-0.3900560140609741,-0.3900560140609741,-0.6176470518112183,-0.4425770342350006,0.11764705926179886,-0.21498599648475647,-0.7051820755004883,-0.21498599648475647,-0.17997199296951294,-0.1449579894542694,-0.47759103775024414,-0.47759103775024414,-0.1449579894542694,0.20518207550048828,-0.09243697673082352,-0.5476190447807312,-0.7051820755004883,-0.6526610851287842,-0.4075630307197571,-0.47759103775024414,-0.5126050710678101,-0.3550420105457306,-0.17997199296951294,-0.33753502368927,-0.33753502368927,-0.6001400351524353,-0.6176470518112183,-0.5301120281219482,-0.26750701665878296,-0.42507001757621765,-0.7051820755004883,-0.6351540684700012,-0.5126050710678101,-0.6176470518112183,-0.5476190447807312,-0.4075630307197571,-0.21498599648475647,-0.6351540684700012,-0.5476190447807312,-0.6351540684700012,-0.6176470518112183,-0.5651260614395142,-0.23249299824237823,-0.28501400351524353,-0.3900560140609741,-0.42507001757621765,-0.17997199296951294,-0.17997199296951294,-0.12745098769664764,-0.0049019609577953815,-0.17997199296951294,-0.33753502368927,-0.42507001757621765,-0.3025210201740265,-0.6176470518112183,-0.6701680421829224,-0.4600840210914612,-0.5826330780982971,-0.6001400351524353,-0.9502801299095154,-0.8977590799331665,-0.7051820755004883,-0.8977590799331665,-0.6351540684700012,-0.6701680421829224,-0.9152660965919495,-0.5126050710678101,-0.3900560140609741,-0.7401960492134094,-0.7577030658721924,-0.8277310729026794,-0.3025210201740265,-0.26750701665878296,-0.25,-0.47759103775024414,-0.3550420105457306,-0.37254902720451355,-0.47759103775024414,-0.7226890921592712,-0.7752100825309753,-0.8102241158485413,-0.7752100825309753,-0.8627451062202454,-1.0378150939941406,-0.7927170991897583,-1.0203081369400024,-0.9152660965919495,-0.5476190447807312,-0.7226890921592712,-0.6176470518112183,-0.7752100825309753,-0.7051820755004883,-0.9502801299095154,-1.1428571939468384,-0.8277310729026794,-0.9327731132507324,-1.0728291273117065,-1.1603641510009766,-1.3529411554336548,-1.2829132080078125,-1.3354341983795166,-1.4754902124404907,-1.545518159866333,-1.3879551887512207,-0.8802521228790283,-0.6526610851287842,-0.5476190447807312,-0.6001400351524353,-0.4075630307197571,-0.4600840210914612,-0.3900560140609741,-0.4950980246067047,-0.7577030658721924,-0.7927170991897583,-0.8102241158485413,-0.6876750588417053],[-0.6526610851287842,-0.4600840210914612,-0.12745098769664764,-0.7577030658721924,-0.3550420105457306,-0.42507001757621765,-0.8977590799331665,-1.0378150939941406,-0.8452380895614624,-0.8802521228790283,-0.6001400351524353,-0.1449579894542694,0.15266107022762299,0.8879551887512207,1.220588207244873,-0.7577030658721924,0.8179271817207336,0.31022408604621887,-0.8452380895614624,0.18767507374286652,0.08263305574655533,-0.1449579894542694,-1.580532193183899,-0.6701680421829224,-1.4054621458053589,-1.1953781843185425,-1.0728291273117065,-1.2128851413726807,-1.0553221702575684,-1.3354341983795166,-0.6701680421829224,-0.8977590799331665,-0.3900560140609741,-0.5301120281219482,-0.8102241158485413,-0.9327731132507324,-0.42507001757621765,-0.4075630307197571,-0.33753502368927,-0.3025210201740265,-0.4600840210914612,-0.6351540684700012,-0.4600840210914612,-0.12745098769664764,-0.1974789947271347,-0.4600840210914612,-0.6176470518112183,-0.7051820755004883,-0.47759103775024414,-0.6001400351524353,-0.17997199296951294,-0.3025210201740265,-0.6001400351524353,-0.26750701665878296,-0.4075630307197571,-0.21498599648475647,-0.4425770342350006,-0.16246499121189117,-0.4075630307197571,-0.4600840210914612,-0.6001400351524353,-0.26750701665878296,-0.33753502368927,-0.7401960492134094,-0.7226890921592712,-0.28501400351524353,-0.3550420105457306,-0.6176470518112183,-0.7577030658721924,-0.7577030658721924,-0.3550420105457306,-0.05742296949028969,-0.3025210201740265,-0.23249299824237823,-0.5826330780982971,-0.4600840210914612,-0.7051820755004883,-0.12745098769664764,-0.5826330780982971,-0.1449579894542694,-0.26750701665878296,-0.21498599648475647,-0.3025210201740265,-0.07492997497320175,-0.6876750588417053,-0.26750701665878296,-0.09243697673082352,-0.1449579894542694,-0.3900560140609741,-0.3550420105457306,-0.33753502368927,-0.5651260614395142,-0.4950980246067047,-0.7401960492134094,-0.33753502368927,-1.0203081369400024,-0.5126050710678101,-0.5651260614395142,-0.7577030658721924,-0.4600840210914612,-0.3900560140609741,-0.33753502368927,-0.4425770342350006,-0.5476190447807312,-0.9502801299095154,-0.6176470518112183,-0.6001400351524353,-0.47759103775024414,-0.3900560140609741,-0.4600840210914612,-0.3025210201740265,-0.23249299824237823,-0.05742296949028969,-0.4600840210914612,-0.5476190447807312,-0.16246499121189117,-0.47759103775024414,-0.32002800703048706,-0.6176470518112183,-0.8452380895614624,0.11764705926179886,-0.02240896411240101,-0.6001400351524353,-0.25,-0.5826330780982971,-0.6001400351524353,-0.47759103775024414,-0.42507001757621765,-0.26750701665878296,-0.4950980246067047,-0.05742296949028969,-0.3900560140609741,-0.47759103775024414,-0.3025210201740265,-0.33753502368927,-0.5651260614395142,-0.5826330780982971,-0.5651260614395142,-0.8802521228790283,-0.6351540684700012,-0.6701680421829224,-0.3550420105457306,-0.6526610851287842,-0.4600840210914612,-0.7226890921592712,-0.5301120281219482,-0.6526610851287842,-0.6176470518112183,-0.3550420105457306,-0.6876750588417053,-0.47759103775024414,-0.25,-0.32002800703048706,-0.37254902720451355,-0.5476190447807312,-0.10994397848844528,-0.17997199296951294,-0.42507001757621765,-0.33753502368927,-0.3550420105457306,-0.16246499121189117,-0.5826330780982971,-0.6526610851287842,-0.5126050710678101,-0.8452380895614624,-0.5826330780982971,-0.5301120281219482,-0.7401960492134094,-0.7226890921592712,-0.7927170991897583,-0.7226890921592712,-0.6351540684700012,-0.4600840210914612,-0.8627451062202454,-0.4950980246067047,-0.8102241158485413,-0.7752100825309753,-0.6526610851287842,-0.4075630307197571,-0.5476190447807312,-0.47759103775024414,-0.4600840210914612,-0.33753502368927,-0.3550420105457306,-0.4600840210914612,-0.4425770342350006,-0.6526610851287842,-0.5826330780982971,-0.7051820755004883,-0.9327731132507324,-0.7051820755004883,-0.6351540684700012,-0.42507001757621765,-0.7577030658721924,-0.9152660965919495,-0.7577030658721924,-0.4075630307197571,-0.7051820755004883,-0.7752100825309753,-0.7401960492134094,-0.8277310729026794,-0.9502801299095154,-0.9502801299095154,-0.8977590799331665,-1.1253501176834106,-1.2128851413726807,-1.2654061317443848,-1.0903360843658447,-1.0728291273117065,-1.492997169494629,-1.5630252361297607,-1.580532193183899,-1.0203081369400024,-0.4950980246067047,-0.6876750588417053,-0.6701680421829224,-0.5476190447807312,-0.5126050710678101,-0.4075630307197571,-0.3900560140609741,-0.4600840210914612,-0.5476190447807312,-0.8977590799331665,-0.8452380895614624],[-0.23249299824237823,-0.33753502368927,-0.32002800703048706,-0.3025210201740265,-0.3900560140609741,-0.1449579894542694,-0.5651260614395142,-0.8977590799331665,-0.9152660965919495,-1.0378150939941406,-1.0203081369400024,-0.8102241158485413,0.2927170991897583,1.0280112028121948,1.0105042457580566,-1.0903360843658447,1.168067216873169,0.4327731132507324,-0.42507001757621765,0.450280100107193,0.18767507374286652,-0.02240896411240101,-1.930672287940979,-1.3354341983795166,-1.5105042457580566,-1.2654061317443848,-1.0553221702575684,-1.0378150939941406,-0.7927170991897583,-0.8802521228790283,-0.4425770342350006,-0.4425770342350006,-0.4950980246067047,-0.5476190447807312,-0.5126050710678101,-0.6176470518112183,-0.33753502368927,-0.4425770342350006,-0.1449579894542694,-0.3900560140609741,-0.21498599648475647,-0.3900560140609741,-0.6176470518112183,-0.7401960492134094,-0.23249299824237823,-0.1974789947271347,-0.1449579894542694,-0.28501400351524353,-0.4600840210914612,-0.3900560140609741,-0.1449579894542694,-0.07492997497320175,-0.3550420105457306,-0.3550420105457306,-0.4425770342350006,-0.21498599648475647,-0.5651260614395142,-0.3900560140609741,-0.4075630307197571,-0.28501400351524353,-0.6001400351524353,-0.4075630307197571,-0.3550420105457306,-0.33753502368927,-0.7226890921592712,-0.3900560140609741,-0.6351540684700012,-0.47759103775024414,-0.3550420105457306,-0.4425770342350006,-0.4425770342350006,-0.6176470518112183,-0.5301120281219482,-0.6351540684700012,-0.5126050710678101,-0.7752100825309753,-0.28501400351524353,-0.17997199296951294,-0.1449579894542694,-0.26750701665878296,-0.33753502368927,0.030112044885754585,-0.1974789947271347,-0.1449579894542694,-0.4600840210914612,-0.03991596773266792,-0.1974789947271347,-0.21498599648475647,-0.02240896411240101,-0.17997199296951294,-0.6001400351524353,-0.4075630307197571,-0.8102241158485413,-0.8277310729026794,-0.26750701665878296,-0.5301120281219482,-0.6701680421829224,-0.3025210201740265,-0.5826330780982971,-0.4425770342350006,-0.3550420105457306,-0.28501400351524353,-0.6176470518112183,-0.7927170991897583,-0.6876750588417053,-0.9502801299095154,-0.6351540684700012,-0.3550420105457306,-0.28501400351524353,-0.3900560140609741,-0.37254902720451355,-0.28501400351524353,-0.3550420105457306,-0.3900560140609741,-0.4075630307197571,-0.1449579894542694,-0.32002800703048706,-0.47759103775024414,-0.5126050710678101,-0.4425770342350006,-0.42507001757621765,-0.16246499121189117,-0.5476190447807312,-0.03991596773266792,-0.4950980246067047,-0.6701680421829224,-0.4600840210914612,-0.4950980246067047,-0.3025210201740265,-0.32002800703048706,-0.09243697673082352,-0.23249299824237823,-0.26750701665878296,-0.4075630307197571,-0.6001400351524353,-0.7401960492134094,-0.4425770342350006,-0.5651260614395142,-0.33753502368927,-0.47759103775024414,-0.7752100825309753,0.012605042196810246,-0.4950980246067047,-0.6176470518112183,-0.8452380895614624,-0.6526610851287842,-0.8627451062202454,-0.4950980246067047,-0.47759103775024414,-0.4600840210914612,-0.4075630307197571,-0.4425770342350006,-0.3900560140609741,-0.32002800703048706,-0.4425770342350006,-0.33753502368927,-0.5126050710678101,-0.23249299824237823,-0.23249299824237823,-0.23249299824237823,-0.25,-0.3900560140609741,-0.47759103775024414,-0.8627451062202454,-0.7577030658721924,-0.4600840210914612,-0.6176470518112183,-0.8627451062202454,-0.8627451062202454,-0.7577030658721924,-0.6351540684700012,-0.6176470518112183,-0.7927170991897583,-0.7051820755004883,-0.7051820755004883,-0.7927170991897583,-0.5126050710678101,-0.6176470518112183,-0.4600840210914612,-0.37254902720451355,-0.5476190447807312,-0.5301120281219482,-0.3025210201740265,-0.6176470518112183,-0.5826330780982971,-0.7051820755004883,-0.7577030658721924,-0.8102241158485413,-0.7226890921592712,-0.7752100825309753,-0.8102241158485413,-0.7752100825309753,-0.7577030658721924,-0.7577030658721924,-0.6351540684700012,-0.8802521228790283,-1.0728291273117065,-0.9502801299095154,-0.8277310729026794,-0.6001400351524353,-0.9327731132507324,-0.8627451062202454,-0.9852941036224365,-0.8627451062202454,-1.0028011798858643,-0.9502801299095154,-1.1253501176834106,-1.492997169494629,-1.5280112028121948,-1.3179271221160889,-1.4404761791229248,-1.5280112028121948,-1.1603641510009766,-0.6001400351524353,-0.6176470518112183,-0.4950980246067047,-0.5301120281219482,-0.3025210201740265,-0.37254902720451355,-0.5126050710678101,-0.5651260614395142,-0.4600840210914612,-0.6701680421829224,-0.8277310729026794],[-0.47759103775024414,-0.4600840210914612,-0.23249299824237823,-0.3025210201740265,-0.26750701665878296,-0.37254902720451355,-0.7226890921592712,-0.8802521228790283,-0.7927170991897583,-0.9502801299095154,-0.8277310729026794,-1.0203081369400024,0.4852941036224365,0.6428571343421936,0.6253501176834106,-0.6001400351524353,1.430672287940979,0.5903361439704895,0.46778711676597595,0.2927170991897583,0.27521008253097534,0.20518207550048828,-1.7906162738800049,-1.633053183555603,-1.2303920984268188,-1.2654061317443848,-1.0553221702575684,-0.7226890921592712,-0.5826330780982971,-0.7226890921592712,-0.4950980246067047,-0.47759103775024414,-0.25,-0.5476190447807312,-0.33753502368927,-0.4600840210914612,-0.4950980246067047,-0.23249299824237823,-0.16246499121189117,-0.5126050710678101,-0.4075630307197571,-0.23249299824237823,-0.4425770342350006,-0.33753502368927,-0.21498599648475647,0.0476190485060215,-0.8977590799331665,-0.3025210201740265,0.012605042196810246,-0.23249299824237823,-0.32002800703048706,-0.8627451062202454,-0.5476190447807312,-0.17997199296951294,-0.5826330780982971,-0.12745098769664764,-0.12745098769664764,-0.10994397848844528,-0.1974789947271347,-0.5651260614395142,-0.3900560140609741,-0.5826330780982971,-0.4600840210914612,-0.32002800703048706,-0.3025210201740265,-0.5651260614395142,-0.6176470518112183,-0.17997199296951294,-0.5826330780982971,-0.3550420105457306,-0.7051820755004883,-0.5126050710678101,-0.4425770342350006,-0.26750701665878296,-0.7752100825309753,-0.28501400351524353,-0.42507001757621765,-0.28501400351524353,-0.5826330780982971,-0.47759103775024414,-0.26750701665878296,-0.3550420105457306,-0.33753502368927,-0.10994397848844528,0.13515406847000122,-0.21498599648475647,-0.3900560140609741,-0.1449579894542694,-0.32002800703048706,-0.7401960492134094,-0.3025210201740265,-0.3900560140609741,-0.47759103775024414,-0.6176470518112183,-0.6876750588417053,-0.32002800703048706,-0.47759103775024414,-0.3900560140609741,-0.47759103775024414,-0.4950980246067047,-0.3900560140609741,-0.37254902720451355,-0.1974789947271347,-0.5826330780982971,-0.6876750588417053,-0.6876750588417053,-0.8102241158485413,-0.5301120281219482,-0.6001400351524353,-0.6176470518112183,-0.4950980246067047,-0.05742296949028969,-0.37254902720451355,-0.32002800703048706,-0.4600840210914612,-0.21498599648475647,-0.12745098769664764,-0.5126050710678101,-0.5301120281219482,-0.5651260614395142,-0.12745098769664764,-0.03991596773266792,-0.37254902720451355,-0.32002800703048706,-0.4600840210914612,-0.5651260614395142,-0.4600840210914612,-0.4950980246067047,-0.6876750588417053,-0.5126050710678101,-0.3025210201740265,-0.25,-0.03991596773266792,-0.33753502368927,-0.12745098769664764,-0.47759103775024414,-0.3025210201740265,-0.6176470518112183,-0.37254902720451355,-0.5826330780982971,-0.47759103775024414,-0.1974789947271347,-0.6876750588417053,-0.6351540684700012,-0.37254902720451355,-0.37254902720451355,-0.6701680421829224,-0.4425770342350006,-0.37254902720451355,-0.4075630307197571,-0.37254902720451355,-0.5301120281219482,-0.4425770342350006,-0.26750701665878296,-0.3550420105457306,-0.26750701665878296,-0.25,-0.17997199296951294,-0.25,-0.33753502368927,-0.3550420105457306,-0.8277310729026794,-0.6701680421829224,-0.7226890921592712,-0.6701680421829224,-0.7226890921592712,-1.0553221702575684,-1.0553221702575684,-0.7927170991897583,-0.8277310729026794,-0.8277310729026794,-0.6526610851287842,-0.4425770342350006,-0.47759103775024414,-0.4600840210914612,-0.12745098769664764,-0.4950980246067047,-0.4950980246067047,-0.4600840210914612,-0.4075630307197571,-0.5826330780982971,-0.5301120281219482,-0.5476190447807312,-0.5826330780982971,-0.33753502368927,-0.5651260614395142,-0.5826330780982971,-0.8627451062202454,-0.8277310729026794,-0.7927170991897583,-0.9327731132507324,-0.8102241158485413,-0.8977590799331665,-0.8102241158485413,-0.6876750588417053,-0.9852941036224365,-0.8452380895614624,-0.7401960492134094,-0.6526610851287842,-0.7752100825309753,-0.7226890921592712,-0.8627451062202454,-0.7577030658721924,-0.9502801299095154,-0.9152660965919495,-1.2478991746902466,-1.1253501176834106,-1.3879551887512207,-1.1428571939468384,-1.2303920984268188,-1.5105042457580566,-1.5980392694473267,-1.2128851413726807,-0.7226890921592712,-0.5301120281219482,-0.5301120281219482,-0.6001400351524353,-0.4950980246067047,-0.3900560140609741,-0.42507001757621765,-0.7927170991897583,-0.7226890921592712,-0.7051820755004883,-0.8452380895614624],[-0.37254902720451355,-0.5826330780982971,-0.17997199296951294,-0.1974789947271347,-0.3025210201740265,-0.28501400351524353,-0.3550420105457306,-0.42507001757621765,-0.6351540684700012,-1.0553221702575684,-0.5126050710678101,-0.8277310729026794,0.4852941036224365,1.2030812501907349,0.36274510622024536,0.27521008253097534,1.483193278312683,1.080532193183899,0.9229691624641418,0.15266107022762299,0.0476190485060215,0.25770309567451477,-1.9481792449951172,-1.457983136177063,-1.1953781843185425,-1.3004201650619507,-1.0378150939941406,-0.4425770342350006,-0.4425770342350006,-0.23249299824237823,-0.28501400351524353,-0.5651260614395142,-0.3900560140609741,-0.6351540684700012,-0.3550420105457306,-0.1974789947271347,0.012605042196810246,-0.10994397848844528,-0.17997199296951294,-0.1449579894542694,-0.0049019609577953815,-0.0049019609577953815,-0.07492997497320175,-0.10994397848844528,0.15266107022762299,-0.16246499121189117,-0.25,-0.25,-0.16246499121189117,-0.26750701665878296,-0.3025210201740265,-0.3550420105457306,-0.21498599648475647,-0.23249299824237823,-0.37254902720451355,-0.1449579894542694,-0.5301120281219482,-0.05742296949028969,-0.3900560140609741,-0.26750701665878296,-0.3900560140609741,-0.33753502368927,-0.6876750588417053,-0.26750701665878296,-0.3900560140609741,-0.26750701665878296,-0.5126050710678101,-0.4950980246067047,-0.4950980246067047,-0.6526610851287842,-0.6001400351524353,-0.4600840210914612,-0.28501400351524353,-0.5126050710678101,-0.5476190447807312,-0.25,-0.21498599648475647,-0.4075630307197571,-0.3025210201740265,-0.4425770342350006,-0.32002800703048706,-0.28501400351524353,-0.16246499121189117,-0.23249299824237823,-0.12745098769664764,-0.25,-0.1974789947271347,-0.37254902720451355,-0.6176470518112183,-0.32002800703048706,-0.5476190447807312,-0.4600840210914612,-0.42507001757621765,-0.6701680421829224,-0.5651260614395142,-0.4425770342350006,-0.5826330780982971,-0.37254902720451355,-0.6176470518112183,-0.4075630307197571,-0.6001400351524353,-0.5126050710678101,-0.37254902720451355,-0.7927170991897583,-0.6001400351524353,-0.8102241158485413,-0.8277310729026794,-0.7401960492134094,-0.3025210201740265,-0.6876750588417053,-0.3025210201740265,-0.28501400351524353,-0.7927170991897583,-0.4425770342350006,-0.33753502368927,-0.23249299824237823,-0.42507001757621765,-0.33753502368927,-0.3900560140609741,-0.3550420105457306,-0.1974789947271347,-0.02240896411240101,-0.10994397848844528,-0.28501400351524353,-0.33753502368927,-0.7577030658721924,-0.5651260614395142,-0.8977590799331665,-0.5651260614395142,-0.26750701665878296,-0.21498599648475647,-0.25,-0.37254902720451355,-0.33753502368927,-0.7401960492134094,-0.4950980246067047,-0.4425770342350006,-0.4950980246067047,-0.8452380895614624,-0.5301120281219482,-0.25,-0.47759103775024414,-0.5826330780982971,-0.33753502368927,-0.5826330780982971,-0.5126050710678101,-0.4425770342350006,-0.5126050710678101,-0.3550420105457306,-0.47759103775024414,-0.32002800703048706,-0.3550420105457306,-0.37254902720451355,-0.4425770342350006,-0.26750701665878296,0.030112044885754585,-0.37254902720451355,-0.3550420105457306,-0.16246499121189117,-0.26750701665878296,-0.28501400351524353,-0.4600840210914612,-0.4950980246067047,-0.4600840210914612,-0.6351540684700012,-0.4600840210914612,-0.8277310729026794,-0.8277310729026794,-0.7051820755004883,-0.7401960492134094,-0.9677870869636536,-0.6001400351524353,-0.7752100825309753,-0.9502801299095154,-0.5476190447807312,-0.7927170991897583,-0.21498599648475647,-0.7051820755004883,-0.4600840210914612,-0.5126050710678101,-0.37254902720451355,-0.6001400351524353,-0.28501400351524353,-0.9327731132507324,-0.4075630307197571,-0.7226890921592712,-0.6351540684700012,-0.7927170991897583,-0.37254902720451355,-0.5476190447807312,-0.8102241158485413,-0.9502801299095154,-0.6876750588417053,-0.9852941036224365,-0.6876750588417053,-0.6351540684700012,-0.6001400351524353,-0.6176470518112183,-0.7927170991897583,-0.8102241158485413,-0.9852941036224365,-0.7051820755004883,-0.9152660965919495,-0.9852941036224365,-1.0728291273117065,-1.1953781843185425,-1.3179271221160889,-1.2829132080078125,-1.545518159866333,-1.3704482316970825,-1.3004201650619507,-1.492997169494629,-1.3179271221160889,-0.6876750588417053,-0.7577030658721924,-0.4950980246067047,-0.6001400351524353,-0.3025210201740265,-0.4600840210914612,-0.4425770342350006,-0.6351540684700012,-0.3900560140609741,-0.9152660965919495,-0.5476190447807312],[-0.6001400351524353,-0.42507001757621765,-0.3900560140609741,-0.33753502368927,-0.1974789947271347,-0.33753502368927,-0.25,-0.42507001757621765,-0.7226890921592712,-0.9852941036224365,-0.8102241158485413,-0.9152660965919495,-0.16246499121189117,1.080532193183899,-0.21498599648475647,0.8704481720924377,1.483193278312683,0.5203081369400024,0.5203081369400024,-0.17997199296951294,0.13515406847000122,-0.02240896411240101,-1.4229692220687866,-1.3004201650619507,-0.9327731132507324,-0.8452380895614624,-0.8277310729026794,-0.4600840210914612,-0.23249299824237823,-0.25,-0.5476190447807312,-0.4600840210914612,-0.3900560140609741,-0.23249299824237823,-0.17997199296951294,-0.0049019609577953815,0.012605042196810246,0.32773110270500183,-0.12745098769664764,-0.02240896411240101,-0.4600840210914612,-0.42507001757621765,-0.26750701665878296,-0.17997199296951294,-0.47759103775024414,-0.21498599648475647,-0.1974789947271347,-0.02240896411240101,-0.37254902720451355,-0.3550420105457306,-0.26750701665878296,-0.32002800703048706,-0.1974789947271347,0.17016807198524475,-0.37254902720451355,-0.33753502368927,-0.25,-0.21498599648475647,-0.5651260614395142,-0.4600840210914612,-0.33753502368927,-0.28501400351524353,-0.7577030658721924,-0.3550420105457306,-0.0049019609577953815,-0.21498599648475647,-0.5126050710678101,-0.17997199296951294,-0.42507001757621765,-0.28501400351524353,-0.5826330780982971,-0.7927170991897583,-0.28501400351524353,-0.47759103775024414,-0.28501400351524353,-0.3900560140609741,-0.5826330780982971,-0.33753502368927,-0.4600840210914612,-0.5126050710678101,-0.23249299824237823,-0.32002800703048706,-0.4425770342350006,-0.25,-0.1449579894542694,-0.1449579894542694,-0.05742296949028969,-0.1974789947271347,-0.5126050710678101,-0.4950980246067047,-0.1974789947271347,-0.32002800703048706,-0.1449579894542694,-0.47759103775024414,-0.5651260614395142,-0.4600840210914612,-0.6701680421829224,-0.5826330780982971,-0.5126050710678101,-0.5301120281219482,-0.5301120281219482,-0.47759103775024414,-0.4950980246067047,-0.6701680421829224,-0.47759103775024414,-0.8452380895614624,-0.8277310729026794,-0.5826330780982971,-0.32002800703048706,-0.3900560140609741,-0.16246499121189117,-0.32002800703048706,-0.3025210201740265,-0.37254902720451355,-0.25,-0.02240896411240101,-0.4600840210914612,-0.32002800703048706,-0.5301120281219482,-0.5826330780982971,-0.03991596773266792,-0.16246499121189117,-0.09243697673082352,-0.1449579894542694,-0.23249299824237823,-0.6176470518112183,-0.9152660965919495,-0.42507001757621765,-0.09243697673082352,-0.32002800703048706,-0.4425770342350006,-0.5651260614395142,-0.5826330780982971,-0.5301120281219482,-0.4425770342350006,-0.42507001757621765,-0.5476190447807312,-0.21498599648475647,-0.5476190447807312,-0.6351540684700012,-0.4600840210914612,-0.5301120281219482,-0.6351540684700012,-0.5826330780982971,-0.26750701665878296,-0.4950980246067047,-0.37254902720451355,-0.7927170991897583,-0.7577030658721924,-0.5301120281219482,-0.5476190447807312,-0.47759103775024414,-0.28501400351524353,-0.5301120281219482,-0.21498599648475647,-0.5301120281219482,-0.32002800703048706,-0.09243697673082352,-0.5126050710678101,-0.4600840210914612,-0.5126050710678101,-0.3900560140609741,-0.6876750588417053,-0.6526610851287842,-0.8102241158485413,-0.8102241158485413,-0.8452380895614624,-0.8277310729026794,-0.9152660965919495,-0.4950980246067047,-0.7752100825309753,-0.6526610851287842,-0.5476190447807312,-0.6701680421829224,-0.4950980246067047,-0.5651260614395142,-0.3900560140609741,-0.42507001757621765,-0.32002800703048706,-0.7226890921592712,-0.3025210201740265,-0.6351540684700012,-0.6176470518112183,-0.8277310729026794,-0.8802521228790283,-0.8977590799331665,-0.5301120281219482,-0.5301120281219482,-0.6526610851287842,-0.7051820755004883,-0.7577030658721924,-0.7752100825309753,-0.5651260614395142,-0.8627451062202454,-1.0203081369400024,-0.9677870869636536,-0.5651260614395142,-0.8452380895614624,-0.7401960492134094,-1.1953781843185425,-0.7226890921592712,-0.9852941036224365,-0.8977590799331665,-1.0728291273117065,-0.7401960492134094,-1.1428571939468384,-1.1253501176834106,-1.1078431606292725,-1.1778711080551147,-1.3179271221160889,-1.5105042457580566,-1.930672287940979,-1.2829132080078125,-0.7401960492134094,-0.5826330780982971,-0.6176470518112183,-0.7051820755004883,-0.5826330780982971,-0.4950980246067047,-0.5126050710678101,-0.6176470518112183,-0.6001400351524353,-0.8627451062202454,-0.6526610851287842],[-0.4950980246067047,-0.47759103775024414,-0.5126050710678101,-0.4600840210914612,-0.6701680421829224,-0.4950980246067047,-0.37254902720451355,-0.47759103775024414,-0.25,-0.4075630307197571,-0.8452380895614624,-0.7577030658721924,-0.7401960492134094,-0.4425770342350006,-0.9677870869636536,0.8879551887512207,1.6407562494277954,0.6078431606292725,-0.7927170991897583,-1.1778711080551147,-0.1974789947271347,-0.3900560140609741,-1.0903360843658447,-0.8977590799331665,-0.6526610851287842,-0.4600840210914612,-0.4950980246067047,-0.37254902720451355,-0.05742296949028969,-0.07492997497320175,-0.3550420105457306,0.08263305574655533,-0.42507001757621765,-0.1974789947271347,-0.23249299824237823,-0.5301120281219482,-0.23249299824237823,0.17016807198524475,-0.1449579894542694,-0.28501400351524353,-0.16246499121189117,-0.03991596773266792,-0.0049019609577953815,-0.09243697673082352,-0.10994397848844528,-0.23249299824237823,-0.3025210201740265,-0.09243697673082352,-0.10994397848844528,-0.17997199296951294,-0.28501400351524353,-0.21498599648475647,-0.16246499121189117,-0.21498599648475647,-0.28501400351524353,-0.42507001757621765,-0.25,-0.37254902720451355,-0.7577030658721924,-0.37254902720451355,-0.4600840210914612,-0.4950980246067047,-0.23249299824237823,-0.5301120281219482,-0.28501400351524353,-0.0049019609577953815,-0.21498599648475647,-0.17997199296951294,-0.3550420105457306,-0.25,-0.3025210201740265,-0.6526610851287842,-0.47759103775024414,-0.4075630307197571,-0.3550420105457306,-0.5651260614395142,-0.3025210201740265,-0.32002800703048706,-0.28501400351524353,-0.7226890921592712,-0.5126050710678101,-0.1449579894542694,-0.1974789947271347,-0.21498599648475647,-0.32002800703048706,-0.6351540684700012,-0.7401960492134094,-0.7226890921592712,-0.21498599648475647,-0.6701680421829224,-0.7051820755004883,-0.42507001757621765,-0.32002800703048706,-0.3900560140609741,-0.47759103775024414,-0.32002800703048706,-0.33753502368927,-0.4600840210914612,-0.3025210201740265,-0.37254902720451355,-0.7752100825309753,-0.5476190447807312,-0.6001400351524353,-0.4075630307197571,-0.5826330780982971,-0.6701680421829224,-0.7927170991897583,-0.6001400351524353,-0.4425770342350006,-0.33753502368927,-0.47759103775024414,-0.28501400351524353,-0.5476190447807312,-0.5826330780982971,-0.4425770342350006,-0.09243697673082352,-0.4600840210914612,-0.5126050710678101,-0.9502801299095154,-0.6001400351524353,0.08263305574655533,-0.3025210201740265,-0.09243697673082352,-0.4600840210914612,-0.7051820755004883,-0.6176470518112183,-0.42507001757621765,-0.25,-0.3025210201740265,-0.3025210201740265,-0.4425770342350006,-0.32002800703048706,-0.8102241158485413,-0.37254902720451355,-0.32002800703048706,-0.3900560140609741,-0.6876750588417053,-0.17997199296951294,-0.6176470518112183,-0.4075630307197571,-0.6351540684700012,-0.5126050710678101,-0.33753502368927,-0.3550420105457306,-0.33753502368927,-0.4075630307197571,-0.3900560140609741,-0.8627451062202454,-0.5476190447807312,-0.6876750588417053,-0.4075630307197571,-0.42507001757621765,-0.3550420105457306,-0.25,-0.3900560140609741,-0.10994397848844528,-0.09243697673082352,-0.37254902720451355,-0.3025210201740265,-0.21498599648475647,-0.6176470518112183,-0.3550420105457306,-0.7752100825309753,-0.5651260614395142,-0.5826330780982971,-0.7577030658721924,-0.5651260614395142,-0.7226890921592712,-0.7752100825309753,-0.6876750588417053,-0.6001400351524353,-0.6876750588417053,-0.6701680421829224,-0.5651260614395142,-0.6176470518112183,-0.4950980246067047,-0.8102241158485413,-0.5476190447807312,-0.7401960492134094,-0.42507001757621765,-0.5126050710678101,-0.6001400351524353,-0.5651260614395142,-0.8627451062202454,-0.4425770342350006,-0.8452380895614624,-0.7401960492134094,-0.9852941036224365,-0.5301120281219482,-0.5826330780982971,-0.9677870869636536,-0.9152660965919495,-0.9852941036224365,-0.8102241158485413,-0.8452380895614624,-0.8277310729026794,-0.6526610851287842,-0.7927170991897583,-0.8102241158485413,-0.7927170991897583,-0.5651260614395142,-0.7927170991897583,-0.9327731132507324,-0.9677870869636536,-0.9152660965919495,-1.0728291273117065,-0.9327731132507324,-1.2829132080078125,-1.4229692220687866,-1.545518159866333,-1.4229692220687866,-1.6505602598190308,-1.4754902124404907,-0.8277310729026794,-0.8277310729026794,-0.6526610851287842,-0.5826330780982971,-0.7577030658721924,-0.6876750588417053,-0.4600840210914612,-0.6526610851287842,-0.8627451062202454,-1.0553221702575684,-0.7752100825309753],[-0.5126050710678101,-0.5301120281219482,-0.8802521228790283,-0.21498599648475647,-0.4600840210914612,-0.17997199296951294,-0.21498599648475647,-0.33753502368927,-0.33753502368927,-0.5126050710678101,-0.3025210201740265,-1.0028011798858643,-0.8102241158485413,-0.9677870869636536,-0.4950980246067047,0.6428571343421936,1.3606442213058472,1.0980392694473267,-0.7927170991897583,-1.1428571939468384,-0.26750701665878296,-0.6176470518112183,-0.8977590799331665,-0.8802521228790283,-0.6176470518112183,-0.26750701665878296,-0.16246499121189117,-0.03991596773266792,0.08263305574655533,0.012605042196810246,0.1001400575041771,0.1001400575041771,-0.12745098769664764,-0.07492997497320175,-0.28501400351524353,-0.37254902720451355,0.17016807198524475,0.06512605398893356,0.06512605398893356,-0.09243697673082352,-0.1449579894542694,-0.21498599648475647,-0.17997199296951294,-0.05742296949028969,-0.5126050710678101,-0.1974789947271347,-0.1449579894542694,-0.3025210201740265,-0.09243697673082352,-0.1974789947271347,-0.12745098769664764,-0.3900560140609741,-0.32002800703048706,-0.5126050710678101,-0.1974789947271347,-0.26750701665878296,-0.42507001757621765,-0.33753502368927,-0.21498599648475647,-0.28501400351524353,-0.3900560140609741,-0.3900560140609741,-0.8102241158485413,-0.1974789947271347,-0.3025210201740265,-0.6001400351524353,-0.6176470518112183,-0.5476190447807312,-0.28501400351524353,-0.4075630307197571,-0.3550420105457306,-0.42507001757621765,-0.6001400351524353,-0.1449579894542694,-0.28501400351524353,-0.7051820755004883,-0.23249299824237823,-0.5126050710678101,-0.4950980246067047,-0.5651260614395142,-0.25,-0.26750701665878296,-0.16246499121189117,-0.03991596773266792,-0.23249299824237823,-0.37254902720451355,0.012605042196810246,-0.42507001757621765,-0.5301120281219482,-0.26750701665878296,-0.6876750588417053,-0.37254902720451355,-0.5826330780982971,-0.42507001757621765,-0.6351540684700012,-0.3025210201740265,-0.5651260614395142,-0.25,-0.4075630307197571,-0.28501400351524353,-0.5301120281219482,-0.9327731132507324,-0.6001400351524353,-0.4600840210914612,-0.5476190447807312,-0.6351540684700012,-1.0728291273117065,-0.7752100825309753,-0.4600840210914612,-0.5476190447807312,-0.4075630307197571,-0.4425770342350006,-0.6351540684700012,-0.47759103775024414,-0.25,-0.47759103775024414,-0.3025210201740265,-0.4600840210914612,-0.8277310729026794,-0.6526610851287842,-0.3025210201740265,-0.23249299824237823,-0.32002800703048706,-0.5651260614395142,-0.7401960492134094,-0.7051820755004883,-0.32002800703048706,-0.47759103775024414,-0.28501400351524353,-0.4950980246067047,-0.26750701665878296,-0.5476190447807312,-0.47759103775024414,-0.7401960492134094,-0.3550420105457306,-0.4075630307197571,-0.33753502368927,-0.4425770342350006,-0.6526610851287842,-0.5126050710678101,-0.4425770342350006,-0.4425770342350006,-0.4075630307197571,-0.4425770342350006,-0.3900560140609741,-0.5476190447807312,-0.5126050710678101,-0.7226890921592712,-0.7752100825309753,-0.6526610851287842,-0.5301120281219482,-0.33753502368927,-0.42507001757621765,-0.3900560140609741,-0.3025210201740265,-0.6351540684700012,-0.33753502368927,-0.17997199296951294,-0.28501400351524353,-0.3550420105457306,-0.7752100825309753,-0.5826330780982971,-0.1974789947271347,-0.8977590799331665,-0.4950980246067047,-0.7752100825309753,-0.8102241158485413,-0.6876750588417053,-0.9152660965919495,-0.5826330780982971,-0.7752100825309753,-0.6176470518112183,-0.4950980246067047,-0.8277310729026794,-0.4425770342350006,-0.6176470518112183,-0.8277310729026794,-0.4425770342350006,-0.3900560140609741,-0.7051820755004883,-0.9852941036224365,-0.6876750588417053,-0.5476190447807312,-0.33753502368927,-0.6176470518112183,-0.7226890921592712,-0.7577030658721924,-0.7401960492134094,-0.7051820755004883,-1.0203081369400024,-0.7401960492134094,-0.6701680421829224,-0.8102241158485413,-0.5651260614395142,-0.8452380895614624,-0.8977590799331665,-0.8102241158485413,-0.8802521228790283,-0.8102241158485413,-1.0903360843658447,-1.0728291273117065,-1.0903360843658447,-0.7401960492134094,-0.8102241158485413,-0.9502801299095154,-1.0203081369400024,-0.9677870869636536,-1.3179271221160889,-1.3529411554336548,-1.492997169494629,-1.668067216873169,-1.755602240562439,-1.5280112028121948,-1.0553221702575684,-0.8802521228790283,-0.6351540684700012,-0.6176470518112183,-0.4425770342350006,-0.5301120281219482,-0.5651260614395142,-0.47759103775024414,-0.5476190447807312,-0.7577030658721924,-0.7927170991897583],[-0.5651260614395142,-0.4075630307197571,-0.6526610851287842,-0.6001400351524353,-0.6351540684700012,-0.6176470518112183,-0.4600840210914612,-0.1974789947271347,-0.21498599648475647,-0.17997199296951294,-0.5126050710678101,-0.5126050710678101,-0.6351540684700012,-0.4950980246067047,0.030112044885754585,1.220588207244873,0.9929971694946289,0.4327731132507324,-0.8802521228790283,-1.1953781843185425,-0.8452380895614624,-0.9677870869636536,-0.7927170991897583,-0.3900560140609741,-0.4425770342350006,-0.1974789947271347,-0.12745098769664764,-0.10994397848844528,0.06512605398893356,0.1001400575041771,0.22268907725811005,-0.21498599648475647,0.18767507374286652,-0.1974789947271347,-0.09243697673082352,-0.12745098769664764,-0.17997199296951294,-0.28501400351524353,0.11764705926179886,-0.21498599648475647,-0.37254902720451355,-0.26750701665878296,-0.32002800703048706,-0.3550420105457306,-0.1449579894542694,0.11764705926179886,-0.4075630307197571,-0.28501400351524353,-0.12745098769664764,-0.07492997497320175,-0.05742296949028969,-0.28501400351524353,-0.21498599648475647,-0.7226890921592712,-0.05742296949028969,-0.4950980246067047,-0.10994397848844528,-0.4075630307197571,-0.1449579894542694,-0.6351540684700012,-0.28501400351524353,-0.28501400351524353,-0.37254902720451355,-0.3900560140609741,-0.26750701665878296,-0.42507001757621765,-0.10994397848844528,-0.26750701665878296,-0.16246499121189117,-0.5651260614395142,-0.1449579894542694,-0.26750701665878296,-0.47759103775024414,-0.12745098769664764,-0.1974789947271347,-0.26750701665878296,-0.26750701665878296,-0.21498599648475647,-0.1974789947271347,0.17016807198524475,-0.3025210201740265,-0.05742296949028969,-0.03991596773266792,0.18767507374286652,-0.26750701665878296,-0.37254902720451355,-0.05742296949028969,-0.3550420105457306,-0.26750701665878296,-0.5826330780982971,-0.5126050710678101,-0.4950980246067047,-0.42507001757621765,-0.4075630307197571,-0.7226890921592712,-0.21498599648475647,-0.1974789947271347,-0.28501400351524353,-0.3550420105457306,-0.42507001757621765,-0.5476190447807312,-0.6176470518112183,-0.4075630307197571,-0.7401960492134094,-0.4950980246067047,-0.4950980246067047,-0.8452380895614624,-0.9152660965919495,-0.6351540684700012,-0.25,-0.4425770342350006,-0.5651260614395142,-0.4950980246067047,-0.09243697673082352,-0.32002800703048706,-0.42507001757621765,-0.3900560140609741,-0.5126050710678101,-0.7051820755004883,-0.5126050710678101,-0.16246499121189117,-0.33753502368927,-0.3550420105457306,-0.8277310729026794,-0.7752100825309753,-0.7226890921592712,-0.7752100825309753,-0.5651260614395142,-0.37254902720451355,-0.25,-0.4600840210914612,-0.32002800703048706,-0.7752100825309753,-0.5301120281219482,-0.4075630307197571,-0.28501400351524353,-0.26750701665878296,-0.4950980246067047,-0.5126050710678101,-0.6351540684700012,-0.3025210201740265,-0.4600840210914612,-0.5651260614395142,-0.5651260614395142,-0.4075630307197571,-0.26750701665878296,-0.26750701665878296,-0.4600840210914612,-0.6001400351524353,-0.33753502368927,-0.5476190447807312,-0.4600840210914612,-0.6526610851287842,-0.3550420105457306,-0.5826330780982971,-0.37254902720451355,-0.7051820755004883,-0.21498599648475647,-0.5301120281219482,-0.3550420105457306,-0.42507001757621765,-0.26750701665878296,-0.4425770342350006,-0.6351540684700012,-0.9152660965919495,-0.6701680421829224,-0.7577030658721924,-0.7577030658721924,-0.6701680421829224,-0.9152660965919495,-0.26750701665878296,-0.4950980246067047,-0.4600840210914612,-0.37254902720451355,-0.4425770342350006,-0.6701680421829224,-0.5476190447807312,-0.3900560140609741,-0.5476190447807312,-0.4600840210914612,-0.6526610851287842,-0.8102241158485413,-0.6001400351524353,-0.8452380895614624,-0.6701680421829224,-0.9677870869636536,-0.7577030658721924,-0.9152660965919495,-1.0903360843658447,-0.8277310729026794,-0.6001400351524353,-0.9152660965919495,-1.0203081369400024,-0.5651260614395142,-0.7577030658721924,-0.9152660965919495,-0.8452380895614624,-0.6526610851287842,-1.1253501176834106,-0.8277310729026794,-0.8802521228790283,-0.7226890921592712,-0.7577030658721924,-0.8977590799331665,-1.0728291273117065,-1.0378150939941406,-0.7577030658721924,-0.9327731132507324,-1.2478991746902466,-1.5630252361297607,-1.5630252361297607,-1.7030812501907349,-1.6505602598190308,-0.8102241158485413,-0.8102241158485413,-0.6701680421829224,-0.6701680421829224,-0.5301120281219482,-0.6001400351524353,-0.7051820755004883,-0.7927170991897583,-0.5651260614395142,-0.6876750588417053,-0.7401960492134094],[-0.32002800703048706,-0.3550420105457306,-0.47759103775024414,-0.4425770342350006,-0.6701680421829224,-0.5126050710678101,-0.3025210201740265,-0.32002800703048706,-0.42507001757621765,-0.5651260614395142,-0.1974789947271347,-0.6701680421829224,-0.7577030658721924,-0.6526610851287842,-0.10994397848844528,1.080532193183899,0.5028011202812195,-0.33753502368927,-1.1603641510009766,-0.8977590799331665,-0.9502801299095154,-0.7577030658721924,-0.5826330780982971,-0.4075630307197571,-0.3025210201740265,-0.12745098769664764,0.06512605398893356,0.030112044885754585,-0.0049019609577953815,0.15266107022762299,0.11764705926179886,0.17016807198524475,-0.0049019609577953815,0.06512605398893356,0.18767507374286652,0.08263305574655533,0.030112044885754585,-0.1449579894542694,-0.1974789947271347,-0.28501400351524353,-0.10994397848844528,-0.3025210201740265,0.20518207550048828,0.06512605398893356,0.012605042196810246,-0.09243697673082352,-0.25,-0.3900560140609741,-0.26750701665878296,-0.26750701665878296,-0.28501400351524353,-0.28501400351524353,-0.3550420105457306,-0.09243697673082352,-0.17997199296951294,-0.33753502368927,-0.4600840210914612,-0.47759103775024414,-0.4600840210914612,0.06512605398893356,-0.6176470518112183,-0.09243697673082352,-0.12745098769664764,-0.17997199296951294,-0.7927170991897583,-0.1974789947271347,-0.0049019609577953815,-0.03991596773266792,-0.10994397848844528,-0.12745098769664764,-0.16246499121189117,-0.23249299824237823,-0.1449579894542694,0.18767507374286652,-0.3025210201740265,-0.3900560140609741,-0.33753502368927,-0.4075630307197571,-0.4075630307197571,-0.5301120281219482,-0.32002800703048706,-0.3025210201740265,-0.21498599648475647,-0.32002800703048706,-0.25,-0.32002800703048706,-0.05742296949028969,-0.23249299824237823,-0.4425770342350006,-0.4950980246067047,-0.6876750588417053,-0.32002800703048706,-0.4075630307197571,-0.5651260614395142,-0.42507001757621765,-0.12745098769664764,-0.1974789947271347,-0.42507001757621765,-0.4600840210914612,-0.5476190447807312,-0.4600840210914612,-0.6876750588417053,-0.9152660965919495,-0.8102241158485413,-0.4600840210914612,-0.1974789947271347,-0.8102241158485413,-0.8102241158485413,-0.6176470518112183,-0.26750701665878296,-0.4600840210914612,-0.42507001757621765,-0.5126050710678101,-0.5301120281219482,-0.6876750588417053,-0.3550420105457306,-0.37254902720451355,-0.7051820755004883,-0.8802521228790283,-0.6176470518112183,-0.05742296949028969,-0.5651260614395142,-0.37254902720451355,-0.4425770342350006,-0.3900560140609741,-0.8977590799331665,-0.7401960492134094,-0.5301120281219482,-0.37254902720451355,-0.21498599648475647,-0.7927170991897583,-0.3025210201740265,-0.5301120281219482,-0.5301120281219482,-0.28501400351524353,-0.32002800703048706,-0.3550420105457306,-0.4425770342350006,-0.6176470518112183,-0.4425770342350006,-0.5826330780982971,-0.4075630307197571,-0.4600840210914612,-0.4075630307197571,-0.3025210201740265,-0.28501400351524353,-0.5476190447807312,-0.3900560140609741,-0.6001400351524353,-0.9677870869636536,-0.4950980246067047,-0.5651260614395142,-0.4075630307197571,-0.25,-0.26750701665878296,-0.03991596773266792,-0.16246499121189117,-0.21498599648475647,-0.37254902720451355,-0.5651260614395142,-0.8277310729026794,-0.6526610851287842,-0.6351540684700012,-0.8627451062202454,-0.6701680421829224,-0.5126050710678101,-0.5126050710678101,-0.6701680421829224,-0.6351540684700012,-0.7927170991897583,-0.6351540684700012,-0.6176470518112183,-0.4425770342350006,-0.6701680421829224,-0.7927170991897583,-0.7752100825309753,-0.6526610851287842,-0.5476190447807312,-0.6701680421829224,-0.5826330780982971,-0.7226890921592712,-0.4075630307197571,-0.7051820755004883,-0.5476190447807312,-0.8802521228790283,-0.9327731132507324,-0.8627451062202454,-0.47759103775024414,-0.8277310729026794,-0.9327731132507324,-0.7401960492134094,-0.9852941036224365,-0.6876750588417053,-0.6526610851287842,-0.6701680421829224,-1.1778711080551147,-0.8802521228790283,-0.37254902720451355,-0.7927170991897583,-0.7226890921592712,-1.0203081369400024,-0.8452380895614624,-0.9502801299095154,-0.8452380895614624,-1.0203081369400024,-0.8627451062202454,-1.4054621458053589,-1.3004201650619507,-1.2128851413726807,-1.580532193183899,-1.633053183555603,-1.633053183555603,-1.5980392694473267,-0.9152660965919495,-0.6526610851287842,-0.7577030658721924,-0.7577030658721924,-0.42507001757621765,-0.8102241158485413,-0.6351540684700012,-0.6526610851287842,-0.8102241158485413,-0.6351540684700012,-0.9852941036224365],[-0.4950980246067047,-0.6701680421829224,-0.6876750588417053,-0.4950980246067047,-0.4950980246067047,-0.3900560140609741,-0.5301120281219482,-0.5651260614395142,-0.32002800703048706,-0.21498599648475647,-0.25,-0.4950980246067047,-0.7401960492134094,-0.4600840210914612,-0.5476190447807312,0.030112044885754585,-0.17997199296951294,-0.7401960492134094,-1.1428571939468384,-0.7401960492134094,-0.8102241158485413,-0.7051820755004883,-0.5476190447807312,-0.5126050710678101,-0.21498599648475647,-0.17997199296951294,0.1001400575041771,0.22268907725811005,0.030112044885754585,0.20518207550048828,0.13515406847000122,-0.12745098769664764,0.012605042196810246,-0.02240896411240101,-0.09243697673082352,0.0476190485060215,-0.26750701665878296,-0.1974789947271347,-0.4600840210914612,0.27521008253097534,0.08263305574655533,-0.16246499121189117,-0.4075630307197571,-0.10994397848844528,-0.05742296949028969,-0.09243697673082352,-0.21498599648475647,-0.3900560140609741,-0.7401960492134094,-0.28501400351524353,-0.1449579894542694,-0.33753502368927,-0.23249299824237823,-0.4600840210914612,-0.5126050710678101,-0.5126050710678101,-0.28501400351524353,-0.47759103775024414,-0.4950980246067047,-0.09243697673082352,-0.4425770342350006,-0.5476190447807312,-0.1974789947271347,-0.47759103775024414,-0.3550420105457306,-0.6176470518112183,-0.7051820755004883,-0.3025210201740265,-0.4950980246067047,-0.3550420105457306,-0.4075630307197571,0.15266107022762299,0.08263305574655533,-0.5126050710678101,-0.16246499121189117,-0.33753502368927,-0.25,-0.21498599648475647,-0.4600840210914612,-0.33753502368927,-0.5826330780982971,-0.23249299824237823,-0.28501400351524353,-0.10994397848844528,-0.4950980246067047,-0.37254902720451355,-0.21498599648475647,-0.28501400351524353,-0.16246499121189117,-0.17997199296951294,-0.17997199296951294,-0.25,-0.6701680421829224,-0.42507001757621765,-0.5126050710678101,-0.28501400351524353,-0.28501400351524353,-0.17997199296951294,-0.5126050710678101,-0.28501400351524353,-0.3550420105457306,-0.8277310729026794,-0.9152660965919495,-0.47759103775024414,-0.4950980246067047,-0.4425770342350006,-0.6176470518112183,-0.9327731132507324,-0.6701680421829224,-0.5126050710678101,-0.6701680421829224,-0.8977590799331665,-0.8277310729026794,-0.5126050710678101,-0.33753502368927,-0.33753502368927,-1.0028011798858643,-0.8627451062202454,-1.0028011798858643,-0.1974789947271347,-0.25,-0.32002800703048706,-0.42507001757621765,-0.33753502368927,-0.7577030658721924,-0.8452380895614624,-0.5126050710678101,-0.5826330780982971,-0.6351540684700012,-0.6351540684700012,-0.7401960492134094,-0.7752100825309753,-0.5126050710678101,-0.7401960492134094,-0.4600840210914612,-0.3550420105457306,-0.5651260614395142,-0.37254902720451355,-0.4600840210914612,-0.4425770342350006,-0.26750701665878296,-0.7577030658721924,-0.3550420105457306,-0.6001400351524353,-0.21498599648475647,-0.26750701665878296,-0.23249299824237823,-0.4425770342350006,-0.3025210201740265,-0.5826330780982971,-0.4075630307197571,-0.7401960492134094,-0.3550420105457306,-0.3025210201740265,-0.4950980246067047,-0.3900560140609741,-0.6001400351524353,-0.4600840210914612,-0.3900560140609741,-0.3900560140609741,-0.4425770342350006,-0.5826330780982971,-0.7927170991897583,-0.6176470518112183,-0.9677870869636536,-0.8452380895614624,-0.8102241158485413,-0.8977590799331665,-0.5826330780982971,-0.5651260614395142,-0.6526610851287842,-0.4600840210914612,-0.6876750588417053,-0.4600840210914612,-0.3900560140609741,-0.5301120281219482,-0.42507001757621765,-0.7051820755004883,-0.6876750588417053,-0.6701680421829224,-0.8627451062202454,-0.7752100825309753,-0.7752100825309753,-0.6001400351524353,-0.7401960492134094,-0.7226890921592712,-0.8277310729026794,-0.8102241158485413,-0.7226890921592712,-0.8977590799331665,-1.0203081369400024,-1.1778711080551147,-0.7401960492134094,-0.8627451062202454,-1.1428571939468384,-0.7577030658721924,-0.8802521228790283,-0.8802521228790283,-0.6351540684700012,-0.7401960492134094,-0.9152660965919495,-0.7401960492134094,-0.9502801299095154,-0.8452380895614624,-0.6876750588417053,-1.0903360843658447,-1.0728291273117065,-0.9327731132507324,-1.2303920984268188,-1.0903360843658447,-1.4754902124404907,-1.8256303071975708,-1.5280112028121948,-0.8802521228790283,-0.5651260614395142,-0.5126050710678101,-0.7051820755004883,-0.5651260614395142,-0.5651260614395142,-0.25,-0.5826330780982971,-0.6876750588417053,-0.8977590799331665,-0.9852941036224365],[-0.37254902720451355,-0.3550420105457306,-0.6001400351524353,-0.4425770342350006,-0.6701680421829224,-0.4075630307197571,-0.5476190447807312,-0.6176470518112183,-0.28501400351524353,-0.4075630307197571,-0.26750701665878296,-0.1974789947271347,-0.33753502368927,-0.4600840210914612,-0.6701680421829224,-0.5651260614395142,-0.4950980246067047,-1.0903360843658447,-0.6701680421829224,-0.7051820755004883,-0.8977590799331665,-0.7401960492134094,-0.4600840210914612,-0.33753502368927,-0.25,-0.12745098769664764,0.012605042196810246,0.17016807198524475,0.13515406847000122,-0.05742296949028969,0.0476190485060215,0.0476190485060215,-0.0049019609577953815,-0.10994397848844528,0.030112044885754585,0.030112044885754585,-0.0049019609577953815,-0.3550420105457306,-0.02240896411240101,-0.02240896411240101,0.13515406847000122,-0.12745098769664764,-0.4425770342350006,-0.25,-0.3900560140609741,-0.5651260614395142,-0.17997199296951294,-0.3900560140609741,-0.28501400351524353,-0.7577030658721924,-0.4425770342350006,-0.6176470518112183,-0.25,-0.5126050710678101,-0.37254902720451355,-0.1974789947271347,-0.32002800703048706,-0.4075630307197571,-0.23249299824237823,0.08263305574655533,-0.6176470518112183,-0.4950980246067047,-0.25,-0.47759103775024414,-0.21498599648475647,0.11764705926179886,0.08263305574655533,-0.10994397848844528,-0.32002800703048706,0.030112044885754585,-0.5476190447807312,-0.37254902720451355,-0.17997199296951294,-0.26750701665878296,-0.1974789947271347,-0.3900560140609741,-0.1974789947271347,-0.10994397848844528,-0.1974789947271347,-0.5301120281219482,-0.26750701665878296,-0.3550420105457306,-0.25,-0.1974789947271347,-0.47759103775024414,-0.5126050710678101,-0.07492997497320175,-0.4600840210914612,-0.37254902720451355,-0.28501400351524353,-0.28501400351524353,-0.6176470518112183,-0.7927170991897583,-0.47759103775024414,-0.5826330780982971,-0.07492997497320175,-0.28501400351524353,-0.4075630307197571,-0.23249299824237823,-0.47759103775024414,-0.32002800703048706,-0.7226890921592712,-0.8802521228790283,-0.6001400351524353,-0.4425770342350006,-0.3550420105457306,-0.7927170991897583,-0.5476190447807312,-0.6526610851287842,-0.47759103775024414,-0.7927170991897583,-0.6876750588417053,-0.6176470518112183,-0.6001400351524353,-0.32002800703048706,-0.33753502368927,-0.32002800703048706,-0.6351540684700012,-0.5826330780982971,-0.4950980246067047,-0.21498599648475647,-0.05742296949028969,-0.6351540684700012,-0.5651260614395142,-0.6351540684700012,-0.7226890921592712,-1.1078431606292725,-0.5476190447807312,-0.7051820755004883,-0.4600840210914612,-0.6526610851287842,-0.6351540684700012,-0.32002800703048706,-0.6526610851287842,-0.5476190447807312,-0.6001400351524353,-0.4075630307197571,-0.25,-0.4950980246067047,-0.8627451062202454,-0.3025210201740265,-0.4075630307197571,-0.4075630307197571,-0.5126050710678101,-0.32002800703048706,-0.25,-0.3025210201740265,-0.4075630307197571,-0.33753502368927,-0.32002800703048706,-0.5651260614395142,-0.4425770342350006,-0.7051820755004883,-0.42507001757621765,-0.8627451062202454,-0.4425770342350006,-0.4075630307197571,-0.4950980246067047,-0.4075630307197571,-0.7927170991897583,-0.47759103775024414,-0.5301120281219482,-0.3900560140609741,-0.6176470518112183,-0.4425770342350006,-0.7927170991897583,-0.7927170991897583,-0.42507001757621765,-0.8277310729026794,-0.7051820755004883,-0.7752100825309753,-0.7051820755004883,-0.6876750588417053,-0.6876750588417053,-0.6176470518112183,-0.4425770342350006,-0.6526610851287842,-0.6526610851287842,-0.42507001757621765,-0.7752100825309753,-0.9327731132507324,-0.7401960492134094,-0.6176470518112183,-0.7927170991897583,-0.5826330780982971,-0.7226890921592712,-0.8802521228790283,-0.7927170991897583,-0.6176470518112183,-0.7401960492134094,-1.1078431606292725,-0.7401960492134094,-0.8277310729026794,-0.8277310729026794,-0.9152660965919495,-0.25,-0.8452380895614624,-0.9502801299095154,-0.7927170991897583,-0.9852941036224365,-0.9852941036224365,-0.9327731132507324,-0.8627451062202454,-1.0028011798858643,-1.545518159866333,-0.8277310729026794,-0.9502801299095154,-1.1078431606292725,-1.2654061317443848,-1.3704482316970825,-1.4054621458053589,-1.545518159866333,-1.633053183555603,-1.0903360843658447,-0.8277310729026794,-0.8452380895614624,-0.6351540684700012,-0.7051820755004883,-0.4425770342350006,-0.9152660965919495,-0.9152660965919495,-0.7051820755004883,-0.8452380895614624,-1.0378150939941406],[-0.6351540684700012,-0.5651260614395142,-0.6526610851287842,-0.7051820755004883,-0.7752100825309753,-0.5126050710678101,-0.5301120281219482,-0.6351540684700012,-0.4425770342350006,-0.3900560140609741,-0.25,-0.47759103775024414,-0.5826330780982971,-0.37254902720451355,-0.4600840210914612,-0.6526610851287842,-0.5651260614395142,-0.6526610851287842,-0.7401960492134094,-0.6001400351524353,-0.7226890921592712,-0.6526610851287842,-0.6876750588417053,-0.4950980246067047,-0.16246499121189117,-0.4075630307197571,-0.12745098769664764,-0.07492997497320175,0.08263305574655533,0.030112044885754585,0.11764705926179886,-0.1974789947271347,0.2401960790157318,-0.21498599648475647,-0.10994397848844528,-0.02240896411240101,0.08263305574655533,-0.1449579894542694,-0.1974789947271347,-0.03991596773266792,-0.37254902720451355,-0.5651260614395142,-0.21498599648475647,-0.12745098769664764,-0.32002800703048706,-0.12745098769664764,-0.7226890921592712,-0.8802521228790283,-0.3900560140609741,-0.5476190447807312,-0.7752100825309753,-0.4075630307197571,-0.25,-0.16246499121189117,-0.16246499121189117,-0.05742296949028969,-0.3025210201740265,-0.42507001757621765,-0.3900560140609741,-0.17997199296951294,-0.5826330780982971,-0.6001400351524353,-0.5476190447807312,-0.5126050710678101,-0.25,-0.03991596773266792,-0.21498599648475647,-0.28501400351524353,-0.3900560140609741,-0.5126050710678101,0.11764705926179886,-0.4950980246067047,-0.3550420105457306,-0.21498599648475647,-0.6351540684700012,-0.3550420105457306,-0.28501400351524353,-0.6176470518112183,-0.25,-0.42507001757621765,-0.32002800703048706,-0.28501400351524353,-0.47759103775024414,-0.47759103775024414,-0.21498599648475647,-0.37254902720451355,-0.3900560140609741,-0.4950980246067047,-0.21498599648475647,-0.10994397848844528,-0.5651260614395142,-0.5476190447807312,-0.6001400351524353,-0.3900560140609741,-0.3550420105457306,-0.42507001757621765,-0.23249299824237823,-0.6701680421829224,-0.47759103775024414,-0.6001400351524353,-0.7051820755004883,-0.6176470518112183,-0.5301120281219482,-0.4600840210914612,-0.32002800703048706,-0.33753502368927,-0.6001400351524353,-0.6001400351524353,-0.8627451062202454,-0.6001400351524353,-0.7927170991897583,-0.5476190447807312,-0.42507001757621765,-0.33753502368927,-0.3550420105457306,-0.42507001757621765,-0.6001400351524353,-0.6876750588417053,-1.0553221702575684,-0.6876750588417053,-0.03991596773266792,-0.1449579894542694,-0.3900560140609741,-0.5826330780982971,-0.8627451062202454,-0.7401960492134094,-0.6701680421829224,-0.6351540684700012,-0.6351540684700012,-0.3900560140609741,-0.6526610851287842,-0.4600840210914612,-0.4075630307197571,-0.7226890921592712,-0.6876750588417053,-0.5826330780982971,-0.5651260614395142,-0.37254902720451355,-0.3025210201740265,-0.6701680421829224,-0.37254902720451355,-0.6176470518112183,-0.6176470518112183,-0.6001400351524353,-0.3550420105457306,-0.32002800703048706,-0.12745098769664764,-0.3900560140609741,-0.47759103775024414,-0.4075630307197571,-0.4600840210914612,-0.47759103775024414,-0.28501400351524353,-0.7051820755004883,-0.6351540684700012,-0.32002800703048706,-0.7577030658721924,-0.6526610851287842,-0.5126050710678101,-0.5651260614395142,-1.0203081369400024,-0.6526610851287842,-0.47759103775024414,-0.7226890921592712,-0.6876750588417053,-0.6001400351524353,-0.7752100825309753,-0.7051820755004883,-0.7401960492134094,-0.6351540684700012,-0.5826330780982971,-0.7401960492134094,-0.8452380895614624,-0.5826330780982971,-0.42507001757621765,-0.6526610851287842,-0.9327731132507324,-0.6176470518112183,-0.9152660965919495,-0.47759103775024414,-0.5651260614395142,-0.5826330780982971,-0.8627451062202454,-0.8977590799331665,-0.6876750588417053,-0.8452380895614624,-0.5826330780982971,-0.6701680421829224,-0.7226890921592712,-0.8102241158485413,-0.9327731132507324,-0.5301120281219482,-0.9852941036224365,-0.4600840210914612,-0.8802521228790283,-1.2478991746902466,-0.9152660965919495,-0.7226890921592712,-0.7226890921592712,-0.7051820755004883,-1.0728291273117065,-0.7577030658721924,-0.8627451062202454,-0.7927170991897583,-0.9677870869636536,-1.0028011798858643,-0.8802521228790283,-0.9327731132507324,-1.0903360843658447,-1.0378150939941406,-1.2303920984268188,-1.4229692220687866,-1.6855741739273071,-1.1078431606292725,-0.6701680421829224,-0.6526610851287842,-0.6876750588417053,-1.0728291273117065,-0.7226890921592712,-0.9502801299095154,-1.2128851413726807,-1.3704482316970825,-1.5980392694473267,-1.9481792449951172]],[[-0.9504139423370361,-0.4449673295021057,-0.4449673295021057,-0.41010892391204834,-0.5495424866676331,-0.6715468168258667,-0.4798257052898407,-0.7238343954086304,-0.305533766746521,-0.6366884708404541,-0.4798257052898407,-0.21838779747486115,-0.5844008922576904,-0.3229629695415497,-0.5669716596603394,-0.3229629695415497,-0.3229629695415497,-0.4449673295021057,-0.305533766746521,-0.4798257052898407,-0.20095860958099365,-0.7761220335960388,-0.23581700026988983,-0.5146840810775757,-0.21838779747486115,-0.270675390958786,-0.37525054812431335,-0.4972549080848694,-0.5146840810775757,-0.20095860958099365,-0.4972549080848694,-0.5669716596603394,-0.18352940678596497,-1.0549890995025635,-0.41010892391204834,-0.16610021889209747,0.09533768892288208,-0.270675390958786,-0.1312418282032013,-0.270675390958786,-0.7412636280059814,-0.6366884708404541,-0.35782134532928467,-0.8458387851715088,-0.4798257052898407,-0.305533766746521,-0.5321133136749268,-0.04409585893154144,-0.4449673295021057,-0.9155555367469788,-0.619259238243103,-0.6018300652503967,-0.35782134532928467,-0.2881045639514923,-0.14867103099822998,-0.6715468168258667,-0.37525054812431335,-0.427538126707077,-0.4449673295021057,-0.16610021889209747,-0.4798257052898407,-0.5669716596603394,-0.23581700026988983,-0.462396502494812,-0.09638344496488571,-0.35782134532928467,-0.619259238243103,-0.2532461881637573,-0.23581700026988983,-0.270675390958786,-0.23581700026988983,-0.3229629695415497,-0.3229629695415497,-0.18352940678596497,-0.2532461881637573,-0.6018300652503967,-0.3229629695415497,-0.35782134532928467,-0.41010892391204834,-0.5669716596603394,-0.4449673295021057,-0.2881045639514923,-0.2881045639514923,-0.427538126707077,-0.6541176438331604,-0.5844008922576904,-0.37525054812431335,-0.3229629695415497,0.14762526750564575,-0.4798257052898407,-0.3229629695415497,-0.5146840810775757,-0.6366884708404541,-0.427538126707077,-0.6366884708404541,-0.2532461881637573,-0.4798257052898407,-0.23581700026988983,-0.5321133136749268,-0.39267975091934204,-0.21838779747486115,-0.41010892391204834,0.02562091499567032,-0.305533766746521,-0.6715468168258667,-0.4449673295021057,-0.5495424866676331,-0.21838779747486115,-0.5844008922576904,-1.2118518352508545,-0.4449673295021057,-0.39267975091934204,-0.4449673295021057,-0.6366884708404541,-0.2532461881637573,-0.340392142534256,-0.18352940678596497,-0.20095860958099365,-0.5146840810775757,-0.305533766746521,-0.4798257052898407,-0.4798257052898407,-0.8109803795814514,-0.270675390958786,-0.6541176438331604,-0.6541176438331604,-0.6366884708404541,-0.6889760494232178,-0.6715468168258667,-0.8806971907615662,-0.4798257052898407,-0.9852723479270935,-0.6715468168258667,-0.9155555367469788,-0.462396502494812,-0.9155555367469788,-1.0375598669052124,-1.0027015209197998,-0.9155555367469788,-1.0027015209197998,-1.0724183320999146,-0.8981263637542725,-1.0375598669052124,-1.1595642566680908,-1.1421350240707397,-1.2118518352508545,-1.0201307535171509,-1.1944226026535034,-1.2118518352508545,-1.2118518352508545,-1.1247059106826782,-1.0549890995025635,-1.0027015209197998,-1.246710181236267,-1.1595642566680908,-1.3164269924163818,-1.2292810678482056,-1.3164269924163818,-1.3687145709991455,-1.2118518352508545,-1.2118518352508545,-1.1421350240707397,-1.1247059106826782,-1.2118518352508545,-1.2292810678482056,-1.3687145709991455,-1.3861438035964966,-1.4732897281646729,-1.2815686464309692,-1.5778648853302002,-1.804444432258606,-1.7695860862731934,-1.7695860862731934,-1.7347276210784912,-1.6301524639129639,-1.490718960762024,-1.5952941179275513,-1.4384313821792603,-1.4384313821792603,-1.351285457611084,-1.333856225013733,-1.1944226026535034,-1.3164269924163818,-1.4210021495819092,-1.2118518352508545,-1.4210021495819092,-1.2118518352508545,-1.2815686464309692,-1.0724183320999146,-0.9155555367469788,-1.1944226026535034,-1.2118518352508545,-1.1072766780853271,-1.1944226026535034,-1.3861438035964966,-1.1247059106826782,-0.8632679581642151,-0.9852723479270935,-1.2641394138336182,-0.8632679581642151,-0.9852723479270935,-1.1595642566680908,-0.8806971907615662,-1.0027015209197998,-1.0201307535171509,-0.9329847693443298,-0.9329847693443298,-1.0375598669052124,-1.2118518352508545,-1.0027015209197998,-1.1072766780853271,-1.2292810678482056,-1.0027015209197998,-1.176993489265442,-1.0027015209197998,-1.1421350240707397,-1.5430065393447876,-1.1595642566680908,-1.1595642566680908,-1.1247059106826782,-1.176993489265442,-1.3164269924163818,-1.089847445487976,-1.0724183320999146],[-0.6018300652503967,-0.8806971907615662,-0.7586928009986877,-0.4798257052898407,-0.4798257052898407,-0.6366884708404541,-0.06152505427598953,-0.427538126707077,-0.09638344496488571,-0.14867103099822998,-0.5844008922576904,-0.427538126707077,-0.23581700026988983,-0.5495424866676331,-0.3229629695415497,-0.305533766746521,-0.5146840810775757,-0.305533766746521,0.008191721513867378,-0.5321133136749268,-0.4449673295021057,0.008191721513867378,-0.7412636280059814,-0.4449673295021057,0.04305011034011841,-0.5321133136749268,-0.5146840810775757,-0.2532461881637573,-0.619259238243103,-0.2532461881637573,-0.4798257052898407,-0.35782134532928467,-0.270675390958786,-0.4798257052898407,-0.3229629695415497,0.04305011034011841,-0.2532461881637573,-0.340392142534256,-0.4798257052898407,-0.462396502494812,-0.7412636280059814,-0.270675390958786,-0.305533766746521,0.0604793019592762,-0.462396502494812,-0.4449673295021057,-0.4449673295021057,-0.41010892391204834,-0.20095860958099365,-0.4972549080848694,-0.427538126707077,-0.462396502494812,-0.4798257052898407,-0.23581700026988983,-0.37525054812431335,-0.06152505427598953,-0.7935512065887451,-0.009237472899258137,0.02562091499567032,-0.20095860958099365,-0.4972549080848694,-0.04409585893154144,-0.23581700026988983,-0.1312418282032013,-0.09638344496488571,-0.39267975091934204,-0.18352940678596497,-0.2532461881637573,-0.21838779747486115,-0.1312418282032013,-0.2532461881637573,-0.06152505427598953,-0.462396502494812,-0.20095860958099365,-0.2881045639514923,0.18248365819454193,0.04305011034011841,-0.06152505427598953,-0.1138126328587532,-0.35782134532928467,-0.35782134532928467,-0.340392142534256,-0.16610021889209747,-0.20095860958099365,-0.4798257052898407,-0.3229629695415497,-0.21838779747486115,-0.21838779747486115,-0.6018300652503967,-0.2881045639514923,-0.02666666731238365,-0.305533766746521,-0.21838779747486115,0.11276688426733017,-0.39267975091934204,-0.5844008922576904,-0.02666666731238365,-0.41010892391204834,-0.14867103099822998,-0.09638344496488571,-0.270675390958786,-0.6541176438331604,-0.462396502494812,-1.0027015209197998,-0.5669716596603394,-0.462396502494812,-0.5146840810775757,-0.07895424962043762,-0.427538126707077,-0.4798257052898407,-0.7935512065887451,-0.5495424866676331,-0.6366884708404541,-0.7586928009986877,-0.9504139423370361,-0.6541176438331604,-0.340392142534256,-0.7761220335960388,-0.4798257052898407,-0.6366884708404541,-0.9329847693443298,-0.7586928009986877,-0.427538126707077,-1.1421350240707397,-0.8981263637542725,-0.4449673295021057,-0.7586928009986877,-0.7935512065887451,-0.9155555367469788,-0.6366884708404541,-0.7238343954086304,-0.7412636280059814,-0.5669716596603394,-0.7586928009986877,-0.619259238243103,-1.0549890995025635,-1.0724183320999146,-0.8806971907615662,-1.1421350240707397,-1.1247059106826782,-1.1595642566680908,-1.1421350240707397,-1.246710181236267,-1.1247059106826782,-1.2641394138336182,-1.2815686464309692,-1.333856225013733,-1.2292810678482056,-1.0549890995025635,-1.246710181236267,-1.2118518352508545,-0.8981263637542725,-1.1944226026535034,-1.176993489265442,-1.2815686464309692,-1.1595642566680908,-1.2815686464309692,-1.2641394138336182,-1.1421350240707397,-1.1421350240707397,-1.2118518352508545,-1.246710181236267,-1.176993489265442,-1.2292810678482056,-1.1247059106826782,-1.1421350240707397,-1.0027015209197998,-1.2641394138336182,-1.5778648853302002,-1.4558606147766113,-1.7347276210784912,-1.7695860862731934,-1.804444432258606,-1.6301524639129639,-1.7521568536758423,-1.647581696510315,-1.3687145709991455,-1.5430065393447876,-1.4384313821792603,-1.508148193359375,-1.333856225013733,-1.1944226026535034,-1.089847445487976,-1.2118518352508545,-1.2118518352508545,-1.3861438035964966,-1.351285457611084,-0.7238343954086304,-1.089847445487976,-0.8632679581642151,-1.089847445487976,-1.1072766780853271,-1.1247059106826782,-0.8284096121788025,-0.9678431153297424,-0.8458387851715088,-1.0201307535171509,-0.8458387851715088,-1.0201307535171509,-0.8806971907615662,-0.7935512065887451,-1.1072766780853271,-1.0724183320999146,-1.2118518352508545,-0.8806971907615662,-1.246710181236267,-1.176993489265442,-0.9852723479270935,-1.508148193359375,-1.2292810678482056,-1.176993489265442,-0.8632679581642151,-1.2815686464309692,-1.2118518352508545,-1.3687145709991455,-0.9678431153297424,-0.9504139423370361,-1.3861438035964966,-1.0027015209197998,-1.2118518352508545,-1.1072766780853271,-1.1944226026535034,-1.1072766780853271,-1.2118518352508545],[-0.8109803795814514,-0.5844008922576904,-0.6366884708404541,-0.4972549080848694,-0.5321133136749268,-0.7238343954086304,-0.305533766746521,-0.4972549080848694,-0.39267975091934204,-0.340392142534256,-0.7412636280059814,-0.6018300652503967,-0.41010892391204834,-0.462396502494812,-0.462396502494812,-0.1312418282032013,-0.18352940678596497,-0.21838779747486115,-0.04409585893154144,-0.462396502494812,-0.5321133136749268,-0.305533766746521,-0.6018300652503967,-0.20095860958099365,-0.35782134532928467,-0.4972549080848694,-0.462396502494812,-0.5146840810775757,-0.5321133136749268,-0.35782134532928467,-0.5669716596603394,-0.270675390958786,-0.427538126707077,0.28705883026123047,-0.20095860958099365,-0.270675390958786,-0.23581700026988983,-0.270675390958786,-0.462396502494812,-0.04409585893154144,-0.37525054812431335,-0.6541176438331604,-0.462396502494812,-0.5844008922576904,-0.21838779747486115,-0.20095860958099365,-0.2881045639514923,-0.5321133136749268,-0.6541176438331604,-0.270675390958786,-0.21838779747486115,-0.5146840810775757,-0.5844008922576904,-0.427538126707077,-0.8109803795814514,-0.5321133136749268,-0.305533766746521,-0.8109803795814514,-0.305533766746521,-0.20095860958099365,-0.02666666731238365,-0.23581700026988983,-0.18352940678596497,-0.23581700026988983,-0.270675390958786,-0.5495424866676331,-0.18352940678596497,-0.4449673295021057,-0.6018300652503967,-0.462396502494812,-0.305533766746521,-0.6715468168258667,-0.18352940678596497,0.04305011034011841,-0.37525054812431335,-0.18352940678596497,-0.35782134532928467,-0.340392142534256,-0.23581700026988983,-0.21838779747486115,-0.3229629695415497,-0.462396502494812,-0.35782134532928467,-0.340392142534256,-0.5146840810775757,-0.6018300652503967,-0.37525054812431335,-0.21838779747486115,-0.1138126328587532,-0.14867103099822998,-0.5844008922576904,-0.41010892391204834,-0.02666666731238365,-0.39267975091934204,-0.41010892391204834,-0.1138126328587532,-0.340392142534256,-0.5321133136749268,-0.1312418282032013,-0.340392142534256,-0.6715468168258667,-0.37525054812431335,0.008191721513867378,-0.37525054812431335,-0.6541176438331604,-0.5669716596603394,-0.462396502494812,-0.6715468168258667,-0.23581700026988983,-0.7586928009986877,-0.07895424962043762,-0.35782134532928467,-0.5669716596603394,-0.270675390958786,-0.21838779747486115,-1.0549890995025635,-0.340392142534256,-0.9329847693443298,-0.7064052224159241,-0.6018300652503967,-0.39267975091934204,-0.7586928009986877,-0.7238343954086304,-0.6715468168258667,-0.5495424866676331,-0.8284096121788025,-0.5495424866676331,-0.6889760494232178,-0.6366884708404541,-0.5146840810775757,-0.5669716596603394,-0.9155555367469788,-0.7064052224159241,-0.8632679581642151,-1.1072766780853271,-1.0724183320999146,-1.0549890995025635,-1.2292810678482056,-1.1421350240707397,-0.9852723479270935,-1.3687145709991455,-0.8458387851715088,-1.2815686464309692,-1.1595642566680908,-1.1421350240707397,-1.0724183320999146,-1.0724183320999146,-1.089847445487976,-1.1944226026535034,-1.176993489265442,-1.176993489265442,-1.4558606147766113,-1.2815686464309692,-1.0201307535171509,-1.2815686464309692,-1.3861438035964966,-1.1072766780853271,-1.0027015209197998,-1.1421350240707397,-1.2989978790283203,-1.2292810678482056,-1.333856225013733,-1.333856225013733,-1.1944226026535034,-1.2292810678482056,-1.246710181236267,-1.4558606147766113,-1.4732897281646729,-1.804444432258606,-1.333856225013733,-1.804444432258606,-1.804444432258606,-1.7870151996612549,-1.5255773067474365,-1.5952941179275513,-1.7172985076904297,-1.4732897281646729,-1.3861438035964966,-1.5604357719421387,-1.4732897281646729,-1.351285457611084,-1.246710181236267,-1.0724183320999146,-1.4035730361938477,-1.1247059106826782,-1.1595642566680908,-1.4210021495819092,-1.1944226026535034,-1.176993489265442,-1.333856225013733,-1.1247059106826782,-1.0201307535171509,-1.1247059106826782,-0.9155555367469788,-1.0375598669052124,-1.0201307535171509,-1.089847445487976,-0.8109803795814514,-1.2118518352508545,-0.8806971907615662,-0.7064052224159241,-0.8981263637542725,-1.0027015209197998,-1.0027015209197998,-0.9852723479270935,-1.1595642566680908,-1.1421350240707397,-1.176993489265442,-1.1595642566680908,-1.2292810678482056,-0.9678431153297424,-1.176993489265442,-1.089847445487976,-1.1247059106826782,-1.2292810678482056,-1.2641394138336182,-1.089847445487976,-1.1944226026535034,-1.2989978790283203,-1.089847445487976,-1.2989978790283203,-1.2641394138336182,-1.3164269924163818,-1.4035730361938477],[-0.8458387851715088,-0.6889760494232178,-0.5321133136749268,-0.4972549080848694,-0.5495424866676331,-0.5495424866676331,-0.6366884708404541,-0.6715468168258667,-0.305533766746521,-0.18352940678596497,-0.1138126328587532,-0.4449673295021057,-0.4449673295021057,-0.6366884708404541,-0.20095860958099365,-0.340392142534256,-0.41010892391204834,-0.14867103099822998,-0.3229629695415497,-0.20095860958099365,-0.41010892391204834,-0.02666666731238365,-0.4972549080848694,-0.2532461881637573,-0.2881045639514923,-0.4449673295021057,-0.427538126707077,-0.619259238243103,-0.5321133136749268,-0.462396502494812,-0.4972549080848694,-0.2881045639514923,-0.427538126707077,-0.5669716596603394,-0.8284096121788025,-0.35782134532928467,-0.37525054812431335,-0.4798257052898407,-0.41010892391204834,-0.4798257052898407,-0.5669716596603394,-0.7412636280059814,-0.02666666731238365,-0.39267975091934204,-0.427538126707077,-0.9155555367469788,-0.2881045639514923,-0.4798257052898407,-0.5495424866676331,-0.462396502494812,-0.427538126707077,-0.5844008922576904,-0.18352940678596497,0.008191721513867378,-0.16610021889209747,-0.2532461881637573,-0.02666666731238365,-0.009237472899258137,-0.7761220335960388,-0.37525054812431335,-0.20095860958099365,-0.340392142534256,-0.4798257052898407,-0.21838779747486115,-0.305533766746521,-0.619259238243103,-0.18352940678596497,-0.5495424866676331,-0.5495424866676331,-0.4798257052898407,-0.305533766746521,-0.39267975091934204,0.0604793019592762,-0.427538126707077,-0.6715468168258667,-0.23581700026988983,-0.14867103099822998,-0.427538126707077,-0.21838779747486115,-0.16610021889209747,-0.35782134532928467,-0.14867103099822998,-0.20095860958099365,-0.2881045639514923,-0.16610021889209747,-0.7064052224159241,-0.41010892391204834,-0.2881045639514923,-0.6018300652503967,-0.270675390958786,-0.5146840810775757,-0.270675390958786,-0.14867103099822998,-0.4798257052898407,-0.37525054812431335,-0.3229629695415497,-0.35782134532928467,-0.21838779747486115,-0.18352940678596497,-0.16610021889209747,-0.3229629695415497,-0.41010892391204834,-0.7238343954086304,-0.6889760494232178,-0.270675390958786,-0.4798257052898407,-0.5495424866676331,-0.5146840810775757,-0.270675390958786,-0.6018300652503967,-0.6541176438331604,-0.8981263637542725,-0.4449673295021057,-0.7064052224159241,-0.462396502494812,-0.6889760494232178,-0.270675390958786,-0.6366884708404541,-0.5495424866676331,-0.6889760494232178,-0.8284096121788025,-0.427538126707077,-0.7064052224159241,-0.9155555367469788,-0.9155555367469788,-0.9155555367469788,-0.7586928009986877,-0.7064052224159241,-0.6366884708404541,-1.0375598669052124,-0.7935512065887451,-0.619259238243103,-1.0375598669052124,-1.2118518352508545,-0.8632679581642151,-0.9329847693443298,-1.0724183320999146,-1.1072766780853271,-1.0027015209197998,-0.9329847693443298,-0.8981263637542725,-1.351285457611084,-1.1072766780853271,-1.089847445487976,-1.1944226026535034,-1.2292810678482056,-1.0027015209197998,-0.9504139423370361,-1.0549890995025635,-1.2292810678482056,-1.1595642566680908,-1.176993489265442,-1.0375598669052124,-1.089847445487976,-1.4384313821792603,-1.1421350240707397,-1.1595642566680908,-1.1944226026535034,-1.1247059106826782,-1.1595642566680908,-1.2641394138336182,-1.1247059106826782,-1.1595642566680908,-1.2118518352508545,-1.3861438035964966,-1.0375598669052124,-1.3687145709991455,-1.351285457611084,-1.7695860862731934,-1.804444432258606,-1.7695860862731934,-1.7695860862731934,-1.804444432258606,-1.5430065393447876,-1.5430065393447876,-1.5430065393447876,-1.5604357719421387,-1.333856225013733,-1.246710181236267,-1.3861438035964966,-1.2118518352508545,-1.1595642566680908,-1.0724183320999146,-1.089847445487976,-0.8284096121788025,-1.176993489265442,-1.0375598669052124,-0.9155555367469788,-1.1595642566680908,-1.0724183320999146,-1.0027015209197998,-1.0549890995025635,-1.089847445487976,-1.089847445487976,-1.1421350240707397,-1.246710181236267,-0.9678431153297424,-1.2989978790283203,-1.0201307535171509,-0.8284096121788025,-1.0027015209197998,-1.0724183320999146,-0.8806971907615662,-1.1421350240707397,-1.2989978790283203,-0.9852723479270935,-0.9852723479270935,-1.3164269924163818,-0.9155555367469788,-1.246710181236267,-1.0027015209197998,-1.0549890995025635,-0.9155555367469788,-1.333856225013733,-1.4732897281646729,-1.0549890995025635,-1.0201307535171509,-0.9329847693443298,-1.246710181236267,-1.0375598669052124,-1.2118518352508545,-1.176993489265442,-1.1595642566680908,-1.1247059106826782],[-0.8632679581642151,-0.7586928009986877,-0.9329847693443298,-0.7935512065887451,-0.6541176438331604,-0.4798257052898407,-0.21838779747486115,-0.39267975091934204,-0.4798257052898407,-0.20095860958099365,-0.6018300652503967,-0.5844008922576904,0.008191721513867378,-0.37525054812431335,-0.2532461881637573,-0.340392142534256,-0.5146840810775757,-0.305533766746521,-0.7412636280059814,-0.305533766746521,-0.23581700026988983,-0.1138126328587532,-0.9329847693443298,-0.20095860958099365,-0.18352940678596497,-0.340392142534256,-0.427538126707077,-0.5495424866676331,-0.427538126707077,-0.4972549080848694,-0.41010892391204834,-0.02666666731238365,-0.427538126707077,-0.305533766746521,0.09533768892288208,-0.23581700026988983,-0.427538126707077,-0.340392142534256,-0.305533766746521,-0.5321133136749268,-0.7238343954086304,-0.3229629695415497,-0.305533766746521,-0.6889760494232178,-0.20095860958099365,-0.270675390958786,-0.4449673295021057,-0.5495424866676331,-0.5844008922576904,-0.6715468168258667,-0.3229629695415497,-0.5321133136749268,-0.5844008922576904,-0.2532461881637573,-0.07895424962043762,-0.18352940678596497,0.02562091499567032,-0.21838779747486115,-0.37525054812431335,-0.9329847693443298,0.09533768892288208,-0.5495424866676331,-0.39267975091934204,-0.4449673295021057,-0.2881045639514923,-0.41010892391204834,-0.427538126707077,-0.02666666731238365,-0.02666666731238365,-0.35782134532928467,-0.2532461881637573,-0.305533766746521,-0.18352940678596497,-0.5146840810775757,0.0604793019592762,-0.07895424962043762,-0.619259238243103,-0.5321133136749268,-0.39267975091934204,-0.7238343954086304,-0.4972549080848694,-0.5321133136749268,-0.16610021889209747,-0.16610021889209747,-0.619259238243103,-0.37525054812431335,-0.07895424962043762,-0.2532461881637573,-0.1138126328587532,-0.37525054812431335,-0.009237472899258137,-0.6889760494232178,-0.5146840810775757,-0.427538126707077,-0.14867103099822998,-0.427538126707077,-0.270675390958786,-0.2532461881637573,-0.619259238243103,-0.21838779747486115,-0.8806971907615662,-0.4449673295021057,-0.6541176438331604,-0.5669716596603394,-0.6366884708404541,-0.427538126707077,-0.4449673295021057,-0.6889760494232178,-0.4972549080848694,-0.39267975091934204,-0.5146840810775757,-0.8109803795814514,-0.5495424866676331,-0.6366884708404541,-0.4972549080848694,-0.7935512065887451,-0.41010892391204834,-0.5669716596603394,-0.7586928009986877,-0.427538126707077,-0.5844008922576904,-0.619259238243103,-0.427538126707077,-0.1312418282032013,-0.7412636280059814,-0.7761220335960388,-0.6366884708404541,-0.6889760494232178,-0.5146840810775757,-0.2881045639514923,-0.9504139423370361,-0.8632679581642151,-0.9329847693443298,-1.0375598669052124,-0.9852723479270935,-1.176993489265442,-1.2118518352508545,-0.9155555367469788,-1.2815686464309692,-1.176993489265442,-1.1072766780853271,-0.9852723479270935,-1.1944226026535034,-1.2118518352508545,-1.1072766780853271,-1.1421350240707397,-1.0724183320999146,-1.2815686464309692,-1.0549890995025635,-1.3164269924163818,-1.246710181236267,-1.2292810678482056,-1.3164269924163818,-1.1247059106826782,-1.0549890995025635,-0.9329847693443298,-1.1595642566680908,-1.2815686464309692,-1.2815686464309692,-1.176993489265442,-1.2118518352508545,-1.1944226026535034,-1.1072766780853271,-1.246710181236267,-1.2989978790283203,-1.333856225013733,-1.333856225013733,-1.804444432258606,-1.4384313821792603,-1.7521568536758423,-1.804444432258606,-1.7870151996612549,-1.665010929107666,-1.6824400424957275,-1.5255773067474365,-1.4732897281646729,-1.5604357719421387,-1.508148193359375,-1.246710181236267,-1.2641394138336182,-1.333856225013733,-1.4035730361938477,-1.1247059106826782,-1.0201307535171509,-1.2292810678482056,-1.1944226026535034,-0.9329847693443298,-1.1595642566680908,-0.9329847693443298,-0.9852723479270935,-1.0201307535171509,-1.246710181236267,-0.8109803795814514,-1.0724183320999146,-0.9329847693443298,-0.8632679581642151,-0.9852723479270935,-1.1072766780853271,-1.1595642566680908,-0.9678431153297424,-0.9504139423370361,-1.1595642566680908,-1.1072766780853271,-1.1421350240707397,-1.0027015209197998,-1.176993489265442,-0.9678431153297424,-0.9155555367469788,-1.0724183320999146,-1.1421350240707397,-1.4732897281646729,-1.333856225013733,-1.508148193359375,-1.0201307535171509,-1.0724183320999146,-1.1595642566680908,-1.2118518352508545,-1.2641394138336182,-1.2815686464309692,-1.1944226026535034,-1.333856225013733,-1.1944226026535034,-0.9678431153297424,-1.2292810678482056],[-0.7586928009986877,-0.7064052224159241,-0.16610021889209747,-0.6541176438331604,-0.427538126707077,-0.6366884708404541,-0.8109803795814514,-0.7238343954086304,-0.5146840810775757,-0.462396502494812,-0.305533766746521,-0.23581700026988983,-0.1138126328587532,-0.4449673295021057,-0.1312418282032013,-0.3229629695415497,-0.6715468168258667,-0.270675390958786,-0.2532461881637573,-0.7935512065887451,-0.21838779747486115,0.16505447030067444,-0.2532461881637573,-0.5669716596603394,-0.7064052224159241,-0.2881045639514923,0.04305011034011841,-0.305533766746521,-0.39267975091934204,-0.39267975091934204,-0.5669716596603394,-0.8284096121788025,-0.2532461881637573,-0.3229629695415497,-0.270675390958786,-0.619259238243103,-0.2532461881637573,-0.21838779747486115,-0.4798257052898407,-0.16610021889209747,-0.21838779747486115,-0.5321133136749268,-0.462396502494812,-0.619259238243103,-0.3229629695415497,-0.5495424866676331,-0.41010892391204834,-0.39267975091934204,-0.5495424866676331,-0.5495424866676331,-0.4798257052898407,-0.5146840810775757,-0.340392142534256,-0.21838779747486115,-0.619259238243103,-0.6366884708404541,-0.305533766746521,-0.5321133136749268,-0.41010892391204834,-0.21838779747486115,-0.16610021889209747,-0.06152505427598953,-0.270675390958786,-0.4449673295021057,-0.340392142534256,-0.305533766746521,-0.07895424962043762,-0.6366884708404541,-0.1312418282032013,-0.5321133136749268,-0.4798257052898407,-0.6018300652503967,-0.2532461881637573,-0.09638344496488571,-0.427538126707077,-0.6366884708404541,-0.2532461881637573,0.02562091499567032,-0.7412636280059814,-0.4449673295021057,-0.4798257052898407,-0.4972549080848694,-0.4798257052898407,-0.18352940678596497,-0.6541176438331604,-0.35782134532928467,-0.4972549080848694,-0.6715468168258667,-0.5669716596603394,-0.37525054812431335,-0.9678431153297424,-0.270675390958786,-0.23581700026988983,0.2173420488834381,-0.06152505427598953,-0.04409585893154144,-0.340392142534256,-0.41010892391204834,-0.6018300652503967,-0.6541176438331604,-0.7586928009986877,-0.4972549080848694,-0.6018300652503967,-0.8632679581642151,-0.4972549080848694,-0.5146840810775757,-0.305533766746521,-0.6715468168258667,-0.5669716596603394,-0.9329847693443298,-0.8284096121788025,-0.7238343954086304,-0.6715468168258667,-0.270675390958786,-0.4449673295021057,-0.305533766746521,-0.8806971907615662,-0.619259238243103,-0.9504139423370361,-0.8109803795814514,-0.7064052224159241,-0.4449673295021057,-0.7586928009986877,-0.8109803795814514,-0.5669716596603394,-0.5321133136749268,-0.6715468168258667,-0.7761220335960388,-0.9852723479270935,-0.9852723479270935,-0.9678431153297424,-1.0201307535171509,-1.089847445487976,-1.2292810678482056,-1.333856225013733,-1.0201307535171509,-0.9678431153297424,-1.1072766780853271,-1.1247059106826782,-1.1944226026535034,-1.1944226026535034,-1.2815686464309692,-1.1944226026535034,-1.2292810678482056,-1.351285457611084,-1.1595642566680908,-1.1944226026535034,-1.2118518352508545,-1.2292810678482056,-1.2641394138336182,-1.1944226026535034,-1.1247059106826782,-1.176993489265442,-1.1247059106826782,-1.0027015209197998,-1.176993489265442,-1.0375598669052124,-1.1247059106826782,-1.0549890995025635,-1.0027015209197998,-1.2989978790283203,-1.2118518352508545,-1.3861438035964966,-1.351285457611084,-1.1595642566680908,-1.2641394138336182,-1.3861438035964966,-1.5952941179275513,-1.804444432258606,-1.7870151996612549,-1.804444432258606,-1.7695860862731934,-1.4384313821792603,-1.6301524639129639,-1.5604357719421387,-1.5604357719421387,-1.4035730361938477,-1.4384313821792603,-1.4732897281646729,-1.2118518352508545,-1.2292810678482056,-1.2641394138336182,-1.176993489265442,-1.2989978790283203,-1.2641394138336182,-0.8806971907615662,-1.1247059106826782,-0.9329847693443298,-0.8284096121788025,-0.9852723479270935,-1.0549890995025635,-0.8284096121788025,-1.1072766780853271,-1.1944226026535034,-0.9852723479270935,-0.8806971907615662,-0.9678431153297424,-0.7935512065887451,-0.8458387851715088,-0.8284096121788025,-1.0027015209197998,-1.2292810678482056,-0.8632679581642151,-0.9852723479270935,-1.1595642566680908,-1.0027015209197998,-0.9852723479270935,-1.089847445487976,-1.2815686464309692,-1.2641394138336182,-1.246710181236267,-1.176993489265442,-1.2292810678482056,-1.0027015209197998,-1.2815686464309692,-1.2118518352508545,-1.2641394138336182,-1.0201307535171509,-1.3164269924163818,-0.8109803795814514,-1.0027015209197998,-1.246710181236267,-1.0724183320999146,-1.1072766780853271],[-0.7064052224159241,-0.7064052224159241,-1.1247059106826782,-0.619259238243103,-0.4449673295021057,-0.462396502494812,-0.6018300652503967,-0.6889760494232178,-0.20095860958099365,-0.270675390958786,-0.41010892391204834,-0.462396502494812,-0.3229629695415497,-0.37525054812431335,-0.6018300652503967,-0.39267975091934204,-0.41010892391204834,0.008191721513867378,-0.5844008922576904,0.02562091499567032,-0.6366884708404541,-0.16610021889209747,-0.3229629695415497,-0.41010892391204834,-0.4449673295021057,-0.5495424866676331,-0.6366884708404541,-0.2532461881637573,-0.35782134532928467,-0.18352940678596497,-0.5146840810775757,-0.23581700026988983,-0.23581700026988983,-0.39267975091934204,0.13019607961177826,-0.23581700026988983,-0.5495424866676331,-0.5495424866676331,-0.16610021889209747,-0.39267975091934204,-0.37525054812431335,-0.35782134532928467,-0.619259238243103,-0.37525054812431335,-1.0549890995025635,-0.5495424866676331,-0.2881045639514923,-0.2532461881637573,-0.37525054812431335,-0.3229629695415497,-0.16610021889209747,-0.4798257052898407,-0.427538126707077,-0.5844008922576904,-0.23581700026988983,-0.4449673295021057,-0.2881045639514923,-0.14867103099822998,-0.21838779747486115,-0.2881045639514923,-0.5669716596603394,-0.2532461881637573,-0.21838779747486115,-0.270675390958786,-0.35782134532928467,-0.4972549080848694,-0.9504139423370361,0.04305011034011841,-0.1138126328587532,-0.5321133136749268,-0.41010892391204834,-0.270675390958786,-0.4972549080848694,-0.4972549080848694,-0.2881045639514923,-0.427538126707077,-0.06152505427598953,-0.5146840810775757,-0.462396502494812,-0.09638344496488571,-0.5844008922576904,-0.3229629695415497,-0.39267975091934204,-0.5669716596603394,-0.6018300652503967,-0.5321133136749268,-0.5669716596603394,-0.6541176438331604,-0.1138126328587532,-0.2532461881637573,-0.462396502494812,-0.4972549080848694,-0.14867103099822998,-0.4972549080848694,-0.2881045639514923,-0.21838779747486115,-0.6715468168258667,-0.8458387851715088,-0.5844008922576904,-0.20095860958099365,-0.340392142534256,-0.39267975091934204,-0.7238343954086304,-0.5495424866676331,-0.8981263637542725,-0.6018300652503967,-0.6541176438331604,-0.340392142534256,-0.8284096121788025,-0.8458387851715088,-0.619259238243103,-0.8109803795814514,-0.9155555367469788,-0.41010892391204834,-0.9504139423370361,-0.619259238243103,-0.5844008922576904,-0.39267975091934204,-0.5495424866676331,-0.8458387851715088,-0.9504139423370361,-0.7935512065887451,-0.8981263637542725,-0.35782134532928467,-0.21838779747486115,-1.1247059106826782,-0.8806971907615662,-0.9678431153297424,-0.9678431153297424,-1.2815686464309692,-1.2989978790283203,-1.2641394138336182,-1.1421350240707397,-1.0724183320999146,-0.6541176438331604,-1.2815686464309692,-1.1421350240707397,-1.1595642566680908,-1.1072766780853271,-0.9329847693443298,-1.246710181236267,-1.1944226026535034,-1.2292810678482056,-1.1072766780853271,-1.3164269924163818,-1.333856225013733,-1.1595642566680908,-1.333856225013733,-1.3164269924163818,-1.2292810678482056,-1.3164269924163818,-0.9504139423370361,-1.089847445487976,-1.089847445487976,-1.2641394138336182,-1.2292810678482056,-1.246710181236267,-1.2292810678482056,-1.2815686464309692,-1.4732897281646729,-1.1421350240707397,-1.2641394138336182,-1.2292810678482056,-1.351285457611084,-1.4384313821792603,-1.490718960762024,-1.804444432258606,-1.6998692750930786,-1.7870151996612549,-1.804444432258606,-1.804444432258606,-1.5255773067474365,-1.804444432258606,-1.6301524639129639,-1.6824400424957275,-1.647581696510315,-1.3861438035964966,-1.508148193359375,-1.3687145709991455,-1.1421350240707397,-1.3687145709991455,-1.246710181236267,-1.1944226026535034,-1.1072766780853271,-1.333856225013733,-1.1072766780853271,-0.8284096121788025,-1.2292810678482056,-1.0724183320999146,-1.1247059106826782,-0.9504139423370361,-1.1421350240707397,-1.1421350240707397,-0.8458387851715088,-1.0724183320999146,-1.1944226026535034,-1.2292810678482056,-1.089847445487976,-1.1072766780853271,-1.089847445487976,-1.0724183320999146,-0.6715468168258667,-0.8981263637542725,-0.8981263637542725,-0.9329847693443298,-1.1247059106826782,-1.2292810678482056,-1.0549890995025635,-1.0375598669052124,-1.0027015209197998,-1.0201307535171509,-0.7935512065887451,-1.2815686464309692,-1.2292810678482056,-1.4210021495819092,-1.0549890995025635,-1.1247059106826782,-1.176993489265442,-1.2118518352508545,-1.4732897281646729,-1.246710181236267,-1.1595642566680908,-1.1595642566680908,-1.0201307535171509],[-1.3164269924163818,-0.8632679581642151,-0.5844008922576904,-0.9678431153297424,-0.8109803795814514,-0.5844008922576904,-0.7412636280059814,-0.6018300652503967,-0.37525054812431335,-0.5321133136749268,-0.7761220335960388,-0.2532461881637573,-0.41010892391204834,-0.4449673295021057,-0.4798257052898407,-0.41010892391204834,-0.6541176438331604,-0.5495424866676331,-0.270675390958786,-0.8806971907615662,-0.5146840810775757,-0.4449673295021057,-0.35782134532928467,-0.6366884708404541,-0.16610021889209747,-0.1312418282032013,-0.462396502494812,-0.2532461881637573,-0.427538126707077,-0.5146840810775757,-0.39267975091934204,-0.5495424866676331,-0.270675390958786,-0.305533766746521,-0.305533766746521,-0.5146840810775757,-0.4449673295021057,-0.8284096121788025,-0.35782134532928467,-0.3229629695415497,-0.41010892391204834,-0.4449673295021057,-0.41010892391204834,-0.462396502494812,-0.462396502494812,-0.21838779747486115,-0.23581700026988983,-0.9852723479270935,-0.41010892391204834,-0.41010892391204834,-0.09638344496488571,-0.7761220335960388,-0.4449673295021057,-0.427538126707077,0.02562091499567032,-0.009237472899258137,-0.305533766746521,-0.06152505427598953,-0.2881045639514923,-0.35782134532928467,-0.5146840810775757,-0.20095860958099365,-0.23581700026988983,-0.7412636280059814,-0.7238343954086304,-0.14867103099822998,-0.2532461881637573,-0.4972549080848694,-0.2532461881637573,-0.14867103099822998,-0.340392142534256,-0.20095860958099365,-0.20095860958099365,-0.14867103099822998,-0.39267975091934204,-0.009237472899258137,-0.4798257052898407,-0.20095860958099365,-0.6889760494232178,-0.16610021889209747,-0.07895424962043762,-0.1138126328587532,-0.8632679581642151,-0.06152505427598953,-0.427538126707077,-0.6715468168258667,-0.4972549080848694,-0.41010892391204834,-0.2532461881637573,-0.39267975091934204,-0.5844008922576904,-0.4798257052898407,-0.3229629695415497,-0.4449673295021057,-0.9852723479270935,-0.5146840810775757,-0.7586928009986877,-0.9504139423370361,-0.619259238243103,-0.6366884708404541,-0.8632679581642151,-0.3229629695415497,-0.3229629695415497,-0.7238343954086304,-0.6541176438331604,-0.4449673295021057,-0.619259238243103,-0.7761220335960388,-0.6715468168258667,-0.37525054812431335,-0.3229629695415497,-0.9852723479270935,-0.6018300652503967,-0.8806971907615662,-0.427538126707077,-0.619259238243103,-0.8284096121788025,-0.619259238243103,-0.427538126707077,-0.4798257052898407,-0.5321133136749268,-0.6366884708404541,-0.8109803795814514,-0.6018300652503967,-1.0027015209197998,-0.9504139423370361,-1.1595642566680908,-1.2641394138336182,-1.089847445487976,-1.0549890995025635,-1.176993489265442,-1.176993489265442,-1.089847445487976,-1.1072766780853271,-0.9329847693443298,-1.1595642566680908,-1.2292810678482056,-1.176993489265442,-1.1247059106826782,-1.176993489265442,-1.1944226026535034,-1.2815686464309692,-1.1944226026535034,-1.333856225013733,-1.1944226026535034,-1.333856225013733,-1.3164269924163818,-1.2118518352508545,-1.4210021495819092,-1.2641394138336182,-1.2641394138336182,-1.4210021495819092,-1.089847445487976,-1.5255773067474365,-1.4035730361938477,-1.1247059106826782,-1.1595642566680908,-1.4210021495819092,-1.3164269924163818,-1.351285457611084,-1.2641394138336182,-1.4035730361938477,-1.351285457611084,-1.490718960762024,-1.5255773067474365,-1.6824400424957275,-1.6998692750930786,-1.804444432258606,-1.7870151996612549,-1.804444432258606,-1.7521568536758423,-1.804444432258606,-1.7347276210784912,-1.5952941179275513,-1.7347276210784912,-1.3687145709991455,-1.508148193359375,-1.4035730361938477,-1.2118518352508545,-1.0724183320999146,-1.1944226026535034,-1.1247059106826782,-1.089847445487976,-1.2118518352508545,-1.1247059106826782,-1.0724183320999146,-1.1421350240707397,-1.246710181236267,-0.9678431153297424,-1.1595642566680908,-0.9155555367469788,-1.1072766780853271,-1.176993489265442,-1.0375598669052124,-1.089847445487976,-1.1421350240707397,-1.0549890995025635,-0.9504139423370361,-1.1421350240707397,-1.0724183320999146,-1.0027015209197998,-0.9852723479270935,-1.2118518352508545,-1.2815686464309692,-0.9329847693443298,-1.2815686464309692,-1.2641394138336182,-1.4210021495819092,-1.3687145709991455,-1.1247059106826782,-1.0201307535171509,-1.1247059106826782,-1.4035730361938477,-1.4558606147766113,-1.0201307535171509,-1.2641394138336182,-1.1072766780853271,-1.0201307535171509,-1.2641394138336182,-1.2118518352508545,-1.3164269924163818,-1.2815686464309692,-1.2118518352508545,-1.4210021495819092],[-1.1247059106826782,-1.0375598669052124,-1.2641394138336182,-0.619259238243103,-0.7935512065887451,-0.5321133136749268,-0.9155555367469788,-0.427538126707077,-0.6366884708404541,-0.4449673295021057,-0.5844008922576904,-0.5669716596603394,-0.6889760494232178,-0.6889760494232178,-0.41010892391204834,-0.4798257052898407,-0.2532461881637573,-0.6366884708404541,-0.21838779747486115,-0.6541176438331604,-0.270675390958786,0.0604793019592762,-0.8632679581642151,-0.305533766746521,-0.2881045639514923,-0.4972549080848694,-0.6715468168258667,-0.462396502494812,-0.18352940678596497,-0.7586928009986877,-0.305533766746521,-0.6018300652503967,-0.5495424866676331,-0.7064052224159241,-0.2881045639514923,-0.23581700026988983,-0.009237472899258137,-0.21838779747486115,-0.5495424866676331,-0.7412636280059814,-0.6366884708404541,-1.0375598669052124,-0.270675390958786,-0.5495424866676331,-0.4798257052898407,-0.4798257052898407,-0.4972549080848694,-0.7064052224159241,-0.4449673295021057,-0.462396502494812,-0.6366884708404541,-0.6018300652503967,-0.35782134532928467,-0.4972549080848694,-0.340392142534256,-0.5321133136749268,-0.5669716596603394,0.09533768892288208,-0.5321133136749268,-0.6366884708404541,-0.14867103099822998,-0.39267975091934204,-0.37525054812431335,-0.5321133136749268,-0.305533766746521,-0.16610021889209747,-0.4798257052898407,-0.35782134532928467,-0.4449673295021057,-0.6541176438331604,-0.009237472899258137,-0.2881045639514923,-0.2881045639514923,-0.20095860958099365,-0.6018300652503967,-0.35782134532928467,-0.07895424962043762,-0.7064052224159241,-0.39267975091934204,-0.4449673295021057,-0.7412636280059814,-0.462396502494812,-0.4449673295021057,-0.4449673295021057,-0.4972549080848694,-0.2881045639514923,-0.5669716596603394,-0.5669716596603394,-0.20095860958099365,-0.4972549080848694,-0.5669716596603394,-0.3229629695415497,-0.619259238243103,-0.5495424866676331,-0.21838779747486115,-0.2881045639514923,-0.7761220335960388,-0.6715468168258667,-0.5495424866676331,-0.4972549080848694,-0.5321133136749268,-0.5321133136749268,-0.9678431153297424,-0.7935512065887451,-0.427538126707077,-0.6715468168258667,-0.6541176438331604,-1.0549890995025635,-0.4449673295021057,-0.9504139423370361,-0.6889760494232178,-0.3229629695415497,-0.7935512065887451,-0.6715468168258667,-0.39267975091934204,-0.5495424866676331,-0.427538126707077,-0.8632679581642151,-0.7064052224159241,-0.7412636280059814,-0.9852723479270935,-0.4449673295021057,-0.9504139423370361,-1.0375598669052124,-1.176993489265442,-1.0201307535171509,-1.1944226026535034,-1.0201307535171509,-0.8632679581642151,-1.1072766780853271,-1.1595642566680908,-1.1944226026535034,-1.0549890995025635,-1.2641394138336182,-1.176993489265442,-1.2815686464309692,-1.0724183320999146,-1.2641394138336182,-1.1247059106826782,-1.2815686464309692,-1.246710181236267,-1.4384313821792603,-1.2989978790283203,-1.0724183320999146,-1.2118518352508545,-1.2641394138336182,-1.2641394138336182,-1.2641394138336182,-1.2641394138336182,-1.1944226026535034,-1.176993489265442,-1.2118518352508545,-1.1595642566680908,-1.351285457611084,-1.176993489265442,-1.2815686464309692,-1.4732897281646729,-1.3861438035964966,-1.2641394138336182,-1.3687145709991455,-1.4384313821792603,-1.3861438035964966,-1.508148193359375,-1.490718960762024,-1.5255773067474365,-1.7347276210784912,-1.6127233505249023,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.647581696510315,-1.804444432258606,-1.6301524639129639,-1.665010929107666,-1.6127233505249023,-1.5604357719421387,-1.4210021495819092,-1.351285457611084,-1.1944226026535034,-1.0549890995025635,-1.176993489265442,-1.2815686464309692,-1.1944226026535034,-1.0724183320999146,-1.0201307535171509,-1.0549890995025635,-1.0549890995025635,-1.1072766780853271,-0.8981263637542725,-1.1247059106826782,-1.089847445487976,-0.9329847693443298,-0.8806971907615662,-1.1595642566680908,-1.0201307535171509,-0.9504139423370361,-0.9504139423370361,-1.0549890995025635,-1.089847445487976,-1.176993489265442,-1.0549890995025635,-1.2641394138336182,-0.619259238243103,-0.6541176438331604,-1.246710181236267,-0.8981263637542725,-0.8458387851715088,-0.9329847693443298,-1.351285457611084,-1.176993489265442,-1.1247059106826782,-1.1072766780853271,-1.0027015209197998,-1.2641394138336182,-1.0027015209197998,-1.4210021495819092,-1.246710181236267,-1.1247059106826782,-1.1595642566680908,-1.333856225013733,-1.2815686464309692,-1.351285457611084,-1.351285457611084,-1.1595642566680908],[-1.3164269924163818,-1.0201307535171509,-0.8806971907615662,-0.8981263637542725,-0.6889760494232178,-0.7761220335960388,-0.6018300652503967,-0.5495424866676331,-0.6715468168258667,-0.7238343954086304,-0.7761220335960388,-0.37525054812431335,-0.6366884708404541,-0.5495424866676331,-0.6541176438331604,-0.4972549080848694,-0.8109803795814514,-0.305533766746521,-0.6889760494232178,-0.4449673295021057,-0.35782134532928467,-0.6018300652503967,-0.16610021889209747,-0.270675390958786,-0.18352940678596497,-0.14867103099822998,-0.23581700026988983,-0.20095860958099365,-0.5146840810775757,-0.37525054812431335,-0.2881045639514923,-0.41010892391204834,-0.2881045639514923,-0.23581700026988983,-0.427538126707077,-0.39267975091934204,-0.7064052224159241,-0.6541176438331604,-0.18352940678596497,-0.6018300652503967,-0.427538126707077,-0.5495424866676331,-0.6018300652503967,-0.6715468168258667,-0.5495424866676331,-0.619259238243103,-0.305533766746521,-0.09638344496488571,-0.4449673295021057,-0.5495424866676331,-0.5495424866676331,-0.07895424962043762,-0.8632679581642151,-0.5146840810775757,-0.41010892391204834,-0.2881045639514923,-0.9852723479270935,-0.6366884708404541,-0.1312418282032013,-0.340392142534256,-0.3229629695415497,-0.06152505427598953,-0.3229629695415497,-0.37525054812431335,-0.7935512065887451,-0.6366884708404541,-0.37525054812431335,-0.3229629695415497,-0.39267975091934204,-0.6541176438331604,-0.6715468168258667,-0.8284096121788025,-0.5844008922576904,-0.6018300652503967,-0.14867103099822998,-0.18352940678596497,-0.8458387851715088,-0.23581700026988983,-0.270675390958786,-0.4798257052898407,-0.39267975091934204,-0.462396502494812,-0.35782134532928467,-0.7586928009986877,-0.8458387851715088,-0.6366884708404541,-0.21838779747486115,-0.7586928009986877,-0.6366884708404541,-0.4972549080848694,-0.7586928009986877,-0.35782134532928467,-0.5844008922576904,-0.5669716596603394,-0.340392142534256,-0.427538126707077,-0.23581700026988983,-0.6541176438331604,-0.7761220335960388,-0.305533766746521,-0.462396502494812,-0.7238343954086304,-0.6541176438331604,-0.5844008922576904,-0.6889760494232178,-0.7064052224159241,-0.9155555367469788,-0.5669716596603394,-0.462396502494812,-0.619259238243103,-0.7586928009986877,-0.5495424866676331,-0.9329847693443298,-0.7412636280059814,-0.8806971907615662,-0.6889760494232178,-0.6366884708404541,-0.4798257052898407,-0.7761220335960388,-0.6018300652503967,-1.0027015209197998,-1.0724183320999146,-1.1595642566680908,-1.1944226026535034,-1.089847445487976,-1.0375598669052124,-0.9852723479270935,-1.246710181236267,-1.2292810678482056,-1.2292810678482056,-1.0724183320999146,-1.1072766780853271,-1.1421350240707397,-1.2641394138336182,-1.2118518352508545,-1.2118518352508545,-1.246710181236267,-1.2989978790283203,-1.1944226026535034,-1.351285457611084,-1.2989978790283203,-1.2989978790283203,-1.1944226026535034,-1.351285457611084,-1.246710181236267,-1.2989978790283203,-1.0724183320999146,-1.1072766780853271,-1.1421350240707397,-1.2292810678482056,-1.176993489265442,-1.2815686464309692,-1.2815686464309692,-1.2292810678482056,-1.2641394138336182,-1.4210021495819092,-1.2989978790283203,-1.2989978790283203,-1.3861438035964966,-1.3687145709991455,-1.3687145709991455,-1.351285457611084,-1.351285457611084,-1.5778648853302002,-1.5430065393447876,-1.7870151996612549,-1.5604357719421387,-1.7870151996612549,-1.7695860862731934,-1.804444432258606,-1.6998692750930786,-1.647581696510315,-1.7521568536758423,-1.7695860862731934,-1.647581696510315,-1.5604357719421387,-1.4035730361938477,-1.4210021495819092,-1.3687145709991455,-1.2118518352508545,-1.2641394138336182,-1.1595642566680908,-1.1421350240707397,-1.1595642566680908,-1.2292810678482056,-1.2118518352508545,-1.3164269924163818,-0.9504139423370361,-0.9678431153297424,-1.0549890995025635,-1.0375598669052124,-1.1944226026535034,-1.1072766780853271,-1.089847445487976,-1.0201307535171509,-1.0724183320999146,-0.8458387851715088,-1.1595642566680908,-0.8632679581642151,-1.1072766780853271,-0.9678431153297424,-0.9852723479270935,-1.0027015209197998,-1.2815686464309692,-1.0201307535171509,-1.1944226026535034,-1.176993489265442,-1.1072766780853271,-0.8806971907615662,-0.9852723479270935,-1.0027015209197998,-1.2292810678482056,-1.2989978790283203,-1.1595642566680908,-1.0549890995025635,-1.351285457611084,-1.2989978790283203,-1.2641394138336182,-1.2989978790283203,-1.2989978790283203,-1.2815686464309692,-1.4210021495819092,-1.2118518352508545,-1.1595642566680908],[-1.333856225013733,-1.0027015209197998,-0.8458387851715088,-1.089847445487976,-1.1247059106826782,-0.6018300652503967,-0.6889760494232178,-0.9504139423370361,-0.8284096121788025,-0.8284096121788025,-0.18352940678596497,-0.7412636280059814,-0.23581700026988983,-0.7586928009986877,-0.427538126707077,-0.5844008922576904,-0.462396502494812,-0.8284096121788025,-0.8284096121788025,-0.23581700026988983,-0.8806971907615662,-0.5844008922576904,-0.1312418282032013,-0.23581700026988983,-0.39267975091934204,-0.1138126328587532,-0.427538126707077,-0.41010892391204834,-0.3229629695415497,-0.41010892391204834,-0.4798257052898407,-0.5321133136749268,-0.305533766746521,-0.1312418282032013,-0.5321133136749268,-0.009237472899258137,0.11276688426733017,-0.270675390958786,-0.6541176438331604,-0.7238343954086304,-0.5146840810775757,-0.39267975091934204,-0.4972549080848694,-0.305533766746521,-0.5146840810775757,-0.5495424866676331,-0.8981263637542725,-0.5321133136749268,-0.7412636280059814,-0.5321133136749268,-0.427538126707077,-0.5669716596603394,-0.7586928009986877,-0.5146840810775757,-0.5495424866676331,-0.2881045639514923,-0.3229629695415497,-0.2881045639514923,-0.7064052224159241,-0.4449673295021057,-0.427538126707077,-0.1138126328587532,-0.16610021889209747,-0.6715468168258667,-0.5321133136749268,-0.462396502494812,-0.4798257052898407,-0.21838779747486115,-0.5321133136749268,-0.340392142534256,-0.5669716596603394,-0.6018300652503967,-0.7935512065887451,-0.4972549080848694,-0.9155555367469788,-0.270675390958786,-0.305533766746521,-0.5146840810775757,-0.37525054812431335,-0.2881045639514923,-0.23581700026988983,-0.1138126328587532,-0.8458387851715088,-0.340392142534256,-0.9329847693443298,-0.39267975091934204,-0.427538126707077,-0.6366884708404541,-0.7586928009986877,-0.5844008922576904,-0.8632679581642151,-0.41010892391204834,-0.6018300652503967,-0.7238343954086304,-0.270675390958786,-0.4449673295021057,-0.427538126707077,-0.41010892391204834,-0.5844008922576904,-0.8109803795814514,-0.5321133136749268,-0.427538126707077,-0.6715468168258667,-0.7238343954086304,-0.9155555367469788,-0.7761220335960388,-0.8806971907615662,-0.6541176438331604,-0.7586928009986877,-0.8632679581642151,-0.4449673295021057,-0.7761220335960388,-0.37525054812431335,-0.8806971907615662,-0.6366884708404541,-0.8284096121788025,-0.9329847693443298,-0.8109803795814514,-1.0549890995025635,-0.9329847693443298,-0.7238343954086304,-1.4035730361938477,-1.0201307535171509,-0.9155555367469788,-1.333856225013733,-0.9852723479270935,-1.2118518352508545,-0.9329847693443298,-0.9852723479270935,-1.0375598669052124,-1.0724183320999146,-1.0549890995025635,-1.0375598669052124,-1.3164269924163818,-1.0375598669052124,-1.176993489265442,-1.3687145709991455,-1.176993489265442,-1.333856225013733,-1.3164269924163818,-1.4384313821792603,-1.2118518352508545,-1.1595642566680908,-1.1595642566680908,-1.176993489265442,-1.2989978790283203,-1.2118518352508545,-1.1595642566680908,-1.0549890995025635,-1.2989978790283203,-1.2989978790283203,-1.4558606147766113,-1.2292810678482056,-1.3861438035964966,-1.246710181236267,-1.2815686464309692,-1.2815686464309692,-1.176993489265442,-1.2641394138336182,-1.4035730361938477,-1.490718960762024,-1.490718960762024,-1.6127233505249023,-1.5255773067474365,-1.804444432258606,-1.7521568536758423,-1.804444432258606,-1.7870151996612549,-1.804444432258606,-1.7172985076904297,-1.7870151996612549,-1.804444432258606,-1.804444432258606,-1.6998692750930786,-1.6301524639129639,-1.5430065393447876,-1.4558606147766113,-1.333856225013733,-1.351285457611084,-1.2292810678482056,-1.2989978790283203,-1.1247059106826782,-1.176993489265442,-1.2989978790283203,-1.1072766780853271,-0.9155555367469788,-0.8981263637542725,-1.176993489265442,-1.0724183320999146,-1.1595642566680908,-0.7761220335960388,-0.9678431153297424,-0.8981263637542725,-1.0375598669052124,-0.8806971907615662,-1.1944226026535034,-1.0724183320999146,-0.9678431153297424,-1.0201307535171509,-1.1944226026535034,-1.246710181236267,-1.3164269924163818,-0.7064052224159241,-0.7064052224159241,-1.2292810678482056,-1.1247059106826782,-0.9852723479270935,-1.0027015209197998,-0.8806971907615662,-1.2815686464309692,-1.0027015209197998,-1.246710181236267,-1.2118518352508545,-1.1072766780853271,-1.246710181236267,-1.1595642566680908,-1.333856225013733,-0.9504139423370361,-1.2641394138336182,-1.3164269924163818,-1.2292810678482056,-1.351285457611084,-1.2292810678482056,-1.2292810678482056],[-1.4210021495819092,-1.490718960762024,-1.1595642566680908,-0.9678431153297424,-0.7412636280059814,-0.8109803795814514,-1.0549890995025635,-0.8458387851715088,-0.6541176438331604,-0.7586928009986877,-0.6541176438331604,-0.7935512065887451,-0.9678431153297424,-0.427538126707077,-0.8284096121788025,-0.462396502494812,-0.7935512065887451,-0.6715468168258667,-0.462396502494812,-0.7064052224159241,-0.462396502494812,-0.6018300652503967,-0.8109803795814514,-0.4972549080848694,-0.305533766746521,-0.9329847693443298,-0.619259238243103,-0.4449673295021057,-0.39267975091934204,-0.3229629695415497,-0.6366884708404541,-0.5844008922576904,-0.462396502494812,-0.270675390958786,-0.5669716596603394,-0.6715468168258667,-0.427538126707077,-0.619259238243103,-0.619259238243103,-0.8806971907615662,-0.4798257052898407,-0.270675390958786,-0.462396502494812,-0.7064052224159241,-0.7935512065887451,-0.5146840810775757,-0.07895424962043762,-0.270675390958786,-0.5146840810775757,-0.5495424866676331,-0.427538126707077,-0.7586928009986877,-0.009237472899258137,-0.5146840810775757,-0.427538126707077,-0.5495424866676331,-0.6715468168258667,-0.5321133136749268,-0.2881045639514923,-0.2881045639514923,-0.41010892391204834,-1.1421350240707397,-0.5669716596603394,-0.6018300652503967,-0.619259238243103,-0.9329847693443298,-0.2881045639514923,-0.8632679581642151,-0.4449673295021057,-0.7238343954086304,-0.23581700026988983,-0.8981263637542725,-0.8284096121788025,-0.9155555367469788,-0.2881045639514923,-1.0549890995025635,-0.340392142534256,-0.5146840810775757,-0.3229629695415497,-0.16610021889209747,-0.4798257052898407,-0.8284096121788025,-0.37525054812431335,-0.5146840810775757,-0.427538126707077,-0.7586928009986877,-0.37525054812431335,-0.5669716596603394,-0.427538126707077,-0.8284096121788025,-0.5669716596603394,-0.6018300652503967,-0.462396502494812,-0.305533766746521,-0.619259238243103,-0.340392142534256,-0.5495424866676331,-0.8284096121788025,-0.4972549080848694,-0.462396502494812,-0.7238343954086304,-0.4449673295021057,-0.6366884708404541,-0.5146840810775757,-0.6018300652503967,-0.8806971907615662,-0.7412636280059814,-0.8632679581642151,-0.5495424866676331,-0.7761220335960388,-0.8458387851715088,-0.619259238243103,-0.8981263637542725,-0.39267975091934204,-1.1421350240707397,-0.9329847693443298,-1.0375598669052124,-1.2815686464309692,-1.1944226026535034,-1.1072766780853271,-0.9678431153297424,-0.9678431153297424,-0.9852723479270935,-0.8981263637542725,-1.089847445487976,-1.0375598669052124,-1.1595642566680908,-0.8109803795814514,-1.3164269924163818,-1.4384313821792603,-1.3861438035964966,-1.1944226026535034,-1.3687145709991455,-1.333856225013733,-1.3164269924163818,-1.2989978790283203,-1.0549890995025635,-1.490718960762024,-1.2118518352508545,-1.176993489265442,-1.246710181236267,-1.2989978790283203,-1.1072766780853271,-1.2292810678482056,-1.2815686464309692,-1.0027015209197998,-1.2292810678482056,-1.1595642566680908,-1.333856225013733,-1.2641394138336182,-1.0375598669052124,-1.2815686464309692,-1.176993489265442,-1.2815686464309692,-1.2815686464309692,-1.2292810678482056,-1.490718960762024,-1.351285457611084,-1.3861438035964966,-1.5430065393447876,-1.3687145709991455,-1.4210021495819092,-1.665010929107666,-1.7347276210784912,-1.7521568536758423,-1.7172985076904297,-1.804444432258606,-1.7172985076904297,-1.6998692750930786,-1.7172985076904297,-1.6998692750930786,-1.7521568536758423,-1.804444432258606,-1.7172985076904297,-1.6301524639129639,-1.4384313821792603,-1.5255773067474365,-1.4035730361938477,-1.1595642566680908,-1.089847445487976,-1.0375598669052124,-1.1421350240707397,-1.1595642566680908,-1.1247059106826782,-1.351285457611084,-1.2815686464309692,-1.1247059106826782,-1.2292810678482056,-1.1421350240707397,-0.7935512065887451,-1.1421350240707397,-1.0724183320999146,-1.0201307535171509,-0.8981263637542725,-1.0201307535171509,-1.0027015209197998,-1.1421350240707397,-1.0027015209197998,-1.2118518352508545,-1.0724183320999146,-1.0375598669052124,-1.4384313821792603,-1.351285457611084,-1.2118518352508545,-1.0375598669052124,-1.246710181236267,-1.0549890995025635,-1.3164269924163818,-1.1421350240707397,-1.2641394138336182,-1.2815686464309692,-1.246710181236267,-1.3687145709991455,-1.2989978790283203,-1.246710181236267,-1.2292810678482056,-1.176993489265442,-1.1595642566680908,-1.4384313821792603,-1.2815686464309692,-1.089847445487976,-1.0375598669052124,-1.2641394138336182,-1.2989978790283203],[-1.5255773067474365,-1.4732897281646729,-1.2641394138336182,-1.1072766780853271,-0.7761220335960388,-0.9329847693443298,-0.5669716596603394,-0.7761220335960388,-0.5669716596603394,-0.6715468168258667,-0.7064052224159241,-0.6018300652503967,-0.7935512065887451,-0.7586928009986877,-0.7064052224159241,-0.37525054812431335,-0.8632679581642151,-0.6366884708404541,-0.427538126707077,-0.8284096121788025,-0.5321133136749268,-0.4798257052898407,-0.1138126328587532,-0.427538126707077,-0.3229629695415497,-0.6541176438331604,-0.39267975091934204,-0.37525054812431335,-0.8806971907615662,-0.1138126328587532,-0.02666666731238365,-0.7412636280059814,-0.6366884708404541,-0.37525054812431335,-0.7761220335960388,-1.089847445487976,-0.8806971907615662,-0.7761220335960388,-0.427538126707077,-0.4972549080848694,-0.8981263637542725,-0.39267975091934204,-0.270675390958786,-0.16610021889209747,-0.427538126707077,-0.5669716596603394,-0.3229629695415497,-0.6018300652503967,-0.5669716596603394,-0.8981263637542725,-0.9329847693443298,-0.6018300652503967,-0.305533766746521,-0.4798257052898407,-0.4449673295021057,-0.6889760494232178,-0.6889760494232178,-0.6018300652503967,-0.35782134532928467,-0.8806971907615662,-0.7064052224159241,-0.7935512065887451,-0.9852723479270935,-0.427538126707077,-0.6018300652503967,-0.5495424866676331,-0.8458387851715088,-0.5146840810775757,-0.8458387851715088,-0.4449673295021057,-0.7238343954086304,-0.3229629695415497,-0.619259238243103,-0.4972549080848694,-0.6541176438331604,-0.5669716596603394,-0.6366884708404541,-0.5495424866676331,-0.7761220335960388,-0.6018300652503967,-0.4449673295021057,-0.4972549080848694,-0.4972549080848694,-0.3229629695415497,-0.37525054812431335,-0.427538126707077,-0.6366884708404541,-0.5844008922576904,-0.619259238243103,-0.8981263637542725,-0.619259238243103,-0.5321133136749268,-0.6018300652503967,-0.6715468168258667,-0.4449673295021057,-0.6889760494232178,-0.2881045639514923,-0.7238343954086304,-0.619259238243103,-0.7238343954086304,-0.37525054812431335,-0.7064052224159241,-0.7412636280059814,-0.7064052224159241,-0.7761220335960388,-0.5669716596603394,-0.6715468168258667,-0.6366884708404541,-0.9852723479270935,-0.7238343954086304,-0.462396502494812,-0.9329847693443298,-0.7935512065887451,-0.9678431153297424,-0.8981263637542725,-1.0549890995025635,-1.0027015209197998,-0.9504139423370361,-1.1072766780853271,-1.0724183320999146,-1.246710181236267,-1.0549890995025635,-1.1421350240707397,-1.0549890995025635,-1.176993489265442,-1.1421350240707397,-1.1072766780853271,-1.246710181236267,-1.1072766780853271,-0.9504139423370361,-1.0375598669052124,-1.2292810678482056,-1.176993489265442,-1.1072766780853271,-1.2815686464309692,-1.1247059106826782,-1.089847445487976,-1.0549890995025635,-1.1595642566680908,-1.2292810678482056,-1.333856225013733,-1.2118518352508545,-1.2292810678482056,-1.2815686464309692,-1.2292810678482056,-1.089847445487976,-1.2815686464309692,-1.1595642566680908,-1.1944226026535034,-1.2989978790283203,-1.3861438035964966,-1.2815686464309692,-1.333856225013733,-1.351285457611084,-1.4035730361938477,-1.351285457611084,-1.5255773067474365,-1.4210021495819092,-1.490718960762024,-1.5255773067474365,-1.6998692750930786,-1.804444432258606,-1.6824400424957275,-1.647581696510315,-1.3861438035964966,-1.2815686464309692,-1.0549890995025635,-1.089847445487976,-0.7586928009986877,-1.6127233505249023,-1.7347276210784912,-1.647581696510315,-1.7870151996612549,-1.804444432258606,-1.804444432258606,-1.5604357719421387,-1.4558606147766113,-1.5778648853302002,-1.3164269924163818,-1.246710181236267,-1.2292810678482056,-1.1595642566680908,-1.2292810678482056,-1.1247059106826782,-1.351285457611084,-1.5255773067474365,-1.0375598669052124,-1.351285457611084,-1.1595642566680908,-1.2118518352508545,-1.2292810678482056,-1.1421350240707397,-1.1595642566680908,-0.7935512065887451,-1.176993489265442,-1.1595642566680908,-1.2118518352508545,-1.0375598669052124,-1.0375598669052124,-0.8284096121788025,-0.7064052224159241,-0.9155555367469788,-1.2118518352508545,-0.9852723479270935,-1.351285457611084,-0.8632679581642151,-1.0375598669052124,-1.1421350240707397,-1.1421350240707397,-1.2641394138336182,-1.0201307535171509,-1.1595642566680908,-1.089847445487976,-1.351285457611084,-1.1247059106826782,-1.4384313821792603,-1.2641394138336182,-1.246710181236267,-1.176993489265442,-1.3164269924163818,-1.2989978790283203,-1.3164269924163818,-1.2641394138336182,-1.3687145709991455],[-1.5778648853302002,-1.490718960762024,-1.3164269924163818,-1.0201307535171509,-0.9329847693443298,-1.0201307535171509,-1.2815686464309692,-1.0027015209197998,-0.7935512065887451,-0.7935512065887451,-0.8109803795814514,-1.1944226026535034,-0.6715468168258667,-0.6366884708404541,-0.4972549080848694,-0.6541176438331604,-0.7064052224159241,-0.5669716596603394,-0.4449673295021057,-0.6889760494232178,-0.5321133136749268,-0.5844008922576904,-0.5844008922576904,-0.427538126707077,-0.6715468168258667,-0.7412636280059814,-0.6018300652503967,-0.3229629695415497,-0.8284096121788025,-0.9329847693443298,-0.7761220335960388,-0.41010892391204834,-0.619259238243103,-0.4972549080848694,-0.340392142534256,-0.41010892391204834,-0.6889760494232178,-0.427538126707077,-0.6541176438331604,-0.6018300652503967,-0.20095860958099365,-0.21838779747486115,-0.37525054812431335,-0.5844008922576904,-0.39267975091934204,-0.41010892391204834,-0.9852723479270935,-0.619259238243103,-0.462396502494812,-0.7412636280059814,-0.7412636280059814,-0.7412636280059814,-0.8806971907615662,-0.6889760494232178,-0.7412636280059814,-0.6541176438331604,-0.6018300652503967,-0.5321133136749268,-0.6018300652503967,-0.5669716596603394,-0.9155555367469788,-0.5146840810775757,-0.7935512065887451,-0.6366884708404541,-0.7935512065887451,-0.7412636280059814,-0.8284096121788025,-0.6018300652503967,-0.4449673295021057,-0.7761220335960388,-0.8109803795814514,-0.41010892391204834,-0.6018300652503967,-0.6889760494232178,-0.5321133136749268,-0.7586928009986877,-0.8284096121788025,-0.6541176438331604,-0.7064052224159241,-0.5669716596603394,-0.6018300652503967,-0.7064052224159241,-0.7586928009986877,-0.5669716596603394,-0.6366884708404541,-0.270675390958786,-1.0027015209197998,-0.270675390958786,-0.7238343954086304,-0.8981263637542725,-0.7064052224159241,-1.089847445487976,-0.4972549080848694,-0.7935512065887451,-0.8458387851715088,-1.2815686464309692,-0.5321133136749268,-0.7935512065887451,-0.427538126707077,-0.2881045639514923,-0.5844008922576904,-0.427538126707077,-0.6715468168258667,-0.5844008922576904,-0.8284096121788025,-0.4972549080848694,-0.7238343954086304,-0.4449673295021057,-1.0201307535171509,-0.6541176438331604,-0.8458387851715088,-0.7586928009986877,-1.0201307535171509,-1.176993489265442,-0.8458387851715088,-1.1944226026535034,-1.089847445487976,-1.089847445487976,-1.0549890995025635,-1.1944226026535034,-0.8981263637542725,-1.2118518352508545,-1.0201307535171509,-1.2292810678482056,-1.0724183320999146,-1.2815686464309692,-1.1247059106826782,-1.089847445487976,-1.2292810678482056,-1.1247059106826782,-1.2815686464309692,-1.176993489265442,-1.1595642566680908,-1.0549890995025635,-1.2118518352508545,-1.176993489265442,-1.2292810678482056,-1.089847445487976,-1.2641394138336182,-1.1421350240707397,-1.1247059106826782,-1.1595642566680908,-1.2815686464309692,-1.333856225013733,-1.2118518352508545,-0.9678431153297424,-1.2815686464309692,-1.2989978790283203,-1.2292810678482056,-1.1595642566680908,-1.176993489265442,-1.2989978790283203,-1.4384313821792603,-1.3687145709991455,-1.4210021495819092,-1.4558606147766113,-1.508148193359375,-1.5604357719421387,-1.5778648853302002,-1.7347276210784912,-1.804444432258606,-1.7695860862731934,-1.804444432258606,-0.9678431153297424,-1.3687145709991455,-1.2815686464309692,-0.7412636280059814,-0.7412636280059814,-0.340392142534256,-1.5604357719421387,-1.647581696510315,-1.7347276210784912,-1.7521568536758423,-1.6301524639129639,-1.7347276210784912,-1.804444432258606,-1.6824400424957275,-1.5255773067474365,-1.490718960762024,-1.6127233505249023,-1.3687145709991455,-1.2292810678482056,-1.1944226026535034,-0.9678431153297424,-1.2118518352508545,-1.2292810678482056,-1.2989978790283203,-1.1944226026535034,-1.2292810678482056,-1.0724183320999146,-1.2292810678482056,-1.1072766780853271,-1.1072766780853271,-1.0724183320999146,-1.2641394138336182,-1.0549890995025635,-1.089847445487976,-0.6366884708404541,-0.619259238243103,-0.7761220335960388,-0.8806971907615662,-0.5495424866676331,-1.2118518352508545,-1.176993489265442,-0.8806971907615662,-0.9678431153297424,-1.246710181236267,-1.1421350240707397,-1.1247059106826782,-1.2641394138336182,-1.1247059106826782,-1.2989978790283203,-1.0201307535171509,-1.2292810678482056,-1.4035730361938477,-1.333856225013733,-1.176993489265442,-1.3687145709991455,-1.351285457611084,-1.0375598669052124,-1.4035730361938477,-1.2815686464309692,-1.3164269924163818,-1.2989978790283203],[-1.5952941179275513,-1.5778648853302002,-1.4384313821792603,-1.333856225013733,-1.4035730361938477,-1.089847445487976,-0.8632679581642151,-0.7935512065887451,-0.9504139423370361,-0.5669716596603394,-0.9678431153297424,-0.7238343954086304,-0.8632679581642151,-0.9504139423370361,-0.8458387851715088,-0.619259238243103,-0.8109803795814514,-0.7586928009986877,-0.8109803795814514,-0.619259238243103,-0.5669716596603394,-0.462396502494812,-0.5146840810775757,-0.5321133136749268,-0.20095860958099365,-0.5146840810775757,-0.7412636280059814,-0.462396502494812,-0.8109803795814514,-1.0027015209197998,-0.6366884708404541,-0.07895424962043762,-0.4798257052898407,-0.6889760494232178,-1.2641394138336182,-0.41010892391204834,-0.7412636280059814,-0.7238343954086304,-0.8109803795814514,-0.6018300652503967,-0.6541176438331604,-0.3229629695415497,-0.41010892391204834,-0.9329847693443298,-0.8284096121788025,-0.35782134532928467,-1.0027015209197998,-1.0201307535171509,-0.5321133136749268,-0.5844008922576904,-0.9504139423370361,-0.8981263637542725,-0.9329847693443298,-0.7064052224159241,-0.7412636280059814,-0.9852723479270935,-0.7238343954086304,-0.6889760494232178,-0.6715468168258667,-0.4972549080848694,-0.8458387851715088,-0.8806971907615662,-0.6541176438331604,-0.9852723479270935,-0.8806971907615662,-0.9852723479270935,-0.340392142534256,-0.5669716596603394,-0.7412636280059814,-0.6018300652503967,-0.8284096121788025,-1.0027015209197998,-0.6366884708404541,-0.4449673295021057,-0.7586928009986877,-0.5844008922576904,-0.462396502494812,-0.4798257052898407,-0.8109803795814514,-0.8458387851715088,-0.5844008922576904,-0.7761220335960388,-0.6541176438331604,-0.39267975091934204,-1.0201307535171509,-0.8806971907615662,-0.8109803795814514,-0.7238343954086304,-0.7238343954086304,-0.619259238243103,-0.4972549080848694,-0.9504139423370361,-0.5844008922576904,-0.9852723479270935,-0.6366884708404541,-0.7064052224159241,-0.6541176438331604,-0.427538126707077,-0.6541176438331604,-0.8109803795814514,-0.8632679581642151,-1.0201307535171509,-0.7761220335960388,-0.7761220335960388,-0.8806971907615662,-0.6541176438331604,-0.4972549080848694,-0.8632679581642151,-1.0375598669052124,-1.089847445487976,-0.9155555367469788,-1.0201307535171509,-1.0724183320999146,-1.1247059106826782,-1.1247059106826782,-1.0724183320999146,-1.1072766780853271,-1.1247059106826782,-1.089847445487976,-1.1072766780853271,-1.1944226026535034,-1.0549890995025635,-1.1595642566680908,-1.0549890995025635,-1.176993489265442,-1.089847445487976,-1.0027015209197998,-1.1072766780853271,-1.176993489265442,-1.2118518352508545,-1.4384313821792603,-0.9329847693443298,-1.1247059106826782,-1.1072766780853271,-1.1247059106826782,-1.1247059106826782,-1.3164269924163818,-0.8806971907615662,-1.2292810678482056,-1.1595642566680908,-1.089847445487976,-1.2815686464309692,-1.0027015209197998,-1.2118518352508545,-1.176993489265442,-1.0549890995025635,-1.3164269924163818,-1.1944226026535034,-1.2118518352508545,-1.4035730361938477,-1.2815686464309692,-1.4384313821792603,-1.3687145709991455,-1.5255773067474365,-1.5430065393447876,-1.804444432258606,-1.6301524639129639,-1.804444432258606,-1.6998692750930786,-1.7347276210784912,-1.7347276210784912,-1.7521568536758423,-1.2641394138336182,-1.1247059106826782,-1.5952941179275513,-0.09638344496488571,-0.37525054812431335,-1.0549890995025635,-0.8284096121788025,-0.9678431153297424,-0.9852723479270935,-0.5844008922576904,-0.5146840810775757,-1.0201307535171509,-1.2118518352508545,-0.9329847693443298,-1.7347276210784912,-1.6824400424957275,-1.5952941179275513,-1.5604357719421387,-1.6301524639129639,-1.4210021495819092,-1.246710181236267,-1.333856225013733,-1.1944226026535034,-1.4210021495819092,-1.0375598669052124,-1.1247059106826782,-1.351285457611084,-0.9678431153297424,-1.1421350240707397,-1.0201307535171509,-1.089847445487976,-1.1944226026535034,-1.089847445487976,-0.9678431153297424,-1.2292810678482056,-0.8632679581642151,-1.2292810678482056,-0.9155555367469788,-0.8806971907615662,-1.2118518352508545,-0.6541176438331604,-1.2118518352508545,-1.1944226026535034,-1.1944226026535034,-0.9329847693443298,-1.4035730361938477,-1.1421350240707397,-1.0549890995025635,-1.0549890995025635,-1.0201307535171509,-1.3164269924163818,-1.2292810678482056,-1.1421350240707397,-1.1247059106826782,-1.333856225013733,-1.2292810678482056,-1.333856225013733,-1.1421350240707397,-1.4210021495819092,-1.2815686464309692,-1.1072766780853271,-1.2292810678482056],[-1.6127233505249023,-1.5255773067474365,-1.5604357719421387,-1.4384313821792603,-1.4035730361938477,-1.3164269924163818,-1.2118518352508545,-0.9678431153297424,-0.9155555367469788,-0.8806971907615662,-0.7761220335960388,-0.7761220335960388,-0.9852723479270935,-0.7412636280059814,-0.8284096121788025,-0.7761220335960388,-0.5321133136749268,-0.6541176438331604,-0.6018300652503967,-0.6889760494232178,-0.6541176438331604,-0.5669716596603394,-0.4449673295021057,-0.5844008922576904,-0.427538126707077,-0.7238343954086304,-0.23581700026988983,-0.21838779747486115,-0.6541176438331604,-0.7412636280059814,-0.6018300652503967,-0.6541176438331604,-0.7935512065887451,-0.8458387851715088,-0.8284096121788025,-0.6366884708404541,-0.7935512065887451,-0.5669716596603394,-0.7761220335960388,-0.7935512065887451,-0.5321133136749268,-0.7064052224159241,-0.6889760494232178,-1.1595642566680908,-0.4972549080848694,-0.9852723479270935,-0.35782134532928467,-0.8806971907615662,-0.5495424866676331,-0.5321133136749268,-0.8806971907615662,-0.7064052224159241,-0.7238343954086304,-0.6715468168258667,-0.6715468168258667,-1.1944226026535034,-0.5669716596603394,-1.0375598669052124,-0.6018300652503967,-0.7761220335960388,-0.7586928009986877,-0.8109803795814514,-0.9678431153297424,-0.7238343954086304,-0.6366884708404541,-0.7761220335960388,-0.9329847693443298,-0.9678431153297424,-0.7761220335960388,-0.37525054812431335,-0.7935512065887451,-0.9155555367469788,-0.6889760494232178,-0.6889760494232178,-0.41010892391204834,-1.0549890995025635,-0.8806971907615662,-0.9329847693443298,-0.7064052224159241,-0.5669716596603394,-0.7238343954086304,-1.0375598669052124,-1.0724183320999146,-0.619259238243103,-0.8458387851715088,-0.8632679581642151,-0.8981263637542725,-0.6366884708404541,-0.7238343954086304,-0.5321133136749268,-0.7238343954086304,-0.7586928009986877,-0.5669716596603394,-0.5844008922576904,-0.8806971907615662,-1.0375598669052124,-0.7412636280059814,-0.5844008922576904,-0.7586928009986877,-0.7412636280059814,-0.8284096121788025,-0.8632679581642151,-0.9329847693443298,-0.7064052224159241,-0.9155555367469788,-0.8806971907615662,-0.9329847693443298,-1.0724183320999146,-0.8632679581642151,-0.7412636280059814,-1.1595642566680908,-1.0375598669052124,-0.8981263637542725,-1.1072766780853271,-1.1421350240707397,-1.1421350240707397,-1.089847445487976,-0.9329847693443298,-0.9329847693443298,-1.333856225013733,-1.1944226026535034,-1.1072766780853271,-1.3164269924163818,-0.9504139423370361,-1.2989978790283203,-1.089847445487976,-1.176993489265442,-1.2118518352508545,-1.1247059106826782,-1.1944226026535034,-1.333856225013733,-1.1421350240707397,-1.176993489265442,-1.1944226026535034,-1.2118518352508545,-1.1944226026535034,-1.1595642566680908,-1.1247059106826782,-1.176993489265442,-1.351285457611084,-1.2641394138336182,-1.1595642566680908,-1.2989978790283203,-1.1072766780853271,-1.2641394138336182,-1.3164269924163818,-1.246710181236267,-1.1944226026535034,-1.333856225013733,-1.4558606147766113,-1.4384313821792603,-1.3861438035964966,-1.7521568536758423,-1.804444432258606,-1.4558606147766113,-1.804444432258606,-1.804444432258606,-1.1247059106826782,-1.2118518352508545,-1.804444432258606,-1.5430065393447876,-1.5778648853302002,-1.5430065393447876,-1.246710181236267,-1.0375598669052124,-0.7064052224159241,-0.340392142534256,-0.7935512065887451,-1.4210021495819092,-1.0027015209197998,-0.7412636280059814,-0.8458387851715088,-0.8806971907615662,-1.1072766780853271,-1.089847445487976,-0.6018300652503967,-1.2815686464309692,-1.1595642566680908,-1.7347276210784912,-1.5952941179275513,-1.508148193359375,-1.7172985076904297,-1.490718960762024,-1.351285457611084,-1.2641394138336182,-1.1944226026535034,-1.333856225013733,-0.8981263637542725,-1.1944226026535034,-0.9852723479270935,-1.0375598669052124,-0.9504139423370361,-1.1944226026535034,-1.1944226026535034,-1.2292810678482056,-1.1944226026535034,-1.1944226026535034,-0.8458387851715088,-1.1247059106826782,-1.0201307535171509,-1.1072766780853271,-1.2641394138336182,-1.0027015209197998,-1.246710181236267,-1.089847445487976,-1.2815686464309692,-1.176993489265442,-1.0375598669052124,-1.0375598669052124,-1.1072766780853271,-1.176993489265442,-1.176993489265442,-1.333856225013733,-1.4558606147766113,-1.089847445487976,-1.2118518352508545,-1.1944226026535034,-1.351285457611084,-1.1247059106826782,-1.1595642566680908,-1.2989978790283203,-1.1944226026535034,-1.4558606147766113,-1.2292810678482056],[-1.6824400424957275,-1.6998692750930786,-1.5778648853302002,-1.5604357719421387,-1.4732897281646729,-1.246710181236267,-1.2118518352508545,-1.176993489265442,-1.2118518352508545,-0.9852723479270935,-0.9852723479270935,-0.619259238243103,-0.7238343954086304,-1.1072766780853271,-0.7761220335960388,-0.7761220335960388,-0.37525054812431335,-0.3229629695415497,-0.6541176438331604,-0.5669716596603394,-0.8981263637542725,-0.8109803795814514,-0.7586928009986877,-0.35782134532928467,-0.39267975091934204,-0.6889760494232178,-0.427538126707077,-0.5669716596603394,-0.5495424866676331,-0.5495424866676331,-0.1138126328587532,-0.619259238243103,-0.619259238243103,-0.5844008922576904,-0.6018300652503967,-0.7412636280059814,-0.6715468168258667,-0.8458387851715088,-0.8284096121788025,-0.5844008922576904,-0.7412636280059814,-0.619259238243103,-0.9155555367469788,-0.6541176438331604,-0.8284096121788025,-0.8284096121788025,-0.7761220335960388,-0.9852723479270935,-0.9329847693443298,-0.8981263637542725,-0.4972549080848694,-1.1072766780853271,-0.8981263637542725,-0.6018300652503967,-0.9155555367469788,-0.8981263637542725,-0.9155555367469788,-0.9852723479270935,-0.9155555367469788,-1.0375598669052124,-1.0375598669052124,-0.5495424866676331,-1.0027015209197998,-0.9504139423370361,-0.8458387851715088,-0.6541176438331604,-0.8458387851715088,-1.0027015209197998,-1.0549890995025635,-0.7586928009986877,-0.8632679581642151,-1.0549890995025635,-0.21838779747486115,-0.6018300652503967,-0.6018300652503967,-0.5321133136749268,-0.6889760494232178,-0.305533766746521,-1.1072766780853271,-0.9504139423370361,-0.7761220335960388,-1.1247059106826782,-0.7761220335960388,-0.7761220335960388,-0.8806971907615662,-0.4798257052898407,-0.8632679581642151,-0.7586928009986877,-0.8458387851715088,-0.8981263637542725,-1.0027015209197998,-0.8458387851715088,-1.1595642566680908,-0.8981263637542725,-0.7935512065887451,-0.9155555367469788,-0.9155555367469788,-0.6541176438331604,-0.7238343954086304,-0.7412636280059814,-0.7238343954086304,-0.6715468168258667,-0.7064052224159241,-0.6018300652503967,-0.7238343954086304,-0.8109803795814514,-1.1247059106826782,-0.8632679581642151,-1.0549890995025635,-1.0549890995025635,-0.6715468168258667,-0.9678431153297424,-0.9504139423370361,-1.1247059106826782,-0.9504139423370361,-1.0027015209197998,-1.176993489265442,-1.246710181236267,-1.2641394138336182,-0.8981263637542725,-0.9504139423370361,-0.9329847693443298,-1.1072766780853271,-0.9504139423370361,-1.0027015209197998,-1.1944226026535034,-0.9155555367469788,-1.1072766780853271,-0.7586928009986877,-1.1595642566680908,-1.1421350240707397,-1.1595642566680908,-1.333856225013733,-1.1944226026535034,-1.1247059106826782,-1.1944226026535034,-1.2118518352508545,-1.1421350240707397,-1.2118518352508545,-1.3687145709991455,-1.1072766780853271,-1.2292810678482056,-1.1421350240707397,-1.4035730361938477,-1.3164269924163818,-1.089847445487976,-1.2815686464309692,-1.3687145709991455,-1.4384313821792603,-1.7172985076904297,-1.7172985076904297,-1.804444432258606,-1.7347276210784912,-1.5255773067474365,-1.7870151996612549,-1.4210021495819092,-1.0201307535171509,-0.6889760494232178,-1.0549890995025635,-1.490718960762024,-1.4384313821792603,-1.5604357719421387,-1.5952941179275513,-1.246710181236267,-0.23581700026988983,-0.20095860958099365,0.2696296274662018,-1.0027015209197998,-1.5255773067474365,-1.0201307535171509,-0.41010892391204834,-0.8632679581642151,-0.6889760494232178,-0.9155555367469788,-1.351285457611084,-1.3164269924163818,-1.246710181236267,-1.0027015209197998,-1.1421350240707397,-1.4558606147766113,-1.508148193359375,-1.665010929107666,-1.6301524639129639,-1.4558606147766113,-1.4210021495819092,-1.490718960762024,-1.4732897281646729,-1.2118518352508545,-1.176993489265442,-1.2989978790283203,-1.089847445487976,-1.3164269924163818,-1.2815686464309692,-1.2292810678482056,-1.176993489265442,-1.2118518352508545,-1.089847445487976,-1.176993489265442,-1.4035730361938477,-1.1247059106826782,-1.176993489265442,-1.2292810678482056,-1.0724183320999146,-1.1247059106826782,-1.0549890995025635,-1.2292810678482056,-1.3687145709991455,-1.3164269924163818,-1.351285457611084,-1.0201307535171509,-1.2118518352508545,-1.089847445487976,-1.089847445487976,-1.1421350240707397,-1.176993489265442,-1.2989978790283203,-1.1944226026535034,-1.351285457611084,-1.1421350240707397,-1.2118518352508545,-1.2989978790283203,-1.333856225013733,-1.089847445487976,-1.508148193359375],[-1.6998692750930786,-1.7521568536758423,-1.647581696510315,-1.5952941179275513,-1.5255773067474365,-1.5952941179275513,-1.2815686464309692,-1.1247059106826782,-1.2641394138336182,-0.9678431153297424,-1.0027015209197998,-1.0724183320999146,-0.5495424866676331,-0.8981263637542725,-0.8632679581642151,-0.7412636280059814,-0.35782134532928467,-0.6541176438331604,-0.7064052224159241,-0.427538126707077,-0.6889760494232178,-0.8109803795814514,-1.0201307535171509,-0.6018300652503967,-0.7238343954086304,-0.340392142534256,-0.7935512065887451,-0.8109803795814514,-0.8981263637542725,-0.8458387851715088,-0.270675390958786,-0.7238343954086304,-0.7064052224159241,-0.619259238243103,-1.0724183320999146,-1.0201307535171509,-0.5495424866676331,-0.6366884708404541,-0.6541176438331604,-0.5321133136749268,-0.9678431153297424,-0.7586928009986877,-0.6018300652503967,-0.7761220335960388,-0.7586928009986877,-0.4798257052898407,-1.176993489265442,-0.39267975091934204,-1.0201307535171509,-0.6018300652503967,-0.427538126707077,-0.7238343954086304,-1.2118518352508545,-1.0201307535171509,-0.8284096121788025,-0.462396502494812,-0.8458387851715088,-0.9852723479270935,-0.7761220335960388,-0.9329847693443298,-0.7238343954086304,-1.2118518352508545,-0.8109803795814514,-0.9678431153297424,-1.0375598669052124,-0.9155555367469788,-0.7586928009986877,-0.5321133136749268,-0.6541176438331604,-1.0724183320999146,-0.9329847693443298,-0.619259238243103,-0.9678431153297424,-0.7586928009986877,-0.7238343954086304,-0.9504139423370361,-0.8981263637542725,-0.9155555367469788,-0.7761220335960388,-0.8806971907615662,-0.9155555367469788,-0.462396502494812,-0.7761220335960388,-1.0027015209197998,-1.089847445487976,-1.0724183320999146,-1.0027015209197998,-1.0549890995025635,-0.8109803795814514,-1.0375598669052124,-0.8981263637542725,-0.8284096121788025,-0.5844008922576904,-0.7761220335960388,-0.9504139423370361,-0.6541176438331604,-0.8458387851715088,-0.8806971907615662,-0.7761220335960388,-0.7935512065887451,-0.9329847693443298,-0.8458387851715088,-0.8632679581642151,-0.9504139423370361,-0.9155555367469788,-1.0549890995025635,-0.8109803795814514,-0.9504139423370361,-1.0027015209197998,-1.1595642566680908,-1.176993489265442,-0.7412636280059814,-1.3164269924163818,-0.9852723479270935,-0.9504139423370361,-1.0375598669052124,-1.0375598669052124,-1.2641394138336182,-1.0549890995025635,-0.9852723479270935,-1.0201307535171509,-1.246710181236267,-1.0375598669052124,-1.2989978790283203,-1.3687145709991455,-1.0027015209197998,-1.176993489265442,-1.351285457611084,-1.1595642566680908,-1.2989978790283203,-1.2989978790283203,-1.2292810678482056,-1.2989978790283203,-1.3164269924163818,-1.2815686464309692,-1.1421350240707397,-1.246710181236267,-1.2118518352508545,-1.1944226026535034,-1.0201307535171509,-1.333856225013733,-1.4210021495819092,-1.3687145709991455,-1.3687145709991455,-1.5778648853302002,-1.5255773067474365,-1.4210021495819092,-1.6824400424957275,-1.7870151996612549,-1.7695860862731934,-1.804444432258606,-1.7695860862731934,-1.5778648853302002,-1.333856225013733,-1.0201307535171509,-0.8806971907615662,-1.0201307535171509,-1.4384313821792603,-1.6301524639129639,-1.5778648853302002,-1.7870151996612549,-0.8981263637542725,-1.1595642566680908,-1.3687145709991455,-0.7935512065887451,-0.8806971907615662,0.09533768892288208,-0.6541176438331604,-0.6889760494232178,-1.804444432258606,-1.2815686464309692,-0.7586928009986877,-0.41010892391204834,-0.9852723479270935,-0.619259238243103,-0.8284096121788025,-0.9852723479270935,-0.8284096121788025,-0.6366884708404541,-1.1595642566680908,-1.4384313821792603,-1.804444432258606,-1.647581696510315,-1.6127233505249023,-1.5604357719421387,-1.508148193359375,-1.351285457611084,-1.665010929107666,-1.3861438035964966,-1.1421350240707397,-1.3164269924163818,-1.0201307535171509,-1.0724183320999146,-1.1421350240707397,-0.9329847693443298,-0.8458387851715088,-1.246710181236267,-1.1944226026535034,-1.0724183320999146,-1.351285457611084,-1.351285457611084,-1.333856225013733,-1.2292810678482056,-1.1944226026535034,-1.4035730361938477,-1.333856225013733,-1.0375598669052124,-1.2815686464309692,-1.351285457611084,-1.1421350240707397,-1.1421350240707397,-1.351285457611084,-1.1944226026535034,-1.176993489265442,-1.490718960762024,-1.333856225013733,-1.2292810678482056,-1.1595642566680908,-0.9852723479270935,-1.1247059106826782,-1.3164269924163818,-1.089847445487976,-1.176993489265442,-1.1072766780853271],[-1.7347276210784912,-1.7347276210784912,-1.6998692750930786,-1.5255773067474365,-1.5778648853302002,-1.508148193359375,-1.3687145709991455,-1.3164269924163818,-1.0549890995025635,-1.246710181236267,-1.0027015209197998,-1.0549890995025635,-0.8806971907615662,-0.9155555367469788,-0.7064052224159241,-0.6715468168258667,-0.7238343954086304,-0.7761220335960388,-0.5844008922576904,-0.8632679581642151,-0.8458387851715088,-0.9852723479270935,-0.8806971907615662,-0.9329847693443298,-0.5146840810775757,-0.7238343954086304,-0.39267975091934204,-0.6541176438331604,-0.6018300652503967,-0.8632679581642151,-0.5495424866676331,-0.7761220335960388,-0.427538126707077,-0.7586928009986877,-0.37525054812431335,-0.7064052224159241,-0.8284096121788025,-0.9329847693443298,-0.8806971907615662,-0.5669716596603394,-0.8458387851715088,-0.6889760494232178,-0.8458387851715088,-1.2292810678482056,-0.9504139423370361,-0.5669716596603394,-0.7586928009986877,-0.8458387851715088,-0.6366884708404541,-0.7761220335960388,-0.9504139423370361,-1.0724183320999146,-0.7935512065887451,-1.0375598669052124,-0.9155555367469788,-0.9504139423370361,-0.8632679581642151,-0.9329847693443298,-0.7761220335960388,-1.176993489265442,-1.2118518352508545,-0.6715468168258667,-0.9678431153297424,-0.9329847693443298,-1.351285457611084,-0.8632679581642151,-1.0201307535171509,-0.8109803795814514,-1.0201307535171509,-1.1944226026535034,-0.8981263637542725,-1.0201307535171509,-1.0201307535171509,-0.7586928009986877,-1.0201307535171509,-0.7238343954086304,-0.8284096121788025,-1.0201307535171509,-0.8284096121788025,-0.6715468168258667,-0.9329847693443298,-0.6889760494232178,-0.9504139423370361,-0.8806971907615662,-0.9155555367469788,-1.1595642566680908,-0.7761220335960388,-1.0027015209197998,-1.2641394138336182,-0.8632679581642151,-0.6889760494232178,-0.8458387851715088,-0.7935512065887451,-0.8981263637542725,-0.8806971907615662,-1.0201307535171509,-0.9852723479270935,-0.6889760494232178,-0.6889760494232178,-0.7586928009986877,-0.9852723479270935,-0.9504139423370361,-1.1072766780853271,-0.8284096121788025,-1.0375598669052124,-1.2292810678482056,-1.0201307535171509,-1.089847445487976,-1.089847445487976,-0.7935512065887451,-1.1247059106826782,-1.1072766780853271,-1.0375598669052124,-1.176993489265442,-1.1944226026535034,-1.1595642566680908,-0.9504139423370361,-1.1944226026535034,-1.0375598669052124,-1.2292810678482056,-1.351285457611084,-0.9504139423370361,-1.1072766780853271,-1.089847445487976,-1.2641394138336182,-1.1421350240707397,-1.1421350240707397,-1.246710181236267,-1.2118518352508545,-1.246710181236267,-1.333856225013733,-1.2292810678482056,-1.1595642566680908,-1.1247059106826782,-1.2118518352508545,-1.176993489265442,-1.1072766780853271,-1.1247059106826782,-1.3164269924163818,-1.3164269924163818,-1.0549890995025635,-1.333856225013733,-1.246710181236267,-1.4035730361938477,-1.4210021495819092,-1.5255773067474365,-1.6824400424957275,-1.6998692750930786,-1.7870151996612549,-1.7347276210784912,-1.1421350240707397,-0.8458387851715088,-0.305533766746521,-1.4558606147766113,-0.23581700026988983,-0.14867103099822998,-0.5495424866676331,-1.351285457611084,-1.2292810678482056,-1.5604357719421387,0.33934640884399414,-1.0027015209197998,-1.7695860862731934,-1.7521568536758423,-1.2118518352508545,-1.7347276210784912,-1.1944226026535034,0.8796514272689819,-0.21838779747486115,0.0604793019592762,-0.4449673295021057,-1.5255773067474365,-1.0549890995025635,-0.8458387851715088,-0.8806971907615662,-1.1421350240707397,-1.0724183320999146,-0.07895424962043762,-0.14867103099822998,-0.427538126707077,-0.619259238243103,-1.4732897281646729,-1.647581696510315,-1.7521568536758423,-1.5778648853302002,-1.490718960762024,-1.490718960762024,-1.4558606147766113,-1.4384313821792603,-1.2989978790283203,-1.3164269924163818,-1.3687145709991455,-1.2641394138336182,-1.176993489265442,-1.1944226026535034,-1.2118518352508545,-1.2118518352508545,-1.1421350240707397,-1.2815686464309692,-1.2118518352508545,-1.089847445487976,-1.246710181236267,-0.9504139423370361,-0.8458387851715088,-1.2815686464309692,-1.333856225013733,-1.1944226026535034,-1.1944226026535034,-1.176993489265442,-1.333856225013733,-1.1421350240707397,-1.351285457611084,-1.4558606147766113,-1.1595642566680908,-1.3687145709991455,-1.4384313821792603,-1.333856225013733,-1.2989978790283203,-1.1944226026535034,-1.2815686464309692,-1.3164269924163818,-1.508148193359375,-1.3164269924163818,-1.176993489265442],[-1.804444432258606,-1.804444432258606,-1.665010929107666,-1.7347276210784912,-1.6824400424957275,-1.490718960762024,-1.508148193359375,-1.4035730361938477,-1.4732897281646729,-1.2815686464309692,-1.2292810678482056,-1.0027015209197998,-1.0375598669052124,-0.8632679581642151,-0.9678431153297424,-1.0375598669052124,-0.7238343954086304,-1.0027015209197998,-0.6366884708404541,-0.9504139423370361,-0.8109803795814514,-1.0201307535171509,-0.619259238243103,-0.6541176438331604,-0.41010892391204834,-0.8109803795814514,-0.7412636280059814,-0.427538126707077,-0.7064052224159241,-0.6889760494232178,-0.39267975091934204,-0.39267975091934204,-0.8109803795814514,-0.9329847693443298,-0.6541176438331604,-0.5146840810775757,-0.6018300652503967,-0.8284096121788025,-0.7064052224159241,-1.1421350240707397,-0.5321133136749268,-0.7412636280059814,-0.37525054812431335,-0.9504139423370361,-0.7412636280059814,-0.9852723479270935,-0.8458387851715088,-0.8806971907615662,-0.7064052224159241,-1.0375598669052124,-1.1072766780853271,-0.5669716596603394,-0.8284096121788025,-1.1247059106826782,-0.8632679581642151,-0.9852723479270935,-1.1072766780853271,-0.6889760494232178,-0.9678431153297424,-0.9678431153297424,-1.0549890995025635,-0.9329847693443298,-1.1247059106826782,-0.8284096121788025,-0.6715468168258667,-0.9504139423370361,-1.0375598669052124,-0.5844008922576904,-0.8284096121788025,-0.8981263637542725,-0.8806971907615662,-0.8981263637542725,-1.0201307535171509,-0.8981263637542725,-0.9329847693443298,-0.8284096121788025,-0.7761220335960388,-0.619259238243103,-0.6541176438331604,-0.9329847693443298,-0.8284096121788025,-0.7238343954086304,-0.5495424866676331,-0.8284096121788025,-1.1247059106826782,-0.7761220335960388,-0.9155555367469788,-0.7412636280059814,-0.6715468168258667,-0.8109803795814514,-0.7935512065887451,-0.7064052224159241,-0.6018300652503967,-0.8109803795814514,-1.089847445487976,-0.7761220335960388,-0.8284096121788025,-0.7761220335960388,-0.8806971907615662,-1.0375598669052124,-0.6715468168258667,-1.0027015209197998,-0.8458387851715088,-1.0724183320999146,-0.7064052224159241,-1.1247059106826782,-0.9504139423370361,-0.9329847693443298,-1.0201307535171509,-1.2292810678482056,-1.0549890995025635,-1.0027015209197998,-1.2292810678482056,-0.8284096121788025,-0.9504139423370361,-1.2989978790283203,-1.0724183320999146,-0.7586928009986877,-1.0027015209197998,-1.089847445487976,-1.1247059106826782,-1.1944226026535034,-1.1595642566680908,-1.2815686464309692,-1.2641394138336182,-1.246710181236267,-1.0724183320999146,-1.0549890995025635,-1.1421350240707397,-1.3164269924163818,-1.3164269924163818,-0.9852723479270935,-1.1944226026535034,-1.089847445487976,-1.2292810678482056,-1.2118518352508545,-1.3687145709991455,-1.1595642566680908,-1.3861438035964966,-1.2815686464309692,-1.2815686464309692,-1.3164269924163818,-1.508148193359375,-1.5430065393447876,-1.6301524639129639,-1.7347276210784912,-1.6998692750930786,-1.6127233505249023,-0.9155555367469788,-1.2118518352508545,-0.8109803795814514,-1.2292810678482056,0.4264923632144928,-0.7064052224159241,0.02562091499567032,-0.3229629695415497,0.3567756116390228,-0.9678431153297424,-0.35782134532928467,-0.4798257052898407,-1.0027015209197998,-0.07895424962043762,-0.4449673295021057,-0.8981263637542725,-0.7064052224159241,-0.8284096121788025,-1.1421350240707397,-0.270675390958786,-0.270675390958786,-0.1312418282032013,-0.41010892391204834,0.11276688426733017,-0.7586928009986877,-0.5669716596603394,-0.7761220335960388,-0.9504139423370361,-1.3164269924163818,-0.4798257052898407,0.04305011034011841,-0.07895424962043762,-0.18352940678596497,-1.0375598669052124,-1.333856225013733,-1.7347276210784912,-1.7870151996612549,-1.6998692750930786,-1.665010929107666,-1.4732897281646729,-1.4558606147766113,-1.4035730361938477,-1.333856225013733,-1.2989978790283203,-1.2292810678482056,-1.2641394138336182,-1.2641394138336182,-1.2989978790283203,-1.2641394138336182,-1.1944226026535034,-1.0375598669052124,-1.3861438035964966,-1.351285457611084,-1.2292810678482056,-1.3861438035964966,-1.1072766780853271,-1.1421350240707397,-1.2989978790283203,-1.351285457611084,-1.1944226026535034,-1.1944226026535034,-1.2815686464309692,-1.176993489265442,-1.2641394138336182,-1.2641394138336182,-1.176993489265442,-1.1421350240707397,-1.2815686464309692,-1.1247059106826782,-1.351285457611084,-1.2118518352508545,-1.3687145709991455,-1.1944226026535034,-1.3687145709991455,-1.3164269924163818,-1.2989978790283203],[-1.7521568536758423,-1.804444432258606,-1.7521568536758423,-1.7695860862731934,-1.665010929107666,-1.5778648853302002,-1.6127233505249023,-1.508148193359375,-1.5430065393447876,-1.4558606147766113,-1.4035730361938477,-1.333856225013733,-1.0375598669052124,-1.0201307535171509,-0.8458387851715088,-0.9155555367469788,-0.9678431153297424,-0.8109803795814514,-0.5495424866676331,-0.8981263637542725,-0.7935512065887451,-0.7935512065887451,-0.9155555367469788,-0.6541176438331604,-1.0549890995025635,-0.5844008922576904,-0.7586928009986877,-0.8109803795814514,-0.9329847693443298,-1.1595642566680908,-0.6715468168258667,-0.8458387851715088,-0.2532461881637573,-0.7586928009986877,-0.7412636280059814,-0.8284096121788025,-0.8284096121788025,-0.8806971907615662,-0.7586928009986877,-0.9678431153297424,-0.7412636280059814,-0.8806971907615662,-1.0375598669052124,-0.9155555367469788,-0.7586928009986877,-0.6018300652503967,-1.1247059106826782,-0.7586928009986877,-0.9678431153297424,-0.8458387851715088,-1.0027015209197998,-0.9678431153297424,-1.089847445487976,-1.089847445487976,-0.9504139423370361,-0.8981263637542725,-0.7761220335960388,-1.1247059106826782,-0.7761220335960388,-0.9329847693443298,-1.0375598669052124,-0.9504139423370361,-1.089847445487976,-1.0549890995025635,-1.3687145709991455,-1.1595642566680908,-0.8981263637542725,-0.9329847693443298,-1.0724183320999146,-1.0549890995025635,-0.8806971907615662,-1.0375598669052124,-0.8806971907615662,-0.7761220335960388,-0.9504139423370361,-0.6715468168258667,-0.9155555367469788,-0.9852723479270935,-0.6715468168258667,-0.9155555367469788,-0.8109803795814514,-1.1247059106826782,-0.8109803795814514,-0.5669716596603394,-0.619259238243103,-1.1247059106826782,-0.3229629695415497,-0.7412636280059814,-0.6889760494232178,-0.7238343954086304,-0.9329847693443298,-0.6018300652503967,-0.7935512065887451,-0.7935512065887451,-1.1421350240707397,-1.0724183320999146,-0.5495424866676331,-0.8806971907615662,-1.351285457611084,-0.7238343954086304,-1.0201307535171509,-1.0375598669052124,-0.8632679581642151,-1.1072766780853271,-1.0724183320999146,-1.0201307535171509,-1.089847445487976,-1.1421350240707397,-1.1072766780853271,-1.0027015209197998,-1.1247059106826782,-1.2641394138336182,-1.2118518352508545,-1.0201307535171509,-1.1595642566680908,-0.9504139423370361,-1.0549890995025635,-1.1247059106826782,-1.1944226026535034,-1.176993489265442,-1.351285457611084,-1.2989978790283203,-1.0201307535171509,-1.1072766780853271,-1.1944226026535034,-1.1944226026535034,-1.0375598669052124,-1.0375598669052124,-1.1944226026535034,-1.2989978790283203,-1.1421350240707397,-1.333856225013733,-1.1421350240707397,-1.4558606147766113,-1.1072766780853271,-1.2989978790283203,-1.246710181236267,-1.351285457611084,-1.4558606147766113,-1.3164269924163818,-1.4210021495819092,-1.490718960762024,-1.7521568536758423,-1.6301524639129639,-1.5255773067474365,-1.804444432258606,-1.804444432258606,-1.0375598669052124,-1.0375598669052124,-0.270675390958786,0.4264923632144928,0.7402178645133972,-0.8981263637542725,0.4264923632144928,-0.1312418282032013,0.4264923632144928,-0.04409585893154144,-0.7412636280059814,-0.1312418282032013,-0.21838779747486115,-1.0724183320999146,-1.351285457611084,-0.14867103099822998,-0.4449673295021057,-0.2532461881637573,-1.2641394138336182,-0.18352940678596497,-1.2292810678482056,0.4264923632144928,0.49620914459228516,0.07790849357843399,0.16505447030067444,-1.1072766780853271,-1.3164269924163818,-1.6127233505249023,-0.6715468168258667,-0.6715468168258667,-0.9852723479270935,-0.07895424962043762,-0.06152505427598953,0.19991286098957062,-0.4972549080848694,-0.8632679581642151,-1.490718960762024,-1.5430065393447876,-1.5952941179275513,-1.7695860862731934,-1.647581696510315,-1.5604357719421387,-1.5255773067474365,-1.3861438035964966,-1.3164269924163818,-1.4210021495819092,-1.4210021495819092,-1.4210021495819092,-1.3687145709991455,-1.2118518352508545,-1.333856225013733,-0.9852723479270935,-1.3861438035964966,-1.246710181236267,-1.3164269924163818,-1.3861438035964966,-1.1595642566680908,-1.1595642566680908,-1.2292810678482056,-1.1944226026535034,-1.4732897281646729,-1.176993489265442,-1.246710181236267,-1.2118518352508545,-1.2989978790283203,-1.3687145709991455,-1.246710181236267,-1.2641394138336182,-1.2118518352508545,-1.351285457611084,-1.2815686464309692,-1.089847445487976,-1.351285457611084,-1.2815686464309692,-1.1247059106826782,-1.333856225013733,-1.2989978790283203],[-1.804444432258606,-1.7870151996612549,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.7347276210784912,-1.7695860862731934,-1.804444432258606,-1.7172985076904297,-1.5778648853302002,-1.4558606147766113,-1.4384313821792603,-1.2292810678482056,-1.2989978790283203,-1.1247059106826782,-1.0201307535171509,-0.8458387851715088,-1.246710181236267,-0.7238343954086304,-1.0549890995025635,-0.8806971907615662,-1.1595642566680908,-1.0201307535171509,-1.0201307535171509,-0.8806971907615662,-0.9678431153297424,-0.6541176438331604,-1.0549890995025635,-0.8284096121788025,-0.8109803795814514,-0.8981263637542725,-0.4449673295021057,-0.41010892391204834,-0.9329847693443298,-0.6715468168258667,-0.8109803795814514,-0.9678431153297424,-0.9852723479270935,-0.9852723479270935,-0.7935512065887451,-0.7935512065887451,-1.089847445487976,-0.9852723479270935,-0.9329847693443298,-0.6018300652503967,-0.8632679581642151,-1.1072766780853271,-0.9678431153297424,-0.9678431153297424,-1.089847445487976,-0.8458387851715088,-0.8109803795814514,-1.0027015209197998,-0.9852723479270935,-1.1595642566680908,-0.7761220335960388,-1.4210021495819092,-1.0549890995025635,-0.8284096121788025,-0.8458387851715088,-0.9504139423370361,-1.089847445487976,-1.176993489265442,-0.9852723479270935,-1.0375598669052124,-0.9852723479270935,-1.246710181236267,-1.1072766780853271,-1.0201307535171509,-0.9155555367469788,-1.0375598669052124,-0.8284096121788025,-1.1247059106826782,-0.9155555367469788,-0.5844008922576904,-1.089847445487976,-1.1247059106826782,-1.0201307535171509,-1.176993489265442,-1.1072766780853271,-1.0549890995025635,-0.8981263637542725,-0.5495424866676331,-0.8632679581642151,-0.5844008922576904,-1.1421350240707397,-1.3164269924163818,-1.0201307535171509,-1.2641394138336182,-0.9678431153297424,-1.0724183320999146,-0.7238343954086304,-0.7761220335960388,-0.8632679581642151,-0.9852723479270935,-0.8981263637542725,-0.9678431153297424,-1.0375598669052124,-0.7935512065887451,-1.4732897281646729,-0.9155555367469788,-1.1072766780853271,-1.0375598669052124,-0.8981263637542725,-1.176993489265442,-1.176993489265442,-1.1072766780853271,-1.2292810678482056,-1.333856225013733,-1.089847445487976,-1.0549890995025635,-1.0724183320999146,-1.246710181236267,-1.5604357719421387,-0.9678431153297424,-1.3164269924163818,-1.1595642566680908,-1.176993489265442,-1.1944226026535034,-0.9852723479270935,-1.2989978790283203,-1.1595642566680908,-1.176993489265442,-1.176993489265442,-1.2815686464309692,-1.1944226026535034,-1.3164269924163818,-1.1944226026535034,-1.176993489265442,-1.333856225013733,-1.1421350240707397,-1.2292810678482056,-1.333856225013733,-1.4035730361938477,-1.4384313821792603,-1.4035730361938477,-1.4558606147766113,-1.4210021495819092,-1.5255773067474365,-1.665010929107666,-1.647581696510315,-1.804444432258606,-1.804444432258606,-1.6824400424957275,-0.9504139423370361,0.32191720604896545,-0.2532461881637573,-0.4449673295021057,-0.18352940678596497,-0.39267975091934204,0.2173420488834381,-0.5669716596603394,-0.7761220335960388,-0.21838779747486115,-0.270675390958786,-1.2292810678482056,-1.2118518352508545,-0.6889760494232178,-0.8109803795814514,-0.9852723479270935,-0.5495424866676331,-0.21838779747486115,-0.09638344496488571,0.4439215660095215,0.7925054430961609,-0.462396502494812,-0.6889760494232178,0.14762526750564575,-0.06152505427598953,0.5833551287651062,0.7925054430961609,-0.3229629695415497,-0.18352940678596497,-1.2118518352508545,-1.5430065393447876,-1.0724183320999146,-1.0375598669052124,-0.04409585893154144,0.4090631902217865,-0.04409585893154144,-1.333856225013733,-0.340392142534256,-0.9504139423370361,-0.9504139423370361,-1.647581696510315,-1.351285457611084,-1.6127233505249023,-1.6824400424957275,-1.647581696510315,-1.665010929107666,-1.5604357719421387,-1.4384313821792603,-1.6127233505249023,-1.2989978790283203,-1.3164269924163818,-1.4558606147766113,-1.3861438035964966,-1.4732897281646729,-1.3861438035964966,-1.4558606147766113,-1.2292810678482056,-1.4384313821792603,-1.2989978790283203,-1.4384313821792603,-1.1595642566680908,-1.2989978790283203,-1.4035730361938477,-1.2118518352508545,-1.2815686464309692,-1.4035730361938477,-1.351285457611084,-1.246710181236267,-1.4210021495819092,-1.4035730361938477,-1.1421350240707397,-1.4210021495819092,-1.2118518352508545,-1.4035730361938477,-1.4732897281646729,-1.333856225013733,-1.1595642566680908,-1.3687145709991455,-1.4210021495819092],[-1.804444432258606,-1.7870151996612549,-1.804444432258606,-1.804444432258606,-1.7870151996612549,-1.7347276210784912,-1.5952941179275513,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.647581696510315,-1.7172985076904297,-1.5952941179275513,-1.4035730361938477,-1.1247059106826782,-1.1421350240707397,-1.1247059106826782,-1.0201307535171509,-1.1595642566680908,-1.1072766780853271,-0.9852723479270935,-0.9155555367469788,-0.9504139423370361,-1.1421350240707397,-0.9678431153297424,-0.7935512065887451,-0.9329847693443298,-0.9155555367469788,-0.9504139423370361,-0.7761220335960388,-0.9329847693443298,-0.8806971907615662,-0.9504139423370361,-0.4449673295021057,-0.8109803795814514,-0.7586928009986877,-0.8109803795814514,-0.8284096121788025,-0.8632679581642151,-0.9678431153297424,-0.9329847693443298,-1.1421350240707397,-0.8458387851715088,-0.8458387851715088,-1.0027015209197998,-1.1595642566680908,-1.1595642566680908,-0.9852723479270935,-0.9678431153297424,-0.9852723479270935,-1.0724183320999146,-0.9852723479270935,-1.1595642566680908,-0.7761220335960388,-1.2292810678482056,-1.089847445487976,-1.2815686464309692,-0.9504139423370361,-1.2118518352508545,-1.246710181236267,-1.2118518352508545,-1.0375598669052124,-1.0724183320999146,-1.1072766780853271,-1.1421350240707397,-1.089847445487976,-1.1072766780853271,-0.9329847693443298,-1.0027015209197998,-1.1595642566680908,-1.1247059106826782,-1.1421350240707397,-1.0201307535171509,-0.6715468168258667,-1.1072766780853271,-1.0027015209197998,-0.7761220335960388,-1.1247059106826782,-1.0201307535171509,-1.0027015209197998,-1.2118518352508545,-0.9678431153297424,-1.089847445487976,-1.0724183320999146,-1.0201307535171509,-0.9852723479270935,-1.1944226026535034,-1.0201307535171509,-1.2118518352508545,-1.0549890995025635,-1.3861438035964966,-1.2118518352508545,-1.0027015209197998,-1.333856225013733,-1.2292810678482056,-1.2989978790283203,-1.2815686464309692,-1.1944226026535034,-1.3164269924163818,-1.1595642566680908,-1.351285457611084,-1.0027015209197998,-1.1247059106826782,-1.2118518352508545,-0.9329847693443298,-1.508148193359375,-1.089847445487976,-1.0027015209197998,-1.3687145709991455,-1.246710181236267,-1.3687145709991455,-1.2641394138336182,-1.246710181236267,-1.2815686464309692,-1.246710181236267,-1.0724183320999146,-1.2815686464309692,-1.1072766780853271,-1.3861438035964966,-1.351285457611084,-1.246710181236267,-1.1421350240707397,-1.1944226026535034,-1.1944226026535034,-1.2292810678482056,-1.351285457611084,-1.2292810678482056,-1.246710181236267,-1.351285457611084,-1.490718960762024,-1.333856225013733,-1.508148193359375,-1.508148193359375,-1.3861438035964966,-1.4558606147766113,-1.490718960762024,-1.6824400424957275,-1.5778648853302002,-1.6824400424957275,-1.7172985076904297,-1.7695860862731934,-1.804444432258606,-1.7870151996612549,-1.1595642566680908,-0.7935512065887451,-0.6715468168258667,0.2522004246711731,-0.009237472899258137,-0.4972549080848694,-0.009237472899258137,-0.4798257052898407,-1.4384313821792603,-1.2641394138336182,-1.176993489265442,-1.176993489265442,-1.2641394138336182,-1.2118518352508545,-1.804444432258606,-1.1072766780853271,-0.4972549080848694,-1.2815686464309692,-0.18352940678596497,-0.2532461881637573,-0.1138126328587532,0.2696296274662018,-0.06152505427598953,-0.7935512065887451,-0.6018300652503967,-1.1595642566680908,0.2173420488834381,0.18248365819454193,-1.804444432258606,-0.9155555367469788,-1.2641394138336182,-1.3687145709991455,-0.462396502494812,0.4439215660095215,0.18248365819454193,-0.3229629695415497,-0.8109803795814514,-0.340392142534256,-1.0375598669052124,-1.0375598669052124,-1.508148193359375,-0.5669716596603394,-1.4210021495819092,-1.6127233505249023,-1.6127233505249023,-1.6998692750930786,-1.5778648853302002,-1.5952941179275513,-1.5255773067474365,-1.508148193359375,-1.490718960762024,-1.333856225013733,-1.2118518352508545,-1.2292810678482056,-1.3164269924163818,-1.2815686464309692,-1.3164269924163818,-1.4558606147766113,-1.3687145709991455,-1.2641394138336182,-1.2815686464309692,-1.4035730361938477,-1.4210021495819092,-1.2641394138336182,-1.3687145709991455,-1.2989978790283203,-1.3687145709991455,-1.2641394138336182,-1.089847445487976,-1.2292810678482056,-1.1072766780853271,-1.2292810678482056,-1.2815686464309692,-1.3164269924163818,-1.4732897281646729,-1.4035730361938477,-1.3861438035964966,-1.4384313821792603,-1.351285457611084],[-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.7870151996612549,-1.7172985076904297,-1.6998692750930786,-1.6127233505249023,-1.5952941179275513,-1.665010929107666,-1.7172985076904297,-1.5952941179275513,-1.6998692750930786,-1.7695860862731934,-1.7870151996612549,-1.6127233505249023,-1.665010929107666,-1.5952941179275513,-1.5255773067474365,-1.3164269924163818,-1.333856225013733,-1.176993489265442,-1.176993489265442,-1.1595642566680908,-0.9504139423370361,-1.0549890995025635,-0.6715468168258667,-0.8981263637542725,-0.9504139423370361,-0.6889760494232178,-0.9852723479270935,-0.9329847693443298,-0.8109803795814514,-0.9329847693443298,-1.0549890995025635,-0.8109803795814514,-0.6715468168258667,-0.9329847693443298,-0.9852723479270935,-1.4384313821792603,-1.2815686464309692,-1.176993489265442,-0.9678431153297424,-0.7586928009986877,-1.0027015209197998,-1.0375598669052124,-1.2292810678482056,-0.9852723479270935,-1.089847445487976,-1.2118518352508545,-0.9678431153297424,-1.2118518352508545,-1.1421350240707397,-1.1072766780853271,-1.246710181236267,-1.2989978790283203,-1.089847445487976,-1.2118518352508545,-1.246710181236267,-1.2989978790283203,-1.2292810678482056,-1.1421350240707397,-1.246710181236267,-1.089847445487976,-1.089847445487976,-1.0201307535171509,-0.9678431153297424,-1.0549890995025635,-1.089847445487976,-0.9852723479270935,-1.176993489265442,-0.8284096121788025,-1.1944226026535034,-0.9678431153297424,-0.9678431153297424,-1.0724183320999146,-0.9678431153297424,-0.9329847693443298,-1.0549890995025635,-1.1944226026535034,-1.1247059106826782,-1.1072766780853271,-1.089847445487976,-1.1595642566680908,-1.2118518352508545,-1.1247059106826782,-1.1421350240707397,-1.2292810678482056,-1.3164269924163818,-1.2989978790283203,-1.089847445487976,-1.2118518352508545,-1.3164269924163818,-1.089847445487976,-1.1944226026535034,-1.1421350240707397,-1.2292810678482056,-1.3687145709991455,-1.1072766780853271,-1.333856225013733,-1.1421350240707397,-1.1944226026535034,-1.2641394138336182,-1.3687145709991455,-1.3164269924163818,-1.2641394138336182,-1.089847445487976,-1.333856225013733,-1.3164269924163818,-1.1944226026535034,-1.2292810678482056,-1.176993489265442,-1.1595642566680908,-1.176993489265442,-1.2118518352508545,-1.1421350240707397,-1.1421350240707397,-1.0027015209197998,-1.1944226026535034,-1.351285457611084,-1.3164269924163818,-1.4384313821792603,-1.351285457611084,-1.3164269924163818,-1.2641394138336182,-1.351285457611084,-1.246710181236267,-1.4384313821792603,-1.2292810678482056,-1.2989978790283203,-1.333856225013733,-1.5604357719421387,-1.3164269924163818,-1.4384313821792603,-1.4210021495819092,-1.5430065393447876,-1.7172985076904297,-1.7172985076904297,-1.665010929107666,-1.7695860862731934,-1.804444432258606,-1.7521568536758423,-1.804444432258606,-1.1247059106826782,-0.6018300652503967,-0.8109803795814514,0.2696296274662018,-0.6889760494232178,-0.462396502494812,-0.4972549080848694,-0.340392142534256,-1.2118518352508545,-1.3164269924163818,-1.2641394138336182,-1.0201307535171509,-1.6824400424957275,-1.176993489265442,-1.5952941179275513,-1.665010929107666,-0.9329847693443298,-1.1072766780853271,-1.333856225013733,-0.8632679581642151,-0.9852723479270935,-1.1247059106826782,-0.4798257052898407,0.7402178645133972,0.28705883026123047,0.13019607961177826,-0.23581700026988983,-0.8109803795814514,-0.41010892391204834,0.6356427073478699,0.07790849357843399,-0.6715468168258667,-1.508148193359375,-0.9678431153297424,-0.37525054812431335,0.7053594589233398,0.30448800325393677,0.9319390058517456,-0.9504139423370361,0.2347712367773056,-1.0201307535171509,-1.0375598669052124,-0.8458387851715088,-0.8109803795814514,-1.2989978790283203,-1.351285457611084,-1.5952941179275513,-1.6998692750930786,-1.7521568536758423,-1.7521568536758423,-1.647581696510315,-1.508148193359375,-1.5604357719421387,-1.5604357719421387,-1.4558606147766113,-1.4558606147766113,-1.351285457611084,-1.4732897281646729,-1.3687145709991455,-1.4035730361938477,-1.3164269924163818,-1.3164269924163818,-1.351285457611084,-1.4210021495819092,-1.3164269924163818,-1.4035730361938477,-1.4035730361938477,-1.4384313821792603,-1.2641394138336182,-1.3687145709991455,-1.351285457611084,-1.4210021495819092,-1.1944226026535034,-1.4558606147766113,-1.5255773067474365,-1.490718960762024,-1.4384313821792603,-1.2815686464309692,-1.246710181236267,-1.3164269924163818,-1.3861438035964966],[-1.804444432258606,-1.7870151996612549,-1.804444432258606,-1.804444432258606,-1.7870151996612549,-1.665010929107666,-1.6824400424957275,-1.647581696510315,-1.5778648853302002,-1.5604357719421387,-1.490718960762024,-1.5430065393447876,-1.647581696510315,-1.490718960762024,-1.508148193359375,-1.5952941179275513,-1.5952941179275513,-1.5604357719421387,-1.5778648853302002,-1.5952941179275513,-1.5952941179275513,-1.6127233505249023,-1.508148193359375,-1.5255773067474365,-1.508148193359375,-1.4732897281646729,-1.2118518352508545,-1.2989978790283203,-1.0724183320999146,-1.0375598669052124,-1.0724183320999146,-0.9678431153297424,-0.9852723479270935,-0.8284096121788025,-1.1421350240707397,-1.0375598669052124,-1.1421350240707397,-1.2815686464309692,-1.1072766780853271,-1.0201307535171509,-0.9678431153297424,-1.1072766780853271,-1.089847445487976,-0.9329847693443298,-1.2641394138336182,-1.176993489265442,-1.1944226026535034,-1.1421350240707397,-1.246710181236267,-1.2118518352508545,-1.1944226026535034,-1.3164269924163818,-1.176993489265442,-1.2815686464309692,-0.9678431153297424,-1.1072766780853271,-1.1944226026535034,-1.2118518352508545,-1.176993489265442,-1.1421350240707397,-1.3687145709991455,-1.3687145709991455,-1.2641394138336182,-1.0724183320999146,-1.1247059106826782,-1.1247059106826782,-1.2118518352508545,-1.3164269924163818,-1.4035730361938477,-1.3861438035964966,-1.1421350240707397,-1.176993489265442,-0.8981263637542725,-1.0724183320999146,-1.176993489265442,-0.9329847693443298,-1.1072766780853271,-1.2292810678482056,-1.1944226026535034,-1.2641394138336182,-1.2118518352508545,-1.246710181236267,-1.1247059106826782,-1.2118518352508545,-1.246710181236267,-1.2989978790283203,-1.2815686464309692,-1.3164269924163818,-1.1595642566680908,-1.2292810678482056,-1.2989978790283203,-1.3687145709991455,-1.2815686464309692,-1.2989978790283203,-1.2292810678482056,-1.2118518352508545,-1.1421350240707397,-1.2292810678482056,-1.4732897281646729,-1.1944226026535034,-1.333856225013733,-1.2292810678482056,-1.0724183320999146,-1.176993489265442,-1.2292810678482056,-1.4035730361938477,-1.508148193359375,-1.2815686464309692,-1.3861438035964966,-1.176993489265442,-1.3687145709991455,-1.2989978790283203,-1.2815686464309692,-1.2989978790283203,-1.2989978790283203,-1.2989978790283203,-1.2815686464309692,-1.4558606147766113,-1.490718960762024,-1.3687145709991455,-1.246710181236267,-1.246710181236267,-1.2989978790283203,-1.4035730361938477,-1.3687145709991455,-1.3164269924163818,-1.3861438035964966,-1.3861438035964966,-1.3861438035964966,-1.4384313821792603,-1.4558606147766113,-1.508148193359375,-1.4384313821792603,-1.4210021495819092,-1.665010929107666,-1.6998692750930786,-1.6127233505249023,-1.7172985076904297,-1.7347276210784912,-1.804444432258606,-1.6998692750930786,-1.804444432258606,-1.7870151996612549,0.19991286098957062,0.46135076880455017,0.3916339874267578,0.16505447030067444,0.32191720604896545,-0.9504139423370361,-0.5146840810775757,-1.2989978790283203,-1.5430065393447876,-1.1247059106826782,-1.176993489265442,-1.351285457611084,-0.9155555367469788,-1.508148193359375,-1.1247059106826782,-1.0724183320999146,-1.2989978790283203,-1.1247059106826782,-0.5321133136749268,-1.0724183320999146,-1.1595642566680908,-0.4972549080848694,-0.462396502494812,-0.270675390958786,0.9319390058517456,0.9319390058517456,0.6356427073478699,-1.7172985076904297,-0.6366884708404541,-0.619259238243103,0.19991286098957062,0.9493681788444519,0.14762526750564575,0.32191720604896545,0.32191720604896545,0.18248365819454193,0.966797411441803,0.32191720604896545,-1.246710181236267,-0.20095860958099365,-0.8109803795814514,-1.089847445487976,-0.2881045639514923,0.2347712367773056,-0.619259238243103,-0.7412636280059814,-0.7238343954086304,-1.490718960762024,-1.5255773067474365,-1.7695860862731934,-1.665010929107666,-1.6301524639129639,-1.6301524639129639,-1.490718960762024,-1.5430065393447876,-1.5778648853302002,-1.3687145709991455,-1.5255773067474365,-1.4384313821792603,-1.333856225013733,-1.490718960762024,-1.4035730361938477,-1.3687145709991455,-1.3687145709991455,-1.4732897281646729,-1.4035730361938477,-1.3861438035964966,-1.4035730361938477,-1.351285457611084,-1.4558606147766113,-1.3164269924163818,-1.2989978790283203,-1.5430065393447876,-1.5778648853302002,-1.4210021495819092,-1.3164269924163818,-1.3861438035964966,-1.6127233505249023,-1.3861438035964966,-1.4210021495819092,-1.3164269924163818],[-1.7870151996612549,-1.7695860862731934,-1.7695860862731934,-1.7695860862731934,-1.7347276210784912,-1.5255773067474365,-1.6824400424957275,-1.5952941179275513,-1.508148193359375,-1.4732897281646729,-1.4384313821792603,-1.4210021495819092,-1.4035730361938477,-1.3687145709991455,-1.4732897281646729,-1.4035730361938477,-1.3687145709991455,-1.4210021495819092,-1.4210021495819092,-1.4035730361938477,-1.4210021495819092,-1.4558606147766113,-1.4558606147766113,-1.4035730361938477,-1.4384313821792603,-1.5255773067474365,-1.490718960762024,-1.6127233505249023,-1.508148193359375,-1.4732897281646729,-1.4732897281646729,-1.0549890995025635,-1.3164269924163818,-1.1944226026535034,-0.8284096121788025,-1.1421350240707397,-0.9678431153297424,-1.1247059106826782,-1.1247059106826782,-1.1944226026535034,-1.089847445487976,-1.176993489265442,-1.3687145709991455,-1.176993489265442,-1.333856225013733,-1.351285457611084,-1.176993489265442,-1.4384313821792603,-1.3164269924163818,-1.2292810678482056,-1.2815686464309692,-1.4732897281646729,-1.3164269924163818,-1.176993489265442,-1.246710181236267,-1.2118518352508545,-1.2815686464309692,-1.176993489265442,-1.2292810678482056,-1.2641394138336182,-1.3687145709991455,-1.3164269924163818,-1.1247059106826782,-1.3861438035964966,-1.1944226026535034,-1.351285457611084,-1.490718960762024,-1.351285457611084,-1.2118518352508545,-1.2292810678482056,-1.1944226026535034,-1.3164269924163818,-1.0549890995025635,-1.246710181236267,-1.3164269924163818,-1.2815686464309692,-1.2989978790283203,-1.3687145709991455,-1.4558606147766113,-1.3861438035964966,-1.351285457611084,-1.4384313821792603,-1.3164269924163818,-1.4210021495819092,-1.333856225013733,-1.490718960762024,-1.4035730361938477,-1.333856225013733,-1.3861438035964966,-1.508148193359375,-1.3861438035964966,-1.351285457611084,-1.4210021495819092,-1.333856225013733,-1.3687145709991455,-1.3687145709991455,-1.2641394138336182,-1.5430065393447876,-1.4384313821792603,-1.647581696510315,-1.4732897281646729,-1.4558606147766113,-1.490718960762024,-1.490718960762024,-1.4210021495819092,-1.1944226026535034,-1.4035730361938477,-1.333856225013733,-1.3861438035964966,-1.4558606147766113,-1.2641394138336182,-1.5255773067474365,-1.333856225013733,-1.4384313821792603,-1.4732897281646729,-1.508148193359375,-1.490718960762024,-1.6998692750930786,-1.2815686464309692,-1.3164269924163818,-1.4558606147766113,-1.5430065393447876,-1.4210021495819092,-1.2815686464309692,-1.2641394138336182,-1.351285457611084,-1.4384313821792603,-1.333856225013733,-1.5952941179275513,-1.5430065393447876,-1.4558606147766113,-1.5778648853302002,-1.6824400424957275,-1.6127233505249023,-1.7172985076904297,-1.804444432258606,-1.7347276210784912,-1.804444432258606,-1.7521568536758423,-1.7695860862731934,-1.7695860862731934,-1.804444432258606,-0.6715468168258667,-0.9852723479270935,-0.7412636280059814,-0.5321133136749268,-0.18352940678596497,0.7925054430961609,0.11276688426733017,-1.1072766780853271,-1.6998692750930786,-1.2815686464309692,-1.6998692750930786,-0.9678431153297424,-0.8458387851715088,-1.2989978790283203,-1.6127233505249023,-1.0375598669052124,-1.1072766780853271,-0.7586928009986877,0.2696296274662018,-0.619259238243103,-1.0027015209197998,-0.7761220335960388,-0.9504139423370361,-0.619259238243103,-0.16610021889209747,1.6291067600250244,0.8099346160888672,1.1236600875854492,-0.06152505427598953,-0.7412636280059814,-1.0201307535171509,-1.3861438035964966,-0.5844008922576904,-0.7586928009986877,-0.1312418282032013,0.6356427073478699,1.2805228233337402,0.7576470375061035,0.13019607961177826,-0.23581700026988983,0.5136383175849915,0.2522004246711731,-0.9678431153297424,-0.21838779747486115,0.46135076880455017,-0.5669716596603394,0.0604793019592762,-0.39267975091934204,-1.5430065393447876,-0.7761220335960388,-1.0724183320999146,-1.7347276210784912,-1.6301524639129639,-1.7347276210784912,-1.7347276210784912,-1.5952941179275513,-1.5952941179275513,-1.5952941179275513,-1.6127233505249023,-1.4210021495819092,-1.5778648853302002,-1.4210021495819092,-1.4558606147766113,-1.3861438035964966,-1.5255773067474365,-1.4035730361938477,-1.5255773067474365,-1.4210021495819092,-1.4732897281646729,-1.4210021495819092,-1.3861438035964966,-1.6301524639129639,-1.490718960762024,-1.490718960762024,-1.5255773067474365,-1.6127233505249023,-1.7347276210784912,-1.490718960762024,-1.176993489265442,-1.4732897281646729,-1.3861438035964966,-1.4384313821792603],[-1.804444432258606,-1.7347276210784912,-1.804444432258606,-1.7347276210784912,-1.7695860862731934,-1.5604357719421387,-1.5255773067474365,-1.490718960762024,-1.4210021495819092,-1.647581696510315,-1.5604357719421387,-1.351285457611084,-1.4558606147766113,-1.2989978790283203,-1.4732897281646729,-1.0027015209197998,-1.4384313821792603,-1.3861438035964966,-1.1944226026535034,-1.176993489265442,-1.2815686464309692,-1.246710181236267,-1.3861438035964966,-1.1595642566680908,-1.3687145709991455,-1.1944226026535034,-1.333856225013733,-1.4210021495819092,-1.2815686464309692,-1.4384313821792603,-1.351285457611084,-1.351285457611084,-1.4035730361938477,-1.4732897281646729,-1.490718960762024,-1.4210021495819092,-1.351285457611084,-1.5255773067474365,-1.3861438035964966,-1.246710181236267,-1.490718960762024,-1.5604357719421387,-1.4384313821792603,-1.333856225013733,-1.6127233505249023,-1.4384313821792603,-1.5952941179275513,-1.4732897281646729,-1.2815686464309692,-1.2989978790283203,-1.2641394138336182,-1.5430065393447876,-1.2989978790283203,-1.4210021495819092,-1.351285457611084,-1.3861438035964966,-1.351285457611084,-1.508148193359375,-1.3861438035964966,-1.333856225013733,-1.508148193359375,-1.2815686464309692,-1.4210021495819092,-1.3687145709991455,-1.2815686464309692,-1.4558606147766113,-1.176993489265442,-1.2118518352508545,-1.176993489265442,-1.333856225013733,-1.4035730361938477,-1.246710181236267,-1.4558606147766113,-1.4384313821792603,-1.5430065393447876,-1.3687145709991455,-1.3861438035964966,-1.3164269924163818,-1.4558606147766113,-1.4732897281646729,-1.3861438035964966,-1.4558606147766113,-1.665010929107666,-1.4732897281646729,-1.490718960762024,-1.5604357719421387,-1.3861438035964966,-1.7521568536758423,-1.4732897281646729,-1.804444432258606,-1.7695860862731934,-1.4210021495819092,-1.5604357719421387,-1.4558606147766113,-1.2118518352508545,-1.804444432258606,1.2979520559310913,2.4482789039611816,2.622570753097534,2.4482789039611816,1.7162526845932007,-1.2118518352508545,-1.1421350240707397,-1.5604357719421387,-1.5430065393447876,-1.4384313821792603,-1.246710181236267,-1.5604357719421387,-1.3687145709991455,-1.351285457611084,-1.351285457611084,-1.4384313821792603,-1.5430065393447876,-1.4732897281646729,-1.4384313821792603,-1.5430065393447876,-1.5778648853302002,-1.4210021495819092,-1.5604357719421387,-1.5604357719421387,-1.490718960762024,-1.4384313821792603,-1.3861438035964966,-1.4210021495819092,-1.490718960762024,-1.4384313821792603,-1.5604357719421387,-1.5430065393447876,-1.5604357719421387,-1.5952941179275513,-1.6824400424957275,-1.6301524639129639,-1.5255773067474365,-1.7347276210784912,-1.7521568536758423,-1.7521568536758423,-1.804444432258606,-1.804444432258606,-1.7695860862731934,-1.7521568536758423,-1.5952941179275513,-0.5669716596603394,0.18248365819454193,0.4090631902217865,0.6007843017578125,-0.6366884708404541,1.2282352447509766,0.13019607961177826,0.30448800325393677,-0.6541176438331604,-0.7935512065887451,-1.6824400424957275,-1.333856225013733,-0.5495424866676331,-1.2989978790283203,-0.6366884708404541,-1.0375598669052124,-0.9852723479270935,-0.8981263637542725,-1.2989978790283203,-1.176993489265442,-0.270675390958786,-1.490718960762024,-0.9678431153297424,-1.089847445487976,-0.7761220335960388,-0.6541176438331604,0.32191720604896545,0.32191720604896545,1.036514163017273,-0.5321133136749268,1.2630937099456787,-0.06152505427598953,0.02562091499567032,1.2805228233337402,1.175947666168213,0.2173420488834381,0.5833551287651062,0.7402178645133972,0.30448800325393677,-0.37525054812431335,0.6182135343551636,-0.14867103099822998,0.07790849357843399,-1.804444432258606,-0.7935512065887451,-0.2881045639514923,-0.3229629695415497,-0.06152505427598953,-0.2532461881637573,0.09533768892288208,-1.1595642566680908,-1.3861438035964966,-1.2815686464309692,-0.02666666731238365,-1.4210021495819092,-1.5952941179275513,-1.804444432258606,-1.7347276210784912,-1.7695860862731934,-1.6301524639129639,-1.7521568536758423,-1.665010929107666,-1.351285457611084,-1.804444432258606,-1.4035730361938477,-1.5255773067474365,-1.490718960762024,-1.5778648853302002,-1.6301524639129639,-1.5604357719421387,-1.6127233505249023,-1.6301524639129639,-1.4558606147766113,-1.508148193359375,-1.5430065393447876,-1.4035730361938477,-1.4384313821792603,-1.647581696510315,-1.5255773067474365,-1.490718960762024,-1.665010929107666,-1.5430065393447876,-1.4035730361938477],[-1.804444432258606,-1.7695860862731934,-1.804444432258606,-1.7521568536758423,-1.7521568536758423,-1.6127233505249023,-1.490718960762024,-1.3861438035964966,-1.4210021495819092,-1.4210021495819092,-1.4384313821792603,-1.2815686464309692,-1.2118518352508545,-1.246710181236267,-1.2292810678482056,-1.2118518352508545,-1.3164269924163818,-1.1421350240707397,-1.176993489265442,-1.1595642566680908,-1.2118518352508545,-1.1944226026535034,-1.0027015209197998,-1.4384313821792603,-1.0724183320999146,-1.1595642566680908,-1.246710181236267,-1.0027015209197998,-1.0724183320999146,-1.4035730361938477,-1.1247059106826782,-1.2989978790283203,-1.2815686464309692,-1.2641394138336182,-1.246710181236267,-1.1944226026535034,-1.333856225013733,-1.508148193359375,-1.4558606147766113,-1.333856225013733,-1.4384313821792603,-1.4732897281646729,-1.4558606147766113,-1.5952941179275513,-1.5255773067474365,-1.5604357719421387,-1.6127233505249023,-1.6301524639129639,-1.4732897281646729,-1.5255773067474365,-1.6301524639129639,-1.5255773067474365,-1.5430065393447876,-1.6127233505249023,-1.5430065393447876,-1.4210021495819092,-1.508148193359375,-1.351285457611084,-1.351285457611084,-1.4384313821792603,-1.4035730361938477,-1.5430065393447876,-1.3164269924163818,-1.5430065393447876,-1.4210021495819092,-1.2815686464309692,-1.2641394138336182,-1.2292810678482056,-1.3687145709991455,-1.3861438035964966,-1.5430065393447876,-1.5430065393447876,-1.4558606147766113,-1.3861438035964966,-1.4384313821792603,-1.4384313821792603,-1.4732897281646729,-1.5430065393447876,-1.5604357719421387,-1.5255773067474365,-1.647581696510315,-1.4558606147766113,-1.6824400424957275,-1.7347276210784912,-1.508148193359375,-1.246710181236267,-1.804444432258606,-1.3861438035964966,-0.9155555367469788,-1.2641394138336182,-1.5952941179275513,-0.8632679581642151,-1.3687145709991455,-1.6998692750930786,1.6291067600250244,2.587712526321411,1.6988235712051392,1.6988235712051392,2.4134204387664795,2.395991325378418,2.465708017349243,-1.1595642566680908,-1.6301524639129639,-1.5778648853302002,-1.490718960762024,-1.5604357719421387,-1.508148193359375,-1.490718960762024,-1.5604357719421387,-1.4732897281646729,-1.5604357719421387,-1.5255773067474365,-1.5778648853302002,-1.5430065393447876,-1.508148193359375,-1.508148193359375,-1.5430065393447876,-1.5430065393447876,-1.647581696510315,-1.5778648853302002,-1.6301524639129639,-1.5778648853302002,-1.5255773067474365,-1.4384313821792603,-1.490718960762024,-1.4558606147766113,-1.508148193359375,-1.5430065393447876,-1.665010929107666,-1.665010929107666,-1.6824400424957275,-1.7870151996612549,-1.7695860862731934,-1.7347276210784912,-1.7870151996612549,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.7695860862731934,-1.804444432258606,-1.508148193359375,-0.5146840810775757,1.175947666168213,-0.7064052224159241,-0.305533766746521,-0.4798257052898407,0.2522004246711731,-1.089847445487976,-1.0027015209197998,-1.3164269924163818,-0.6715468168258667,-1.0724183320999146,-0.7412636280059814,-1.0549890995025635,-1.2989978790283203,-0.5495424866676331,-0.6889760494232178,-0.427538126707077,-0.9329847693443298,-0.2881045639514923,-0.6366884708404541,-0.02666666731238365,-0.8458387851715088,-1.0375598669052124,-0.8109803795814514,-0.16610021889209747,0.9842265844345093,1.4025272130966187,1.524531602859497,2.622570753097534,0.49620914459228516,0.7227886915206909,0.8447930216789246,0.6705011129379272,-0.2881045639514923,-0.18352940678596497,-0.5669716596603394,-0.6541176438331604,0.7925054430961609,-0.06152505427598953,0.5833551287651062,0.32191720604896545,0.7925054430961609,-0.8632679581642151,-0.5146840810775757,-0.18352940678596497,-0.270675390958786,1.5942484140396118,0.5659258961677551,0.2347712367773056,-0.21838779747486115,-0.9852723479270935,-0.9504139423370361,-1.1072766780853271,-1.0027015209197998,-1.1072766780853271,-1.804444432258606,-1.665010929107666,-1.4384313821792603,-1.6301524639129639,-1.804444432258606,-1.804444432258606,-1.665010929107666,-1.6301524639129639,-1.4732897281646729,-0.9329847693443298,-1.490718960762024,-1.5952941179275513,-1.647581696510315,-1.5778648853302002,-1.6127233505249023,-1.5430065393447876,-1.5604357719421387,-1.508148193359375,-1.508148193359375,-1.5952941179275513,-1.5255773067474365,-1.5430065393447876,-1.508148193359375,-1.4732897281646729,-1.665010929107666,-1.4210021495819092,-1.490718960762024],[-1.804444432258606,-1.7695860862731934,-1.7347276210784912,-1.6998692750930786,-1.7870151996612549,-1.6301524639129639,-1.5604357719421387,-1.3861438035964966,-1.508148193359375,-1.4035730361938477,-1.4732897281646729,-1.2292810678482056,-1.2292810678482056,-1.1247059106826782,-1.1595642566680908,-1.2641394138336182,-1.1072766780853271,-1.1072766780853271,-1.176993489265442,-1.0724183320999146,-1.1944226026535034,-1.0724183320999146,-1.2118518352508545,-0.8284096121788025,-1.0375598669052124,-0.9852723479270935,-1.0027015209197998,-1.2292810678482056,-0.9155555367469788,-1.2292810678482056,-0.9678431153297424,-1.1421350240707397,-1.0027015209197998,-1.0724183320999146,-1.1247059106826782,-1.2118518352508545,-1.176993489265442,-1.176993489265442,-1.2292810678482056,-1.1247059106826782,-1.089847445487976,-1.2118518352508545,-1.2989978790283203,-1.2815686464309692,-1.246710181236267,-1.2641394138336182,-1.089847445487976,-1.3164269924163818,-1.246710181236267,-1.1072766780853271,-1.2118518352508545,-1.351285457611084,-1.2641394138336182,-1.351285457611084,-1.351285457611084,-1.351285457611084,-1.5430065393447876,-1.4035730361938477,-1.4558606147766113,-1.508148193359375,-1.490718960762024,-1.490718960762024,-1.4732897281646729,-1.804444432258606,-1.647581696510315,-1.5604357719421387,-1.6998692750930786,-1.7172985076904297,-1.647581696510315,-1.665010929107666,-1.7347276210784912,-1.7521568536758423,-1.647581696510315,-1.7521568536758423,-1.804444432258606,-1.665010929107666,-1.7521568536758423,-1.7172985076904297,-1.7695860862731934,-1.5778648853302002,-1.5778648853302002,-1.6301524639129639,-0.5669716596603394,-1.0549890995025635,-1.176993489265442,-0.18352940678596497,-0.7935512065887451,-1.0027015209197998,-0.340392142534256,-0.340392142534256,0.2522004246711731,-0.09638344496488571,1.332810401916504,2.483137369155884,1.681394338607788,1.8033987283706665,1.8905446529388428,2.640000104904175,2.640000104904175,2.640000104904175,2.27398681640625,-0.270675390958786,-1.7521568536758423,-1.665010929107666,-1.647581696510315,-1.665010929107666,-1.7870151996612549,-1.5952941179275513,-1.665010929107666,-1.6301524639129639,-1.647581696510315,-1.6301524639129639,-1.6301524639129639,-1.5604357719421387,-1.6127233505249023,-1.6998692750930786,-1.7695860862731934,-1.6998692750930786,-1.647581696510315,-1.647581696510315,-1.7695860862731934,-1.6998692750930786,-1.6301524639129639,-1.7347276210784912,-1.6824400424957275,-1.804444432258606,-1.7521568536758423,-1.7695860862731934,-1.7521568536758423,-1.7870151996612549,-1.7870151996612549,-1.7695860862731934,-1.7870151996612549,-1.7870151996612549,-1.7695860862731934,-1.804444432258606,-1.7870151996612549,-1.7695860862731934,-1.804444432258606,-1.804444432258606,-0.9852723479270935,-0.06152505427598953,-1.2815686464309692,-0.14867103099822998,0.6879302859306335,0.28705883026123047,-1.1421350240707397,1.0016558170318604,-0.1138126328587532,0.5484967231750488,-0.9678431153297424,-0.5146840810775757,-0.9329847693443298,-1.176993489265442,-0.23581700026988983,-1.089847445487976,-0.7412636280059814,-1.2292810678482056,0.04305011034011841,-1.089847445487976,-1.3164269924163818,-1.0724183320999146,-0.427538126707077,-0.5669716596603394,-0.7064052224159241,-1.508148193359375,0.5136383175849915,0.8622221946716309,1.5593899488449097,1.175947666168213,0.5136383175849915,1.838257074356079,0.6182135343551636,0.5310675501823425,0.5136383175849915,0.4090631902217865,0.18248365819454193,-0.462396502494812,-0.5146840810775757,-0.23581700026988983,-0.270675390958786,0.33934640884399414,1.0713725090026855,-0.7935512065887451,-1.6127233505249023,-1.0375598669052124,-1.0724183320999146,-0.20095860958099365,-0.4972549080848694,0.11276688426733017,-0.7761220335960388,-0.09638344496488571,-1.089847445487976,-0.5321133136749268,-0.4798257052898407,-0.9329847693443298,-0.09638344496488571,-1.804444432258606,-1.5778648853302002,-1.1421350240707397,-1.4035730361938477,-1.7695860862731934,-1.4035730361938477,-1.4384313821792603,-0.9852723479270935,0.5310675501823425,-0.21838779747486115,-1.2641394138336182,-1.6824400424957275,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.7870151996612549,-1.7172985076904297,-1.6998692750930786,-1.6127233505249023,-1.6998692750930786,-1.647581696510315,-1.490718960762024,-1.508148193359375,-1.5255773067474365,-1.6301524639129639,-1.508148193359375,-1.5604357719421387],[-1.7695860862731934,-1.665010929107666,-1.7172985076904297,-1.7695860862731934,-1.6824400424957275,-1.665010929107666,-1.4035730361938477,-1.3687145709991455,-1.0724183320999146,-1.2292810678482056,-1.4035730361938477,-1.176993489265442,-1.1421350240707397,-1.089847445487976,-0.9155555367469788,-1.2815686464309692,-1.1595642566680908,-1.0201307535171509,-0.8981263637542725,-0.8806971907615662,-0.9504139423370361,-0.9678431153297424,-0.8109803795814514,-1.2292810678482056,-1.2292810678482056,-0.9852723479270935,-0.8458387851715088,-0.8806971907615662,-0.8284096121788025,-1.089847445487976,-0.7412636280059814,-1.0549890995025635,-1.0201307535171509,-0.8632679581642151,-0.9678431153297424,-1.1072766780853271,-1.2292810678482056,-0.9852723479270935,-1.2292810678482056,-0.9504139423370361,-0.8284096121788025,-0.9852723479270935,-1.1072766780853271,-1.0549890995025635,-1.176993489265442,-1.176993489265442,-1.1421350240707397,-1.1421350240707397,-0.9155555367469788,-1.2118518352508545,-1.0724183320999146,-1.3687145709991455,-1.333856225013733,-1.2815686464309692,-1.2292810678482056,-1.4210021495819092,-1.2641394138336182,-1.3164269924163818,-1.246710181236267,-1.1944226026535034,-1.2989978790283203,-1.4035730361938477,-1.3861438035964966,-1.246710181236267,-1.3164269924163818,-1.4384313821792603,-1.5255773067474365,-1.4210021495819092,-1.4384313821792603,-1.4384313821792603,-1.351285457611084,-1.5604357719421387,-1.490718960762024,-1.4732897281646729,-1.5778648853302002,-1.508148193359375,-1.4210021495819092,-1.5604357719421387,-1.490718960762024,-0.35782134532928467,0.4264923632144928,-1.4210021495819092,1.1585185527801514,1.4896732568740845,0.8622221946716309,0.8099346160888672,0.28705883026123047,-0.4798257052898407,0.09533768892288208,0.18248365819454193,1.2282352447509766,0.5833551287651062,-1.1421350240707397,1.332810401916504,1.977690577507019,2.047407388687134,1.5768191814422607,2.483137369155884,2.622570753097534,2.4134204387664795,2.151982545852661,-1.7521568536758423,-1.804444432258606,-1.7695860862731934,-1.804444432258606,-1.804444432258606,-1.7347276210784912,-1.804444432258606,-1.7870151996612549,-1.7521568536758423,-1.7695860862731934,-1.804444432258606,-1.7347276210784912,-1.804444432258606,-1.804444432258606,-1.665010929107666,-1.7870151996612549,-1.7695860862731934,-1.7870151996612549,-1.7521568536758423,-1.647581696510315,-1.7172985076904297,-1.7521568536758423,-1.7870151996612549,-1.7870151996612549,-1.7695860862731934,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.7347276210784912,-1.804444432258606,-1.7870151996612549,-1.7695860862731934,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.7347276210784912,-1.804444432258606,0.2347712367773056,1.1236600875854492,0.28705883026123047,-1.089847445487976,0.18248365819454193,0.5484967231750488,-0.7238343954086304,-0.35782134532928467,2.3785619735717773,1.036514163017273,0.19991286098957062,1.0190849304199219,-1.0027015209197998,-0.7935512065887451,-0.7412636280059814,-0.39267975091934204,-0.7064052224159241,-1.4035730361938477,-0.6715468168258667,-0.7238343954086304,-0.5146840810775757,-0.619259238243103,-1.1421350240707397,-0.5844008922576904,-0.39267975091934204,-0.5321133136749268,-1.351285457611084,-0.7586928009986877,0.14762526750564575,-0.20095860958099365,1.6116775274276733,0.32191720604896545,1.1062309741973877,0.3567756116390228,0.0604793019592762,-0.5146840810775757,0.5310675501823425,-0.6715468168258667,-0.9678431153297424,-1.0724183320999146,-0.5844008922576904,-0.6018300652503967,-0.18352940678596497,0.11276688426733017,0.09533768892288208,-1.3687145709991455,-1.3164269924163818,-0.8806971907615662,-1.2292810678482056,-0.7935512065887451,-0.6541176438331604,-0.340392142534256,-0.07895424962043762,-0.5146840810775757,-1.2641394138336182,-0.7238343954086304,-0.305533766746521,-0.4798257052898407,-1.2989978790283203,-1.4732897281646729,-1.6127233505249023,-1.5604357719421387,-1.3164269924163818,-1.2118518352508545,-0.8981263637542725,-0.5495424866676331,-0.04409585893154144,-0.8284096121788025,-0.9852723479270935,-1.4558606147766113,-1.6824400424957275,-1.6824400424957275,-1.7870151996612549,-1.7695860862731934,-1.7870151996612549,-1.7695860862731934,-1.804444432258606,-1.804444432258606,-1.7870151996612549,-1.6998692750930786,-1.6824400424957275,-1.647581696510315,-1.7172985076904297,-1.508148193359375,-1.5430065393447876],[-1.7695860862731934,-1.6998692750930786,-1.6127233505249023,-1.7347276210784912,-1.4384313821792603,-1.4732897281646729,-1.333856225013733,-1.176993489265442,-1.0724183320999146,-1.1072766780853271,-1.0549890995025635,-1.0724183320999146,-1.1072766780853271,-1.176993489265442,-1.1247059106826782,-0.9329847693443298,-1.1944226026535034,-0.9852723479270935,-1.176993489265442,-0.8806971907615662,-0.8458387851715088,-0.6889760494232178,-1.0201307535171509,-0.9155555367469788,-0.8284096121788025,-1.1072766780853271,-0.7064052224159241,-0.9678431153297424,-1.0375598669052124,-1.1421350240707397,-0.39267975091934204,-0.9329847693443298,-0.9329847693443298,-0.9155555367469788,-1.0201307535171509,-0.9678431153297424,-0.6366884708404541,-1.0549890995025635,-0.8632679581642151,-1.0549890995025635,-1.1595642566680908,-0.8981263637542725,-0.9678431153297424,-0.8981263637542725,-0.9504139423370361,-1.2815686464309692,-1.0201307535171509,-1.176993489265442,-1.0549890995025635,-1.0549890995025635,-1.0375598669052124,-1.0724183320999146,-1.0549890995025635,-0.8806971907615662,-0.8806971907615662,-1.089847445487976,-1.1421350240707397,-1.1595642566680908,-1.246710181236267,-1.1421350240707397,-1.2989978790283203,-1.1421350240707397,-1.351285457611084,-1.3164269924163818,-1.2989978790283203,-1.246710181236267,-1.2118518352508545,-1.4384313821792603,-1.4210021495819092,-1.3687145709991455,-1.4558606147766113,-1.3164269924163818,-1.4558606147766113,-1.4732897281646729,-1.4210021495819092,-1.508148193359375,-1.2118518352508545,-1.333856225013733,-0.5844008922576904,1.2630937099456787,1.367668867111206,0.07790849357843399,1.681394338607788,1.5768191814422607,0.8447930216789246,0.4090631902217865,0.5484967231750488,-0.6366884708404541,0.02562091499567032,1.0190849304199219,0.14762526750564575,0.6356427073478699,2.361132860183716,1.036514163017273,0.3742047846317291,2.2216992378234863,1.977690577507019,2.587712526321411,2.552854061126709,2.6051416397094727,1.838257074356079,-1.804444432258606,-1.665010929107666,-1.7521568536758423,-1.7521568536758423,-1.7695860862731934,-1.804444432258606,-1.7870151996612549,-1.7695860862731934,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.7347276210784912,-1.7870151996612549,-1.7870151996612549,-1.7870151996612549,-1.7870151996612549,-1.804444432258606,-1.7521568536758423,-1.7870151996612549,-1.7870151996612549,-1.7695860862731934,-1.7870151996612549,-1.7347276210784912,-1.7695860862731934,-1.804444432258606,-1.7695860862731934,-1.7870151996612549,-1.7870151996612549,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.7695860862731934,-1.7695860862731934,-1.6998692750930786,-1.7695860862731934,0.49620914459228516,0.3742047846317291,-0.427538126707077,-0.4798257052898407,-0.4972549080848694,-0.9678431153297424,-1.4384313821792603,-0.8458387851715088,-0.619259238243103,-0.5669716596603394,1.3153812885284424,0.6356427073478699,-0.462396502494812,0.11276688426733017,0.5659258961677551,-0.5844008922576904,-1.2641394138336182,-0.20095860958099365,-1.333856225013733,0.07790849357843399,-1.0724183320999146,-0.21838779747486115,-0.7064052224159241,-0.14867103099822998,-0.35782134532928467,-0.9504139423370361,-1.4732897281646729,-1.1421350240707397,-1.1595642566680908,0.32191720604896545,0.5484967231750488,0.6705011129379272,0.5484967231750488,1.8905446529388428,1.350239634513855,-0.7238343954086304,-0.35782134532928467,-0.462396502494812,-0.2881045639514923,-0.37525054812431335,-1.2118518352508545,-0.16610021889209747,-0.8632679581642151,-0.6541176438331604,0.13019607961177826,-1.0549890995025635,-0.8109803795814514,-1.6127233505249023,-0.9852723479270935,-1.0724183320999146,-0.5844008922576904,-1.5778648853302002,0.04305011034011841,0.3916339874267578,-0.6366884708404541,-0.619259238243103,-0.8806971907615662,0.47877994179725647,-0.2881045639514923,-0.7064052224159241,-0.4798257052898407,-0.07895424962043762,-0.9504139423370361,-1.0027015209197998,-0.6366884708404541,-0.8109803795814514,-0.07895424962043762,0.16505447030067444,0.7925054430961609,-0.8632679581642151,-1.2118518352508545,-1.2292810678482056,-1.3861438035964966,-1.6824400424957275,-1.6998692750930786,-1.6301524639129639,-1.508148193359375,-1.7695860862731934,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.7695860862731934,-1.804444432258606,-1.804444432258606,-1.665010929107666],[-1.665010929107666,-1.6998692750930786,-1.6301524639129639,-1.7870151996612549,-1.2989978790283203,-1.5778648853302002,-1.176993489265442,-1.176993489265442,-1.0724183320999146,-0.8284096121788025,-0.9678431153297424,-1.246710181236267,-1.1072766780853271,-1.1944226026535034,-1.0549890995025635,-0.9504139423370361,-0.6889760494232178,-0.8109803795814514,-0.7761220335960388,-0.9852723479270935,-0.7412636280059814,-1.1247059106826782,-0.9852723479270935,-0.6889760494232178,-0.9678431153297424,-1.0201307535171509,-1.0549890995025635,-0.8458387851715088,-1.1072766780853271,-0.7238343954086304,-0.9678431153297424,-0.7935512065887451,-0.9155555367469788,-1.0027015209197998,-0.6889760494232178,-0.6889760494232178,-0.9852723479270935,-0.8806971907615662,-0.7935512065887451,-0.7238343954086304,-0.8806971907615662,-1.0549890995025635,-0.9678431153297424,-1.0549890995025635,-1.1072766780853271,-1.0375598669052124,-0.8284096121788025,-1.176993489265442,-1.1595642566680908,-0.8458387851715088,-1.0375598669052124,-0.9155555367469788,-1.0027015209197998,-1.0549890995025635,-1.0201307535171509,-0.9678431153297424,-0.9504139423370361,-1.089847445487976,-1.1944226026535034,-1.246710181236267,-0.9504139423370361,-1.176993489265442,-1.2292810678482056,-1.2815686464309692,-1.1944226026535034,-1.1944226026535034,-1.2989978790283203,-1.2815686464309692,-1.2641394138336182,-1.2815686464309692,-1.333856225013733,-1.246710181236267,-1.333856225013733,-1.2118518352508545,-1.1944226026535034,-1.2989978790283203,-1.4210021495819092,-0.8284096121788025,1.0016558170318604,1.4548147916793823,1.6988235712051392,0.7750762701034546,1.524531602859497,1.7859694957733154,1.3153812885284424,0.6007843017578125,1.2979520559310913,0.32191720604896545,0.11276688426733017,1.0190849304199219,-0.4798257052898407,0.3916339874267578,1.8033987283706665,1.4199564456939697,0.7227886915206909,1.6291067600250244,2.0299782752990723,2.5702831745147705,2.361132860183716,1.8731154203414917,1.838257074356079,-1.6824400424957275,-1.7347276210784912,-1.6998692750930786,-1.6998692750930786,-1.647581696510315,-1.6998692750930786,-1.7521568536758423,-1.7870151996612549,-1.7521568536758423,-1.7521568536758423,-1.7521568536758423,-1.6998692750930786,-1.7521568536758423,-1.7347276210784912,-1.7347276210784912,-1.7347276210784912,-1.7172985076904297,-1.7347276210784912,-1.7870151996612549,-1.7695860862731934,-1.7870151996612549,-1.7870151996612549,-1.804444432258606,-1.804444432258606,-1.7870151996612549,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.7870151996612549,-1.7870151996612549,-1.7870151996612549,-1.804444432258606,-1.804444432258606,-1.7521568536758423,-1.804444432258606,-1.7695860862731934,-1.804444432258606,0.8273638486862183,1.1236600875854492,0.09533768892288208,-1.1421350240707397,-1.490718960762024,-0.8458387851715088,-1.2815686464309692,-1.5255773067474365,-1.6127233505249023,-0.6889760494232178,1.0713725090026855,-0.1312418282032013,1.0190849304199219,0.5136383175849915,1.7162526845932007,0.49620914459228516,-0.1138126328587532,-0.14867103099822998,-0.5146840810775757,-0.462396502494812,-0.1138126328587532,1.1062309741973877,0.0604793019592762,-1.0549890995025635,-0.3229629695415497,-0.8632679581642151,-1.508148193359375,-0.8806971907615662,-0.8632679581642151,-0.7064052224159241,-0.6018300652503967,-0.270675390958786,1.1585185527801514,1.1410893201828003,1.6116775274276733,-0.6018300652503967,0.28705883026123047,-0.7935512065887451,-0.4449673295021057,-0.5321133136749268,-0.8109803795814514,-0.18352940678596497,-1.2118518352508545,-1.176993489265442,-0.04409585893154144,-0.5146840810775757,-1.246710181236267,-1.2118518352508545,-1.5778648853302002,-0.8981263637542725,-0.7238343954086304,-0.41010892391204834,-0.9678431153297424,-1.0549890995025635,-0.37525054812431335,-1.0549890995025635,-1.0549890995025635,-0.305533766746521,0.02562091499567032,-0.2532461881637573,-0.7064052224159241,-0.3229629695415497,0.4439215660095215,-1.1421350240707397,-0.9155555367469788,-1.1072766780853271,-0.41010892391204834,-0.3229629695415497,0.14762526750564575,-0.35782134532928467,-1.3164269924163818,-1.4210021495819092,-1.6301524639129639,-1.6998692750930786,-1.7172985076904297,-1.6127233505249023,-1.5604357719421387,-1.7695860862731934,-1.7347276210784912,-1.7347276210784912,-1.804444432258606,-1.804444432258606,-1.7521568536758423,-1.7347276210784912,-1.7347276210784912,-1.7695860862731934],[-1.7695860862731934,-1.6301524639129639,-1.6127233505249023,-1.804444432258606,-1.3164269924163818,-1.6127233505249023,-1.3687145709991455,-1.3164269924163818,-0.8284096121788025,-0.9504139423370361,-0.9329847693443298,-1.1421350240707397,-1.0724183320999146,-0.9504139423370361,-0.8632679581642151,-0.7586928009986877,-1.0724183320999146,-1.176993489265442,-0.7935512065887451,-1.0549890995025635,-0.7064052224159241,-0.7064052224159241,-1.0375598669052124,-0.7586928009986877,-0.8632679581642151,-1.0201307535171509,-1.0201307535171509,-0.8806971907615662,-0.9852723479270935,-0.8458387851715088,-0.7761220335960388,-0.7935512065887451,-0.8981263637542725,-0.9155555367469788,-0.7064052224159241,-0.8284096121788025,-0.8632679581642151,-0.8806971907615662,-1.0201307535171509,-1.0201307535171509,-1.0375598669052124,-0.7586928009986877,-0.8109803795814514,-0.8284096121788025,-0.9155555367469788,-1.0549890995025635,-1.0027015209197998,-0.9155555367469788,-1.0724183320999146,-0.8806971907615662,-0.8109803795814514,-1.1247059106826782,-0.9852723479270935,-0.9678431153297424,-1.1247059106826782,-1.1247059106826782,-0.9852723479270935,-1.0549890995025635,-1.0724183320999146,-1.089847445487976,-1.2989978790283203,-0.8981263637542725,-1.1595642566680908,-1.089847445487976,-1.2118518352508545,-1.176993489265442,-1.2815686464309692,-1.176993489265442,-1.176993489265442,-1.2641394138336182,-1.176993489265442,-1.0549890995025635,-1.176993489265442,-1.2292810678482056,-1.2292810678482056,-1.2118518352508545,-1.0027015209197998,0.5659258961677551,1.0888017416000366,1.6291067600250244,1.8731154203414917,0.8622221946716309,1.6291067600250244,1.7511111497879028,1.3153812885284424,1.193376898765564,1.2805228233337402,-0.23581700026988983,0.5136383175849915,1.1062309741973877,-0.09638344496488571,0.18248365819454193,-0.6018300652503967,2.1868410110473633,1.2805228233337402,0.47877994179725647,2.3437037467956543,2.6051416397094727,2.3437037467956543,1.8033987283706665,-1.4384313821792603,-1.5778648853302002,-1.647581696510315,-1.7870151996612549,-1.7172985076904297,-1.647581696510315,-1.6824400424957275,-1.7172985076904297,-1.7172985076904297,-1.665010929107666,-1.6301524639129639,-1.647581696510315,-1.5952941179275513,-1.6998692750930786,-1.665010929107666,-1.7347276210784912,-1.7347276210784912,-1.6824400424957275,-1.7172985076904297,-1.665010929107666,-1.6127233505249023,-1.7521568536758423,-1.6824400424957275,-1.7347276210784912,-1.7521568536758423,-1.7521568536758423,-1.804444432258606,-1.7695860862731934,-1.7695860862731934,-1.7695860862731934,-1.7695860862731934,-1.7695860862731934,-1.7172985076904297,-1.6824400424957275,-1.804444432258606,-1.7695860862731934,-1.4558606147766113,-0.7935512065887451,0.30448800325393677,0.9319390058517456,-0.5321133136749268,-1.2815686464309692,-1.5952941179275513,-1.246710181236267,-1.4035730361938477,-0.6715468168258667,-1.2989978790283203,-0.462396502494812,0.7750762701034546,-0.23581700026988983,1.4025272130966187,1.1062309741973877,1.0190849304199219,1.7162526845932007,1.036514163017273,0.02562091499567032,-1.490718960762024,-1.351285457611084,1.6116775274276733,0.4439215660095215,0.4090631902217865,-0.1312418282032013,-0.2532461881637573,-0.6018300652503967,-0.8632679581642151,-1.5255773067474365,-0.7935512065887451,-1.0375598669052124,-0.16610021889209747,-0.1138126328587532,1.0888017416000366,0.7227886915206909,1.524531602859497,-0.2532461881637573,-0.7064052224159241,-1.2292810678482056,-0.305533766746521,-0.9155555367469788,-0.619259238243103,-0.7935512065887451,-0.5495424866676331,-0.6018300652503967,-0.1138126328587532,-0.09638344496488571,-1.3687145709991455,-1.6824400424957275,-1.0375598669052124,-1.1072766780853271,-1.0027015209197998,-1.1595642566680908,-0.9678431153297424,-1.2118518352508545,-0.9504139423370361,-1.2118518352508545,-1.4558606147766113,-0.6715468168258667,-1.0724183320999146,-1.2292810678482056,0.2347712367773056,0.2173420488834381,0.32191720604896545,0.30448800325393677,-0.41010892391204834,-1.0027015209197998,-0.5146840810775757,-0.340392142534256,-0.16610021889209747,-0.5844008922576904,-1.2815686464309692,-1.246710181236267,-1.647581696510315,-1.508148193359375,-1.3687145709991455,-1.6127233505249023,-1.4732897281646729,-1.5952941179275513,-1.7347276210784912,-1.7695860862731934,-1.7870151996612549,-1.804444432258606,-1.7347276210784912,-1.804444432258606,-1.804444432258606,-1.7172985076904297],[-1.6824400424957275,-1.6301524639129639,-1.647581696510315,-1.804444432258606,-1.1944226026535034,-1.5430065393447876,-1.176993489265442,-1.0549890995025635,-0.7064052224159241,-0.9678431153297424,-0.8981263637542725,-0.9852723479270935,-1.0027015209197998,-0.9852723479270935,-0.7586928009986877,-0.9329847693443298,-0.5844008922576904,-0.8806971907615662,-0.8284096121788025,-0.7064052224159241,-0.4798257052898407,-0.8109803795814514,-0.8981263637542725,-0.7412636280059814,-0.7412636280059814,-0.9155555367469788,-0.6715468168258667,-1.0375598669052124,-0.9329847693443298,-0.8632679581642151,-0.7064052224159241,-0.8981263637542725,-0.9678431153297424,-0.8806971907615662,-0.9852723479270935,-0.7586928009986877,-0.7935512065887451,-0.7412636280059814,-0.7935512065887451,-1.1072766780853271,-0.8109803795814514,-0.9329847693443298,-0.7586928009986877,-0.8284096121788025,-0.619259238243103,-0.7935512065887451,-0.5321133136749268,-0.7935512065887451,-0.6889760494232178,-0.8806971907615662,-0.7586928009986877,-0.9852723479270935,-0.6366884708404541,-1.0201307535171509,-1.0201307535171509,-0.8284096121788025,-1.0549890995025635,-0.8981263637542725,-0.8981263637542725,-0.9329847693443298,-1.246710181236267,-1.0201307535171509,-0.9852723479270935,-1.0201307535171509,-1.089847445487976,-1.0201307535171509,-1.1072766780853271,-1.351285457611084,-1.1944226026535034,-1.0027015209197998,-1.2815686464309692,-1.176993489265442,-1.2118518352508545,-1.0027015209197998,-1.0027015209197998,-0.9504139423370361,-1.0201307535171509,1.193376898765564,1.8731154203414917,1.7162526845932007,1.0190849304199219,1.4199564456939697,1.6291067600250244,1.524531602859497,1.5768191814422607,1.4722440242767334,-0.14867103099822998,0.3742047846317291,0.4264923632144928,-0.04409585893154144,-0.23581700026988983,-1.2989978790283203,-0.23581700026988983,1.3153812885284424,1.4025272130966187,1.210806131362915,2.1345534324645996,2.27398681640625,1.8731154203414917,0.13019607961177826,-1.4732897281646729,-1.7521568536758423,-1.7172985076904297,-1.5604357719421387,-1.5430065393447876,-1.6998692750930786,-1.6127233505249023,-1.6301524639129639,-1.5778648853302002,-1.5604357719421387,-1.6301524639129639,-1.5952941179275513,-1.5952941179275513,-1.6127233505249023,-1.647581696510315,-1.6998692750930786,-1.6824400424957275,-1.6127233505249023,-1.5430065393447876,-1.6301524639129639,-1.6127233505249023,-1.6301524639129639,-1.665010929107666,-1.6301524639129639,-1.647581696510315,-1.6127233505249023,-1.647581696510315,-1.6998692750930786,-1.6301524639129639,-1.6998692750930786,-1.6824400424957275,-1.6998692750930786,-1.6998692750930786,-1.7521568536758423,-1.5952941179275513,-1.804444432258606,-1.5430065393447876,1.036514163017273,-1.2815686464309692,0.11276688426733017,-0.7412636280059814,-1.1247059106826782,-1.1944226026535034,-1.176993489265442,-1.4035730361938477,-1.5778648853302002,-1.804444432258606,-0.8632679581642151,0.8970806002616882,0.7925054430961609,1.0888017416000366,0.2347712367773056,0.966797411441803,1.2282352447509766,0.7053594589233398,1.0190849304199219,1.2282352447509766,0.9319390058517456,1.8731154203414917,1.4722440242767334,0.966797411441803,0.04305011034011841,0.7925054430961609,-1.0201307535171509,-1.351285457611084,-0.8632679581642151,-0.5495424866676331,-1.0549890995025635,-1.0724183320999146,-0.7586928009986877,0.3916339874267578,0.09533768892288208,0.2173420488834381,-0.7586928009986877,-1.1595642566680908,-0.7412636280059814,-1.2815686464309692,-0.619259238243103,0.11276688426733017,-0.9678431153297424,-1.089847445487976,-1.2815686464309692,-0.270675390958786,-0.06152505427598953,-1.4558606147766113,-1.1421350240707397,-1.1072766780853271,-0.8109803795814514,-1.1072766780853271,-1.7695860862731934,-0.04409585893154144,-1.4035730361938477,-0.9504139423370361,-0.37525054812431335,-0.7238343954086304,-0.8632679581642151,-0.270675390958786,-0.5844008922576904,-0.9504139423370361,-0.2532461881637573,-0.41010892391204834,0.3916339874267578,-0.23581700026988983,0.02562091499567032,-0.5495424866676331,-1.4210021495819092,-0.9329847693443298,-1.2292810678482056,-1.2292810678482056,-1.5604357719421387,-1.2989978790283203,-1.333856225013733,-1.0027015209197998,-1.2815686464309692,-1.6998692750930786,-1.665010929107666,-1.665010929107666,-1.7870151996612549,-1.7695860862731934,-1.7521568536758423,-1.5604357719421387,-1.4558606147766113,-1.5604357719421387,-1.4210021495819092],[-1.6301524639129639,-1.5604357719421387,-1.6301524639129639,-1.804444432258606,-1.1072766780853271,-1.5604357719421387,-1.0549890995025635,-1.3164269924163818,-1.1944226026535034,-1.0724183320999146,-0.9155555367469788,-1.2815686464309692,-0.6366884708404541,-0.7064052224159241,-0.7586928009986877,-0.8458387851715088,-0.7761220335960388,-0.9504139423370361,-0.8981263637542725,-0.7064052224159241,-0.6366884708404541,-0.9852723479270935,-1.0027015209197998,-0.6889760494232178,-0.7761220335960388,-0.5669716596603394,-0.9329847693443298,-1.2815686464309692,-1.0724183320999146,-0.7238343954086304,-0.7412636280059814,-0.7238343954086304,-0.9852723479270935,-1.0375598669052124,-0.6018300652503967,-0.8806971907615662,-1.1247059106826782,-0.8109803795814514,-0.6541176438331604,-0.6541176438331604,-0.9155555367469788,-0.8109803795814514,-0.7935512065887451,-0.39267975091934204,-0.8109803795814514,-0.21838779747486115,-0.16610021889209747,-0.06152505427598953,-0.21838779747486115,-0.14867103099822998,0.04305011034011841,0.0604793019592762,-0.305533766746521,-0.39267975091934204,-0.305533766746521,-0.5495424866676331,-0.5146840810775757,-0.7935512065887451,-0.8981263637542725,-0.8981263637542725,-1.2815686464309692,-1.3861438035964966,-1.0724183320999146,-1.0027015209197998,-1.0724183320999146,-1.1247059106826782,-1.351285457611084,-1.0375598669052124,-1.1595642566680908,-1.2292810678482056,-1.089847445487976,-0.9678431153297424,-0.8632679581642151,-0.3229629695415497,-0.6366884708404541,-0.39267975091934204,1.6465359926223755,2.1694116592407227,1.681394338607788,1.4025272130966187,1.4373856782913208,1.9254029989242554,2.0125489234924316,1.367668867111206,0.9842265844345093,1.6116775274276733,0.4264923632144928,-0.04409585893154144,0.3916339874267578,-0.6541176438331604,-0.1312418282032013,-1.0375598669052124,0.02562091499567032,0.8970806002616882,1.5942484140396118,0.4439215660095215,1.2805228233337402,2.2216992378234863,0.8970806002616882,0.2173420488834381,-1.4558606147766113,-1.5604357719421387,-1.5778648853302002,-1.6301524639129639,-1.6301524639129639,-1.5430065393447876,-1.5604357719421387,-1.5604357719421387,-1.665010929107666,-1.6301524639129639,-1.5952941179275513,-1.5778648853302002,-1.5430065393447876,-1.5430065393447876,-1.6301524639129639,-1.5778648853302002,-1.5430065393447876,-1.508148193359375,-1.7347276210784912,-1.5952941179275513,-1.5778648853302002,-1.6127233505249023,-1.5952941179275513,-1.647581696510315,-1.5952941179275513,-1.5952941179275513,-1.665010929107666,-1.5604357719421387,-1.6824400424957275,-1.6127233505249023,-1.6998692750930786,-1.6301524639129639,-1.6824400424957275,-1.665010929107666,-1.804444432258606,-1.804444432258606,0.4439215660095215,-0.16610021889209747,-1.2641394138336182,-0.7586928009986877,-1.2118518352508545,-1.176993489265442,-1.0375598669052124,-1.4035730361938477,-0.5844008922576904,-0.8632679581642151,-0.8109803795814514,-0.8284096121788025,-0.5495424866676331,0.6182135343551636,2.308845281600952,1.5419608354568481,1.4373856782913208,2.361132860183716,2.151982545852661,1.175947666168213,1.2805228233337402,-0.14867103099822998,1.3153812885284424,1.2456644773483276,-0.1312418282032013,1.2630937099456787,1.175947666168213,-0.4798257052898407,-1.246710181236267,-1.0549890995025635,-0.6541176438331604,-0.462396502494812,-1.246710181236267,-0.7412636280059814,-0.619259238243103,0.9319390058517456,-1.1072766780853271,-0.7935512065887451,-0.06152505427598953,-1.4558606147766113,-0.5321133136749268,0.30448800325393677,-0.5146840810775757,-1.1944226026535034,-0.6715468168258667,-1.1421350240707397,-0.16610021889209747,-0.8632679581642151,-1.0201307535171509,-1.1247059106826782,-1.1247059106826782,-1.5255773067474365,-1.246710181236267,-1.4384313821792603,-0.7238343954086304,-1.2641394138336182,-0.9504139423370361,-1.0027015209197998,-1.246710181236267,-1.4384313821792603,-0.9852723479270935,-0.8632679581642151,-1.0724183320999146,-0.07895424962043762,0.8622221946716309,0.19991286098957062,-0.20095860958099365,-0.07895424962043762,-0.305533766746521,-0.619259238243103,-1.246710181236267,-0.9678431153297424,-1.2815686464309692,-1.6824400424957275,-1.5778648853302002,-1.5255773067474365,-1.2989978790283203,-1.0027015209197998,-1.1595642566680908,-1.3687145709991455,-1.508148193359375,-1.7695860862731934,-1.7695860862731934,-1.7521568536758423,-1.4384313821792603,-1.176993489265442,-1.4732897281646729,-1.246710181236267],[-1.6301524639129639,-1.6127233505249023,-1.5604357719421387,-1.804444432258606,-0.8284096121788025,-1.5778648853302002,-0.9852723479270935,-1.0549890995025635,-1.1247059106826782,-1.1595642566680908,-0.7935512065887451,-0.7935512065887451,-0.9329847693443298,-1.0724183320999146,-0.9329847693443298,-0.6715468168258667,-0.9329847693443298,-0.9852723479270935,-0.7586928009986877,-0.6715468168258667,-0.8109803795814514,-0.619259238243103,-0.6541176438331604,-0.9155555367469788,-1.0549890995025635,-0.8109803795814514,-0.5321133136749268,-0.6715468168258667,-0.6715468168258667,-0.7761220335960388,-0.7064052224159241,0.04305011034011841,0.5136383175849915,1.5768191814422607,1.9254029989242554,1.8905446529388428,2.3437037467956543,2.3262743949890137,2.4482789039611816,2.3785619735717773,2.517995595932007,2.047407388687134,2.1345534324645996,2.0996949672698975,1.9428322315216064,2.204270124435425,2.1345534324645996,2.5005664825439453,2.0648365020751953,2.047407388687134,2.082265853881836,2.2216992378234863,2.2914161682128906,2.151982545852661,2.2216992378234863,2.1345534324645996,2.204270124435425,2.204270124435425,2.0125489234924316,1.2805228233337402,-0.9678431153297424,-1.0724183320999146,-1.176993489265442,-1.351285457611084,-1.1421350240707397,-1.089847445487976,-1.2989978790283203,-1.089847445487976,-1.1421350240707397,-1.2641394138336182,-0.35782134532928467,0.46135076880455017,0.3742047846317291,0.8970806002616882,0.7227886915206909,0.9319390058517456,1.2805228233337402,1.524531602859497,1.036514163017273,1.7685402631759644,1.0713725090026855,1.4025272130966187,1.681394338607788,1.2282352447509766,1.053943395614624,1.7511111497879028,1.175947666168213,-0.7238343954086304,0.47877994179725647,-0.6715468168258667,-0.7238343954086304,-0.20095860958099365,-0.35782134532928467,0.6007843017578125,1.4548147916793823,0.3916339874267578,-0.340392142534256,0.2522004246711731,0.008191721513867378,-1.5430065393447876,-1.6127233505249023,-1.6301524639129639,-1.6824400424957275,-1.665010929107666,-1.5778648853302002,-1.508148193359375,-1.508148193359375,-1.5255773067474365,-1.5604357719421387,-1.4558606147766113,-1.5952941179275513,-1.647581696510315,-1.5604357719421387,-1.5430065393447876,-1.5604357719421387,-1.5255773067474365,-1.4732897281646729,-1.490718960762024,-1.6127233505249023,-1.4732897281646729,-1.4210021495819092,-1.6301524639129639,-1.7521568536758423,-1.5778648853302002,-1.490718960762024,-1.5430065393447876,-1.508148193359375,-1.6301524639129639,-1.647581696510315,-1.5952941179275513,-1.6127233505249023,-1.5430065393447876,-1.508148193359375,-1.5604357719421387,-1.7870151996612549,0.7402178645133972,-0.9504139423370361,-0.7412636280059814,-1.176993489265442,-1.246710181236267,-1.4558606147766113,-0.9504139423370361,-0.8806971907615662,-1.0027015209197998,-0.6889760494232178,-0.427538126707077,-0.06152505427598953,0.14762526750564575,0.7925054430961609,1.1410893201828003,1.7336819171905518,1.4199564456939697,1.210806131362915,0.8796514272689819,0.9145098328590393,1.036514163017273,0.47877994179725647,1.6291067600250244,1.3850979804992676,1.0713725090026855,0.2347712367773056,0.4090631902217865,0.9493681788444519,-1.0027015209197998,-0.21838779747486115,-0.9678431153297424,-0.8806971907615662,-0.5321133136749268,-0.7761220335960388,-1.1247059106826782,-0.5321133136749268,-0.427538126707077,0.14762526750564575,-0.35782134532928467,-0.9852723479270935,-0.6889760494232178,-0.6541176438331604,0.28705883026123047,-0.5146840810775757,-1.0549890995025635,-0.35782134532928467,-0.7761220335960388,-0.7586928009986877,-0.09638344496488571,-0.1138126328587532,-1.2815686464309692,-0.8632679581642151,-1.089847445487976,-0.8632679581642151,-0.04409585893154144,0.02562091499567032,-1.508148193359375,-0.7935512065887451,-0.02666666731238365,-1.647581696510315,-0.9678431153297424,-0.7064052224159241,-1.2292810678482056,-1.246710181236267,-0.8284096121788025,0.966797411441803,-0.3229629695415497,-0.14867103099822998,0.07790849357843399,-0.3229629695415497,-0.09638344496488571,-0.340392142534256,-0.4798257052898407,-0.21838779747486115,-0.4798257052898407,-0.4972549080848694,-0.6018300652503967,-0.8284096121788025,-1.5952941179275513,-1.665010929107666,-1.246710181236267,-1.665010929107666,-1.7695860862731934,-1.804444432258606,-1.7695860862731934,-1.5778648853302002,-1.089847445487976,-0.6366884708404541,-1.2641394138336182],[-1.5778648853302002,-1.4384313821792603,-1.3687145709991455,-1.7347276210784912,-0.7064052224159241,-1.490718960762024,-0.4449673295021057,-0.7064052224159241,-0.8284096121788025,-0.6541176438331604,-0.4449673295021057,-0.6715468168258667,-0.7935512065887451,-0.7238343954086304,-0.5669716596603394,-0.5321133136749268,-0.8109803795814514,-0.9329847693443298,-0.7064052224159241,-0.41010892391204834,-0.427538126707077,-0.6889760494232178,-0.8632679581642151,-0.7586928009986877,-0.5146840810775757,-0.21838779747486115,0.5833551287651062,1.210806131362915,2.2216992378234863,2.2565577030181885,2.5702831745147705,2.3262743949890137,2.2565577030181885,2.1345534324645996,2.308845281600952,2.361132860183716,2.308845281600952,2.2914161682128906,1.507102370262146,1.9951198101043701,1.7859694957733154,1.9602614641189575,2.1868410110473633,2.308845281600952,2.1694116592407227,2.483137369155884,1.2456644773483276,1.4199564456939697,1.7685402631759644,2.1868410110473633,2.640000104904175,2.3437037467956543,2.395991325378418,2.239128589630127,2.082265853881836,2.2216992378234863,2.308845281600952,2.1345534324645996,2.0125489234924316,1.507102370262146,1.0713725090026855,-1.804444432258606,-1.351285457611084,-1.3687145709991455,-1.333856225013733,-1.1421350240707397,-1.3164269924163818,-1.3164269924163818,-1.176993489265442,-0.7761220335960388,0.4439215660095215,1.332810401916504,1.2630937099456787,0.8970806002616882,1.2456644773483276,0.966797411441803,1.0190849304199219,-0.1312418282032013,0.7227886915206909,0.8970806002616882,1.3153812885284424,0.9842265844345093,1.3153812885284424,1.4548147916793823,1.350239634513855,2.0648365020751953,1.8033987283706665,-1.647581696510315,-0.21838779747486115,-0.6889760494232178,-0.6889760494232178,-0.7412636280059814,-1.2292810678482056,0.4090631902217865,2.239128589630127,1.6116775274276733,-0.9155555367469788,-1.246710181236267,-1.2989978790283203,-1.6998692750930786,-1.7347276210784912,-1.665010929107666,-1.6824400424957275,-1.5778648853302002,-1.5604357719421387,-1.665010929107666,-1.647581696510315,-1.5952941179275513,-1.5778648853302002,-1.5255773067474365,-1.5952941179275513,-1.3861438035964966,-1.4732897281646729,-1.4732897281646729,-1.508148193359375,-1.4558606147766113,-1.4558606147766113,-1.4035730361938477,-1.5430065393447876,-1.4210021495819092,-1.647581696510315,-1.4558606147766113,-0.6889760494232178,0.4090631902217865,0.7402178645133972,0.5310675501823425,-0.18352940678596497,-1.4732897281646729,-1.5255773067474365,-1.5604357719421387,-1.5430065393447876,-1.6998692750930786,-1.6127233505249023,-1.665010929107666,0.2696296274662018,-1.4384313821792603,-0.9329847693443298,-0.5669716596603394,-1.3861438035964966,-0.9155555367469788,-1.1421350240707397,-0.6018300652503967,-0.6715468168258667,-0.18352940678596497,1.2282352447509766,-0.35782134532928467,0.8447930216789246,1.7685402631759644,0.5484967231750488,1.6465359926223755,1.6465359926223755,0.16505447030067444,0.7227886915206909,0.7227886915206909,1.2456644773483276,1.2979520559310913,-0.09638344496488571,0.6705011129379272,1.7162526845932007,-0.1138126328587532,-0.1312418282032013,-0.41010892391204834,-0.340392142534256,-0.06152505427598953,-0.5321133136749268,-0.9504139423370361,-1.4210021495819092,-1.2641394138336182,-0.8981263637542725,-0.9504139423370361,-0.5669716596603394,-0.6018300652503967,0.9145098328590393,0.4439215660095215,-0.305533766746521,-0.270675390958786,-0.07895424962043762,-1.4035730361938477,0.008191721513867378,-0.7935512065887451,-0.9678431153297424,0.11276688426733017,-0.09638344496488571,1.2282352447509766,0.4439215660095215,-0.2881045639514923,-0.8806971907615662,-1.3861438035964966,-1.490718960762024,-0.305533766746521,0.5833551287651062,0.4439215660095215,-0.009237472899258137,-1.176993489265442,-0.8109803795814514,-0.39267975091934204,0.16505447030067444,-1.4558606147766113,-1.490718960762024,-0.9155555367469788,0.09533768892288208,0.49620914459228516,-0.1312418282032013,-1.0027015209197998,-1.0027015209197998,-0.02666666731238365,0.16505447030067444,-0.2532461881637573,0.07790849357843399,-0.37525054812431335,-0.20095860958099365,-0.5844008922576904,-0.39267975091934204,-1.089847445487976,-1.6998692750930786,-1.7347276210784912,-1.7347276210784912,-1.804444432258606,-1.7870151996612549,-1.7347276210784912,-1.665010929107666,-1.1944226026535034,-1.0375598669052124,-0.9155555367469788],[-1.5778648853302002,-1.5430065393447876,-1.4732897281646729,-1.804444432258606,-0.6366884708404541,-1.6301524639129639,-0.9504139423370361,-0.8284096121788025,-0.619259238243103,-0.6018300652503967,-0.4972549080848694,-0.7935512065887451,-0.5844008922576904,-0.6366884708404541,-0.4449673295021057,-0.21838779747486115,-0.18352940678596497,-0.04409585893154144,-0.7064052224159241,-0.619259238243103,-0.6889760494232178,0.2173420488834381,1.1585185527801514,1.8731154203414917,2.5005664825439453,2.587712526321411,2.587712526321411,2.395991325378418,2.552854061126709,2.308845281600952,2.587712526321411,2.3785619735717773,2.2216992378234863,1.7511111497879028,1.5419608354568481,1.6291067600250244,2.3785619735717773,2.27398681640625,1.9254029989242554,0.6530718803405762,2.361132860183716,2.082265853881836,2.5005664825439453,2.0299782752990723,2.4134204387664795,2.0125489234924316,2.3785619735717773,1.9079738855361938,1.977690577507019,2.3262743949890137,2.3262743949890137,2.3785619735717773,2.3437037467956543,2.361132860183716,2.2914161682128906,2.3262743949890137,2.4482789039611816,2.308845281600952,2.1345534324645996,2.0996949672698975,1.5942484140396118,-1.5430065393447876,-1.351285457611084,-1.2989978790283203,-1.351285457611084,-1.4210021495819092,-1.5604357719421387,-1.3164269924163818,-1.5952941179275513,-0.340392142534256,0.6356427073478699,1.5768191814422607,1.9428322315216064,1.3153812885284424,1.7685402631759644,1.210806131362915,0.9319390058517456,0.30448800325393677,-0.39267975091934204,0.28705883026123047,0.7576470375061035,1.6116775274276733,1.036514163017273,1.6291067600250244,1.7162526845932007,2.239128589630127,1.8731154203414917,-0.6715468168258667,-1.333856225013733,-0.8981263637542725,-0.5146840810775757,-1.0375598669052124,-1.351285457611084,-0.5669716596603394,-0.02666666731238365,1.5768191814422607,0.6356427073478699,-1.089847445487976,-1.804444432258606,-1.7695860862731934,-1.6998692750930786,-1.6301524639129639,-1.647581696510315,-1.5430065393447876,-1.6301524639129639,-1.6998692750930786,-1.490718960762024,-1.5430065393447876,-1.5604357719421387,-1.4732897281646729,-1.4732897281646729,-1.5778648853302002,-1.5604357719421387,-1.5604357719421387,-1.4210021495819092,-1.5952941179275513,-1.5255773067474365,-1.5255773067474365,-1.4558606147766113,-1.490718960762024,-1.7172985076904297,-1.0027015209197998,0.18248365819454193,0.9493681788444519,0.7925054430961609,0.966797411441803,0.6182135343551636,0.33934640884399414,-1.7521568536758423,-1.5778648853302002,-1.6998692750930786,-1.508148193359375,-1.7521568536758423,-0.06152505427598953,0.5310675501823425,-1.508148193359375,-0.7935512065887451,-0.39267975091934204,-1.4558606147766113,-0.9155555367469788,-0.4449673295021057,-1.2292810678482056,0.8796514272689819,0.49620914459228516,0.8970806002616882,0.9319390058517456,0.8099346160888672,1.663965106010437,1.332810401916504,1.9602614641189575,1.4373856782913208,1.0713725090026855,0.07790849357843399,0.33934640884399414,0.2696296274662018,0.2522004246711731,-0.02666666731238365,1.3850979804992676,0.5833551287651062,-0.07895424962043762,-0.7586928009986877,-0.7935512065887451,-0.8284096121788025,-0.6541176438331604,-0.23581700026988983,-0.2532461881637573,-0.9329847693443298,-0.6541176438331604,-0.8284096121788025,-0.9852723479270935,-0.9678431153297424,-0.5495424866676331,0.3742047846317291,-0.04409585893154144,0.5833551287651062,-0.8109803795814514,0.19991286098957062,0.28705883026123047,0.2696296274662018,-0.6889760494232178,0.9493681788444519,0.16505447030067444,0.8273638486862183,1.350239634513855,1.193376898765564,0.2696296274662018,-0.7586928009986877,-0.2532461881637573,-0.21838779747486115,-0.6541176438331604,0.4264923632144928,-0.09638344496488571,0.07790849357843399,-1.1595642566680908,-1.3164269924163818,-0.5146840810775757,-0.7412636280059814,-1.6127233505249023,-1.4732897281646729,-0.6366884708404541,0.32191720604896545,0.2522004246711731,-0.7064052224159241,-0.09638344496488571,-1.1944226026535034,-0.39267975091934204,-0.6366884708404541,-0.2532461881637573,0.6182135343551636,-0.14867103099822998,0.0604793019592762,-0.340392142534256,0.3742047846317291,-0.340392142534256,-0.02666666731238365,-1.4210021495819092,-1.6824400424957275,-1.804444432258606,-1.5778648853302002,-1.7172985076904297,-1.4732897281646729,-1.176993489265442,-1.246710181236267,-0.8806971907615662],[-1.4035730361938477,-1.5255773067474365,-1.4210021495819092,-1.7347276210784912,-0.6889760494232178,-1.7172985076904297,-0.7412636280059814,-0.6366884708404541,-0.7586928009986877,-0.6018300652503967,-0.6366884708404541,-0.8632679581642151,-0.6541176438331604,-0.270675390958786,-0.5146840810775757,-0.6541176438331604,-0.619259238243103,-0.23581700026988983,1.175947666168213,1.9079738855361938,2.465708017349243,2.308845281600952,2.517995595932007,2.2216992378234863,2.2216992378234863,2.6051416397094727,2.2565577030181885,2.640000104904175,2.395991325378418,2.308845281600952,2.1694116592407227,2.361132860183716,2.0648365020751953,2.1345534324645996,2.047407388687134,2.483137369155884,1.9428322315216064,2.361132860183716,2.3785619735717773,2.5702831745147705,2.361132860183716,2.5354249477386475,2.239128589630127,2.3785619735717773,2.43084979057312,2.465708017349243,2.43084979057312,2.587712526321411,2.640000104904175,2.1868410110473633,2.465708017349243,2.361132860183716,2.361132860183716,2.5005664825439453,2.4482789039611816,2.395991325378418,2.43084979057312,2.3262743949890137,2.1345534324645996,1.8556863069534302,1.6116775274276733,-1.6127233505249023,-1.6301524639129639,-1.4035730361938477,-1.4384313821792603,-1.3164269924163818,-1.1247059106826782,-1.4558606147766113,-0.619259238243103,-0.6541176438331604,1.0016558170318604,1.4722440242767334,0.8622221946716309,1.1410893201828003,1.820827841758728,1.7162526845932007,0.9319390058517456,0.8273638486862183,-0.6889760494232178,-0.462396502494812,0.2347712367773056,0.8447930216789246,1.367668867111206,2.0996949672698975,1.9079738855361938,1.9602614641189575,0.8796514272689819,1.0190849304199219,0.5659258961677551,-1.3861438035964966,-0.35782134532928467,-0.8284096121788025,-1.2641394138336182,-1.1072766780853271,-0.20095860958099365,0.008191721513867378,0.9842265844345093,-1.4558606147766113,-1.647581696510315,-1.7172985076904297,-1.6127233505249023,-1.6127233505249023,-1.6998692750930786,-1.6824400424957275,-1.647581696510315,-1.5604357719421387,-1.5778648853302002,-1.5604357719421387,-1.508148193359375,-1.490718960762024,-1.508148193359375,-1.508148193359375,-1.4210021495819092,-1.508148193359375,-1.4732897281646729,-1.5255773067474365,-1.4384313821792603,-1.4558606147766113,-1.4384313821792603,-1.5952941179275513,-1.7870151996612549,1.0888017416000366,0.9319390058517456,0.5659258961677551,0.8099346160888672,0.7402178645133972,0.9493681788444519,0.8622221946716309,-0.4449673295021057,-1.6998692750930786,-1.6301524639129639,-1.5430065393447876,-1.4558606147766113,0.6182135343551636,-0.9678431153297424,-1.089847445487976,-0.6541176438331604,-0.14867103099822998,-0.8632679581642151,-0.6541176438331604,-0.39267975091934204,-1.3164269924163818,0.13019607961177826,2.2565577030181885,1.5419608354568481,1.5419608354568481,2.151982545852661,0.966797411441803,1.9951198101043701,1.7162526845932007,1.3153812885284424,0.6182135343551636,-0.5844008922576904,0.04305011034011841,0.02562091499567032,-0.23581700026988983,-0.7412636280059814,0.14762526750564575,0.47877994179725647,1.0713725090026855,-0.16610021889209747,-0.7935512065887451,-0.6715468168258667,-0.5146840810775757,-0.7238343954086304,-1.351285457611084,-0.5669716596603394,-1.6824400424957275,-0.5669716596603394,-0.7412636280059814,-1.1595642566680908,-1.2118518352508545,0.14762526750564575,0.07790849357843399,0.16505447030067444,1.193376898765564,-0.21838779747486115,-0.23581700026988983,1.2282352447509766,0.3916339874267578,-0.6366884708404541,-0.5669716596603394,0.6182135343551636,0.7576470375061035,0.7053594589233398,0.4439215660095215,0.5136383175849915,0.2696296274662018,-0.8458387851715088,-0.427538126707077,0.18248365819454193,1.036514163017273,0.8796514272689819,-0.9852723479270935,-0.5495424866676331,-0.4798257052898407,-0.7238343954086304,-1.4732897281646729,-1.490718960762024,-0.8632679581642151,-0.5321133136749268,0.2347712367773056,-1.2118518352508545,-0.7586928009986877,-1.2641394138336182,0.19991286098957062,0.2696296274662018,0.09533768892288208,0.33934640884399414,0.33934640884399414,0.9145098328590393,0.32191720604896545,0.28705883026123047,0.16505447030067444,0.6356427073478699,-0.1138126328587532,-1.2118518352508545,-1.1072766780853271,-1.490718960762024,-1.6301524639129639,-0.7761220335960388,-1.3861438035964966,-1.0201307535171509,-0.7412636280059814],[-1.490718960762024,-1.3861438035964966,-1.1072766780853271,-1.7695860862731934,-0.7935512065887451,-1.3687145709991455,-0.35782134532928467,-0.4449673295021057,-0.6018300652503967,-0.5844008922576904,-0.3229629695415497,-0.37525054812431335,-0.340392142534256,-0.5669716596603394,-0.06152505427598953,-0.6018300652503967,0.11276688426733017,2.5354249477386475,2.361132860183716,2.1694116592407227,2.361132860183716,2.43084979057312,2.517995595932007,2.395991325378418,1.838257074356079,1.9254029989242554,1.7511111497879028,2.3437037467956543,2.0299782752990723,2.3437037467956543,0.9493681788444519,-0.02666666731238365,2.465708017349243,2.2914161682128906,2.082265853881836,1.9428322315216064,2.0648365020751953,2.465708017349243,1.7685402631759644,1.6988235712051392,2.2565577030181885,2.5702831745147705,2.622570753097534,2.5354249477386475,2.4134204387664795,2.43084979057312,2.3785619735717773,2.5005664825439453,2.0996949672698975,2.3262743949890137,2.5354249477386475,2.465708017349243,2.465708017349243,2.5354249477386475,2.483137369155884,2.3437037467956543,2.4134204387664795,2.27398681640625,2.047407388687134,1.8731154203414917,1.7859694957733154,-1.7347276210784912,-1.6127233505249023,-1.4732897281646729,-1.508148193359375,-1.5778648853302002,-1.0201307535171509,-0.270675390958786,-0.5669716596603394,-0.5844008922576904,-0.5146840810775757,0.19991286098957062,0.4090631902217865,1.1236600875854492,0.8970806002616882,1.0016558170318604,1.7511111497879028,1.0713725090026855,0.02562091499567032,-0.462396502494812,0.13019607961177826,0.16505447030067444,0.9493681788444519,1.7511111497879028,2.3262743949890137,1.9079738855361938,0.32191720604896545,1.681394338607788,1.507102370262146,-0.7935512065887451,-1.0375598669052124,-1.1072766780853271,-0.8981263637542725,-1.2292810678482056,-1.2641394138336182,-1.3687145709991455,-0.23581700026988983,-1.176993489265442,-1.665010929107666,-1.6998692750930786,-1.7870151996612549,-1.7870151996612549,-1.6824400424957275,-1.5778648853302002,-1.5778648853302002,-1.6127233505249023,-1.4558606147766113,-1.4732897281646729,-1.6301524639129639,-1.4558606147766113,-1.4732897281646729,-1.4558606147766113,-1.5255773067474365,-1.4732897281646729,-1.3861438035964966,-1.5255773067474365,-1.5430065393447876,-1.4210021495819092,-1.5952941179275513,-1.5255773067474365,-0.39267975091934204,0.6007843017578125,0.9145098328590393,1.4548147916793823,1.350239634513855,0.8273638486862183,1.036514163017273,0.6705011129379272,0.8970806002616882,-1.6998692750930786,-1.6998692750930786,-1.6824400424957275,-1.804444432258606,1.7511111497879028,0.16505447030067444,0.6182135343551636,-0.5844008922576904,0.4439215660095215,0.16505447030067444,-0.9852723479270935,0.33934640884399414,0.3916339874267578,0.6705011129379272,1.9951198101043701,1.663965106010437,1.6291067600250244,1.193376898765564,1.4722440242767334,1.9254029989242554,1.3153812885284424,0.47877994179725647,-0.16610021889209747,-0.5321133136749268,-0.9678431153297424,-0.5844008922576904,-0.4449673295021057,0.5659258961677551,-0.5321133136749268,1.1062309741973877,-0.1138126328587532,-0.5844008922576904,-0.1312418282032013,-0.340392142534256,-0.6715468168258667,0.13019607961177826,-1.1595642566680908,-0.4972549080848694,-0.3229629695415497,0.3567756116390228,-0.23581700026988983,-0.5669716596603394,-0.8806971907615662,-0.14867103099822998,0.3742047846317291,-0.09638344496488571,0.09533768892288208,-0.340392142534256,1.7685402631759644,1.1585185527801514,1.6291067600250244,2.2914161682128906,1.2979520559310913,1.193376898765564,1.524531602859497,1.036514163017273,0.8099346160888672,1.1062309741973877,0.6182135343551636,0.9493681788444519,-1.351285457611084,-0.23581700026988983,0.3916339874267578,0.28705883026123047,-0.8284096121788025,-0.6889760494232178,0.49620914459228516,-0.7238343954086304,-1.490718960762024,-1.4210021495819092,-0.14867103099822998,0.5833551287651062,0.6356427073478699,-0.1138126328587532,-0.9678431153297424,-0.37525054812431335,0.33934640884399414,-0.427538126707077,0.2696296274662018,0.07790849357843399,0.32191720604896545,0.2347712367773056,0.46135076880455017,0.7402178645133972,1.2979520559310913,1.210806131362915,0.8970806002616882,1.0713725090026855,0.6356427073478699,0.8622221946716309,0.8796514272689819,-0.427538126707077,-0.39267975091934204,-0.8806971907615662,-0.8981263637542725],[-1.4210021495819092,-1.5952941179275513,-1.4558606147766113,-1.665010929107666,-0.270675390958786,-1.647581696510315,-0.5844008922576904,-0.8458387851715088,-0.9155555367469788,-0.6715468168258667,-0.6715468168258667,-0.8632679581642151,-0.7238343954086304,-0.6715468168258667,-0.5321133136749268,-0.6889760494232178,2.308845281600952,2.047407388687134,2.5702831745147705,2.047407388687134,2.117124080657959,2.4482789039611816,2.2914161682128906,2.3785619735717773,2.552854061126709,2.361132860183716,1.5419608354568481,2.483137369155884,2.465708017349243,2.517995595932007,1.6465359926223755,0.07790849357843399,2.4482789039611816,2.3262743949890137,2.483137369155884,2.204270124435425,2.517995595932007,2.5702831745147705,1.4722440242767334,-0.3229629695415497,2.43084979057312,2.43084979057312,2.6051416397094727,2.239128589630127,2.2216992378234863,2.622570753097534,2.239128589630127,1.7685402631759644,2.5702831745147705,2.2914161682128906,2.5005664825439453,2.4482789039611816,2.465708017349243,2.3437037467956543,2.2914161682128906,2.43084979057312,2.552854061126709,2.2914161682128906,2.2216992378234863,2.0125489234924316,1.9428322315216064,-1.5952941179275513,-1.6301524639129639,-1.4558606147766113,-1.2989978790283203,-1.0027015209197998,-0.04409585893154144,-0.09638344496488571,-1.1944226026535034,0.11276688426733017,-0.7761220335960388,-0.23581700026988983,-0.427538126707077,0.8796514272689819,0.6705011129379272,1.3850979804992676,1.2282352447509766,1.507102370262146,1.6988235712051392,1.3153812885284424,1.3850979804992676,0.3567756116390228,0.3742047846317291,1.4199564456939697,2.151982545852661,1.053943395614624,-0.4798257052898407,0.8622221946716309,1.8905446529388428,0.11276688426733017,-1.5778648853302002,-1.351285457611084,0.2696296274662018,-1.246710181236267,-1.2118518352508545,-1.0027015209197998,-1.4210021495819092,-0.8284096121788025,-1.1247059106826782,-1.804444432258606,-1.7172985076904297,-1.647581696510315,-1.7172985076904297,-1.647581696510315,-1.5952941179275513,-1.5255773067474365,-1.5952941179275513,-1.490718960762024,-1.5604357719421387,-1.4384313821792603,-1.4558606147766113,-1.490718960762024,-1.4732897281646729,-1.5255773067474365,-1.508148193359375,-1.5604357719421387,-1.3687145709991455,-1.5430065393447876,-1.5952941179275513,-1.5952941179275513,1.3850979804992676,1.2979520559310913,1.0888017416000366,0.7402178645133972,0.4439215660095215,0.16505447030067444,0.7576470375061035,0.28705883026123047,0.7750762701034546,-1.7347276210784912,-1.7172985076904297,-1.5604357719421387,0.19991286098957062,1.2630937099456787,0.46135076880455017,0.30448800325393677,-0.41010892391204834,0.3916339874267578,0.13019607961177826,1.175947666168213,0.8796514272689819,0.7750762701034546,1.0190849304199219,1.7859694957733154,1.0713725090026855,1.7162526845932007,1.0190849304199219,0.9145098328590393,1.036514163017273,1.4373856782913208,0.0604793019592762,-0.5669716596603394,-0.14867103099822998,-0.14867103099822998,-0.6541176438331604,-0.3229629695415497,0.5833551287651062,-0.39267975091934204,-0.23581700026988983,-1.0549890995025635,-0.7761220335960388,-0.5495424866676331,0.6705011129379272,-0.06152505427598953,0.14762526750564575,-0.5495424866676331,-1.0027015209197998,-0.4449673295021057,-0.340392142534256,-0.619259238243103,-0.07895424962043762,-1.4210021495819092,-0.8458387851715088,-0.18352940678596497,1.193376898765564,0.3567756116390228,0.9145098328590393,1.0190849304199219,1.6465359926223755,1.681394338607788,1.4373856782913208,1.332810401916504,0.5484967231750488,1.3153812885284424,2.27398681640625,1.9254029989242554,0.8622221946716309,1.4548147916793823,0.5310675501823425,-0.37525054812431335,-0.14867103099822998,1.367668867111206,0.49620914459228516,-0.8458387851715088,-0.1312418282032013,0.32191720604896545,-1.0201307535171509,-1.3687145709991455,-1.4384313821792603,-0.14867103099822998,-0.20095860958099365,-0.06152505427598953,-0.16610021889209747,-0.5669716596603394,-0.009237472899258137,0.32191720604896545,-0.1138126328587532,-0.2881045639514923,0.19991286098957062,0.32191720604896545,-0.1312418282032013,0.8796514272689819,1.4373856782913208,1.332810401916504,1.4896732568740845,1.0888017416000366,1.4548147916793823,1.2979520559310913,1.0016558170318604,1.0888017416000366,0.9145098328590393,-0.14867103099822998,0.28705883026123047,-0.6541176438331604],[-1.2815686464309692,-1.4732897281646729,-1.2989978790283203,-1.4558606147766113,-0.4798257052898407,-1.5952941179275513,-0.9329847693443298,-0.9155555367469788,-0.340392142534256,-0.5495424866676331,-0.5669716596603394,-0.5146840810775757,-0.39267975091934204,-0.5495424866676331,-0.09638344496488571,2.0996949672698975,2.1694116592407227,2.5005664825439453,1.977690577507019,1.8731154203414917,2.483137369155884,2.43084979057312,2.3262743949890137,2.517995595932007,2.465708017349243,2.151982545852661,2.4482789039611816,2.640000104904175,2.43084979057312,2.239128589630127,2.0299782752990723,2.5702831745147705,2.4482789039611816,2.082265853881836,2.5354249477386475,2.1345534324645996,2.361132860183716,2.517995595932007,2.43084979057312,2.5354249477386475,1.8033987283706665,2.465708017349243,2.204270124435425,1.977690577507019,2.395991325378418,2.27398681640625,1.7859694957733154,2.27398681640625,2.151982545852661,2.587712526321411,2.3785619735717773,2.4482789039611816,2.5354249477386475,2.465708017349243,2.465708017349243,2.465708017349243,2.6051416397094727,2.3437037467956543,2.2216992378234863,1.9079738855361938,2.1345534324645996,-1.804444432258606,-1.804444432258606,-1.5255773067474365,-0.2532461881637573,-0.009237472899258137,-0.5844008922576904,-0.39267975091934204,-0.02666666731238365,0.6007843017578125,0.5659258961677551,0.7750762701034546,0.008191721513867378,-0.06152505427598953,0.8099346160888672,1.0713725090026855,1.1062309741973877,1.7511111497879028,2.082265853881836,1.5768191814422607,1.5419608354568481,1.193376898765564,1.2282352447509766,1.0190849304199219,0.6879302859306335,0.8447930216789246,-0.9155555367469788,-0.305533766746521,1.0016558170318604,1.4548147916793823,0.16505447030067444,-0.9852723479270935,-0.09638344496488571,-1.1247059106826782,-1.1944226026535034,-0.8981263637542725,-1.508148193359375,-0.9155555367469788,-0.6715468168258667,-1.3861438035964966,-1.804444432258606,-1.6824400424957275,-1.6824400424957275,-1.5778648853302002,-1.5255773067474365,-1.5604357719421387,-1.7172985076904297,-1.647581696510315,-1.5952941179275513,-1.4732897281646729,-1.6127233505249023,-1.3164269924163818,-1.4732897281646729,-1.3687145709991455,-1.490718960762024,-1.508148193359375,-1.4384313821792603,-1.4732897281646729,-1.4558606147766113,-1.6301524639129639,1.210806131362915,1.0713725090026855,0.9842265844345093,1.2456644773483276,1.2630937099456787,1.4722440242767334,0.6879302859306335,0.7750762701034546,0.5833551287651062,-1.5778648853302002,-1.804444432258606,-1.4732897281646729,1.0190849304199219,1.3153812885284424,-0.305533766746521,-0.35782134532928467,0.5310675501823425,0.07790849357843399,0.32191720604896545,0.8796514272689819,1.0713725090026855,0.6007843017578125,1.4722440242767334,1.053943395614624,0.46135076880455017,1.1236600875854492,0.9493681788444519,0.16505447030067444,0.2522004246711731,0.6007843017578125,0.04305011034011841,-0.09638344496488571,-0.06152505427598953,-0.7412636280059814,-0.07895424962043762,-0.4972549080848694,-0.8806971907615662,0.46135076880455017,-0.7238343954086304,-0.9852723479270935,-0.9504139423370361,-0.4449673295021057,-0.39267975091934204,-0.35782134532928467,-0.5146840810775757,-0.8284096121788025,-0.8806971907615662,-0.340392142534256,0.9145098328590393,-0.5495424866676331,-0.39267975091934204,-0.21838779747486115,-0.462396502494812,-0.462396502494812,0.7402178645133972,0.07790849357843399,1.3153812885284424,1.4373856782913208,1.7162526845932007,1.5942484140396118,2.047407388687134,1.9602614641189575,1.8556863069534302,1.4025272130966187,1.9254029989242554,1.036514163017273,2.0648365020751953,1.507102370262146,1.1236600875854492,-0.3229629695415497,-0.305533766746521,0.966797411441803,0.8099346160888672,-0.3229629695415497,-0.14867103099822998,0.5484967231750488,-0.07895424962043762,-1.4384313821792603,-1.0027015209197998,0.2696296274662018,-0.14867103099822998,-0.14867103099822998,-0.009237472899258137,-0.35782134532928467,-0.14867103099822998,-0.4449673295021057,-0.4449673295021057,-0.20095860958099365,0.0604793019592762,0.2696296274662018,0.32191720604896545,1.0888017416000366,0.7750762701034546,0.9842265844345093,1.0713725090026855,1.5942484140396118,1.4722440242767334,1.4896732568740845,1.6465359926223755,1.507102370262146,0.4090631902217865,1.2979520559310913,1.5419608354568481,0.2347712367773056],[-1.3687145709991455,-1.6301524639129639,-1.3164269924163818,-1.647581696510315,-0.5844008922576904,-1.333856225013733,-0.39267975091934204,-0.4972549080848694,-0.305533766746521,-0.39267975091934204,-0.5146840810775757,-0.009237472899258137,-0.37525054812431335,-0.39267975091934204,0.07790849357843399,2.395991325378418,1.8556863069534302,-0.4449673295021057,2.4134204387664795,2.465708017349243,2.4134204387664795,2.395991325378418,2.2914161682128906,2.361132860183716,1.6988235712051392,2.483137369155884,2.0299782752990723,2.5005664825439453,2.640000104904175,1.9428322315216064,2.151982545852661,2.361132860183716,1.6988235712051392,0.09533768892288208,2.3437037467956543,2.587712526321411,2.517995595932007,2.5354249477386475,2.117124080657959,1.6291067600250244,2.43084979057312,2.5702831745147705,2.5354249477386475,2.395991325378418,2.552854061126709,2.6051416397094727,2.361132860183716,2.5702831745147705,2.517995595932007,2.4134204387664795,2.483137369155884,2.5354249477386475,2.4482789039611816,2.4482789039611816,2.465708017349243,2.5005664825439453,2.3785619735717773,2.361132860183716,2.3437037467956543,2.3262743949890137,1.7511111497879028,-1.804444432258606,-0.9155555367469788,-0.41010892391204834,-0.14867103099822998,0.8273638486862183,0.7925054430961609,0.0604793019592762,-1.0549890995025635,-0.2881045639514923,1.0713725090026855,0.8970806002616882,-0.41010892391204834,0.49620914459228516,0.008191721513867378,-0.18352940678596497,1.4548147916793823,0.3916339874267578,1.4025272130966187,1.4896732568740845,1.4025272130966187,1.4548147916793823,1.4373856782913208,0.6007843017578125,1.053943395614624,0.7402178645133972,1.5419608354568481,1.3153812885284424,-0.2532461881637573,-0.04409585893154144,1.367668867111206,0.7053594589233398,-1.6998692750930786,-1.1944226026535034,-1.2989978790283203,-1.3861438035964966,-0.5669716596603394,-1.7521568536758423,-1.5255773067474365,-1.647581696510315,-1.7695860862731934,-1.7695860862731934,-1.7172985076904297,-1.6824400424957275,-1.5778648853302002,-1.5778648853302002,-1.4732897281646729,-1.3861438035964966,-1.3687145709991455,-1.4035730361938477,-1.4732897281646729,-1.4210021495819092,-1.4732897281646729,-1.4035730361938477,-1.3861438035964966,-1.4732897281646729,-1.490718960762024,-1.4732897281646729,-1.3164269924163818,-1.7521568536758423,1.3153812885284424,1.681394338607788,1.5419608354568481,1.6116775274276733,1.5768191814422607,1.4025272130966187,1.1236600875854492,1.193376898765564,1.0888017416000366,-1.4384313821792603,-1.0027015209197998,1.1410893201828003,0.9493681788444519,1.2805228233337402,1.210806131362915,-0.04409585893154144,0.6879302859306335,1.1236600875854492,0.19991286098957062,0.3916339874267578,1.2456644773483276,0.2173420488834381,1.1410893201828003,0.6356427073478699,-0.06152505427598953,0.966797411441803,-0.305533766746521,0.2173420488834381,-0.18352940678596497,0.7925054430961609,-0.009237472899258137,-0.04409585893154144,-0.009237472899258137,0.7925054430961609,-0.9504139423370361,-0.9155555367469788,0.14762526750564575,-0.6018300652503967,-0.305533766746521,-0.9678431153297424,-0.8632679581642151,0.2696296274662018,-0.270675390958786,-1.4210021495819092,-1.246710181236267,0.13019607961177826,-0.7238343954086304,-0.41010892391204834,-0.39267975091934204,-0.427538126707077,-0.7935512065887451,-0.009237472899258137,0.8099346160888672,-0.5146840810775757,-0.8806971907615662,0.13019607961177826,-0.5321133136749268,1.036514163017273,1.1062309741973877,1.8033987283706665,0.7750762701034546,1.4025272130966187,1.367668867111206,1.507102370262146,1.4896732568740845,0.6879302859306335,1.507102370262146,1.4373856782913208,1.4722440242767334,0.3916339874267578,-0.305533766746521,0.5310675501823425,-0.09638344496488571,-0.5495424866676331,-0.1138126328587532,0.32191720604896545,-0.462396502494812,-0.9852723479270935,-0.21838779747486115,0.30448800325393677,-1.1944226026535034,-0.6889760494232178,0.5136383175849915,-0.2532461881637573,-0.3229629695415497,-0.02666666731238365,-0.8632679581642151,-0.8284096121788025,0.2173420488834381,0.7227886915206909,0.14762526750564575,1.036514163017273,0.9319390058517456,1.1062309741973877,1.5942484140396118,1.681394338607788,1.0888017416000366,1.507102370262146,1.6291067600250244,1.6465359926223755,0.8970806002616882,1.5419608354568481,1.350239634513855,-0.619259238243103],[-1.3164269924163818,-1.4558606147766113,-1.1944226026535034,-1.6998692750930786,-0.427538126707077,-1.5778648853302002,-0.5146840810775757,-0.6366884708404541,-0.7935512065887451,-0.5495424866676331,-0.4972549080848694,-0.39267975091934204,-0.340392142534256,-0.35782134532928467,1.0016558170318604,2.2565577030181885,2.204270124435425,2.640000104904175,2.3262743949890137,2.552854061126709,2.2914161682128906,2.308845281600952,2.6051416397094727,2.204270124435425,2.640000104904175,2.2914161682128906,1.9951198101043701,2.43084979057312,2.3437037467956543,2.640000104904175,2.395991325378418,2.517995595932007,2.4134204387664795,2.0299782752990723,2.4482789039611816,2.4482789039611816,2.640000104904175,2.483137369155884,2.2216992378234863,0.9842265844345093,2.4134204387664795,2.483137369155884,2.3785619735717773,2.640000104904175,2.3437037467956543,2.640000104904175,2.3262743949890137,2.552854061126709,2.239128589630127,2.27398681640625,2.5005664825439453,2.483137369155884,2.4134204387664795,2.4482789039611816,2.4482789039611816,2.4482789039611816,2.4482789039611816,2.4134204387664795,2.239128589630127,2.0299782752990723,1.175947666168213,-1.4558606147766113,-1.4384313821792603,-1.2641394138336182,0.2696296274662018,1.1585185527801514,1.0190849304199219,0.2696296274662018,-0.9155555367469788,0.6705011129379272,0.8099346160888672,-0.7064052224159241,-0.2881045639514923,-0.7761220335960388,-0.6541176438331604,-0.04409585893154144,0.02562091499567032,0.9842265844345093,0.3742047846317291,0.5833551287651062,0.33934640884399414,1.2456644773483276,0.7925054430961609,0.7402178645133972,0.2347712367773056,1.193376898765564,0.33934640884399414,1.2979520559310913,1.2805228233337402,-1.2641394138336182,1.4548147916793823,1.663965106010437,-0.2532461881637573,-1.2989978790283203,-0.8632679581642151,-0.8632679581642151,-0.8632679581642151,-1.2118518352508545,-0.7238343954086304,-1.6127233505249023,-1.4210021495819092,-1.6127233505249023,-1.7172985076904297,-1.647581696510315,-1.6824400424957275,-1.6301524639129639,-1.5952941179275513,-1.490718960762024,-1.5778648853302002,-1.4558606147766113,-1.4035730361938477,-1.490718960762024,-1.3164269924163818,-1.4558606147766113,-1.3687145709991455,-1.351285457611084,-1.3687145709991455,-1.3861438035964966,-1.5255773067474365,-1.804444432258606,1.2630937099456787,1.7162526845932007,1.838257074356079,1.4199564456939697,1.7336819171905518,1.663965106010437,1.6465359926223755,0.9145098328590393,0.47877994179725647,-1.0201307535171509,-0.270675390958786,1.820827841758728,2.517995595932007,1.7685402631759644,0.32191720604896545,-0.09638344496488571,1.2979520559310913,-0.18352940678596497,0.4439215660095215,0.49620914459228516,0.8622221946716309,0.2696296274662018,-0.09638344496488571,-0.3229629695415497,0.28705883026123047,0.04305011034011841,0.18248365819454193,0.2173420488834381,0.09533768892288208,0.6879302859306335,0.11276688426733017,0.4264923632144928,0.04305011034011841,-0.4972549080848694,-0.5146840810775757,0.28705883026123047,0.008191721513867378,-0.5146840810775757,-0.07895424962043762,0.46135076880455017,0.16505447030067444,0.9493681788444519,0.19991286098957062,-0.2881045639514923,-0.462396502494812,-0.270675390958786,0.5833551287651062,-0.18352940678596497,-0.41010892391204834,-0.270675390958786,1.4548147916793823,-0.9852723479270935,0.5136383175849915,0.07790849357843399,-0.07895424962043762,0.33934640884399414,1.5768191814422607,1.367668867111206,0.6356427073478699,1.4373856782913208,1.0713725090026855,1.036514163017273,1.1410893201828003,1.5419608354568481,1.663965106010437,1.4896732568740845,1.036514163017273,1.2456644773483276,0.8970806002616882,0.33934640884399414,-0.8109803795814514,0.07790849357843399,-0.09638344496488571,-1.3861438035964966,-0.5146840810775757,0.2347712367773056,-1.2292810678482056,-0.5321133136749268,0.32191720604896545,-0.5844008922576904,-0.7064052224159241,-0.07895424962043762,0.8447930216789246,1.1062309741973877,-0.1312418282032013,-0.8632679581642151,-1.2641394138336182,-0.8632679581642151,-0.39267975091934204,-0.4972549080848694,0.14762526750564575,0.8796514272689819,0.6530718803405762,1.367668867111206,1.175947666168213,1.4373856782913208,1.4373856782913208,1.3850979804992676,1.2456644773483276,1.5942484140396118,1.6988235712051392,0.4264923632144928,0.5833551287651062,1.1585185527801514],[-1.4558606147766113,-1.3861438035964966,-1.3687145709991455,-1.5778648853302002,-0.6018300652503967,-1.3687145709991455,-0.35782134532928467,-0.35782134532928467,-0.14867103099822998,-0.21838779747486115,-0.35782134532928467,-0.04409585893154144,-0.07895424962043762,-0.35782134532928467,1.9254029989242554,2.4482789039611816,2.5354249477386475,2.483137369155884,2.082265853881836,2.1868410110473633,2.640000104904175,2.6051416397094727,2.640000104904175,2.6051416397094727,2.4134204387664795,2.239128589630127,1.8731154203414917,2.43084979057312,2.5702831745147705,1.9951198101043701,2.5354249477386475,2.27398681640625,2.43084979057312,2.27398681640625,2.552854061126709,2.640000104904175,2.1345534324645996,2.3262743949890137,2.4482789039611816,2.6051416397094727,2.6051416397094727,2.239128589630127,2.5005664825439453,2.0125489234924316,2.1694116592407227,2.047407388687134,1.9428322315216064,1.977690577507019,2.640000104904175,2.2565577030181885,2.3437037467956543,2.4482789039611816,2.517995595932007,2.465708017349243,2.4134204387664795,2.3785619735717773,2.43084979057312,2.5702831745147705,2.1345534324645996,0.2696296274662018,-1.665010929107666,0.008191721513867378,-0.9678431153297424,-1.1421350240707397,0.0604793019592762,1.2630937099456787,0.2173420488834381,-0.1312418282032013,0.33934640884399414,1.0713725090026855,0.9145098328590393,0.6007843017578125,0.16505447030067444,0.11276688426733017,0.7053594589233398,0.49620914459228516,0.6879302859306335,1.2979520559310913,1.332810401916504,0.3916339874267578,0.6705011129379272,0.8273638486862183,0.3742047846317291,1.0016558170318604,-0.3229629695415497,1.1236600875854492,1.193376898765564,0.33934640884399414,1.5768191814422607,0.3742047846317291,1.8556863069534302,1.5593899488449097,0.28705883026123047,-1.6998692750930786,-0.7064052224159241,-1.5778648853302002,-1.351285457611084,-1.4384313821792603,-0.305533766746521,-0.4449673295021057,-1.7870151996612549,-1.4558606147766113,-1.647581696510315,-1.5430065393447876,-1.4384313821792603,-1.5604357719421387,-1.5778648853302002,-1.647581696510315,-1.5952941179275513,-1.6998692750930786,-1.351285457611084,-1.4558606147766113,-1.2989978790283203,-1.490718960762024,-1.333856225013733,-1.4558606147766113,-1.4558606147766113,-1.4384313821792603,-1.5430065393447876,-1.804444432258606,1.3153812885284424,1.210806131362915,1.4373856782913208,1.9951198101043701,0.8447930216789246,0.9493681788444519,1.6291067600250244,1.3153812885284424,-0.6889760494232178,0.33934640884399414,0.5484967231750488,1.1062309741973877,1.367668867111206,1.4896732568740845,1.0190849304199219,1.036514163017273,0.7402178645133972,-0.1312418282032013,-0.1138126328587532,-0.02666666731238365,0.16505447030067444,0.2522004246711731,0.47877994179725647,0.28705883026123047,0.07790849357843399,0.30448800325393677,1.0713725090026855,0.09533768892288208,0.19991286098957062,0.5484967231750488,-0.3229629695415497,0.5833551287651062,1.175947666168213,1.5593899488449097,0.33934640884399414,0.18248365819454193,1.7511111497879028,0.6356427073478699,-0.8284096121788025,0.13019607961177826,-0.1138126328587532,-0.09638344496488571,0.19991286098957062,0.6705011129379272,-0.4449673295021057,1.524531602859497,1.0016558170318604,-0.7238343954086304,0.7053594589233398,0.11276688426733017,0.4439215660095215,-1.089847445487976,0.09533768892288208,0.5136383175849915,1.2456644773483276,0.6879302859306335,1.507102370262146,2.3437037467956543,1.175947666168213,1.053943395614624,1.6116775274276733,1.7336819171905518,1.8556863069534302,1.4722440242767334,1.4896732568740845,1.3850979804992676,1.7336819171905518,1.0190849304199219,1.053943395614624,0.2347712367773056,-0.7586928009986877,-0.619259238243103,-0.7935512065887451,-0.6366884708404541,-0.7412636280059814,-0.6541176438331604,-0.9678431153297424,-0.6715468168258667,-1.0201307535171509,0.4439215660095215,-0.1138126328587532,-0.14867103099822998,0.6879302859306335,1.4025272130966187,1.5593899488449097,0.9493681788444519,-0.07895424962043762,-1.0724183320999146,-0.7238343954086304,-0.9155555367469788,-0.02666666731238365,0.18248365819454193,-0.20095860958099365,0.8622221946716309,0.8099346160888672,1.2979520559310913,1.367668867111206,1.4722440242767334,1.4199564456939697,1.7859694957733154,1.367668867111206,0.7576470375061035,1.2979520559310913,1.5942484140396118],[-1.2989978790283203,-1.3164269924163818,-1.2292810678482056,-1.7172985076904297,-0.35782134532928467,-1.351285457611084,-0.14867103099822998,-0.3229629695415497,-0.5669716596603394,-0.305533766746521,-0.6018300652503967,-0.37525054812431335,-0.2532461881637573,-0.462396502494812,2.0996949672698975,2.552854061126709,2.3437037467956543,2.640000104904175,2.552854061126709,2.3437037467956543,2.3785619735717773,2.587712526321411,2.640000104904175,2.0996949672698975,1.8033987283706665,2.640000104904175,2.640000104904175,2.640000104904175,2.552854061126709,2.465708017349243,1.7859694957733154,0.46135076880455017,2.640000104904175,2.587712526321411,2.640000104904175,2.151982545852661,1.8556863069534302,2.587712526321411,2.587712526321411,2.0299782752990723,2.640000104904175,2.204270124435425,2.5005664825439453,2.5702831745147705,1.7162526845932007,2.2914161682128906,1.7336819171905518,2.640000104904175,2.2914161682128906,2.640000104904175,2.465708017349243,2.465708017349243,2.395991325378418,2.395991325378418,2.2565577030181885,2.2914161682128906,1.7336819171905518,0.4090631902217865,-0.6541176438331604,-1.4384313821792603,0.7402178645133972,1.193376898765564,-0.23581700026988983,-1.0201307535171509,-0.6541176438331604,0.5833551287651062,0.3567756116390228,0.28705883026123047,-0.37525054812431335,-0.41010892391204834,0.5833551287651062,0.46135076880455017,-0.23581700026988983,0.13019607961177826,0.9493681788444519,0.8970806002616882,0.8099346160888672,0.49620914459228516,0.7750762701034546,1.1410893201828003,1.4896732568740845,1.210806131362915,0.4439215660095215,0.7402178645133972,0.30448800325393677,0.6530718803405762,0.6705011129379272,0.19991286098957062,1.036514163017273,1.4896732568740845,1.6465359926223755,1.9254029989242554,-0.6366884708404541,-1.7172985076904297,-0.7064052224159241,-0.6541176438331604,-1.2292810678482056,-0.8109803795814514,-0.4449673295021057,-1.1944226026535034,-0.6366884708404541,-1.5430065393447876,-1.7870151996612549,-1.7695860862731934,-1.647581696510315,-1.5778648853302002,-1.508148193359375,-1.508148193359375,-1.5255773067474365,-1.508148193359375,-1.4732897281646729,-1.4035730361938477,-1.4210021495819092,-1.333856225013733,-1.333856225013733,-1.490718960762024,-1.4035730361938477,-1.351285457611084,-1.5952941179275513,-1.4210021495819092,0.4264923632144928,1.350239634513855,0.02562091499567032,1.820827841758728,0.8273638486862183,-1.2292810678482056,1.8905446529388428,0.7227886915206909,-0.7238343954086304,0.3742047846317291,1.524531602859497,1.1410893201828003,1.6988235712051392,1.7859694957733154,1.367668867111206,1.2805228233337402,0.8447930216789246,0.04305011034011841,0.2522004246711731,-0.619259238243103,-0.3229629695415497,-0.2532461881637573,-0.39267975091934204,-0.009237472899258137,-0.7586928009986877,-0.009237472899258137,0.7925054430961609,-1.089847445487976,-0.35782134532928467,-0.340392142534256,-0.2881045639514923,0.16505447030067444,0.2696296274662018,0.7750762701034546,-0.1138126328587532,0.49620914459228516,0.16505447030067444,0.7053594589233398,-0.270675390958786,-0.8632679581642151,0.6705011129379272,0.32191720604896545,0.09533768892288208,-0.02666666731238365,1.5419608354568481,-0.20095860958099365,1.4896732568740845,-0.7064052224159241,0.5310675501823425,-1.804444432258606,-0.20095860958099365,-0.6366884708404541,0.5136383175849915,0.04305011034011841,0.33934640884399414,1.0888017416000366,1.4722440242767334,1.2456644773483276,0.9319390058517456,1.977690577507019,1.5942484140396118,1.4025272130966187,1.524531602859497,1.332810401916504,0.966797411441803,1.4548147916793823,1.332810401916504,1.3153812885284424,0.9319390058517456,1.036514163017273,-0.6541176438331604,0.0604793019592762,-0.41010892391204834,-0.5844008922576904,-0.3229629695415497,-1.0027015209197998,-0.2532461881637573,-0.14867103099822998,-0.5669716596603394,0.30448800325393677,0.14762526750564575,0.8622221946716309,0.8622221946716309,1.210806131362915,0.9319390058517456,1.210806131362915,1.367668867111206,1.4896732568740845,0.3567756116390228,-1.2118518352508545,-1.0549890995025635,-0.5146840810775757,0.18248365819454193,0.7750762701034546,1.4025272130966187,0.9842265844345093,1.053943395614624,1.193376898765564,1.0713725090026855,1.193376898765564,1.1410893201828003,0.9319390058517456,1.4373856782913208,1.8033987283706665],[-1.3687145709991455,-1.351285457611084,-1.5952941179275513,-1.7695860862731934,-0.16610021889209747,-1.3687145709991455,-0.20095860958099365,-0.16610021889209747,-0.6715468168258667,0.13019607961177826,-0.41010892391204834,-0.8806971907615662,-0.6715468168258667,-0.1138126328587532,2.2565577030181885,2.4482789039611816,2.640000104904175,2.395991325378418,2.5354249477386475,2.640000104904175,2.1345534324645996,2.3437037467956543,2.587712526321411,2.3785619735717773,2.517995595932007,2.4134204387664795,2.4482789039611816,2.5005664825439453,2.552854061126709,2.640000104904175,2.1694116592407227,0.9493681788444519,2.640000104904175,1.5942484140396118,2.239128589630127,2.047407388687134,2.3785619735717773,2.308845281600952,0.2347712367773056,-0.7761220335960388,2.2914161682128906,1.7859694957733154,2.483137369155884,2.517995595932007,2.640000104904175,2.4482789039611816,2.587712526321411,2.395991325378418,2.5354249477386475,2.43084979057312,2.43084979057312,2.047407388687134,1.4896732568740845,1.1585185527801514,-0.16610021889209747,-1.246710181236267,-1.508148193359375,-1.4732897281646729,-1.804444432258606,0.7402178645133972,1.3850979804992676,1.4199564456939697,1.3153812885284424,-0.21838779747486115,-0.8458387851715088,0.07790849357843399,0.5484967231750488,1.193376898765564,-0.39267975091934204,-0.6889760494232178,-0.305533766746521,1.1236600875854492,0.8796514272689819,0.13019607961177826,-0.427538126707077,0.3916339874267578,-0.619259238243103,0.5484967231750488,0.7227886915206909,0.4090631902217865,0.32191720604896545,0.6879302859306335,0.7227886915206909,1.1062309741973877,0.5484967231750488,0.3742047846317291,-0.6366884708404541,0.7576470375061035,1.4896732568740845,1.1585185527801514,2.239128589630127,1.4896732568740845,-0.4798257052898407,-1.665010929107666,-0.5669716596603394,-1.3164269924163818,-1.0549890995025635,-0.8632679581642151,-1.4035730361938477,-0.8284096121788025,-1.3687145709991455,-1.5952941179275513,-1.804444432258606,-1.804444432258606,-1.7172985076904297,-1.804444432258606,-1.490718960762024,-1.647581696510315,-1.4732897281646729,-1.3861438035964966,-1.4558606147766113,-1.490718960762024,-1.4035730361938477,-1.2815686464309692,-1.333856225013733,-1.3687145709991455,-1.351285457611084,-1.4035730361938477,-1.333856225013733,-0.37525054812431335,1.4373856782913208,1.1236600875854492,2.1694116592407227,1.663965106010437,1.7336819171905518,1.6465359926223755,2.047407388687134,1.4896732568740845,0.2347712367773056,2.3437037467956543,1.5942484140396118,1.1410893201828003,1.4373856782913208,1.820827841758728,0.7925054430961609,2.2914161682128906,1.5942484140396118,0.07790849357843399,0.7053594589233398,-0.07895424962043762,0.2173420488834381,-0.5495424866676331,0.18248365819454193,0.0604793019592762,-0.3229629695415497,0.3567756116390228,0.33934640884399414,-0.340392142534256,-0.20095860958099365,0.07790849357843399,0.5310675501823425,0.33934640884399414,0.07790849357843399,0.7402178645133972,-0.6889760494232178,0.8273638486862183,1.2979520559310913,0.8796514272689819,-0.21838779747486115,-1.1944226026535034,0.5833551287651062,-0.427538126707077,0.5136383175849915,0.2347712367773056,1.053943395614624,1.4373856782913208,-0.35782134532928467,0.49620914459228516,-0.009237472899258137,-0.9155555367469788,0.3916339874267578,0.9319390058517456,0.4264923632144928,-0.9329847693443298,0.19991286098957062,1.1236600875854492,1.2282352447509766,0.6182135343551636,1.7336819171905518,2.117124080657959,1.681394338607788,1.4025272130966187,1.2805228233337402,1.332810401916504,1.6291067600250244,1.367668867111206,1.4373856782913208,1.350239634513855,1.5942484140396118,1.3153812885284424,0.9842265844345093,0.2522004246711731,-0.2881045639514923,0.0604793019592762,-0.02666666731238365,0.32191720604896545,0.6879302859306335,1.0016558170318604,-0.1312418282032013,0.2522004246711731,-0.20095860958099365,0.8970806002616882,1.175947666168213,1.175947666168213,0.966797411441803,1.1236600875854492,1.507102370262146,0.966797411441803,1.5942484140396118,1.3850979804992676,-0.6366884708404541,-1.0724183320999146,-0.4798257052898407,0.4439215660095215,0.3742047846317291,0.4439215660095215,0.6007843017578125,1.5942484140396118,1.210806131362915,1.367668867111206,0.6356427073478699,1.210806131362915,1.6988235712051392,1.8556863069534302],[-1.2292810678482056,-1.1595642566680908,-1.5604357719421387,-1.804444432258606,-0.35782134532928467,-1.6127233505249023,-0.1312418282032013,-0.340392142534256,-0.305533766746521,-0.09638344496488571,-0.4972549080848694,-0.39267975091934204,-0.4449673295021057,-0.1138126328587532,2.5005664825439453,2.483137369155884,2.517995595932007,2.640000104904175,2.5005664825439453,2.204270124435425,2.640000104904175,2.640000104904175,2.622570753097534,2.640000104904175,2.587712526321411,2.640000104904175,2.151982545852661,2.5354249477386475,2.640000104904175,2.047407388687134,2.5354249477386475,2.4482789039611816,2.622570753097534,2.43084979057312,1.7859694957733154,2.552854061126709,2.517995595932007,2.640000104904175,2.361132860183716,2.5702831745147705,2.27398681640625,2.640000104904175,2.308845281600952,2.5005664825439453,2.5354249477386475,2.465708017349243,2.2914161682128906,2.239128589630127,1.681394338607788,0.966797411441803,-0.2881045639514923,-0.9852723479270935,-1.4558606147766113,-1.7521568536758423,-1.5430065393447876,-1.6824400424957275,-1.804444432258606,-1.7695860862731934,0.09533768892288208,1.4896732568740845,0.8099346160888672,1.332810401916504,0.8970806002616882,-0.4798257052898407,-1.3687145709991455,-0.37525054812431335,-0.04409585893154144,1.1062309741973877,0.7402178645133972,-0.6018300652503967,-0.7761220335960388,-0.07895424962043762,-0.2881045639514923,0.49620914459228516,-0.462396502494812,-0.8981263637542725,-0.427538126707077,0.5833551287651062,1.5593899488449097,1.0888017416000366,0.11276688426733017,0.4439215660095215,0.28705883026123047,1.5419608354568481,0.6879302859306335,1.1062309741973877,0.5310675501823425,1.4722440242767334,1.2456644773483276,1.1062309741973877,2.204270124435425,1.663965106010437,-1.2641394138336182,-1.6824400424957275,-0.8632679581642151,-0.7412636280059814,0.008191721513867378,-1.2815686464309692,-1.6824400424957275,-1.1247059106826782,-1.490718960762024,-1.804444432258606,-1.351285457611084,-0.8458387851715088,-0.35782134532928467,-0.39267975091934204,-1.1247059106826782,-1.7870151996612549,-1.490718960762024,-1.4035730361938477,-1.4035730361938477,-1.2815686464309692,-1.4558606147766113,-1.333856225013733,-1.351285457611084,-1.4384313821792603,-1.2292810678482056,-1.3687145709991455,-1.351285457611084,0.7227886915206909,2.0299782752990723,1.0888017416000366,1.820827841758728,2.1345534324645996,0.9842265844345093,0.8796514272689819,1.663965106010437,0.8970806002616882,-0.8981263637542725,1.367668867111206,0.966797411441803,1.0713725090026855,2.0299782752990723,2.3262743949890137,1.6116775274276733,1.4548147916793823,0.6530718803405762,1.053943395614624,1.5768191814422607,-0.37525054812431335,-0.41010892391204834,-0.35782134532928467,0.2696296274662018,0.47877994179725647,-0.20095860958099365,0.13019607961177826,0.7576470375061035,-0.619259238243103,-0.23581700026988983,0.6182135343551636,-0.21838779747486115,0.18248365819454193,-0.41010892391204834,-0.340392142534256,-0.5321133136749268,-0.37525054812431335,-1.0027015209197998,-0.4798257052898407,-0.23581700026988983,-0.8458387851715088,0.16505447030067444,1.0016558170318604,1.838257074356079,0.7925054430961609,1.5768191814422607,1.2282352447509766,-0.09638344496488571,0.04305011034011841,0.5136383175849915,-0.7064052224159241,-0.4798257052898407,0.8447930216789246,0.3742047846317291,1.3850979804992676,-0.6715468168258667,1.4373856782913208,0.18248365819454193,1.4548147916793823,1.2456644773483276,1.332810401916504,1.9079738855361938,1.663965106010437,0.966797411441803,0.9842265844345093,1.367668867111206,1.2456644773483276,1.1585185527801514,1.2805228233337402,1.5593899488449097,1.507102370262146,1.175947666168213,0.6530718803405762,-0.41010892391204834,0.008191721513867378,0.9319390058517456,0.30448800325393677,0.8796514272689819,1.0713725090026855,1.1410893201828003,0.4090631902217865,1.193376898765564,1.2630937099456787,1.5768191814422607,0.9842265844345093,0.9842265844345093,1.2805228233337402,1.663965106010437,1.681394338607788,1.2630937099456787,1.507102370262146,1.681394338607788,0.2696296274662018,-1.4210021495819092,-1.0724183320999146,-1.6127233505249023,-1.2641394138336182,-0.340392142534256,0.7053594589233398,0.6182135343551636,0.8622221946716309,0.8796514272689819,1.175947666168213,1.524531602859497,1.4548147916793823],[-1.333856225013733,-0.9329847693443298,-1.4384313821792603,-1.7521568536758423,-0.20095860958099365,-1.5952941179275513,-0.16610021889209747,-0.16610021889209747,-0.7761220335960388,-0.07895424962043762,0.04305011034011841,-0.09638344496488571,-0.18352940678596497,-0.04409585893154144,2.1694116592407227,2.640000104904175,2.5702831745147705,2.483137369155884,2.5354249477386475,2.483137369155884,2.552854061126709,2.4134204387664795,2.395991325378418,2.1868410110473633,2.465708017349243,2.2914161682128906,2.082265853881836,2.361132860183716,2.517995595932007,1.838257074356079,2.640000104904175,2.640000104904175,2.3262743949890137,1.9254029989242554,2.517995595932007,2.640000104904175,2.640000104904175,2.4482789039611816,2.640000104904175,2.517995595932007,2.483137369155884,2.239128589630127,2.1694116592407227,2.082265853881836,1.8731154203414917,0.5484967231750488,-0.270675390958786,-0.8458387851715088,-1.3861438035964966,-1.7172985076904297,-1.3687145709991455,-1.2989978790283203,-1.2118518352508545,-0.6366884708404541,-0.6018300652503967,-1.176993489265442,-0.7412636280059814,-0.5321133136749268,0.8622221946716309,1.0713725090026855,1.0190849304199219,1.2979520559310913,1.6465359926223755,0.5833551287651062,-1.246710181236267,-0.8806971907615662,0.5659258961677551,0.47877994179725647,0.6182135343551636,-0.7935512065887451,-1.2292810678482056,-1.4035730361938477,-0.1312418282032013,-0.18352940678596497,0.16505447030067444,0.46135076880455017,1.1410893201828003,1.5768191814422607,0.49620914459228516,0.6530718803405762,0.9319390058517456,0.966797411441803,-0.5669716596603394,0.7576470375061035,1.7162526845932007,0.2347712367773056,1.1236600875854492,0.8447930216789246,1.9254029989242554,2.0125489234924316,2.2565577030181885,1.681394338607788,-1.4558606147766113,-1.7695860862731934,-0.5495424866676331,-0.8632679581642151,-0.3229629695415497,-1.1595642566680908,-1.804444432258606,-1.7521568536758423,-1.2641394138336182,-1.4732897281646729,-1.5604357719421387,-0.39267975091934204,-0.270675390958786,-0.3229629695415497,-0.1312418282032013,-0.35782134532928467,-0.9678431153297424,-1.508148193359375,-1.2815686464309692,-1.2292810678482056,-1.3861438035964966,-1.4210021495819092,-1.3164269924163818,-1.4384313821792603,-1.4384313821792603,-1.4558606147766113,-1.0724183320999146,1.7859694957733154,1.367668867111206,1.350239634513855,1.4199564456939697,2.204270124435425,1.7511111497879028,1.2630937099456787,1.4896732568740845,0.7750762701034546,-0.5844008922576904,1.4896732568740845,1.2979520559310913,1.6291067600250244,1.2979520559310913,1.4722440242767334,2.3785619735717773,2.117124080657959,1.4896732568740845,1.1585185527801514,1.838257074356079,0.4439215660095215,-0.06152505427598953,-0.23581700026988983,0.30448800325393677,-0.02666666731238365,-0.7238343954086304,0.5484967231750488,0.4264923632144928,-1.1247059106826782,-0.09638344496488571,-1.1944226026535034,-0.37525054812431335,-0.340392142534256,0.4264923632144928,-0.1312418282032013,-0.20095860958099365,-0.8632679581642151,1.036514163017273,1.2630937099456787,0.14762526750564575,0.2522004246711731,0.7576470375061035,-0.009237472899258137,0.9842265844345093,1.332810401916504,1.5768191814422607,2.1345534324645996,0.008191721513867378,1.663965106010437,1.2979520559310913,0.6879302859306335,0.2696296274662018,-0.7238343954086304,0.5484967231750488,0.7925054430961609,0.5310675501823425,1.5942484140396118,0.6879302859306335,1.3850979804992676,1.9602614641189575,1.7511111497879028,1.7511111497879028,1.4199564456939697,1.350239634513855,1.1410893201828003,1.6116775274276733,1.524531602859497,1.7336819171905518,1.663965106010437,1.7859694957733154,1.8905446529388428,1.2282352447509766,1.0016558170318604,-0.7238343954086304,-0.23581700026988983,0.2347712367773056,1.210806131362915,0.7925054430961609,1.0713725090026855,1.0888017416000366,-0.14867103099822998,-0.2532461881637573,1.2630937099456787,0.4090631902217865,1.2979520559310913,1.3850979804992676,1.332810401916504,1.7859694957733154,1.2979520559310913,1.5768191814422607,1.4896732568740845,1.9428322315216064,1.8556863069534302,0.5136383175849915,-1.176993489265442,-0.7935512065887451,-1.3687145709991455,-1.1595642566680908,-0.6541176438331604,0.11276688426733017,0.2173420488834381,0.5484967231750488,1.5942484140396118,1.367668867111206,1.2979520559310913],[-1.4732897281646729,-0.5495424866676331,-1.508148193359375,-1.6998692750930786,-0.23581700026988983,-1.4210021495819092,-0.06152505427598953,-0.09638344496488571,-0.16610021889209747,-0.37525054812431335,-0.462396502494812,-0.427538126707077,0.04305011034011841,-0.2881045639514923,1.681394338607788,2.3437037467956543,2.640000104904175,2.5354249477386475,2.483137369155884,2.465708017349243,1.9079738855361938,2.2914161682128906,2.4482789039611816,2.5354249477386475,2.3437037467956543,2.6051416397094727,2.6051416397094727,2.552854061126709,2.640000104904175,2.552854061126709,2.5354249477386475,2.5354249477386475,2.552854061126709,2.640000104904175,2.483137369155884,2.587712526321411,2.2914161682128906,2.0125489234924316,1.1410893201828003,0.6530718803405762,-0.21838779747486115,-1.0724183320999146,-1.4384313821792603,-1.5778648853302002,-1.665010929107666,-1.6301524639129639,-1.665010929107666,-1.6998692750930786,-1.4210021495819092,-0.1312418282032013,1.053943395614624,1.838257074356079,1.6116775274276733,1.1585185527801514,0.7402178645133972,1.2282352447509766,0.4090631902217865,0.0604793019592762,0.5136383175849915,-0.4798257052898407,-0.619259238243103,0.5833551287651062,0.46135076880455017,0.04305011034011841,-0.5321133136749268,-0.9155555367469788,0.0604793019592762,-0.06152505427598953,0.4264923632144928,0.4090631902217865,-0.4449673295021057,1.053943395614624,-0.21838779747486115,-0.8806971907615662,-0.16610021889209747,0.8970806002616882,0.008191721513867378,1.2979520559310913,0.6705011129379272,0.0604793019592762,-0.270675390958786,0.6007843017578125,0.0604793019592762,0.2522004246711731,0.8970806002616882,0.7750762701034546,1.5768191814422607,1.6988235712051392,1.4722440242767334,1.5768191814422607,2.1345534324645996,1.8905446529388428,-0.07895424962043762,-1.490718960762024,-1.1072766780853271,0.14762526750564575,-1.2815686464309692,-0.6541176438331604,-0.9678431153297424,-1.6127233505249023,-1.5778648853302002,-1.4384313821792603,-1.246710181236267,-0.5669716596603394,-0.427538126707077,-0.2532461881637573,-1.1421350240707397,-0.9504139423370361,-1.5255773067474365,-1.5255773067474365,-1.4558606147766113,-1.4035730361938477,-1.2641394138336182,-1.333856225013733,-1.246710181236267,-1.3687145709991455,-1.2292810678482056,-1.333856225013733,-1.0201307535171509,2.4482789039611816,2.204270124435425,2.0125489234924316,2.047407388687134,1.7685402631759644,0.9842265844345093,0.9319390058517456,1.5419608354568481,0.7576470375061035,-0.07895424962043762,0.47877994179725647,1.3850979804992676,1.5768191814422607,0.8447930216789246,1.2979520559310913,1.6465359926223755,1.524531602859497,1.820827841758728,1.2282352447509766,2.3785619735717773,1.9254029989242554,1.350239634513855,0.4264923632144928,0.9493681788444519,0.8273638486862183,-0.305533766746521,-0.23581700026988983,1.5419608354568481,0.5310675501823425,-0.9852723479270935,-1.3164269924163818,1.0016558170318604,-0.04409585893154144,0.5310675501823425,-0.21838779747486115,-0.02666666731238365,-0.340392142534256,0.18248365819454193,-0.16610021889209747,-0.009237472899258137,-0.270675390958786,0.8447930216789246,0.32191720604896545,1.0713725090026855,0.7750762701034546,1.5768191814422607,0.0604793019592762,1.4548147916793823,1.507102370262146,-0.5495424866676331,0.008191721513867378,1.3153812885284424,0.13019607961177826,0.6879302859306335,1.0190849304199219,1.5768191814422607,0.6356427073478699,1.2979520559310913,0.8796514272689819,1.332810401916504,1.524531602859497,1.3153812885284424,1.8033987283706665,0.8970806002616882,1.2630937099456787,1.4548147916793823,1.6988235712051392,1.681394338607788,1.5419608354568481,1.820827841758728,1.9254029989242554,1.5593899488449097,0.6007843017578125,-0.619259238243103,-0.6715468168258667,0.6182135343551636,1.2630937099456787,1.1236600875854492,1.210806131362915,0.8447930216789246,-0.21838779747486115,-0.02666666731238365,1.210806131362915,0.8970806002616882,0.8273638486862183,0.9842265844345093,0.7576470375061035,1.4548147916793823,1.0713725090026855,1.7511111497879028,1.9254029989242554,1.838257074356079,1.838257074356079,1.6988235712051392,1.4373856782913208,0.8273638486862183,-0.8458387851715088,-1.0724183320999146,-0.7761220335960388,-0.1312418282032013,-0.07895424962043762,-1.1072766780853271,-0.8632679581642151,-0.5321133136749268,-1.0201307535171509],[-1.089847445487976,-0.23581700026988983,-1.508148193359375,-1.5952941179275513,-0.20095860958099365,-1.490718960762024,-0.21838779747486115,-0.23581700026988983,-0.41010892391204834,-0.3229629695415497,-0.16610021889209747,0.2347712367773056,-0.23581700026988983,0.16505447030067444,0.7053594589233398,2.640000104904175,2.483137369155884,2.640000104904175,2.640000104904175,2.2914161682128906,2.640000104904175,2.640000104904175,2.43084979057312,2.587712526321411,2.640000104904175,2.465708017349243,2.4134204387664795,2.640000104904175,2.6051416397094727,2.552854061126709,2.640000104904175,2.4134204387664795,2.517995595932007,2.0299782752990723,1.524531602859497,0.32191720604896545,-0.41010892391204834,-1.3164269924163818,-1.5604357719421387,-1.6301524639129639,-1.5778648853302002,-1.6824400424957275,-1.6824400424957275,-1.6998692750930786,-1.804444432258606,-1.804444432258606,-1.3861438035964966,-1.351285457611084,-0.5146840810775757,0.7925054430961609,1.2630937099456787,1.507102370262146,1.663965106010437,1.8033987283706665,1.4199564456939697,0.8970806002616882,1.1410893201828003,0.9145098328590393,0.6356427073478699,0.4439215660095215,-0.4798257052898407,-1.3164269924163818,-0.35782134532928467,0.0604793019592762,-1.2989978790283203,-1.4384313821792603,-0.07895424962043762,0.16505447030067444,-0.23581700026988983,0.6007843017578125,0.5136383175849915,0.8447930216789246,1.524531602859497,0.0604793019592762,0.04305011034011841,0.7402178645133972,0.2696296274662018,0.9145098328590393,-0.427538126707077,0.09533768892288208,-0.09638344496488571,1.053943395614624,1.2630937099456787,-0.1312418282032013,-0.14867103099822998,0.6879302859306335,1.193376898765564,0.5484967231750488,1.367668867111206,1.7336819171905518,1.7859694957733154,1.681394338607788,-1.0724183320999146,-1.5604357719421387,-1.1944226026535034,0.16505447030067444,0.13019607961177826,-0.462396502494812,-0.7238343954086304,-1.246710181236267,-1.2641394138336182,-1.6998692750930786,-1.1944226026535034,-0.9504139423370361,-1.7347276210784912,-0.1312418282032013,-1.5255773067474365,-1.4732897281646729,-1.490718960762024,-1.4732897281646729,-1.246710181236267,-1.176993489265442,-1.3687145709991455,-1.333856225013733,-1.3164269924163818,-1.2989978790283203,-1.1247059106826782,-1.1595642566680908,-1.2118518352508545,2.640000104904175,1.2630937099456787,1.9602614641189575,2.117124080657959,1.977690577507019,1.193376898765564,1.053943395614624,1.210806131362915,0.3567756116390228,0.09533768892288208,-0.04409585893154144,0.5659258961677551,0.966797411441803,0.2347712367773056,0.6705011129379272,1.4896732568740845,1.0190849304199219,1.7511111497879028,1.4373856782913208,1.9602614641189575,2.1868410110473633,1.2805228233337402,1.053943395614624,0.5310675501823425,-0.16610021889209747,1.5768191814422607,0.9842265844345093,0.9842265844345093,0.5833551287651062,0.04305011034011841,0.09533768892288208,0.5659258961677551,0.14762526750564575,1.4548147916793823,-0.20095860958099365,-1.0549890995025635,-1.4384313821792603,-0.8806971907615662,-0.41010892391204834,-0.270675390958786,-0.16610021889209747,1.4548147916793823,1.0713725090026855,0.8622221946716309,1.524531602859497,0.7750762701034546,-0.305533766746521,1.6291067600250244,0.5484967231750488,-0.39267975091934204,-1.0724183320999146,-0.16610021889209747,0.966797411441803,1.8731154203414917,0.6356427073478699,1.507102370262146,0.0604793019592762,0.3742047846317291,0.6879302859306335,1.4548147916793823,1.663965106010437,2.2565577030181885,1.9079738855361938,0.9319390058517456,1.6116775274276733,1.4896732568740845,1.7336819171905518,1.681394338607788,1.7859694957733154,1.663965106010437,1.6988235712051392,1.524531602859497,0.5310675501823425,-1.2118518352508545,-0.41010892391204834,0.5310675501823425,1.1410893201828003,1.2630937099456787,0.6356427073478699,1.0713725090026855,0.6705011129379272,-0.18352940678596497,0.6182135343551636,0.19991286098957062,0.6007843017578125,1.2805228233337402,0.8796514272689819,1.6988235712051392,1.350239634513855,1.7859694957733154,2.2216992378234863,1.8731154203414917,1.977690577507019,1.977690577507019,1.681394338607788,1.7685402631759644,0.47877994179725647,-1.246710181236267,-1.1944226026535034,-0.6018300652503967,-0.5669716596603394,-0.04409585893154144,0.4090631902217865,-0.270675390958786,-0.7412636280059814],[-1.2292810678482056,-0.340392142534256,-1.7521568536758423,-1.804444432258606,-0.3229629695415497,-1.333856225013733,-0.1312418282032013,-0.2532461881637573,-0.2532461881637573,-0.07895424962043762,0.18248365819454193,-0.4972549080848694,-0.3229629695415497,-0.270675390958786,0.18248365819454193,2.6051416397094727,2.640000104904175,2.587712526321411,2.4482789039611816,2.640000104904175,2.552854061126709,2.395991325378418,2.640000104904175,2.483137369155884,2.483137369155884,2.622570753097534,2.622570753097534,2.622570753097534,2.3785619735717773,1.8033987283706665,0.966797411441803,-0.1312418282032013,-0.35782134532928467,-1.333856225013733,-1.508148193359375,-1.7695860862731934,-1.5604357719421387,-1.7695860862731934,-1.5778648853302002,-1.804444432258606,-1.804444432258606,-1.7521568536758423,-1.5604357719421387,-1.333856225013733,-1.3861438035964966,-1.1421350240707397,-0.7238343954086304,0.7576470375061035,0.6182135343551636,1.5942484140396118,1.4373856782913208,0.9842265844345093,1.350239634513855,1.3850979804992676,1.524531602859497,1.8033987283706665,1.5768191814422607,1.7685402631759644,1.1410893201828003,-0.06152505427598953,-0.009237472899258137,-0.6541176438331604,-1.0724183320999146,-0.8632679581642151,-0.6018300652503967,-1.5778648853302002,-1.1247059106826782,-1.0027015209197998,-0.8284096121788025,-0.9329847693443298,-0.1312418282032013,0.9145098328590393,0.8970806002616882,0.6356427073478699,-1.1072766780853271,-0.8806971907615662,1.0888017416000366,0.9145098328590393,1.2805228233337402,0.33934640884399414,0.7227886915206909,0.7402178645133972,-0.09638344496488571,-0.35782134532928467,-0.270675390958786,1.0888017416000366,0.8447930216789246,-0.41010892391204834,1.2805228233337402,1.332810401916504,1.175947666168213,0.8447930216789246,-0.6715468168258667,-1.6127233505249023,-0.6715468168258667,1.3850979804992676,-0.1138126328587532,-0.8632679581642151,-1.1072766780853271,-1.2292810678482056,-1.351285457611084,-1.5255773067474365,-1.333856225013733,-0.8109803795814514,-1.246710181236267,-0.5321133136749268,-1.5952941179275513,-1.5778648853302002,-1.3861438035964966,-1.4384313821792603,-1.3861438035964966,-1.3687145709991455,-1.2989978790283203,-1.351285457611084,-1.1944226026535034,-1.1595642566680908,-1.246710181236267,-1.4384313821792603,-1.2815686464309692,2.640000104904175,2.1694116592407227,1.681394338607788,2.2914161682128906,2.4134204387664795,1.9602614641189575,1.9254029989242554,0.7053594589233398,0.7402178645133972,-0.06152505427598953,0.2347712367773056,0.8970806002616882,0.8622221946716309,0.28705883026123047,0.04305011034011841,0.5136383175849915,1.2456644773483276,1.036514163017273,1.7162526845932007,1.0016558170318604,2.239128589630127,1.9079738855361938,1.4199564456939697,1.036514163017273,0.11276688426733017,0.5659258961677551,1.332810401916504,1.1236600875854492,1.2630937099456787,1.5593899488449097,2.117124080657959,1.4722440242767334,1.0016558170318604,-0.2532461881637573,1.0016558170318604,1.507102370262146,-0.1138126328587532,0.6182135343551636,-0.14867103099822998,-0.7412636280059814,-1.3861438035964966,0.30448800325393677,1.3153812885284424,0.5484967231750488,0.6356427073478699,0.8622221946716309,1.2979520559310913,1.3850979804992676,0.49620914459228516,0.2522004246711731,-0.4449673295021057,0.8273638486862183,1.3153812885284424,0.3742047846317291,0.6879302859306335,2.1694116592407227,0.4090631902217865,0.5136383175849915,1.6116775274276733,1.5419608354568481,1.3153812885284424,1.4025272130966187,1.0190849304199219,0.8447930216789246,1.053943395614624,1.681394338607788,1.681394338607788,1.524531602859497,2.082265853881836,2.0648365020751953,1.8905446529388428,1.5419608354568481,0.5310675501823425,-0.5669716596603394,-0.39267975091934204,0.3742047846317291,1.1585185527801514,1.210806131362915,0.49620914459228516,0.5659258961677551,0.3742047846317291,0.5136383175849915,0.9319390058517456,0.4264923632144928,0.5484967231750488,1.036514163017273,1.1062309741973877,1.4373856782913208,1.7511111497879028,1.977690577507019,1.9428322315216064,2.0996949672698975,2.117124080657959,1.9602614641189575,1.9951198101043701,1.8731154203414917,1.4025272130966187,0.8970806002616882,-0.5495424866676331,-1.0027015209197998,-0.39267975091934204,-0.20095860958099365,0.4264923632144928,0.32191720604896545,-0.39267975091934204],[-1.2641394138336182,-0.41010892391204834,-1.804444432258606,-1.647581696510315,-0.23581700026988983,-1.3861438035964966,-0.16610021889209747,-0.23581700026988983,-0.18352940678596497,-0.1138126328587532,-0.1312418282032013,-0.1138126328587532,-0.2532461881637573,-0.16610021889209747,0.008191721513867378,2.151982545852661,2.43084979057312,2.552854061126709,2.483137369155884,2.552854061126709,2.6051416397094727,2.5702831745147705,2.483137369155884,2.308845281600952,2.117124080657959,1.7511111497879028,1.2456644773483276,-0.06152505427598953,-0.8284096121788025,-1.2815686464309692,-1.4384313821792603,-1.5952941179275513,-1.5952941179275513,-1.6998692750930786,-1.5255773067474365,-1.804444432258606,-1.804444432258606,-1.647581696510315,-1.490718960762024,-1.3164269924163818,-1.176993489265442,-1.2292810678482056,-1.2292810678482056,-1.176993489265442,-1.0027015209197998,0.11276688426733017,0.9842265844345093,1.175947666168213,1.507102370262146,1.663965106010437,1.4373856782913208,1.2979520559310913,1.350239634513855,1.681394338607788,1.3850979804992676,1.6988235712051392,1.210806131362915,1.2979520559310913,1.4548147916793823,-0.23581700026988983,-0.20095860958099365,-0.009237472899258137,-1.351285457611084,-1.804444432258606,-1.2292810678482056,-1.1595642566680908,-1.6824400424957275,-1.0375598669052124,-1.246710181236267,-1.7521568536758423,-0.04409585893154144,0.3567756116390228,0.7750762701034546,-0.305533766746521,-0.2532461881637573,-0.8981263637542725,-1.1247059106826782,0.4439215660095215,0.32191720604896545,0.3916339874267578,-0.39267975091934204,0.008191721513867378,0.5833551287651062,-0.270675390958786,-0.2881045639514923,0.46135076880455017,0.9842265844345093,0.6879302859306335,1.332810401916504,0.6530718803405762,0.11276688426733017,0.0604793019592762,-0.5321133136749268,-0.6889760494232178,1.8905446529388428,1.3850979804992676,-0.20095860958099365,-0.9155555367469788,-1.5952941179275513,-1.3687145709991455,-1.6824400424957275,-1.6998692750930786,-1.490718960762024,-0.8632679581642151,-1.5255773067474365,-1.3687145709991455,-1.351285457611084,-1.351285457611084,-1.2641394138336182,-1.2989978790283203,-1.1944226026535034,-1.3861438035964966,-1.089847445487976,-1.1944226026535034,-1.5430065393447876,-1.2989978790283203,-1.176993489265442,-1.0549890995025635,-1.4035730361938477,2.0648365020751953,1.8556863069534302,1.9254029989242554,2.2565577030181885,1.8731154203414917,1.193376898765564,0.7925054430961609,1.1410893201828003,0.19991286098957062,0.16505447030067444,0.3916339874267578,0.0604793019592762,0.6007843017578125,0.6356427073478699,0.18248365819454193,-0.4449673295021057,-0.37525054812431335,1.4548147916793823,1.9079738855361938,1.4199564456939697,1.6465359926223755,1.838257074356079,2.0125489234924316,1.3153812885284424,0.5310675501823425,0.9842265844345093,1.4896732568740845,1.4025272130966187,1.6988235712051392,2.1868410110473633,1.5768191814422607,1.4722440242767334,2.4134204387664795,1.0190849304199219,0.5310675501823425,1.2282352447509766,1.4199564456939697,0.4090631902217865,-0.14867103099822998,0.8622221946716309,0.33934640884399414,0.07790849357843399,0.5659258961677551,1.7685402631759644,0.966797411441803,2.0648365020751953,0.28705883026123047,1.6465359926223755,-0.16610021889209747,-0.8109803795814514,-0.619259238243103,-0.305533766746521,-0.4449673295021057,-0.340392142534256,2.082265853881836,0.8273638486862183,-0.2532461881637573,1.3153812885284424,1.2805228233337402,1.2456644773483276,1.524531602859497,1.9602614641189575,1.210806131362915,0.8447930216789246,1.524531602859497,1.3850979804992676,1.7685402631759644,1.7859694957733154,1.8556863069534302,1.9951198101043701,1.6291067600250244,1.2282352447509766,0.9842265844345093,-0.4798257052898407,-0.35782134532928467,0.8796514272689819,1.210806131362915,1.350239634513855,0.6356427073478699,-0.23581700026988983,-0.18352940678596497,0.02562091499567032,0.6705011129379272,0.30448800325393677,0.2522004246711731,0.8796514272689819,1.2630937099456787,1.1236600875854492,1.350239634513855,1.838257074356079,2.0125489234924316,2.151982545852661,2.2914161682128906,2.1345534324645996,2.1868410110473633,1.9951198101043701,1.7859694957733154,1.7336819171905518,1.820827841758728,0.11276688426733017,-1.333856225013733,-0.7935512065887451,-0.7238343954086304,-0.02666666731238365,0.6530718803405762],[-1.2815686464309692,-0.6366884708404541,-1.804444432258606,-1.6824400424957275,-0.305533766746521,-1.2815686464309692,0.09533768892288208,0.32191720604896545,0.4439215660095215,-0.009237472899258137,0.46135076880455017,-0.1312418282032013,0.11276688426733017,0.008191721513867378,-0.20095860958099365,-0.18352940678596497,2.3262743949890137,2.3437037467956543,2.5702831745147705,2.0299782752990723,1.6988235712051392,1.4373856782913208,1.367668867111206,-0.7412636280059814,-0.9329847693443298,-1.2292810678482056,-1.665010929107666,-1.6998692750930786,-1.665010929107666,-1.5255773067474365,-1.508148193359375,-1.4732897281646729,-1.3687145709991455,-1.2815686464309692,-1.246710181236267,-1.1072766780853271,-1.246710181236267,-1.246710181236267,-1.1247059106826782,-0.8284096121788025,-1.0724183320999146,-0.7761220335960388,-0.8981263637542725,-0.3229629695415497,-0.6889760494232178,-0.3229629695415497,0.5833551287651062,1.350239634513855,1.4025272130966187,1.2805228233337402,1.7511111497879028,1.4548147916793823,1.9254029989242554,1.4548147916793823,1.7511111497879028,1.2805228233337402,1.1062309741973877,0.8970806002616882,1.3850979804992676,0.2173420488834381,-0.305533766746521,-0.305533766746521,-1.4384313821792603,-1.2118518352508545,-1.7347276210784912,-1.2292810678482056,-1.7172985076904297,-1.7347276210784912,-1.5430065393447876,-1.2989978790283203,-1.333856225013733,-1.4732897281646729,-1.5430065393447876,-0.3229629695415497,-0.270675390958786,0.09533768892288208,0.02562091499567032,1.036514163017273,0.8970806002616882,1.2456644773483276,0.5484967231750488,1.0713725090026855,-1.2641394138336182,-0.1312418282032013,-0.9504139423370361,0.6705011129379272,1.210806131362915,0.4090631902217865,0.9493681788444519,0.8622221946716309,-0.2532461881637573,-0.5321133136749268,-1.0375598669052124,-1.7347276210784912,1.0888017416000366,-0.18352940678596497,0.3742047846317291,-0.9852723479270935,-1.2292810678482056,-1.5952941179275513,-1.7870151996612549,-1.7695860862731934,-1.4732897281646729,-0.9329847693443298,-1.665010929107666,-1.246710181236267,-1.246710181236267,-1.3164269924163818,-1.333856225013733,-1.351285457611084,-1.2292810678482056,-1.0375598669052124,-1.1595642566680908,-1.2815686464309692,-1.0027015209197998,-1.3861438035964966,-1.333856225013733,-1.4035730361938477,-1.4732897281646729,2.43084979057312,1.507102370262146,1.0713725090026855,2.483137369155884,1.7685402631759644,1.4373856782913208,1.7162526845932007,0.49620914459228516,0.28705883026123047,-0.4798257052898407,0.5310675501823425,-0.1138126328587532,0.9493681788444519,0.9842265844345093,0.4439215660095215,0.8796514272689819,0.07790849357843399,0.8273638486862183,1.9951198101043701,1.9602614641189575,1.036514163017273,1.7511111497879028,2.2216992378234863,2.204270124435425,1.332810401916504,1.1410893201828003,0.8970806002616882,1.4199564456939697,1.7336819171905518,1.7336819171905518,2.0125489234924316,1.0190849304199219,1.6116775274276733,1.5942484140396118,1.367668867111206,1.3850979804992676,0.2522004246711731,1.175947666168213,0.46135076880455017,1.193376898765564,0.3567756116390228,0.49620914459228516,1.3850979804992676,0.7576470375061035,0.9493681788444519,1.9602614641189575,1.507102370262146,1.2282352447509766,-0.5146840810775757,-0.4972549080848694,-1.508148193359375,-0.7064052224159241,-0.7761220335960388,-0.21838779747486115,0.4264923632144928,-0.7412636280059814,-0.270675390958786,0.9842265844345093,0.966797411441803,1.175947666168213,2.0299782752990723,1.6291067600250244,1.1410893201828003,1.210806131362915,1.6291067600250244,1.4896732568740845,1.7511111497879028,1.9602614641189575,2.0299782752990723,1.838257074356079,1.681394338607788,1.9254029989242554,0.6356427073478699,0.008191721513867378,-0.14867103099822998,0.4264923632144928,1.2282352447509766,1.0888017416000366,0.6530718803405762,-0.14867103099822998,-0.35782134532928467,-0.4449673295021057,0.0604793019592762,0.2347712367773056,0.09533768892288208,0.6356427073478699,1.210806131362915,1.1062309741973877,1.2456644773483276,1.7859694957733154,2.1694116592407227,2.1694116592407227,2.308845281600952,2.3262743949890137,2.3262743949890137,2.1345534324645996,2.082265853881836,2.1694116592407227,1.9254029989242554,1.7511111497879028,1.6116775274276733,0.7053594589233398,-0.8632679581642151,-0.7761220335960388,0.07790849357843399],[-1.3861438035964966,-0.6541176438331604,-1.804444432258606,-1.4035730361938477,-0.4798257052898407,-0.7935512065887451,0.2347712367773056,0.11276688426733017,-0.04409585893154144,0.02562091499567032,-0.14867103099822998,-0.02666666731238365,-0.1312418282032013,-0.14867103099822998,0.18248365819454193,-0.21838779747486115,0.19991286098957062,0.4264923632144928,0.30448800325393677,-0.6366884708404541,-1.2292810678482056,-1.351285457611084,-1.7172985076904297,-1.0724183320999146,-1.4384313821792603,-1.333856225013733,-1.089847445487976,-1.089847445487976,-1.1421350240707397,-0.9504139423370361,-0.8109803795814514,-0.7586928009986877,-0.6715468168258667,-0.8632679581642151,-0.5669716596603394,-0.7064052224159241,-0.4972549080848694,-0.619259238243103,-0.4449673295021057,-0.7238343954086304,-0.4972549080848694,-0.5669716596603394,-0.270675390958786,-0.462396502494812,0.7576470375061035,0.16505447030067444,0.28705883026123047,1.9602614641189575,1.8731154203414917,1.5593899488449097,0.6356427073478699,1.507102370262146,1.8731154203414917,1.8731154203414917,2.0996949672698975,0.9145098328590393,0.6530718803405762,0.6182135343551636,1.524531602859497,0.49620914459228516,-0.09638344496488571,-0.39267975091934204,-1.1247059106826782,-1.4732897281646729,-1.665010929107666,-1.333856225013733,-1.508148193359375,-1.665010929107666,-1.3687145709991455,-1.2292810678482056,-0.5844008922576904,0.18248365819454193,-0.35782134532928467,-1.1595642566680908,-1.0549890995025635,-0.02666666731238365,0.3742047846317291,0.16505447030067444,-1.1072766780853271,-0.009237472899258137,0.6530718803405762,0.6705011129379272,-0.7586928009986877,-0.5495424866676331,-0.4972549080848694,-0.20095860958099365,-0.009237472899258137,-0.37525054812431335,0.7053594589233398,0.7925054430961609,0.2347712367773056,-1.1247059106826782,-1.0724183320999146,-1.804444432258606,0.14762526750564575,0.9319390058517456,-0.14867103099822998,-1.508148193359375,-1.804444432258606,-1.5604357719421387,-1.804444432258606,-1.6127233505249023,-1.6127233505249023,-1.0201307535171509,-1.1072766780853271,-1.2641394138336182,-1.2641394138336182,-1.3164269924163818,-1.2292810678482056,-1.2641394138336182,-1.351285457611084,-1.2815686464309692,-1.2641394138336182,-1.2641394138336182,-1.1595642566680908,-1.089847445487976,-1.1247059106826782,-0.9852723479270935,-1.0027015209197998,2.43084979057312,2.552854061126709,2.517995595932007,2.27398681640625,2.5702831745147705,2.3437037467956543,0.9319390058517456,-0.16610021889209747,-0.4972549080848694,-0.14867103099822998,-0.04409585893154144,-0.7935512065887451,-0.427538126707077,0.28705883026123047,-0.09638344496488571,0.28705883026123047,-0.427538126707077,1.7162526845932007,1.7162526845932007,2.27398681640625,1.9428322315216064,1.4722440242767334,2.0125489234924316,1.9951198101043701,1.3153812885284424,1.350239634513855,1.820827841758728,2.0299782752990723,1.524531602859497,2.151982545852661,1.8905446529388428,1.5593899488449097,1.5593899488449097,1.332810401916504,1.2282352447509766,2.047407388687134,1.977690577507019,1.524531602859497,1.5593899488449097,1.4548147916793823,0.6879302859306335,1.2630937099456787,-0.39267975091934204,1.7685402631759644,0.7576470375061035,0.7750762701034546,1.7162526845932007,-0.41010892391204834,-0.6018300652503967,0.3567756116390228,-1.1944226026535034,-0.7586928009986877,-0.5146840810775757,-0.06152505427598953,1.1585185527801514,-0.14867103099822998,0.3567756116390228,1.9079738855361938,0.8970806002616882,1.5593899488449097,1.6988235712051392,1.4199564456939697,1.5768191814422607,1.4896732568740845,1.4896732568740845,1.5768191814422607,1.8905446529388428,2.0125489234924316,2.117124080657959,1.9602614641189575,1.663965106010437,1.6291067600250244,0.32191720604896545,-0.1138126328587532,-0.5669716596603394,0.4439215660095215,1.036514163017273,1.1062309741973877,0.04305011034011841,-0.23581700026988983,-1.0375598669052124,0.02562091499567032,-0.427538126707077,0.19991286098957062,-0.14867103099822998,0.7227886915206909,1.1236600875854492,1.3153812885284424,1.507102370262146,1.681394338607788,1.820827841758728,2.047407388687134,2.151982545852661,2.2216992378234863,2.0996949672698975,2.151982545852661,2.047407388687134,2.2216992378234863,1.9079738855361938,2.151982545852661,1.6291067600250244,1.193376898765564,1.820827841758728,-0.4798257052898407,-0.7935512065887451],[-1.351285457611084,-0.6541176438331604,-1.6998692750930786,-1.1595642566680908,-0.4449673295021057,-0.8632679581642151,0.09533768892288208,0.2696296274662018,-0.02666666731238365,-0.1138126328587532,-0.1312418282032013,-0.02666666731238365,-0.1138126328587532,-0.305533766746521,0.0604793019592762,0.28705883026123047,-0.14867103099822998,-0.20095860958099365,-0.340392142534256,-0.23581700026988983,-0.8632679581642151,-0.8806971907615662,-0.9155555367469788,-0.6541176438331604,-0.8806971907615662,-0.6889760494232178,-0.8284096121788025,-0.5669716596603394,-0.6018300652503967,-0.6366884708404541,-0.20095860958099365,-0.20095860958099365,-0.3229629695415497,-0.39267975091934204,-0.3229629695415497,-0.305533766746521,-0.09638344496488571,-0.21838779747486115,-0.2532461881637573,-0.4972549080848694,-0.37525054812431335,-0.5321133136749268,0.5310675501823425,1.4722440242767334,2.204270124435425,1.681394338607788,1.663965106010437,1.7511111497879028,2.117124080657959,1.977690577507019,0.16505447030067444,0.8099346160888672,1.820827841758728,1.5593899488449097,2.047407388687134,1.7162526845932007,1.175947666168213,0.49620914459228516,1.3153812885284424,0.8796514272689819,-0.5669716596603394,-0.18352940678596497,-1.0375598669052124,-1.5604357719421387,-1.6127233505249023,-1.7347276210784912,-1.4035730361938477,-1.5778648853302002,-1.5604357719421387,-1.4210021495819092,-1.0549890995025635,-0.462396502494812,-0.340392142534256,-1.0027015209197998,-0.9329847693443298,0.33934640884399414,-0.35782134532928467,0.09533768892288208,-0.1138126328587532,-0.8109803795814514,-0.5321133136749268,-0.20095860958099365,-0.4798257052898407,-1.6301524639129639,-0.4798257052898407,-0.4798257052898407,-0.14867103099822998,-0.1138126328587532,-0.21838779747486115,-0.6366884708404541,-0.4972549080848694,-1.804444432258606,-1.3164269924163818,-1.2292810678482056,-0.009237472899258137,-0.4972549080848694,-1.1421350240707397,-0.9329847693443298,-1.4384313821792603,-0.21838779747486115,-1.508148193359375,-1.7172985076904297,-1.4558606147766113,-0.9504139423370361,-1.3164269924163818,-1.3164269924163818,-1.3861438035964966,-1.2118518352508545,-1.2815686464309692,-1.1595642566680908,-1.176993489265442,-1.2989978790283203,-1.3861438035964966,-1.0375598669052124,-1.3164269924163818,-0.7935512065887451,0.16505447030067444,-0.462396502494812,-0.5146840810775757,2.308845281600952,2.3262743949890137,2.2565577030181885,2.3785619735717773,1.1585185527801514,1.5593899488449097,0.008191721513867378,0.2347712367773056,-0.340392142534256,-0.8632679581642151,0.07790849357843399,-0.462396502494812,0.2173420488834381,0.46135076880455017,-0.270675390958786,1.2282352447509766,0.6182135343551636,1.053943395614624,1.7859694957733154,2.0299782752990723,2.117124080657959,1.7859694957733154,1.507102370262146,1.8033987283706665,1.8556863069534302,1.507102370262146,1.5419608354568481,1.6988235712051392,1.7859694957733154,1.8905446529388428,2.3262743949890137,1.7859694957733154,1.4199564456939697,1.5768191814422607,1.3850979804992676,1.350239634513855,1.3153812885284424,0.7750762701034546,1.7685402631759644,1.210806131362915,2.2216992378234863,0.6530718803405762,-0.21838779747486115,1.7162526845932007,0.7402178645133972,0.5833551287651062,0.13019607961177826,1.1236600875854492,0.13019607961177826,-0.340392142534256,-1.333856225013733,-1.333856225013733,-1.1247059106826782,-0.39267975091934204,0.5310675501823425,-0.7238343954086304,0.18248365819454193,0.2173420488834381,1.0190849304199219,0.9319390058517456,1.4896732568740845,1.663965106010437,1.5768191814422607,1.350239634513855,1.332810401916504,1.681394338607788,2.082265853881836,2.151982545852661,2.082265853881836,1.9951198101043701,1.6116775274276733,1.2630937099456787,-0.340392142534256,-0.7412636280059814,-0.35782134532928467,0.7925054430961609,0.9842265844345093,1.210806131362915,-0.06152505427598953,0.14762526750564575,-0.5844008922576904,-0.7412636280059814,-0.4798257052898407,-0.340392142534256,-0.37525054812431335,0.4090631902217865,1.0190849304199219,1.4548147916793823,0.7576470375061035,1.524531602859497,1.367668867111206,1.9602614641189575,2.0299782752990723,2.2216992378234863,2.1868410110473633,2.1694116592407227,2.1868410110473633,1.9428322315216064,2.117124080657959,1.9079738855361938,2.2914161682128906,2.047407388687134,1.9428322315216064,1.2979520559310913,-1.1595642566680908],[-1.2292810678482056,-1.0724183320999146,-1.665010929107666,-0.9504139423370361,-0.9155555367469788,-0.41010892391204834,0.49620914459228516,-0.14867103099822998,0.13019607961177826,-0.20095860958099365,-0.02666666731238365,-0.21838779747486115,-0.04409585893154144,0.04305011034011841,-0.14867103099822998,-0.305533766746521,0.13019607961177826,-0.1312418282032013,-0.340392142534256,-0.41010892391204834,-0.39267975091934204,-0.20095860958099365,-0.37525054812431335,-0.21838779747486115,-0.305533766746521,-0.23581700026988983,0.0604793019592762,0.04305011034011841,-0.23581700026988983,0.0604793019592762,-0.07895424962043762,-0.35782134532928467,-0.20095860958099365,0.09533768892288208,-0.35782134532928467,-0.06152505427598953,-0.18352940678596497,-0.37525054812431335,-0.4449673295021057,-0.3229629695415497,-0.37525054812431335,-0.462396502494812,0.3567756116390228,1.4373856782913208,1.8033987283706665,1.6988235712051392,2.151982545852661,1.8556863069534302,1.9951198101043701,1.9428322315216064,1.7162526845932007,0.4439215660095215,0.9319390058517456,1.4722440242767334,1.4373856782913208,1.9079738855361938,1.7336819171905518,-0.09638344496488571,0.8273638486862183,0.5310675501823425,-0.7935512065887451,-0.4798257052898407,-0.7238343954086304,-1.6301524639129639,-1.3687145709991455,-1.804444432258606,-1.5952941179275513,-1.6301524639129639,-1.6998692750930786,-1.4210021495819092,-1.6127233505249023,-1.3861438035964966,-0.6018300652503967,0.32191720604896545,0.5659258961677551,0.4264923632144928,-1.1944226026535034,-1.3164269924163818,0.02562091499567032,0.8447930216789246,-0.9155555367469788,-1.1944226026535034,-1.0201307535171509,-1.4558606147766113,-1.1247059106826782,-0.9329847693443298,-0.5495424866676331,-0.462396502494812,0.16505447030067444,-0.06152505427598953,-1.4732897281646729,-1.5778648853302002,-1.1247059106826782,-1.4384313821792603,-1.0201307535171509,-0.7064052224159241,-1.3687145709991455,-0.7935512065887451,-0.21838779747486115,-1.7347276210784912,-1.7172985076904297,-1.490718960762024,-1.3687145709991455,-1.2989978790283203,-1.3164269924163818,-1.351285457611084,-1.1421350240707397,-1.3687145709991455,-1.246710181236267,-1.0724183320999146,-1.1944226026535034,-1.1072766780853271,-0.8284096121788025,-0.14867103099822998,-0.1312418282032013,-0.35782134532928467,0.46135076880455017,-0.5844008922576904,-0.8632679581642151,2.3262743949890137,1.4025272130966187,0.0604793019592762,2.4482789039611816,1.2630937099456787,2.587712526321411,0.008191721513867378,-0.21838779747486115,-0.14867103099822998,-0.7761220335960388,0.2347712367773056,-0.7238343954086304,0.2522004246711731,-0.462396502494812,-0.270675390958786,0.33934640884399414,0.4439215660095215,-0.1138126328587532,1.507102370262146,1.5593899488449097,2.1694116592407227,2.2914161682128906,1.3153812885284424,1.4722440242767334,1.838257074356079,1.6465359926223755,2.1345534324645996,1.681394338607788,2.1345534324645996,1.7336819171905518,2.047407388687134,1.8731154203414917,1.9428322315216064,1.7162526845932007,1.977690577507019,1.977690577507019,1.332810401916504,1.8033987283706665,0.8796514272689819,1.6988235712051392,1.193376898765564,1.5419608354568481,2.047407388687134,1.8905446529388428,0.9493681788444519,1.524531602859497,1.6116775274276733,1.2805228233337402,1.663965106010437,-0.21838779747486115,-1.0549890995025635,-1.804444432258606,-1.0549890995025635,-0.5844008922576904,1.4025272130966187,1.3153812885284424,-0.8284096121788025,0.3742047846317291,-0.04409585893154144,1.332810401916504,1.4199564456939697,1.7511111497879028,1.5768191814422607,1.6465359926223755,1.7511111497879028,1.9254029989242554,2.0648365020751953,2.1345534324645996,2.082265853881836,1.977690577507019,1.663965106010437,1.5942484140396118,-0.23581700026988983,-0.39267975091934204,0.13019607961177826,0.7750762701034546,1.0713725090026855,0.9319390058517456,-0.07895424962043762,-0.6889760494232178,-0.6889760494232178,-0.39267975091934204,-0.9504139423370361,-0.6715468168258667,-0.7586928009986877,-0.8632679581642151,-0.6889760494232178,-0.7238343954086304,-0.37525054812431335,0.8796514272689819,1.5419608354568481,1.524531602859497,1.8033987283706665,1.8556863069534302,2.0996949672698975,2.1345534324645996,1.9428322315216064,2.151982545852661,2.2216992378234863,1.9079738855361938,1.681394338607788,2.395991325378418,2.483137369155884,2.5005664825439453,-0.8632679581642151],[-1.3164269924163818,-0.9504139423370361,-1.804444432258606,-0.5844008922576904,-0.9504139423370361,-0.06152505427598953,0.008191721513867378,-0.2881045639514923,-0.270675390958786,0.4090631902217865,-0.02666666731238365,-0.16610021889209747,-0.09638344496488571,0.30448800325393677,-0.009237472899258137,-0.18352940678596497,-0.02666666731238365,0.13019607961177826,-0.270675390958786,-0.23581700026988983,-0.23581700026988983,0.0604793019592762,-0.6541176438331604,0.2522004246711731,0.2696296274662018,-0.14867103099822998,-0.340392142534256,-0.305533766746521,-0.6366884708404541,-0.340392142534256,-0.1138126328587532,-0.35782134532928467,-0.270675390958786,-0.305533766746521,-0.16610021889209747,-0.04409585893154144,-0.3229629695415497,-0.1312418282032013,-0.619259238243103,-0.619259238243103,-0.1138126328587532,-0.270675390958786,-0.37525054812431335,-0.009237472899258137,0.3916339874267578,1.4373856782913208,1.5419608354568481,2.117124080657959,1.6465359926223755,1.9079738855361938,1.8731154203414917,-0.41010892391204834,-0.2532461881637573,0.09533768892288208,1.3153812885284424,1.977690577507019,1.681394338607788,0.7227886915206909,0.04305011034011841,1.0713725090026855,0.46135076880455017,-0.2881045639514923,-1.1421350240707397,-1.665010929107666,-1.7870151996612549,-1.665010929107666,-1.804444432258606,-1.7870151996612549,-1.7695860862731934,-1.5430065393447876,-1.1247059106826782,-1.3861438035964966,0.07790849357843399,-0.16610021889209747,-0.2532461881637573,-0.7412636280059814,-1.2118518352508545,-1.4210021495819092,-1.1421350240707397,-1.0201307535171509,0.8970806002616882,0.7402178645133972,-1.4210021495819092,-0.6366884708404541,-0.427538126707077,0.16505447030067444,0.09533768892288208,-0.09638344496488571,0.19991286098957062,0.33934640884399414,0.14762526750564575,0.008191721513867378,-1.5604357719421387,-1.176993489265442,-1.2815686464309692,-1.246710181236267,0.008191721513867378,-1.1595642566680908,-0.6889760494232178,-1.7172985076904297,-1.665010929107666,-1.5952941179275513,-1.508148193359375,-1.333856225013733,-1.246710181236267,-1.1072766780853271,-1.0549890995025635,-1.2118518352508545,-1.2292810678482056,-0.39267975091934204,-0.462396502494812,0.13019607961177826,-0.2881045639514923,-0.06152505427598953,-0.06152505427598953,0.14762526750564575,0.14762526750564575,0.14762526750564575,-0.2881045639514923,2.1694116592407227,1.524531602859497,2.308845281600952,2.204270124435425,2.1694116592407227,1.4896732568740845,-0.4449673295021057,-0.340392142534256,-0.340392142534256,-0.305533766746521,0.47877994179725647,0.07790849357843399,-0.270675390958786,-0.23581700026988983,-0.2532461881637573,-0.16610021889209747,-0.7412636280059814,0.47877994179725647,0.7750762701034546,1.2630937099456787,1.7511111497879028,2.151982545852661,1.9079738855361938,1.4722440242767334,1.2805228233337402,1.193376898765564,1.5768191814422607,1.507102370262146,1.6465359926223755,1.350239634513855,1.9254029989242554,2.1345534324645996,1.6116775274276733,1.8731154203414917,1.7511111497879028,2.2565577030181885,1.2630937099456787,1.507102370262146,2.239128589630127,0.966797411441803,1.2282352447509766,1.681394338607788,1.7162526845932007,1.8556863069534302,1.2805228233337402,1.663965106010437,1.7511111497879028,0.8099346160888672,1.4722440242767334,-1.4384313821792603,-0.9678431153297424,-1.804444432258606,-1.3164269924163818,0.4090631902217865,0.5484967231750488,-0.02666666731238365,0.19991286098957062,0.3567756116390228,0.6705011129379272,0.8970806002616882,1.524531602859497,1.7162526845932007,1.681394338607788,1.5768191814422607,1.7336819171905518,1.9602614641189575,2.0648365020751953,2.1694116592407227,2.204270124435425,2.151982545852661,1.6988235712051392,1.3850979804992676,-0.04409585893154144,0.11276688426733017,-0.2532461881637573,0.7925054430961609,1.1236600875854492,0.04305011034011841,-0.8458387851715088,-0.23581700026988983,-0.5321133136749268,-0.270675390958786,-0.16610021889209747,-0.8981263637542725,-0.5495424866676331,-0.37525054812431335,-0.7412636280059814,-0.619259238243103,-1.246710181236267,0.16505447030067444,0.2347712367773056,1.1236600875854492,1.350239634513855,1.838257074356079,1.9951198101043701,1.8033987283706665,1.9079738855361938,2.117124080657959,2.1345534324645996,1.9951198101043701,1.9254029989242554,2.3262743949890137,2.6051416397094727,2.517995595932007,-0.270675390958786],[-0.9852723479270935,-0.8981263637542725,-1.5604357719421387,-0.4972549080848694,-0.6018300652503967,0.04305011034011841,0.11276688426733017,0.5484967231750488,0.49620914459228516,0.2522004246711731,-0.02666666731238365,-0.02666666731238365,-0.06152505427598953,-0.1312418282032013,-0.02666666731238365,0.2173420488834381,-0.04409585893154144,0.02562091499567032,0.16505447030067444,-0.41010892391204834,0.09533768892288208,0.4439215660095215,-0.21838779747486115,0.16505447030067444,0.14762526750564575,-0.009237472899258137,-0.09638344496488571,0.4439215660095215,0.11276688426733017,-0.04409585893154144,-0.04409585893154144,-0.02666666731238365,-0.14867103099822998,-0.3229629695415497,-0.009237472899258137,-0.35782134532928467,-0.4449673295021057,-0.5495424866676331,0.02562091499567032,0.6879302859306335,1.2979520559310913,1.2805228233337402,1.663965106010437,0.6705011129379272,-0.462396502494812,0.4090631902217865,1.2805228233337402,1.820827841758728,1.820827841758728,1.681394338607788,1.6291067600250244,1.2456644773483276,0.04305011034011841,-0.3229629695415497,1.4025272130966187,1.7336819171905518,1.9079738855361938,1.2456644773483276,-0.6715468168258667,0.5310675501823425,1.2979520559310913,1.8905446529388428,-1.0027015209197998,-1.0375598669052124,-1.7172985076904297,-1.6824400424957275,-1.6824400424957275,-1.7695860862731934,-1.6998692750930786,-1.176993489265442,-0.7238343954086304,-0.5669716596603394,-0.5669716596603394,-0.41010892391204834,-0.8806971907615662,-1.7870151996612549,-1.5255773067474365,-1.1595642566680908,0.3916339874267578,-0.340392142534256,0.07790849357843399,-0.009237472899258137,-0.7935512065887451,-1.6824400424957275,0.11276688426733017,0.3742047846317291,-0.16610021889209747,0.32191720604896545,-0.8981263637542725,0.966797411441803,1.7511111497879028,1.9428322315216064,-1.7172985076904297,-1.1421350240707397,-1.1421350240707397,-1.4732897281646729,-0.7064052224159241,-1.508148193359375,-1.7521568536758423,-1.7695860862731934,-1.2292810678482056,-1.3164269924163818,-1.3164269924163818,-1.246710181236267,-1.3164269924163818,-1.1072766780853271,-0.6889760494232178,-0.6366884708404541,-0.41010892391204834,-0.14867103099822998,-0.14867103099822998,-0.14867103099822998,0.47877994179725647,0.6356427073478699,0.18248365819454193,0.7750762701034546,0.28705883026123047,-0.009237472899258137,-0.07895424962043762,2.5702831745147705,2.4134204387664795,1.9951198101043701,2.2216992378234863,2.5354249477386475,2.204270124435425,-0.305533766746521,0.0604793019592762,-0.6715468168258667,-0.37525054812431335,-0.5669716596603394,-0.1312418282032013,0.4264923632144928,-0.02666666731238365,0.11276688426733017,0.008191721513867378,-0.3229629695415497,-0.02666666731238365,-0.04409585893154144,1.3850979804992676,1.210806131362915,1.8556863069534302,1.4025272130966187,1.5593899488449097,0.3916339874267578,0.4264923632144928,1.175947666168213,1.4025272130966187,1.0016558170318604,1.9079738855361938,1.7859694957733154,1.7336819171905518,2.0299782752990723,1.350239634513855,1.6988235712051392,1.681394338607788,1.7511111497879028,1.8905446529388428,1.4199564456939697,1.5768191814422607,0.7402178645133972,1.507102370262146,1.5419608354568481,1.1062309741973877,0.07790849357843399,0.9493681788444519,0.47877994179725647,-0.270675390958786,-0.35782134532928467,-1.1247059106826782,-1.0549890995025635,-1.2118518352508545,-1.1247059106826782,0.8273638486862183,-0.462396502494812,-0.1312418282032013,0.6356427073478699,0.3916339874267578,0.2173420488834381,1.1062309741973877,1.6116775274276733,1.7685402631759644,1.8033987283706665,1.7162526845932007,1.8033987283706665,2.0125489234924316,2.0996949672698975,2.151982545852661,2.239128589630127,2.082265853881836,1.5593899488449097,1.4025272130966187,0.7925054430961609,-0.20095860958099365,-0.7064052224159241,-0.340392142534256,-0.23581700026988983,-0.4972549080848694,-0.21838779747486115,-0.009237472899258137,0.07790849357843399,-0.340392142534256,0.19991286098957062,-0.305533766746521,-0.5844008922576904,-0.1312418282032013,-0.09638344496488571,-0.7586928009986877,-0.2881045639514923,-0.7064052224159241,-1.0375598669052124,-0.2532461881637573,1.2979520559310913,1.524531602859497,1.7511111497879028,1.6116775274276733,1.6116775274276733,2.0996949672698975,2.1345534324645996,2.0996949672698975,2.1345534324645996,2.483137369155884,2.4482789039611816,2.640000104904175,0.04305011034011841],[-1.2641394138336182,-1.4210021495819092,-1.804444432258606,-0.7935512065887451,-0.39267975091934204,0.0604793019592762,0.0604793019592762,0.30448800325393677,0.14762526750564575,0.04305011034011841,0.46135076880455017,0.33934640884399414,0.30448800325393677,0.02562091499567032,0.18248365819454193,0.18248365819454193,-0.18352940678596497,0.04305011034011841,-0.1312418282032013,-0.009237472899258137,0.3567756116390228,0.14762526750564575,0.008191721513867378,0.07790849357843399,0.2173420488834381,0.07790849357843399,-0.009237472899258137,0.07790849357843399,0.11276688426733017,0.008191721513867378,-0.14867103099822998,-0.02666666731238365,0.008191721513867378,-0.09638344496488571,-0.2881045639514923,-0.270675390958786,-0.340392142534256,0.8273638486862183,1.2805228233337402,1.7162526845932007,1.663965106010437,1.7685402631759644,1.8556863069534302,2.082265853881836,0.966797411441803,-0.6541176438331604,0.19991286098957062,1.193376898765564,1.4548147916793823,1.9428322315216064,1.9254029989242554,1.6465359926223755,-0.07895424962043762,-0.23581700026988983,0.8796514272689819,2.0299782752990723,1.1410893201828003,1.4896732568740845,0.19991286098957062,0.2522004246711731,0.0604793019592762,0.6705011129379272,-0.427538126707077,-1.246710181236267,-1.6301524639129639,-1.804444432258606,-1.7870151996612549,-1.804444432258606,-1.7172985076904297,-1.804444432258606,-1.7870151996612549,-1.5778648853302002,-0.7586928009986877,-1.1247059106826782,-1.1944226026535034,-1.4732897281646729,-0.6889760494232178,0.28705883026123047,0.4264923632144928,1.2630937099456787,0.49620914459228516,0.7750762701034546,-0.619259238243103,-1.6301524639129639,-0.7412636280059814,-0.4798257052898407,0.32191720604896545,-0.1138126328587532,-0.009237472899258137,-0.20095860958099365,0.4264923632144928,1.6291067600250244,-1.804444432258606,-1.0201307535171509,-1.1595642566680908,-1.2989978790283203,-1.6824400424957275,-1.804444432258606,-1.6824400424957275,-1.5778648853302002,-1.4035730361938477,-1.333856225013733,-1.246710181236267,-1.2815686464309692,-1.2292810678482056,-0.35782134532928467,-0.5146840810775757,0.0604793019592762,-0.23581700026988983,-0.18352940678596497,-0.14867103099822998,0.2173420488834381,0.6879302859306335,0.5484967231750488,0.49620914459228516,0.8447930216789246,0.18248365819454193,0.5659258961677551,0.2347712367773056,2.552854061126709,1.9428322315216064,2.6051416397094727,2.395991325378418,2.4134204387664795,1.9602614641189575,0.008191721513867378,-1.351285457611084,-0.619259238243103,-0.3229629695415497,-0.09638344496488571,-0.6366884708404541,-0.21838779747486115,-0.16610021889209747,-0.2881045639514923,0.04305011034011841,-0.39267975091934204,0.4439215660095215,-0.18352940678596497,0.6182135343551636,0.3567756116390228,1.0888017416000366,1.2979520559310913,1.6116775274276733,0.6530718803405762,0.6705011129379272,0.3916339874267578,1.5768191814422607,1.0888017416000366,1.210806131362915,1.0713725090026855,1.6291067600250244,1.7162526845932007,0.47877994179725647,1.7511111497879028,2.0125489234924316,2.117124080657959,1.4896732568740845,0.47877994179725647,1.1585185527801514,0.9319390058517456,2.047407388687134,1.367668867111206,0.04305011034011841,0.49620914459228516,0.07790849357843399,-0.340392142534256,-0.16610021889209747,-0.6541176438331604,-0.3229629695415497,-0.21838779747486115,-1.0375598669052124,-0.5495424866676331,0.19991286098957062,-0.4449673295021057,-0.16610021889209747,0.008191721513867378,0.02562091499567032,0.8796514272689819,1.0888017416000366,1.6291067600250244,1.7859694957733154,1.8731154203414917,1.8556863069534302,1.838257074356079,2.0299782752990723,2.082265853881836,2.151982545852661,2.0996949672698975,1.8905446529388428,1.4199564456939697,0.9493681788444519,-0.1312418282032013,-0.5321133136749268,-0.7586928009986877,-0.5495424866676331,-0.16610021889209747,-0.1138126328587532,0.2347712367773056,0.13019607961177826,-0.1138126328587532,0.02562091499567032,0.16505447030067444,-0.270675390958786,-0.18352940678596497,-0.09638344496488571,0.32191720604896545,0.04305011034011841,-0.21838779747486115,-0.1138126328587532,-0.6018300652503967,-1.0375598669052124,-0.270675390958786,1.036514163017273,1.2805228233337402,1.4199564456939697,1.7162526845932007,1.7685402631759644,2.082265853881836,1.7162526845932007,2.1868410110473633,2.3785619735717773,2.640000104904175,1.4025272130966187,0.5833551287651062],[-0.8981263637542725,-1.1595642566680908,-1.804444432258606,-0.9678431153297424,-0.4798257052898407,0.11276688426733017,0.2522004246711731,0.04305011034011841,0.18248365819454193,0.2347712367773056,-0.21838779747486115,0.18248365819454193,0.3742047846317291,0.18248365819454193,0.4090631902217865,0.02562091499567032,0.04305011034011841,0.11276688426733017,0.28705883026123047,0.16505447030067444,0.11276688426733017,0.19991286098957062,-0.23581700026988983,-0.1138126328587532,0.04305011034011841,-0.06152505427598953,0.02562091499567032,-0.09638344496488571,0.11276688426733017,-0.02666666731238365,0.14762526750564575,0.008191721513867378,-0.009237472899258137,-0.09638344496488571,0.008191721513867378,-0.305533766746521,0.8099346160888672,1.4025272130966187,1.4896732568740845,1.681394338607788,2.0648365020751953,2.0996949672698975,1.977690577507019,2.082265853881836,1.7336819171905518,0.7925054430961609,-0.16610021889209747,0.6530718803405762,1.2630937099456787,1.9428322315216064,1.8731154203414917,1.8731154203414917,0.5310675501823425,-0.4798257052898407,0.5833551287651062,1.524531602859497,1.036514163017273,1.2805228233337402,0.11276688426733017,0.13019607961177826,-0.6541176438331604,0.11276688426733017,-0.7935512065887451,-1.246710181236267,-1.508148193359375,-1.647581696510315,-1.7870151996612549,-1.804444432258606,-1.7870151996612549,-1.7870151996612549,-1.5604357719421387,-1.5778648853302002,-1.5952941179275513,-1.5778648853302002,-1.7347276210784912,-1.2989978790283203,-0.6541176438331604,0.4090631902217865,0.47877994179725647,0.7925054430961609,0.8099346160888672,-0.16610021889209747,-1.665010929107666,-1.1421350240707397,1.036514163017273,0.09533768892288208,-0.37525054812431335,0.008191721513867378,0.4090631902217865,-0.6889760494232178,-0.270675390958786,1.524531602859497,-1.2641394138336182,-1.490718960762024,-1.0724183320999146,-1.490718960762024,-1.7870151996612549,-1.7870151996612549,-1.4732897281646729,-1.647581696510315,-1.4210021495819092,-1.4732897281646729,-1.2815686464309692,-0.4449673295021057,-0.6018300652503967,-0.009237472899258137,0.008191721513867378,-0.04409585893154144,-0.07895424962043762,-0.270675390958786,-0.1312418282032013,0.28705883026123047,0.28705883026123047,0.6007843017578125,0.008191721513867378,0.6182135343551636,1.0713725090026855,0.8970806002616882,0.4439215660095215,2.43084979057312,2.640000104904175,2.640000104904175,2.465708017349243,1.507102370262146,0.5136383175849915,-0.41010892391204834,-0.7412636280059814,-0.7935512065887451,-0.7238343954086304,-1.1595642566680908,-0.5669716596603394,0.04305011034011841,-0.23581700026988983,-0.462396502494812,-0.1312418282032013,-0.09638344496488571,0.19991286098957062,0.18248365819454193,0.8796514272689819,0.5833551287651062,2.047407388687134,1.5593899488449097,1.367668867111206,0.7227886915206909,-0.02666666731238365,-0.06152505427598953,-0.3229629695415497,0.5136383175849915,1.1585185527801514,1.2456644773483276,0.9842265844345093,1.1062309741973877,0.4264923632144928,0.2173420488834381,1.7511111497879028,0.4439215660095215,0.8796514272689819,0.8622221946716309,1.1236600875854492,1.4548147916793823,1.0713725090026855,0.2522004246711731,-1.0027015209197998,-0.7761220335960388,-0.619259238243103,-0.8458387851715088,-0.5321133136749268,-1.804444432258606,-0.7586928009986877,-0.1138126328587532,-0.5844008922576904,0.09533768892288208,-0.8632679581642151,1.838257074356079,0.6007843017578125,-0.270675390958786,1.2979520559310913,0.02562091499567032,0.9842265844345093,1.175947666168213,1.9428322315216064,1.9428322315216064,1.977690577507019,1.9428322315216064,2.0125489234924316,2.047407388687134,1.9951198101043701,2.0648365020751953,1.7336819171905518,0.6879302859306335,0.28705883026123047,-0.14867103099822998,-0.21838779747486115,-0.07895424962043762,-0.07895424962043762,-0.41010892391204834,0.2347712367773056,0.3742047846317291,0.18248365819454193,-0.21838779747486115,0.18248365819454193,0.14762526750564575,0.09533768892288208,0.008191721513867378,-0.270675390958786,-0.427538126707077,0.2347712367773056,-0.23581700026988983,-0.270675390958786,-0.2532461881637573,-0.1138126328587532,-0.41010892391204834,-0.39267975091934204,-0.009237472899258137,0.7750762701034546,1.7336819171905518,1.9428322315216064,1.820827841758728,1.7859694957733154,1.9079738855361938,1.663965106010437,1.7336819171905518,1.524531602859497,1.367668867111206],[-0.9155555367469788,-1.3687145709991455,-1.4732897281646729,-1.4384313821792603,-0.8109803795814514,-0.2532461881637573,0.4439215660095215,-0.009237472899258137,-0.16610021889209747,0.19991286098957062,0.2173420488834381,0.49620914459228516,0.30448800325393677,0.16505447030067444,-0.305533766746521,-0.06152505427598953,-0.1138126328587532,0.04305011034011841,-0.1138126328587532,-0.18352940678596497,-0.16610021889209747,-0.16610021889209747,0.14762526750564575,0.02562091499567032,0.16505447030067444,-0.3229629695415497,-0.009237472899258137,-0.14867103099822998,0.02562091499567032,-0.2532461881637573,-0.16610021889209747,-0.18352940678596497,-0.009237472899258137,-0.009237472899258137,-0.23581700026988983,-0.340392142534256,0.09533768892288208,1.175947666168213,1.9254029989242554,2.0648365020751953,1.7685402631759644,2.0299782752990723,1.8731154203414917,1.8731154203414917,1.9079738855361938,1.7685402631759644,1.036514163017273,0.966797411441803,1.4722440242767334,1.8033987283706665,1.9254029989242554,1.8731154203414917,1.193376898765564,-0.07895424962043762,0.9493681788444519,0.9493681788444519,1.4199564456939697,0.7227886915206909,0.8796514272689819,0.02562091499567032,-0.340392142534256,-0.1138126328587532,0.4264923632144928,-1.1072766780853271,-1.3164269924163818,-1.7172985076904297,-1.804444432258606,-1.7695860862731934,-1.804444432258606,-1.804444432258606,-1.6998692750930786,-1.3687145709991455,-1.6301524639129639,-1.1944226026535034,-0.462396502494812,-0.6541176438331604,-0.270675390958786,-1.4384313821792603,0.008191721513867378,-0.06152505427598953,0.0604793019592762,-1.490718960762024,-1.7695860862731934,0.02562091499567032,0.46135076880455017,0.9842265844345093,0.30448800325393677,-0.35782134532928467,0.5833551287651062,0.4090631902217865,-1.0027015209197998,-0.5669716596603394,1.0713725090026855,-0.2532461881637573,-1.4035730361938477,-1.7347276210784912,-1.7521568536758423,-1.6824400424957275,-1.6301524639129639,-1.4732897281646729,-1.176993489265442,-0.6541176438331604,-0.5844008922576904,-0.16610021889209747,-0.6889760494232178,0.008191721513867378,-0.1312418282032013,0.16505447030067444,0.11276688426733017,0.008191721513867378,0.2696296274662018,0.4439215660095215,0.49620914459228516,0.46135076880455017,0.9842265844345093,0.5659258961677551,0.8796514272689819,0.5484967231750488,1.1062309741973877,1.8556863069534302,2.640000104904175,1.8033987283706665,2.4134204387664795,2.1694116592407227,-0.5495424866676331,-0.340392142534256,-0.5669716596603394,-0.5146840810775757,-0.6541176438331604,-0.39267975091934204,-0.5321133136749268,-0.9852723479270935,-0.14867103099822998,-0.18352940678596497,-0.1138126328587532,-0.16610021889209747,0.07790849357843399,0.4264923632144928,1.193376898765564,2.0125489234924316,1.332810401916504,1.8556863069534302,1.036514163017273,1.1062309741973877,0.0604793019592762,0.6530718803405762,0.18248365819454193,-0.2532461881637573,0.11276688426733017,-0.340392142534256,0.0604793019592762,0.7750762701034546,-0.23581700026988983,1.3153812885284424,1.053943395614624,-0.1312418282032013,1.175947666168213,-0.06152505427598953,0.6530718803405762,0.09533768892288208,-0.5321133136749268,-0.1312418282032013,-0.5669716596603394,-0.09638344496488571,-1.3687145709991455,-1.0375598669052124,-0.4972549080848694,-0.8806971907615662,-0.8109803795814514,-0.06152505427598953,-0.9329847693443298,0.19991286098957062,0.09533768892288208,-0.02666666731238365,0.8273638486862183,1.2456644773483276,1.1062309741973877,1.0016558170318604,1.0888017416000366,1.193376898765564,1.8556863069534302,1.820827841758728,1.977690577507019,1.977690577507019,2.151982545852661,2.1345534324645996,2.082265853881836,1.9428322315216064,1.8905446529388428,0.9145098328590393,0.19991286098957062,-0.5495424866676331,-0.5669716596603394,0.2696296274662018,-0.4798257052898407,0.3742047846317291,-0.270675390958786,-0.41010892391204834,-0.09638344496488571,-0.16610021889209747,0.3567756116390228,0.28705883026123047,0.008191721513867378,0.0604793019592762,-0.07895424962043762,0.02562091499567032,0.18248365819454193,0.008191721513867378,-0.09638344496488571,0.13019607961177826,0.16505447030067444,0.04305011034011841,-0.462396502494812,-0.6018300652503967,-0.09638344496488571,1.2979520559310913,1.8033987283706665,1.8556863069534302,1.2979520559310913,1.7336819171905518,2.151982545852661,1.9951198101043701,1.8033987283706665,1.5593899488449097],[-0.340392142534256,-1.246710181236267,-1.490718960762024,-1.2989978790283203,-1.0201307535171509,-0.23581700026988983,0.04305011034011841,0.2696296274662018,-0.4972549080848694,0.32191720604896545,0.32191720604896545,0.04305011034011841,-0.37525054812431335,0.18248365819454193,0.2347712367773056,0.2173420488834381,0.30448800325393677,-0.07895424962043762,-0.16610021889209747,-0.02666666731238365,0.19991286098957062,0.02562091499567032,0.30448800325393677,-0.009237472899258137,-0.14867103099822998,0.13019607961177826,0.008191721513867378,-0.09638344496488571,-0.20095860958099365,-0.1312418282032013,-0.2881045639514923,-0.09638344496488571,0.11276688426733017,-0.6889760494232178,-0.3229629695415497,0.2173420488834381,1.193376898765564,1.2979520559310913,1.6465359926223755,1.7685402631759644,2.0299782752990723,1.838257074356079,1.8556863069534302,1.838257074356079,1.820827841758728,1.6116775274276733,1.1236600875854492,0.8622221946716309,1.820827841758728,1.663965106010437,1.6465359926223755,1.820827841758728,1.4896732568740845,0.7402178645133972,-0.16610021889209747,0.9842265844345093,1.2805228233337402,1.507102370262146,0.6530718803405762,0.4090631902217865,0.5310675501823425,1.2282352447509766,0.8099346160888672,-0.18352940678596497,-0.8981263637542725,-1.2815686464309692,-1.7870151996612549,-1.7695860862731934,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.7695860862731934,-1.0724183320999146,0.14762526750564575,-0.5321133136749268,-1.246710181236267,-0.8981263637542725,-0.06152505427598953,0.6007843017578125,-0.41010892391204834,-0.462396502494812,-1.6301524639129639,-1.7172985076904297,-0.8632679581642151,0.5310675501823425,1.036514163017273,0.32191720604896545,0.2696296274662018,0.5659258961677551,0.6007843017578125,-0.21838779747486115,0.9842265844345093,1.4025272130966187,-1.6998692750930786,-1.7347276210784912,-1.6998692750930786,-1.7347276210784912,-1.4558606147766113,-1.2292810678482056,-1.0027015209197998,-0.6018300652503967,-0.3229629695415497,-0.39267975091934204,-0.2532461881637573,-0.06152505427598953,0.13019607961177826,0.04305011034011841,0.16505447030067444,0.0604793019592762,-0.009237472899258137,0.5310675501823425,0.6356427073478699,0.07790849357843399,0.7576470375061035,0.5659258961677551,0.8970806002616882,1.1062309741973877,0.3916339874267578,1.5419608354568481,2.3437037467956543,2.465708017349243,-0.14867103099822998,1.9428322315216064,1.193376898765564,0.30448800325393677,-0.5669716596603394,-1.1421350240707397,-0.23581700026988983,-0.7064052224159241,-0.7761220335960388,0.7576470375061035,0.6007843017578125,0.19991286098957062,-0.4449673295021057,0.6705011129379272,0.2173420488834381,0.8796514272689819,2.047407388687134,1.3153812885284424,2.3437037467956543,1.977690577507019,1.8731154203414917,1.0190849304199219,0.09533768892288208,0.04305011034011841,0.13019607961177826,0.09533768892288208,-0.9155555367469788,0.02562091499567032,-0.23581700026988983,-0.35782134532928467,-0.35782134532928467,-0.41010892391204834,-0.6018300652503967,-0.5495424866676331,-0.35782134532928467,0.2173420488834381,-0.3229629695415497,-0.5321133136749268,-1.1072766780853271,-0.8806971907615662,-0.7412636280059814,-0.41010892391204834,-0.5844008922576904,-1.804444432258606,-1.5430065393447876,-1.804444432258606,-0.7238343954086304,0.966797411441803,-0.619259238243103,-0.04409585893154144,0.6705011129379272,0.7402178645133972,0.6530718803405762,0.0604793019592762,0.7227886915206909,1.5768191814422607,0.33934640884399414,1.350239634513855,1.053943395614624,1.820827841758728,1.8905446529388428,2.082265853881836,2.0299782752990723,2.151982545852661,2.0996949672698975,2.047407388687134,1.9602614641189575,1.5942484140396118,0.5136383175849915,-0.18352940678596497,-0.2532461881637573,-0.20095860958099365,-0.5669716596603394,-0.04409585893154144,-0.07895424962043762,0.19991286098957062,-0.2532461881637573,-0.1312418282032013,-0.009237472899258137,0.3567756116390228,0.3567756116390228,0.16505447030067444,-0.06152505427598953,0.18248365819454193,0.32191720604896545,0.2522004246711731,0.30448800325393677,0.18248365819454193,-0.02666666731238365,-0.16610021889209747,-0.4449673295021057,0.2347712367773056,-0.20095860958099365,-0.8981263637542725,0.46135076880455017,0.8796514272689819,1.6116775274276733,1.5593899488449097,1.838257074356079,1.8556863069534302,2.204270124435425,1.663965106010437,1.210806131362915],[0.2173420488834381,0.8970806002616882,0.5659258961677551,0.2173420488834381,0.5833551287651062,0.13019607961177826,0.8099346160888672,0.6007843017578125,0.6879302859306335,0.8796514272689819,0.7053594589233398,0.6007843017578125,0.19991286098957062,0.2173420488834381,0.2522004246711731,0.7576470375061035,-0.04409585893154144,0.09533768892288208,0.2173420488834381,-0.2532461881637573,0.008191721513867378,0.2522004246711731,-0.23581700026988983,0.04305011034011841,-0.270675390958786,-0.3229629695415497,-0.270675390958786,-0.7761220335960388,-0.5669716596603394,-0.20095860958099365,-0.340392142534256,-0.18352940678596497,-0.2532461881637573,-0.21838779747486115,-0.6018300652503967,-0.39267975091934204,0.7053594589233398,0.6356427073478699,1.2630937099456787,1.2630937099456787,1.3850979804992676,1.5419608354568481,2.047407388687134,2.0299782752990723,1.9428322315216064,0.9842265844345093,0.966797411441803,0.6705011129379272,1.8033987283706665,2.082265853881836,1.9951198101043701,1.350239634513855,1.1236600875854492,0.28705883026123047,0.19991286098957062,1.5593899488449097,1.5593899488449097,1.5419608354568481,1.1062309741973877,-0.009237472899258137,0.9319390058517456,0.02562091499567032,1.036514163017273,0.5659258961677551,-0.427538126707077,-0.7238343954086304,-1.4384313821792603,-1.6301524639129639,-1.665010929107666,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.176993489265442,-1.1421350240707397,-1.7172985076904297,-1.5255773067474365,-0.5321133136749268,0.04305011034011841,0.0604793019592762,-0.8109803795814514,-1.7870151996612549,-1.7172985076904297,-1.7347276210784912,-1.804444432258606,-1.176993489265442,-0.7238343954086304,0.46135076880455017,0.4090631902217865,0.33934640884399414,-0.41010892391204834,-1.1247059106826782,-1.5778648853302002,-1.7521568536758423,-1.4035730361938477,-1.246710181236267,-0.9329847693443298,-0.7412636280059814,-0.8284096121788025,-0.2881045639514923,-0.39267975091934204,0.16505447030067444,-0.04409585893154144,0.0604793019592762,0.3742047846317291,-0.1312418282032013,-0.07895424962043762,0.49620914459228516,-0.04409585893154144,0.0604793019592762,0.16505447030067444,-0.305533766746521,0.6007843017578125,0.5310675501823425,0.28705883026123047,0.3742047846317291,0.30448800325393677,0.33934640884399414,-0.02666666731238365,1.2979520559310913,2.640000104904175,2.308845281600952,1.5593899488449097,2.1345534324645996,1.332810401916504,-0.5844008922576904,-0.20095860958099365,0.2347712367773056,0.3916339874267578,0.4264923632144928,0.8273638486862183,0.32191720604896545,1.053943395614624,0.7925054430961609,0.5484967231750488,2.5354249477386475,1.2282352447509766,2.1345534324645996,1.7511111497879028,1.5768191814422607,1.2282352447509766,1.4896732568740845,1.977690577507019,1.2805228233337402,0.13019607961177826,2.204270124435425,0.3916339874267578,-0.14867103099822998,-0.6889760494232178,-0.9329847693443298,-0.6018300652503967,-0.6889760494232178,-1.1944226026535034,-0.7935512065887451,-1.089847445487976,-1.4035730361938477,-0.5146840810775757,-0.8458387851715088,-0.8632679581642151,-0.9155555367469788,-1.0549890995025635,-0.5844008922576904,-0.6889760494232178,-0.21838779747486115,0.33934640884399414,-0.462396502494812,-1.246710181236267,-1.7521568536758423,-0.8458387851715088,0.33934640884399414,0.7053594589233398,1.350239634513855,1.2630937099456787,0.7053594589233398,-0.16610021889209747,0.8273638486862183,1.036514163017273,0.9493681788444519,1.0190849304199219,0.9145098328590393,1.4025272130966187,1.6291067600250244,1.9254029989242554,2.0299782752990723,1.9254029989242554,2.117124080657959,2.117124080657959,2.047407388687134,1.9079738855361938,1.3153812885284424,0.02562091499567032,-0.21838779747486115,-0.462396502494812,-0.16610021889209747,-0.305533766746521,0.13019607961177826,0.30448800325393677,0.49620914459228516,0.07790849357843399,0.07790849357843399,0.0604793019592762,-0.02666666731238365,-0.1312418282032013,0.28705883026123047,0.6356427073478699,-0.09638344496488571,-0.009237472899258137,0.2173420488834381,0.11276688426733017,0.09533768892288208,-0.21838779747486115,-0.009237472899258137,0.07790849357843399,0.4090631902217865,-0.07895424962043762,-0.427538126707077,0.008191721513867378,-0.5844008922576904,1.6116775274276733,1.1585185527801514,1.663965106010437,1.820827841758728,2.0648365020751953,1.2282352447509766,0.4439215660095215],[0.16505447030067444,0.9319390058517456,1.193376898765564,0.6879302859306335,1.175947666168213,0.2522004246711731,1.3850979804992676,0.9493681788444519,1.7511111497879028,1.1410893201828003,1.5593899488449097,1.350239634513855,1.9428322315216064,1.2805228233337402,0.9145098328590393,1.210806131362915,1.5942484140396118,1.524531602859497,0.07790849357843399,1.2630937099456787,0.8099346160888672,0.9319390058517456,1.3153812885284424,0.8970806002616882,0.2173420488834381,0.3567756116390228,0.2347712367773056,0.008191721513867378,0.09533768892288208,0.02562091499567032,-0.009237472899258137,-0.06152505427598953,0.2347712367773056,0.07790849357843399,-0.2532461881637573,0.008191721513867378,-0.270675390958786,-0.16610021889209747,0.32191720604896545,0.4264923632144928,0.49620914459228516,1.4548147916793823,1.6988235712051392,1.9079738855361938,1.7511111497879028,1.175947666168213,0.5833551287651062,1.175947666168213,1.053943395614624,2.0125489234924316,1.5419608354568481,1.0190849304199219,1.053943395614624,0.0604793019592762,0.49620914459228516,0.8447930216789246,1.838257074356079,1.4199564456939697,1.4373856782913208,0.8273638486862183,0.4264923632144928,-0.4798257052898407,0.7576470375061035,0.6007843017578125,1.193376898765564,-0.37525054812431335,-1.4384313821792603,-1.351285457611084,-1.5255773067474365,-1.4732897281646729,-1.7347276210784912,-1.804444432258606,-1.4035730361938477,-1.6824400424957275,-1.490718960762024,-0.7935512065887451,-0.8632679581642151,-0.462396502494812,-1.5255773067474365,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.7347276210784912,-1.7347276210784912,-1.6127233505249023,-1.5255773067474365,-0.4972549080848694,-0.5669716596603394,0.33934640884399414,-0.1312418282032013,-1.246710181236267,-1.6301524639129639,-1.6824400424957275,-1.0549890995025635,-0.7238343954086304,-0.6018300652503967,-0.7935512065887451,-0.427538126707077,-0.305533766746521,-0.09638344496488571,-0.21838779747486115,-0.1312418282032013,-0.1312418282032013,0.18248365819454193,-0.1138126328587532,0.0604793019592762,0.28705883026123047,-0.20095860958099365,0.2522004246711731,0.3742047846317291,0.5833551287651062,-0.14867103099822998,-0.07895424962043762,0.5833551287651062,-0.23581700026988983,0.8273638486862183,0.8796514272689819,0.7053594589233398,1.5942484140396118,2.640000104904175,2.204270124435425,0.6356427073478699,2.2914161682128906,2.117124080657959,-0.6889760494232178,-0.8284096121788025,0.2347712367773056,1.210806131362915,0.5136383175849915,0.8273638486862183,0.46135076880455017,1.1062309741973877,1.2805228233337402,1.193376898765564,1.1585185527801514,2.361132860183716,2.43084979057312,1.7685402631759644,2.239128589630127,1.175947666168213,2.117124080657959,1.4199564456939697,1.0016558170318604,-0.23581700026988983,1.332810401916504,0.6007843017578125,-0.02666666731238365,0.09533768892288208,0.04305011034011841,-0.7238343954086304,-0.7935512065887451,-0.8109803795814514,-1.089847445487976,-1.333856225013733,-1.0549890995025635,-0.5321133136749268,-0.37525054812431335,-0.6889760494232178,-0.9155555367469788,-0.9329847693443298,-1.351285457611084,-0.21838779747486115,-0.4798257052898407,1.0713725090026855,-1.1595642566680908,-1.2641394138336182,-0.4972549080848694,0.28705883026123047,-1.4210021495819092,0.47877994179725647,1.2630937099456787,1.2282352447509766,-0.3229629695415497,1.367668867111206,1.507102370262146,0.8796514272689819,1.1410893201828003,1.1062309741973877,0.8099346160888672,1.2630937099456787,1.7162526845932007,1.8556863069534302,2.0125489234924316,1.977690577507019,1.9254029989242554,2.0299782752990723,1.9951198101043701,1.838257074356079,1.210806131362915,-0.21838779747486115,-0.5495424866676331,-0.14867103099822998,-0.4798257052898407,-0.14867103099822998,-0.23581700026988983,-0.06152505427598953,-0.07895424962043762,-0.009237472899258137,-0.09638344496488571,0.09533768892288208,0.3742047846317291,0.4439215660095215,0.2522004246711731,-0.009237472899258137,0.11276688426733017,0.47877994179725647,0.11276688426733017,0.5484967231750488,0.6356427073478699,0.2522004246711731,0.3916339874267578,-0.02666666731238365,-0.1138126328587532,0.2173420488834381,0.30448800325393677,-0.009237472899258137,-0.04409585893154144,-0.09638344496488571,-0.6715468168258667,1.367668867111206,1.5942484140396118,1.8731154203414917,1.175947666168213,-0.4798257052898407],[0.9319390058517456,0.5659258961677551,0.7227886915206909,1.036514163017273,1.1236600875854492,1.1410893201828003,1.4722440242767334,0.49620914459228516,1.5419608354568481,1.0016558170318604,1.663965106010437,1.3153812885284424,1.663965106010437,1.1410893201828003,1.681394338607788,1.2979520559310913,1.7336819171905518,1.350239634513855,1.1410893201828003,1.4722440242767334,0.5310675501823425,1.175947666168213,1.0016558170318604,1.5593899488449097,0.5310675501823425,0.8273638486862183,0.6705011129379272,0.2522004246711731,0.7402178645133972,0.7227886915206909,1.1062309741973877,0.6007843017578125,0.7925054430961609,0.04305011034011841,0.6182135343551636,0.6182135343551636,0.32191720604896545,0.6705011129379272,0.32191720604896545,0.0604793019592762,0.3742047846317291,0.6530718803405762,1.3153812885284424,1.7162526845932007,1.8731154203414917,1.8731154203414917,1.1236600875854492,0.2522004246711731,1.1062309741973877,1.350239634513855,1.663965106010437,1.681394338607788,0.8273638486862183,0.7750762701034546,0.8622221946716309,1.1062309741973877,1.663965106010437,1.1062309741973877,1.5768191814422607,0.4264923632144928,0.4090631902217865,-0.1138126328587532,1.2282352447509766,1.1062309741973877,0.46135076880455017,0.49620914459228516,-0.8806971907615662,-1.3687145709991455,-1.3861438035964966,-1.0724183320999146,-1.7870151996612549,-1.6824400424957275,-1.804444432258606,-1.3687145709991455,-1.7521568536758423,-1.5255773067474365,-1.0027015209197998,-0.16610021889209747,-1.6824400424957275,-1.7695860862731934,-1.7521568536758423,-1.4035730361938477,-0.09638344496488571,-0.37525054812431335,-1.5952941179275513,-1.804444432258606,-1.665010929107666,0.14762526750564575,0.14762526750564575,0.3916339874267578,-0.23581700026988983,-1.2641394138336182,-1.2815686464309692,-0.9678431153297424,-0.9155555367469788,-0.7586928009986877,-0.340392142534256,-0.462396502494812,-0.18352940678596497,0.008191721513867378,-0.1138126328587532,-0.04409585893154144,-0.37525054812431335,-0.09638344496488571,-0.16610021889209747,0.11276688426733017,0.32191720604896545,-0.39267975091934204,0.28705883026123047,0.07790849357843399,-0.21838779747486115,0.008191721513867378,0.16505447030067444,0.7227886915206909,0.28705883026123047,0.5833551287651062,0.4264923632144928,0.9145098328590393,1.8033987283706665,2.517995595932007,2.640000104904175,2.622570753097534,2.2216992378234863,2.4482789039611816,-0.6018300652503967,-0.41010892391204834,0.47877994179725647,0.966797411441803,-0.5321133136749268,0.8622221946716309,1.2282352447509766,2.1345534324645996,0.33934640884399414,1.663965106010437,2.3785619735717773,2.239128589630127,1.9254029989242554,1.8905446529388428,1.977690577507019,1.7162526845932007,2.1868410110473633,1.0713725090026855,1.2282352447509766,1.2630937099456787,1.2630937099456787,0.2522004246711731,0.18248365819454193,-0.18352940678596497,-0.462396502494812,-0.16610021889209747,-0.04409585893154144,-0.37525054812431335,-0.619259238243103,-0.7238343954086304,-1.0724183320999146,-1.3861438035964966,-1.351285457611084,-0.18352940678596497,-1.089847445487976,-1.3164269924163818,-1.2815686464309692,-0.5495424866676331,-0.427538126707077,0.49620914459228516,-1.5778648853302002,0.9319390058517456,-0.6541176438331604,-0.1138126328587532,0.2173420488834381,1.9951198101043701,1.5942484140396118,0.5833551287651062,2.082265853881836,1.2630937099456787,1.175947666168213,0.2173420488834381,1.0713725090026855,0.8099346160888672,1.332810401916504,1.193376898765564,1.367668867111206,1.8731154203414917,1.977690577507019,1.9254029989242554,1.9428322315216064,2.0299782752990723,2.0125489234924316,1.7511111497879028,0.5484967231750488,-0.41010892391204834,-0.6366884708404541,-0.270675390958786,-0.20095860958099365,-0.305533766746521,-0.04409585893154144,0.07790849357843399,-0.009237472899258137,0.16505447030067444,0.2173420488834381,0.2522004246711731,0.04305011034011841,0.13019607961177826,0.2347712367773056,0.5833551287651062,0.9493681788444519,0.3916339874267578,0.008191721513867378,0.4090631902217865,0.5310675501823425,0.32191720604896545,0.4439215660095215,0.5484967231750488,0.6356427073478699,-0.20095860958099365,0.11276688426733017,0.8622221946716309,0.7227886915206909,0.04305011034011841,-0.18352940678596497,0.04305011034011841,1.3153812885284424,0.02562091499567032,0.4090631902217865,-0.3229629695415497],[0.7925054430961609,0.6356427073478699,0.9493681788444519,1.1236600875854492,1.507102370262146,1.0888017416000366,1.4722440242767334,1.1585185527801514,1.332810401916504,1.5768191814422607,1.5768191814422607,1.5768191814422607,1.4025272130966187,1.3153812885284424,1.7336819171905518,1.6116775274276733,1.8731154203414917,1.4896732568740845,1.9951198101043701,1.7162526845932007,1.2805228233337402,1.332810401916504,0.966797411441803,1.4548147916793823,1.1236600875854492,1.2630937099456787,1.367668867111206,1.0888017416000366,1.1062309741973877,1.053943395614624,1.6291067600250244,1.1062309741973877,1.367668867111206,1.8556863069534302,1.4199564456939697,1.6291067600250244,1.4373856782913208,1.4722440242767334,1.4025272130966187,1.663965106010437,1.6291067600250244,0.30448800325393677,0.6530718803405762,1.3850979804992676,1.820827841758728,1.6291067600250244,1.507102370262146,1.0713725090026855,0.7576470375061035,1.1410893201828003,1.7162526845932007,1.8731154203414917,1.2630937099456787,1.4722440242767334,0.8273638486862183,0.8447930216789246,1.4025272130966187,1.4199564456939697,1.507102370262146,1.1410893201828003,-0.20095860958099365,0.2347712367773056,1.4025272130966187,1.0016558170318604,-0.23581700026988983,-0.009237472899258137,0.3742047846317291,-1.3164269924163818,-1.3687145709991455,-1.0549890995025635,-1.2118518352508545,-1.6998692750930786,-1.7172985076904297,-1.7347276210784912,-1.804444432258606,-0.7935512065887451,-0.6715468168258667,-1.4732897281646729,-1.7695860862731934,-1.7870151996612549,-1.3164269924163818,0.7576470375061035,-0.14867103099822998,-1.3861438035964966,-1.2641394138336182,-1.508148193359375,-1.4035730361938477,-1.5952941179275513,-0.07895424962043762,0.28705883026123047,-0.427538126707077,-0.8632679581642151,-1.2118518352508545,-0.7761220335960388,-0.6366884708404541,-0.2881045639514923,-0.5844008922576904,-0.35782134532928467,-0.4972549080848694,-0.6366884708404541,-0.305533766746521,-0.009237472899258137,0.18248365819454193,0.3916339874267578,0.2173420488834381,-0.04409585893154144,-0.5146840810775757,0.008191721513867378,-0.427538126707077,-0.2532461881637573,0.0604793019592762,0.28705883026123047,-0.009237472899258137,0.33934640884399414,0.6356427073478699,1.0888017416000366,0.9319390058517456,0.6705011129379272,2.1868410110473633,2.27398681640625,2.3785619735717773,2.552854061126709,2.151982545852661,2.1868410110473633,1.0190849304199219,0.4264923632144928,0.8273638486862183,1.175947666168213,0.8622221946716309,1.9254029989242554,1.2456644773483276,1.9951198101043701,0.4264923632144928,2.0125489234924316,1.9254029989242554,2.117124080657959,1.6291067600250244,1.663965106010437,1.036514163017273,1.507102370262146,1.9951198101043701,1.9428322315216064,1.507102370262146,1.524531602859497,1.3850979804992676,-0.14867103099822998,-0.6018300652503967,0.6007843017578125,-0.4798257052898407,-0.21838779747486115,0.2347712367773056,-0.16610021889209747,-0.23581700026988983,0.19991286098957062,-0.6366884708404541,0.19991286098957062,0.008191721513867378,-0.14867103099822998,-1.351285457611084,-0.2532461881637573,-0.7412636280059814,0.2173420488834381,0.09533768892288208,-0.3229629695415497,-0.8632679581642151,1.5768191814422607,0.8099346160888672,0.07790849357843399,0.6705011129379272,-0.21838779747486115,1.367668867111206,2.239128589630127,1.9079738855361938,0.13019607961177826,0.0604793019592762,0.3567756116390228,0.3916339874267578,1.2282352447509766,0.9319390058517456,1.367668867111206,1.4373856782913208,1.6116775274276733,2.0125489234924316,2.082265853881836,2.0125489234924316,1.9428322315216064,1.8556863069534302,1.5419608354568481,-0.09638344496488571,-0.4798257052898407,-0.37525054812431335,-0.270675390958786,-0.23581700026988983,-0.07895424962043762,0.008191721513867378,-0.04409585893154144,0.09533768892288208,0.30448800325393677,0.3567756116390228,-0.04409585893154144,0.4264923632144928,0.2347712367773056,0.2696296274662018,0.3567756116390228,-0.39267975091934204,0.07790849357843399,0.5659258961677551,0.28705883026123047,0.2522004246711731,0.16505447030067444,0.8970806002616882,0.47877994179725647,0.7227886915206909,0.6356427073478699,0.6182135343551636,-0.07895424962043762,-0.06152505427598953,0.14762526750564575,-0.07895424962043762,0.13019607961177826,0.0604793019592762,-0.462396502494812,0.008191721513867378,0.18248365819454193],[0.8273638486862183,0.8622221946716309,0.9319390058517456,0.9842265844345093,1.036514163017273,1.0016558170318604,0.9493681788444519,1.5942484140396118,1.4199564456939697,1.350239634513855,1.524531602859497,1.367668867111206,1.7685402631759644,1.663965106010437,1.507102370262146,1.8033987283706665,1.5593899488449097,1.7336819171905518,1.6988235712051392,1.5593899488449097,1.1410893201828003,1.1236600875854492,1.0713725090026855,1.1585185527801514,1.2805228233337402,1.7859694957733154,1.4722440242767334,1.5419608354568481,1.350239634513855,0.8447930216789246,1.8033987283706665,1.2282352447509766,1.5593899488449097,1.820827841758728,2.047407388687134,2.0996949672698975,1.820827841758728,1.8905446529388428,1.9254029989242554,2.0125489234924316,1.7162526845932007,1.1410893201828003,0.8447930216789246,1.332810401916504,1.7685402631759644,1.2456644773483276,1.1410893201828003,1.6988235712051392,1.2282352447509766,1.4548147916793823,1.4896732568740845,2.082265853881836,1.5419608354568481,1.663965106010437,1.0888017416000366,1.0016558170318604,1.4548147916793823,1.367668867111206,1.2805228233337402,0.4264923632144928,-0.16610021889209747,-0.340392142534256,0.2696296274662018,0.4439215660095215,-0.06152505427598953,-0.5669716596603394,0.7750762701034546,-0.35782134532928467,-0.9155555367469788,-1.2815686464309692,-1.0724183320999146,-1.5255773067474365,-1.7347276210784912,-1.5952941179275513,-1.5778648853302002,-1.5255773067474365,-1.246710181236267,-1.804444432258606,-1.7347276210784912,-1.804444432258606,-0.09638344496488571,0.02562091499567032,-1.7172985076904297,-1.2815686464309692,-0.5669716596603394,-1.5255773067474365,-0.5669716596603394,0.7925054430961609,0.8099346160888672,1.0190849304199219,-0.7238343954086304,-1.089847445487976,-1.1072766780853271,-1.0724183320999146,-0.7238343954086304,-0.6715468168258667,-0.5844008922576904,-0.16610021889209747,-0.305533766746521,-0.1312418282032013,-0.6366884708404541,0.2347712367773056,-0.5321133136749268,-0.1138126328587532,-0.39267975091934204,0.07790849357843399,0.008191721513867378,0.13019607961177826,0.04305011034011841,0.2173420488834381,-0.06152505427598953,0.33934640884399414,0.3916339874267578,0.6530718803405762,1.0713725090026855,0.8970806002616882,1.1410893201828003,1.1236600875854492,2.2914161682128906,2.640000104904175,2.27398681640625,2.5005664825439453,2.640000104904175,0.2522004246711731,0.3567756116390228,1.4896732568740845,1.4896732568740845,1.8731154203414917,1.7511111497879028,2.1694116592407227,2.117124080657959,2.117124080657959,0.2522004246711731,1.7685402631759644,1.9254029989242554,1.7685402631759644,1.036514163017273,2.0125489234924316,1.507102370262146,1.3153812885284424,1.977690577507019,1.4025272130966187,1.2630937099456787,1.5942484140396118,1.8556863069534302,1.367668867111206,0.9493681788444519,0.966797411441803,-0.270675390958786,-0.9504139423370361,-0.009237472899258137,-0.1312418282032013,0.28705883026123047,-0.07895424962043762,-0.8632679581642151,-0.8632679581642151,1.1410893201828003,0.16505447030067444,-0.9852723479270935,-1.089847445487976,1.2805228233337402,0.6705011129379272,0.33934640884399414,0.6007843017578125,-0.340392142534256,1.5593899488449097,0.47877994179725647,-0.5321133136749268,-0.7761220335960388,0.8796514272689819,1.6116775274276733,0.9842265844345093,1.1236600875854492,0.2696296274662018,0.7227886915206909,0.47877994179725647,0.7053594589233398,1.0190849304199219,1.2979520559310913,1.3153812885284424,1.210806131362915,1.4373856782913208,1.7511111497879028,1.838257074356079,1.7511111497879028,1.8033987283706665,1.5768191814422607,1.6291067600250244,-0.20095860958099365,-0.09638344496488571,-0.35782134532928467,0.04305011034011841,-0.02666666731238365,-0.39267975091934204,-0.427538126707077,-0.009237472899258137,-0.04409585893154144,0.2522004246711731,0.11276688426733017,0.11276688426733017,0.18248365819454193,0.07790849357843399,0.3742047846317291,0.6182135343551636,0.3567756116390228,1.0016558170318604,0.09533768892288208,-0.1138126328587532,0.30448800325393677,0.5659258961677551,0.7053594589233398,0.8622221946716309,1.036514163017273,0.7402178645133972,0.6356427073478699,0.18248365819454193,-0.04409585893154144,0.49620914459228516,0.7750762701034546,0.47877994179725647,0.5136383175849915,0.8622221946716309,0.7576470375061035,0.30448800325393677],[1.5419608354568481,1.036514163017273,0.6007843017578125,1.2979520559310913,0.6356427073478699,1.0190849304199219,1.2630937099456787,1.2630937099456787,1.4373856782913208,1.332810401916504,1.4896732568740845,1.7511111497879028,1.8033987283706665,1.663965106010437,1.681394338607788,1.524531602859497,1.838257074356079,1.4548147916793823,1.8556863069534302,1.6116775274276733,1.6116775274276733,1.4199564456939697,2.117124080657959,1.4896732568740845,1.2456644773483276,1.5593899488449097,1.524531602859497,1.2282352447509766,1.350239634513855,1.5942484140396118,1.4373856782913208,1.681394338607788,1.5768191814422607,1.7511111497879028,2.0299782752990723,2.082265853881836,2.082265853881836,2.0996949672698975,1.8033987283706665,2.0648365020751953,1.8905446529388428,1.6291067600250244,1.2456644773483276,1.2630937099456787,1.8905446529388428,1.9951198101043701,1.8033987283706665,1.3850979804992676,1.0713725090026855,1.0016558170318604,1.7511111497879028,1.5942484140396118,1.8033987283706665,1.5593899488449097,0.7402178645133972,0.2522004246711731,1.1062309741973877,1.0713725090026855,1.175947666168213,0.18248365819454193,0.16505447030067444,-1.5255773067474365,1.2456644773483276,1.6465359926223755,0.4264923632144928,-0.14867103099822998,-0.07895424962043762,1.367668867111206,-0.3229629695415497,-1.1944226026535034,-1.0375598669052124,-1.0375598669052124,-1.5430065393447876,-0.4449673295021057,-0.9504139423370361,-1.4558606147766113,-1.7695860862731934,-1.804444432258606,-1.6998692750930786,-0.7238343954086304,0.07790849357843399,-0.6715468168258667,-0.04409585893154144,-0.427538126707077,0.2173420488834381,0.5659258961677551,0.6007843017578125,-0.427538126707077,0.19991286098957062,0.2522004246711731,-0.8458387851715088,-1.647581696510315,-1.1421350240707397,-0.6366884708404541,-0.340392142534256,-0.8806971907615662,-0.427538126707077,-0.305533766746521,-0.18352940678596497,0.18248365819454193,0.02562091499567032,-0.35782134532928467,-0.06152505427598953,0.18248365819454193,0.14762526750564575,-0.02666666731238365,0.32191720604896545,0.14762526750564575,0.008191721513867378,0.2347712367773056,0.13019607961177826,0.6007843017578125,0.5310675501823425,0.7053594589233398,0.7053594589233398,1.1410893201828003,0.7402178645133972,0.9145098328590393,2.5702831745147705,2.465708017349243,2.640000104904175,2.465708017349243,2.43084979057312,-0.23581700026988983,1.1585185527801514,1.175947666168213,0.966797411441803,1.6291067600250244,1.663965106010437,1.663965106010437,1.193376898765564,2.047407388687134,1.1062309741973877,1.5419608354568481,1.5419608354568481,1.9254029989242554,1.0888017416000366,0.8796514272689819,0.7750762701034546,1.036514163017273,1.2282352447509766,1.6988235712051392,1.332810401916504,1.4722440242767334,1.507102370262146,1.053943395614624,1.7685402631759644,0.7576470375061035,1.2979520559310913,-0.16610021889209747,-0.4449673295021057,0.7402178645133972,-0.23581700026988983,0.5310675501823425,-0.5146840810775757,-0.4798257052898407,1.4722440242767334,-0.5146840810775757,-1.1944226026535034,-0.09638344496488571,1.175947666168213,0.7053594589233398,1.036514163017273,0.07790849357843399,1.1410893201828003,1.1410893201828003,1.4722440242767334,0.7053594589233398,0.6530718803405762,1.820827841758728,1.0016558170318604,0.3916339874267578,0.9319390058517456,1.6116775274276733,0.8796514272689819,0.2522004246711731,0.5659258961677551,0.8970806002616882,1.332810401916504,1.2630937099456787,1.663965106010437,1.6465359926223755,1.663965106010437,1.7511111497879028,1.838257074356079,1.4373856782913208,1.4025272130966187,1.2456644773483276,-0.5146840810775757,-0.5146840810775757,-0.4798257052898407,-0.37525054812431335,0.13019607961177826,0.0604793019592762,-0.02666666731238365,0.2696296274662018,0.11276688426733017,0.3742047846317291,0.28705883026123047,0.02562091499567032,0.2347712367773056,0.3567756116390228,0.3916339874267578,0.2347712367773056,0.47877994179725647,0.0604793019592762,0.6879302859306335,0.4264923632144928,0.2522004246711731,0.7227886915206909,0.4090631902217865,0.3916339874267578,1.0713725090026855,0.8447930216789246,0.9842265844345093,0.7925054430961609,0.04305011034011841,0.3916339874267578,0.3567756116390228,0.8796514272689819,0.9145098328590393,0.7750762701034546,0.6007843017578125,0.8970806002616882],[1.1236600875854492,1.175947666168213,1.2282352447509766,1.053943395614624,0.7750762701034546,1.6291067600250244,1.193376898765564,1.0016558170318604,1.524531602859497,0.9145098328590393,1.5768191814422607,1.3850979804992676,1.7511111497879028,1.2630937099456787,1.350239634513855,1.4373856782913208,1.4896732568740845,1.507102370262146,1.332810401916504,1.507102370262146,1.3153812885284424,0.966797411441803,1.4373856782913208,1.2282352447509766,1.350239634513855,1.4722440242767334,1.2805228233337402,1.175947666168213,1.4722440242767334,1.1236600875854492,1.5768191814422607,1.4896732568740845,1.7336819171905518,1.820827841758728,2.0299782752990723,1.9951198101043701,1.820827841758728,1.9428322315216064,1.9602614641189575,1.9254029989242554,2.0125489234924316,1.8556863069534302,1.9951198101043701,1.507102370262146,2.047407388687134,1.9602614641189575,1.681394338607788,1.5419608354568481,0.9145098328590393,1.1410893201828003,1.9079738855361938,2.151982545852661,1.2979520559310913,1.3850979804992676,0.6007843017578125,-0.21838779747486115,0.18248365819454193,0.8970806002616882,-0.2881045639514923,0.6356427073478699,0.18248365819454193,-1.3164269924163818,1.0888017416000366,1.0016558170318604,0.6530718803405762,0.30448800325393677,0.5484967231750488,1.332810401916504,0.8447930216789246,-0.4972549080848694,-0.23581700026988983,-0.619259238243103,-1.089847445487976,-0.4798257052898407,-0.5844008922576904,-0.4798257052898407,-1.7695860862731934,-1.0724183320999146,-1.2815686464309692,-1.176993489265442,-0.35782134532928467,-0.8806971907615662,-1.665010929107666,0.16505447030067444,-0.3229629695415497,-0.7064052224159241,-1.804444432258606,-1.333856225013733,-1.176993489265442,0.49620914459228516,-1.2292810678482056,-0.7586928009986877,-1.0375598669052124,-0.8806971907615662,-0.6018300652503967,-0.7586928009986877,-0.16610021889209747,-0.14867103099822998,-0.07895424962043762,0.09533768892288208,-0.07895424962043762,0.2696296274662018,0.14762526750564575,0.07790849357843399,0.16505447030067444,0.11276688426733017,0.4264923632144928,0.2522004246711731,0.0604793019592762,-0.04409585893154144,-0.07895424962043762,0.28705883026123047,0.47877994179725647,0.7750762701034546,0.8447930216789246,0.7402178645133972,1.1236600875854492,0.8796514272689819,2.308845281600952,2.622570753097534,2.640000104904175,2.2914161682128906,2.5354249477386475,1.2456644773483276,1.5768191814422607,1.5768191814422607,1.7859694957733154,1.5942484140396118,1.8731154203414917,2.047407388687134,1.507102370262146,1.5768191814422607,0.6879302859306335,1.053943395614624,1.2979520559310913,1.1410893201828003,0.5659258961677551,2.151982545852661,0.9319390058517456,0.7925054430961609,2.1345534324645996,2.082265853881836,1.2456644773483276,1.1585185527801514,1.7859694957733154,1.0888017416000366,0.2696296274662018,0.5659258961677551,-0.20095860958099365,-1.0724183320999146,-0.8632679581642151,0.9319390058517456,0.6007843017578125,0.8622221946716309,0.3916339874267578,1.0190849304199219,1.820827841758728,0.0604793019592762,-1.089847445487976,1.175947666168213,0.04305011034011841,1.5419608354568481,-0.4972549080848694,0.5659258961677551,0.4264923632144928,1.367668867111206,-0.3229629695415497,0.4264923632144928,0.5136383175849915,0.9145098328590393,1.1236600875854492,1.175947666168213,1.053943395614624,1.4025272130966187,0.966797411441803,1.1236600875854492,0.8622221946716309,0.8796514272689819,0.9842265844345093,1.2805228233337402,1.2456644773483276,1.2630937099456787,1.838257074356079,1.838257074356079,1.6988235712051392,0.8099346160888672,1.0713725090026855,0.9842265844345093,-0.6018300652503967,-0.4798257052898407,0.0604793019592762,-0.18352940678596497,-0.20095860958099365,-0.16610021889209747,-0.04409585893154144,-0.16610021889209747,0.19991286098957062,0.4264923632144928,0.2696296274662018,0.13019607961177826,0.2173420488834381,-0.1138126328587532,0.6182135343551636,-0.07895424962043762,0.02562091499567032,0.09533768892288208,0.04305011034011841,0.32191720604896545,0.7402178645133972,0.5833551287651062,0.04305011034011841,0.3567756116390228,0.966797411441803,0.47877994179725647,1.1585185527801514,1.0190849304199219,0.966797411441803,0.3916339874267578,0.4439215660095215,0.32191720604896545,0.49620914459228516,0.5484967231750488,0.8622221946716309,0.4090631902217865],[1.2456644773483276,1.175947666168213,1.193376898765564,1.3153812885284424,1.663965106010437,1.0190849304199219,1.367668867111206,1.6465359926223755,1.524531602859497,1.8556863069534302,1.8556863069534302,1.4373856782913208,1.838257074356079,2.0125489234924316,1.838257074356079,1.663965106010437,1.4548147916793823,1.4025272130966187,1.1062309741973877,1.0888017416000366,0.11276688426733017,1.0888017416000366,0.7750762701034546,1.036514163017273,1.053943395614624,1.2456644773483276,1.1410893201828003,1.6116775274276733,1.7162526845932007,1.2456644773483276,1.6988235712051392,1.4548147916793823,1.5942484140396118,1.9254029989242554,1.9951198101043701,1.977690577507019,1.8905446529388428,1.7511111497879028,1.838257074356079,1.663965106010437,1.9254029989242554,1.9951198101043701,2.2565577030181885,2.0648365020751953,1.9951198101043701,2.082265853881836,2.0125489234924316,1.0888017416000366,0.9842265844345093,1.4373856782913208,0.966797411441803,2.0125489234924316,1.6291067600250244,1.5593899488449097,0.11276688426733017,0.3567756116390228,0.8447930216789246,1.5768191814422607,-0.06152505427598953,-0.4972549080848694,-0.2532461881637573,-0.427538126707077,-0.20095860958099365,0.7750762701034546,0.5136383175849915,0.33934640884399414,-1.804444432258606,-0.07895424962043762,0.966797411441803,-0.619259238243103,-0.04409585893154144,-1.1247059106826782,-1.2292810678482056,-0.7238343954086304,-0.8458387851715088,-1.7521568536758423,-1.665010929107666,-1.804444432258606,-1.6301524639129639,-1.7695860862731934,-0.7586928009986877,-0.6541176438331604,-1.089847445487976,-0.8632679581642151,-0.8806971907615662,-1.5430065393447876,-1.7347276210784912,-1.5952941179275513,-1.804444432258606,-0.37525054812431335,-0.340392142534256,-0.9678431153297424,-0.6541176438331604,-0.9329847693443298,-0.6715468168258667,-0.8109803795814514,-0.4798257052898407,-0.06152505427598953,0.0604793019592762,0.13019607961177826,-0.04409585893154144,0.2173420488834381,0.2347712367773056,0.3567756116390228,0.3567756116390228,0.28705883026123047,0.28705883026123047,0.33934640884399414,0.6356427073478699,0.4439215660095215,0.3916339874267578,0.30448800325393677,0.4090631902217865,0.7227886915206909,0.7576470375061035,0.6356427073478699,1.210806131362915,1.193376898765564,2.4134204387664795,1.8556863069534302,1.6988235712051392,2.5005664825439453,2.3262743949890137,-0.305533766746521,2.0125489234924316,1.4896732568740845,1.036514163017273,0.6705011129379272,2.0125489234924316,1.2282352447509766,1.4199564456939697,0.5833551287651062,0.30448800325393677,0.0604793019592762,0.18248365819454193,1.4722440242767334,1.6116775274276733,2.0648365020751953,1.3153812885284424,0.9842265844345093,1.8731154203414917,1.7859694957733154,1.2282352447509766,0.966797411441803,1.6116775274276733,1.0888017416000366,0.8970806002616882,0.7925054430961609,0.4090631902217865,-0.009237472899258137,-0.619259238243103,0.3567756116390228,0.2522004246711731,1.3850979804992676,1.9951198101043701,1.7162526845932007,1.9602614641189575,-0.305533766746521,-0.7238343954086304,0.3916339874267578,0.966797411441803,0.8099346160888672,0.5833551287651062,0.6356427073478699,1.053943395614624,1.0190849304199219,0.9145098328590393,0.28705883026123047,0.0604793019592762,0.5136383175849915,1.3850979804992676,1.193376898765564,1.4896732568740845,0.6705011129379272,0.2173420488834381,0.9842265844345093,1.1062309741973877,1.0713725090026855,1.193376898765564,0.966797411441803,1.332810401916504,1.4199564456939697,1.7685402631759644,1.8731154203414917,1.4025272130966187,0.47877994179725647,0.6705011129379272,0.3916339874267578,-0.6715468168258667,-0.7238343954086304,-0.5669716596603394,-0.270675390958786,-0.2532461881637573,-0.009237472899258137,-0.18352940678596497,0.008191721513867378,0.3916339874267578,0.02562091499567032,0.02562091499567032,0.30448800325393677,0.47877994179725647,0.14762526750564575,0.2522004246711731,-0.02666666731238365,0.07790849357843399,0.4439215660095215,0.16505447030067444,0.5310675501823425,0.09533768892288208,0.8273638486862183,0.4439215660095215,0.9842265844345093,1.1236600875854492,0.6705011129379272,0.7576470375061035,0.8970806002616882,0.7925054430961609,0.9319390058517456,-0.02666666731238365,0.13019607961177826,0.4090631902217865,0.6530718803405762,0.6007843017578125,0.5310675501823425],[1.5419608354568481,1.5419608354568481,1.4722440242767334,1.367668867111206,1.3850979804992676,1.332810401916504,1.3850979804992676,1.4025272130966187,1.4896732568740845,1.977690577507019,1.6291067600250244,1.838257074356079,1.681394338607788,1.9602614641189575,1.6291067600250244,1.8556863069534302,1.2456644773483276,1.4199564456939697,0.8273638486862183,0.6879302859306335,1.0713725090026855,0.46135076880455017,0.7227886915206909,1.2282352447509766,1.3153812885284424,1.193376898765564,0.7227886915206909,0.8099346160888672,0.19991286098957062,1.193376898765564,0.6705011129379272,1.1236600875854492,1.4548147916793823,1.8033987283706665,2.0125489234924316,1.6291067600250244,1.6988235712051392,2.151982545852661,1.2805228233337402,1.6291067600250244,1.9428322315216064,1.7859694957733154,1.9254029989242554,2.0996949672698975,2.151982545852661,1.820827841758728,2.0299782752990723,1.5419608354568481,1.4896732568740845,0.7053594589233398,1.0713725090026855,0.9493681788444519,0.7925054430961609,1.6291067600250244,1.3850979804992676,-0.270675390958786,-0.5146840810775757,1.0190849304199219,-0.09638344496488571,-0.6889760494232178,-0.8458387851715088,0.47877994179725647,-0.2881045639514923,0.5659258961677551,-0.3229629695415497,0.5310675501823425,-1.1247059106826782,-1.0724183320999146,0.5136383175849915,0.7576470375061035,0.5833551287651062,-1.1421350240707397,-0.7412636280059814,-1.176993489265442,-0.5146840810775757,-1.1595642566680908,-1.5778648853302002,-1.7870151996612549,-1.7347276210784912,-1.2989978790283203,-0.8458387851715088,-0.7935512065887451,-1.5778648853302002,-1.804444432258606,-1.804444432258606,-1.7695860862731934,-1.7695860862731934,-1.351285457611084,-0.6018300652503967,-0.04409585893154144,0.2522004246711731,-1.1072766780853271,-0.8632679581642151,-0.6889760494232178,-0.619259238243103,-0.35782134532928467,-0.5669716596603394,-0.07895424962043762,0.16505447030067444,0.19991286098957062,0.30448800325393677,0.19991286098957062,-0.09638344496488571,-0.3229629695415497,0.5484967231750488,0.30448800325393677,0.2696296274662018,0.4439215660095215,0.32191720604896545,0.46135076880455017,0.13019607961177826,0.30448800325393677,0.8099346160888672,0.8099346160888672,0.6879302859306335,0.8796514272689819,1.0190849304199219,1.1062309741973877,2.43084979057312,2.640000104904175,1.8731154203414917,2.483137369155884,1.4896732568740845,0.0604793019592762,1.8731154203414917,0.2347712367773056,0.6182135343551636,0.6007843017578125,1.1236600875854492,0.5484967231750488,0.6007843017578125,0.30448800325393677,-0.16610021889209747,-0.5844008922576904,-0.20095860958099365,1.7685402631759644,1.1410893201828003,1.4722440242767334,1.4373856782913208,0.8622221946716309,0.9145098328590393,0.6879302859306335,1.2456644773483276,1.3850979804992676,1.6291067600250244,1.8905446529388428,0.5833551287651062,0.6705011129379272,0.8970806002616882,1.2456644773483276,2.082265853881836,-0.009237472899258137,0.2696296274662018,0.6530718803405762,1.4373856782913208,2.3262743949890137,1.2630937099456787,1.6291067600250244,-1.1247059106826782,0.6356427073478699,1.4896732568740845,1.1236600875854492,0.28705883026123047,0.6530718803405762,0.7925054430961609,1.036514163017273,-0.20095860958099365,1.210806131362915,1.2805228233337402,1.2282352447509766,1.524531602859497,1.036514163017273,1.5768191814422607,1.4722440242767334,1.4025272130966187,0.9842265844345093,1.0016558170318604,0.9319390058517456,0.8796514272689819,0.9145098328590393,1.0888017416000366,1.6116775274276733,2.0125489234924316,1.9079738855361938,1.175947666168213,0.6356427073478699,1.1062309741973877,0.2173420488834381,-0.5669716596603394,-0.7761220335960388,0.07790849357843399,-0.2532461881637573,-0.07895424962043762,0.2347712367773056,0.2173420488834381,0.4090631902217865,-0.07895424962043762,0.4090631902217865,-0.009237472899258137,-0.04409585893154144,0.5484967231750488,0.008191721513867378,0.09533768892288208,0.8273638486862183,0.2522004246711731,0.5484967231750488,0.6356427073478699,0.2522004246711731,0.7053594589233398,0.19991286098957062,0.6530718803405762,0.47877994179725647,0.5484967231750488,0.7227886915206909,0.7925054430961609,1.350239634513855,0.6182135343551636,1.3850979804992676,1.1410893201828003,0.3567756116390228,0.5484967231750488,0.6705011129379272,0.7227886915206909,0.966797411441803],[1.1410893201828003,1.0190849304199219,0.9493681788444519,1.4199564456939697,1.7162526845932007,1.524531602859497,1.6988235712051392,1.681394338607788,1.8905446529388428,1.6988235712051392,1.8556863069534302,1.7336819171905518,1.8905446529388428,1.8556863069534302,1.8556863069534302,2.1345534324645996,1.9428322315216064,1.5768191814422607,1.4722440242767334,1.0190849304199219,0.6356427073478699,-0.4972549080848694,0.7227886915206909,0.6705011129379272,0.7227886915206909,1.4025272130966187,1.2805228233337402,1.0190849304199219,0.5659258961677551,0.46135076880455017,0.2173420488834381,0.32191720604896545,0.13019607961177826,1.175947666168213,1.5768191814422607,1.507102370262146,1.6116775274276733,2.0125489234924316,1.4896732568740845,1.0016558170318604,1.2456644773483276,1.7162526845932007,2.0125489234924316,1.9428322315216064,1.7685402631759644,1.8033987283706665,1.6116775274276733,1.4025272130966187,1.3850979804992676,1.5419608354568481,1.524531602859497,1.2979520559310913,-0.14867103099822998,0.28705883026123047,1.210806131362915,0.46135076880455017,0.30448800325393677,-0.21838779747486115,0.32191720604896545,-0.5321133136749268,0.04305011034011841,0.09533768892288208,0.8622221946716309,-0.427538126707077,-1.2815686464309692,-0.2881045639514923,0.14762526750564575,-0.20095860958099365,-1.0724183320999146,1.053943395614624,0.8273638486862183,-1.1421350240707397,-1.0549890995025635,-1.0027015209197998,-1.2641394138336182,-1.804444432258606,-1.7695860862731934,-1.7347276210784912,-1.1595642566680908,-0.8284096121788025,-1.4732897281646729,-1.7521568536758423,-1.7695860862731934,-1.7521568536758423,-1.6998692750930786,-1.7695860862731934,-1.1421350240707397,-0.5495424866676331,-0.21838779747486115,-1.5430065393447876,-1.804444432258606,-1.490718960762024,-0.18352940678596497,0.0604793019592762,-0.2881045639514923,0.09533768892288208,-0.02666666731238365,0.02562091499567032,-0.06152505427598953,-0.02666666731238365,0.008191721513867378,0.2347712367773056,0.18248365819454193,0.6879302859306335,0.2347712367773056,0.3916339874267578,0.09533768892288208,0.2347712367773056,0.5136383175849915,0.46135076880455017,0.5136383175849915,0.6879302859306335,0.5833551287651062,0.7750762701034546,1.1236600875854492,0.966797411441803,1.2805228233337402,1.1062309741973877,2.640000104904175,2.4134204387664795,2.2914161682128906,1.663965106010437,-0.2881045639514923,0.7925054430961609,1.1585185527801514,0.5833551287651062,1.0190849304199219,-0.6715468168258667,-0.04409585893154144,0.4264923632144928,0.7402178645133972,0.02562091499567032,0.30448800325393677,0.14762526750564575,-0.2532461881637573,0.8099346160888672,0.3916339874267578,0.6705011129379272,1.0888017416000366,0.6879302859306335,1.332810401916504,1.8033987283706665,0.8622221946716309,0.9842265844345093,0.5659258961677551,0.4264923632144928,0.8970806002616882,1.2979520559310913,0.19991286098957062,1.9602614641189575,1.0713725090026855,1.6291067600250244,1.350239634513855,1.332810401916504,1.5942484140396118,0.5484967231750488,1.8731154203414917,1.4896732568740845,0.6356427073478699,-0.06152505427598953,1.1062309741973877,-0.1312418282032013,0.28705883026123047,0.5484967231750488,1.175947666168213,0.5484967231750488,0.2696296274662018,0.7750762701034546,0.6356427073478699,0.02562091499567032,0.8622221946716309,1.2282352447509766,1.1585185527801514,1.2979520559310913,0.6879302859306335,1.3153812885284424,0.8273638486862183,0.966797411441803,0.8796514272689819,0.7750762701034546,1.681394338607788,1.8033987283706665,1.9079738855361938,1.7162526845932007,1.524531602859497,1.4896732568740845,1.2979520559310913,0.02562091499567032,-0.619259238243103,-0.5146840810775757,-0.4798257052898407,0.04305011034011841,-0.20095860958099365,-0.1138126328587532,-0.09638344496488571,-0.009237472899258137,-0.270675390958786,0.30448800325393677,0.02562091499567032,0.07790849357843399,0.2696296274662018,0.7402178645133972,0.47877994179725647,0.4439215660095215,0.32191720604896545,0.19991286098957062,0.2522004246711731,0.3567756116390228,0.33934640884399414,0.4439215660095215,0.7402178645133972,0.8796514272689819,0.9319390058517456,0.8796514272689819,1.0016558170318604,1.210806131362915,0.8970806002616882,1.1410893201828003,1.3153812885284424,0.9145098328590393,0.6530718803405762,0.7227886915206909,1.0888017416000366,0.6879302859306335],[1.4025272130966187,1.4548147916793823,1.4548147916793823,1.4373856782913208,1.1062309741973877,1.4722440242767334,1.2282352447509766,1.3850979804992676,1.663965106010437,1.4025272130966187,1.7162526845932007,1.681394338607788,1.9079738855361938,1.9951198101043701,2.4482789039611816,2.117124080657959,2.082265853881836,1.8905446529388428,1.367668867111206,1.332810401916504,0.7925054430961609,1.1062309741973877,1.4548147916793823,1.0190849304199219,0.8796514272689819,1.2630937099456787,1.210806131362915,0.7227886915206909,0.5310675501823425,-0.39267975091934204,-0.8109803795814514,-0.305533766746521,-0.02666666731238365,0.7925054430961609,1.0888017416000366,1.5768191814422607,1.5768191814422607,1.4722440242767334,1.3850979804992676,1.0016558170318604,1.1585185527801514,1.663965106010437,2.0648365020751953,2.117124080657959,1.9602614641189575,1.7511111497879028,1.524531602859497,1.5593899488449097,1.367668867111206,1.1062309741973877,1.4373856782913208,0.8447930216789246,0.16505447030067444,0.5484967231750488,0.16505447030067444,1.210806131362915,0.6007843017578125,-0.37525054812431335,-0.39267975091934204,-0.2881045639514923,-1.2292810678482056,0.13019607961177826,-0.23581700026988983,-0.06152505427598953,-0.305533766746521,0.2696296274662018,0.6182135343551636,0.09533768892288208,-0.8109803795814514,-0.270675390958786,0.5310675501823425,-0.21838779747486115,-0.7586928009986877,-1.1072766780853271,-1.5604357719421387,-1.5778648853302002,-1.7172985076904297,-1.7521568536758423,-1.5778648853302002,-1.7695860862731934,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.7870151996612549,-0.7586928009986877,-1.176993489265442,-0.06152505427598953,-0.8981263637542725,-0.7064052224159241,-1.7695860862731934,-1.6998692750930786,-1.3164269924163818,0.3742047846317291,-0.5146840810775757,-0.09638344496488571,-0.35782134532928467,-0.009237472899258137,-0.20095860958099365,0.13019607961177826,0.0604793019592762,0.2696296274662018,0.16505447030067444,0.11276688426733017,-0.21838779747486115,0.3916339874267578,0.2347712367773056,0.14762526750564575,0.09533768892288208,-0.009237472899258137,0.32191720604896545,-0.009237472899258137,0.5659258961677551,0.7750762701034546,0.7750762701034546,0.9842265844345093,1.0888017416000366,1.1585185527801514,1.053943395614624,2.3785619735717773,2.483137369155884,2.622570753097534,-0.07895424962043762,-0.8806971907615662,1.5768191814422607,-0.02666666731238365,-0.04409585893154144,0.16505447030067444,0.28705883026123047,-0.619259238243103,-0.6715468168258667,0.0604793019592762,-0.619259238243103,-0.09638344496488571,-0.7238343954086304,-0.462396502494812,-0.009237472899258137,1.210806131362915,0.6007843017578125,-0.1138126328587532,0.3742047846317291,0.32191720604896545,0.07790849357843399,0.4090631902217865,0.2522004246711731,0.6007843017578125,1.4199564456939697,0.32191720604896545,1.9079738855361938,1.2979520559310913,0.5833551287651062,-0.4972549080848694,1.2282352447509766,1.210806131362915,0.3742047846317291,1.5942484140396118,1.1236600875854492,1.8033987283706665,1.3850979804992676,1.4896732568740845,-0.21838779747486115,0.3567756116390228,0.18248365819454193,1.6465359926223755,1.4722440242767334,1.0713725090026855,0.13019607961177826,1.4373856782913208,-0.5669716596603394,0.14762526750564575,0.008191721513867378,0.09533768892288208,1.0888017416000366,0.6705011129379272,0.2173420488834381,0.8796514272689819,1.1062309741973877,0.7750762701034546,0.30448800325393677,1.0016558170318604,1.0713725090026855,1.6988235712051392,1.6465359926223755,1.8033987283706665,1.8905446529388428,1.9254029989242554,1.7162526845932007,1.350239634513855,0.008191721513867378,-0.462396502494812,-0.3229629695415497,-0.18352940678596497,-0.35782134532928467,-0.1312418282032013,0.16505447030067444,0.2347712367773056,0.2347712367773056,-0.09638344496488571,0.32191720604896545,0.7402178645133972,0.2522004246711731,0.19991286098957062,0.7053594589233398,0.2522004246711731,0.4439215660095215,0.6879302859306335,0.6007843017578125,0.4090631902217865,0.8099346160888672,0.5484967231750488,1.036514163017273,0.2347712367773056,0.5484967231750488,0.46135076880455017,0.8970806002616882,0.8447930216789246,0.8796514272689819,1.193376898765564,0.966797411441803,1.036514163017273,1.053943395614624,0.4439215660095215,0.7925054430961609,0.3742047846317291,1.0713725090026855],[1.3850979804992676,1.053943395614624,1.1062309741973877,1.4548147916793823,1.5419608354568481,1.4548147916793823,1.350239634513855,1.7336819171905518,1.6465359926223755,1.8731154203414917,1.8556863069534302,1.820827841758728,1.7859694957733154,2.0125489234924316,1.9254029989242554,1.977690577507019,1.7511111497879028,1.8731154203414917,1.1062309741973877,1.2805228233337402,0.7576470375061035,1.3850979804992676,1.1410893201828003,1.5768191814422607,1.350239634513855,1.4025272130966187,1.6291067600250244,0.30448800325393677,0.04305011034011841,0.7227886915206909,0.6879302859306335,1.1062309741973877,0.966797411441803,0.3567756116390228,0.9319390058517456,1.6291067600250244,1.7511111497879028,2.047407388687134,1.5593899488449097,1.1410893201828003,1.2979520559310913,1.838257074356079,2.0299782752990723,2.0996949672698975,2.0996949672698975,1.7162526845932007,1.2282352447509766,1.5419608354568481,1.4199564456939697,1.367668867111206,1.175947666168213,0.6007843017578125,0.8273638486862183,0.6879302859306335,-1.3164269924163818,1.0713725090026855,0.4439215660095215,0.19991286098957062,0.02562091499567032,-0.2532461881637573,-0.7238343954086304,0.07790849357843399,0.11276688426733017,0.2522004246711731,0.008191721513867378,-0.2881045639514923,0.5310675501823425,0.33934640884399414,-0.6541176438331604,-0.6889760494232178,0.7053594589233398,-0.340392142534256,-0.14867103099822998,-1.0201307535171509,-1.176993489265442,-1.4732897281646729,-1.5778648853302002,-1.1072766780853271,-1.7695860862731934,-1.7870151996612549,-1.7695860862731934,-1.7172985076904297,-1.7695860862731934,-1.7521568536758423,-0.6541176438331604,-1.1421350240707397,-1.0724183320999146,-1.490718960762024,-1.647581696510315,-1.804444432258606,-0.7586928009986877,-0.4798257052898407,-1.4732897281646729,-0.07895424962043762,-0.6366884708404541,-0.37525054812431335,0.0604793019592762,0.19991286098957062,-0.2881045639514923,-0.1138126328587532,0.13019607961177826,0.13019607961177826,0.30448800325393677,-0.07895424962043762,-0.04409585893154144,0.14762526750564575,-0.18352940678596497,-0.305533766746521,0.16505447030067444,0.28705883026123047,0.2173420488834381,0.07790849357843399,0.47877994179725647,0.8622221946716309,0.9145098328590393,1.1236600875854492,0.9842265844345093,0.6530718803405762,2.640000104904175,1.2630937099456787,2.2914161682128906,2.4134204387664795,1.9602614641189575,1.367668867111206,0.6007843017578125,1.8905446529388428,1.1585185527801514,0.7402178645133972,0.0604793019592762,1.036514163017273,-0.16610021889209747,-0.16610021889209747,-0.16610021889209747,0.09533768892288208,0.19991286098957062,0.13019607961177826,0.02562091499567032,0.46135076880455017,-0.619259238243103,-0.02666666731238365,0.04305011034011841,0.13019607961177826,0.46135076880455017,-0.14867103099822998,-0.3229629695415497,-0.1138126328587532,0.8447930216789246,1.2630937099456787,0.6007843017578125,0.9319390058517456,1.367668867111206,0.46135076880455017,0.8447930216789246,1.0888017416000366,1.5419608354568481,1.5419608354568481,1.4373856782913208,1.1410893201828003,2.0299782752990723,-0.5321133136749268,0.6530718803405762,1.1410893201828003,1.3850979804992676,2.1868410110473633,0.46135076880455017,0.6356427073478699,1.4199564456939697,0.30448800325393677,0.32191720604896545,-0.7412636280059814,0.2347712367773056,0.3742047846317291,-0.16610021889209747,0.13019607961177826,-0.16610021889209747,0.19991286098957062,0.7576470375061035,1.175947666168213,1.0016558170318604,1.4199564456939697,1.5768191814422607,1.663965106010437,1.7162526845932007,2.047407388687134,1.8556863069534302,1.7162526845932007,0.8099346160888672,-0.3229629695415497,-0.9329847693443298,0.07790849357843399,0.0604793019592762,-0.1312418282032013,-0.009237472899258137,-0.1138126328587532,-0.06152505427598953,-0.1312418282032013,-0.009237472899258137,0.11276688426733017,0.4439215660095215,0.32191720604896545,0.6182135343551636,0.3567756116390228,0.4090631902217865,0.32191720604896545,0.0604793019592762,0.09533768892288208,0.7227886915206909,0.32191720604896545,0.8970806002616882,0.8099346160888672,0.8273638486862183,0.4090631902217865,1.0713725090026855,0.46135076880455017,1.367668867111206,0.4090631902217865,0.8099346160888672,1.0713725090026855,1.0190849304199219,1.2282352447509766,1.1585185527801514,0.6356427073478699,-0.21838779747486115,0.30448800325393677],[1.1585185527801514,1.1410893201828003,1.7859694957733154,1.2979520559310913,1.2805228233337402,1.1585185527801514,1.6291067600250244,1.5593899488449097,1.507102370262146,1.681394338607788,1.6988235712051392,1.6465359926223755,1.7859694957733154,2.047407388687134,1.8731154203414917,1.8556863069534302,1.9602614641189575,1.8556863069534302,1.6465359926223755,1.4025272130966187,1.1585185527801514,0.7576470375061035,1.838257074356079,1.4199564456939697,1.193376898765564,1.5768191814422607,0.28705883026123047,0.3742047846317291,0.6530718803405762,1.6116775274276733,1.2630937099456787,1.2282352447509766,0.8796514272689819,0.7925054430961609,1.2805228233337402,1.4722440242767334,1.9602614641189575,1.9254029989242554,1.663965106010437,1.5419608354568481,1.1062309741973877,1.9254029989242554,2.2914161682128906,2.0996949672698975,2.047407388687134,2.2914161682128906,1.5593899488449097,0.47877994179725647,0.966797411441803,1.2282352447509766,1.036514163017273,0.5833551287651062,1.175947666168213,0.0604793019592762,-1.176993489265442,0.13019607961177826,0.3742047846317291,-0.06152505427598953,-0.305533766746521,-0.7412636280059814,-1.4384313821792603,0.28705883026123047,-0.02666666731238365,0.2696296274662018,0.33934640884399414,-0.14867103099822998,0.0604793019592762,0.3742047846317291,0.02562091499567032,0.04305011034011841,0.3742047846317291,0.14762526750564575,-1.176993489265442,-0.5495424866676331,-1.5952941179275513,-1.7695860862731934,-1.6127233505249023,-1.647581696510315,-1.804444432258606,-1.7521568536758423,-1.804444432258606,-1.804444432258606,-1.7347276210784912,-1.647581696510315,-0.8632679581642151,-1.2815686464309692,-0.7935512065887451,-1.7347276210784912,-1.5604357719421387,-1.3687145709991455,-1.804444432258606,-1.7870151996612549,-1.1944226026535034,-0.270675390958786,-0.6018300652503967,-0.37525054812431335,-0.07895424962043762,0.2173420488834381,-0.09638344496488571,-0.07895424962043762,0.13019607961177826,-0.009237472899258137,-0.07895424962043762,-0.04409585893154144,0.3916339874267578,0.11276688426733017,0.2347712367773056,0.32191720604896545,0.04305011034011841,0.02562091499567032,0.30448800325393677,0.7227886915206909,0.7227886915206909,0.6705011129379272,0.5659258961677551,0.966797411441803,0.6182135343551636,0.3567756116390228,2.4134204387664795,1.663965106010437,1.9602614641189575,2.517995595932007,1.6465359926223755,1.036514163017273,1.4548147916793823,1.507102370262146,1.1236600875854492,0.07790849357843399,0.3916339874267578,1.193376898765564,0.2347712367773056,0.18248365819454193,-0.07895424962043762,-0.4972549080848694,0.3567756116390228,1.0016558170318604,-0.02666666731238365,-0.21838779747486115,0.16505447030067444,-0.37525054812431335,0.6879302859306335,0.18248365819454193,1.7859694957733154,-0.6018300652503967,-0.8981263637542725,-0.7935512065887451,-0.5669716596603394,0.07790849357843399,0.6007843017578125,1.332810401916504,2.2565577030181885,0.6356427073478699,1.4896732568740845,1.1585185527801514,1.193376898765564,1.6291067600250244,1.6116775274276733,1.5942484140396118,1.4373856782913208,0.6356427073478699,0.9145098328590393,0.8099346160888672,0.5310675501823425,1.5942484140396118,-0.02666666731238365,1.036514163017273,0.0604793019592762,0.2696296274662018,0.11276688426733017,0.13019607961177826,0.02562091499567032,-0.4972549080848694,-0.21838779747486115,-1.0549890995025635,-0.18352940678596497,0.2347712367773056,0.5484967231750488,0.8970806002616882,0.8622221946716309,1.036514163017273,1.4548147916793823,1.7336819171905518,1.8033987283706665,1.9079738855361938,1.681394338607788,1.367668867111206,0.6182135343551636,-0.2881045639514923,-0.340392142534256,-0.270675390958786,-0.2881045639514923,0.19991286098957062,-0.20095860958099365,0.13019607961177826,0.04305011034011841,0.28705883026123047,0.008191721513867378,0.5833551287651062,-0.305533766746521,0.0604793019592762,-0.09638344496488571,-0.270675390958786,0.2173420488834381,0.5310675501823425,0.5136383175849915,0.5833551287651062,0.8273638486862183,0.2347712367773056,0.6879302859306335,0.8622221946716309,0.30448800325393677,0.6530718803405762,0.7402178645133972,0.7750762701034546,0.8622221946716309,0.7402178645133972,1.0016558170318604,0.9319390058517456,0.7750762701034546,1.1410893201828003,1.210806131362915,1.036514163017273,0.33934640884399414,0.13019607961177826],[0.9493681788444519,0.8796514272689819,1.7162526845932007,1.3153812885284424,1.332810401916504,1.2805228233337402,1.5593899488449097,1.367668867111206,1.4722440242767334,1.681394338607788,1.6291067600250244,1.7685402631759644,1.9428322315216064,1.8905446529388428,1.977690577507019,1.8731154203414917,1.838257074356079,1.2979520559310913,1.4896732568740845,1.2282352447509766,0.8970806002616882,0.966797411441803,1.367668867111206,1.663965106010437,1.3153812885284424,0.8970806002616882,1.1410893201828003,1.524531602859497,1.5419608354568481,2.0299782752990723,1.838257074356079,1.9079738855361938,1.663965106010437,1.6988235712051392,1.4373856782913208,1.681394338607788,1.9254029989242554,2.0996949672698975,1.7859694957733154,1.7511111497879028,1.524531602859497,1.5593899488449097,2.047407388687134,2.27398681640625,1.9602614641189575,2.151982545852661,1.6116775274276733,0.3916339874267578,0.3567756116390228,0.5484967231750488,0.0604793019592762,0.9145098328590393,0.09533768892288208,-0.02666666731238365,-0.8109803795814514,-1.6301524639129639,-0.5146840810775757,0.47877994179725647,0.6705011129379272,0.13019607961177826,-0.21838779747486115,-0.340392142534256,1.0016558170318604,0.2347712367773056,-0.18352940678596497,-0.7761220335960388,-0.23581700026988983,-0.4972549080848694,-0.7412636280059814,0.8796514272689819,1.2630937099456787,-0.14867103099822998,-0.21838779747486115,-0.9678431153297424,-1.7347276210784912,-1.6998692750930786,-1.7695860862731934,-1.7347276210784912,-1.4384313821792603,-1.6998692750930786,-1.7870151996612549,-1.7870151996612549,-1.7695860862731934,-1.0375598669052124,-0.462396502494812,-0.5495424866676331,-1.647581696510315,-1.2292810678482056,-0.9678431153297424,-1.7870151996612549,-1.7695860862731934,-1.804444432258606,-0.6018300652503967,-0.462396502494812,-1.647581696510315,-1.2118518352508545,0.008191721513867378,0.5484967231750488,0.2173420488834381,0.19991286098957062,0.47877994179725647,-0.462396502494812,0.02562091499567032,0.14762526750564575,0.2173420488834381,0.46135076880455017,0.14762526750564575,0.02562091499567032,0.49620914459228516,0.33934640884399414,0.46135076880455017,0.6530718803405762,0.7925054430961609,0.9145098328590393,0.8796514272689819,1.0888017416000366,1.1236600875854492,1.0888017416000366,2.5005664825439453,2.395991325378418,2.640000104904175,0.3916339874267578,1.2805228233337402,1.1062309741973877,0.2347712367773056,0.7576470375061035,0.7053594589233398,-0.619259238243103,-0.4449673295021057,0.5833551287651062,0.33934640884399414,-0.270675390958786,-0.07895424962043762,-0.6541176438331604,0.02562091499567032,1.1236600875854492,1.0016558170318604,1.4548147916793823,0.4264923632144928,-0.6889760494232178,0.7227886915206909,-0.4798257052898407,0.7576470375061035,0.30448800325393677,-0.37525054812431335,-0.1138126328587532,-0.427538126707077,-0.35782134532928467,0.9842265844345093,0.9493681788444519,1.6291067600250244,-0.21838779747486115,2.308845281600952,1.4373856782913208,1.3153812885284424,0.9319390058517456,2.3785619735717773,1.4896732568740845,1.175947666168213,-0.619259238243103,0.6007843017578125,-0.6366884708404541,0.13019607961177826,-0.8632679581642151,-0.3229629695415497,0.3742047846317291,-0.20095860958099365,1.1236600875854492,0.11276688426733017,-0.5669716596603394,0.6356427073478699,-0.3229629695415497,-0.39267975091934204,-0.5669716596603394,-0.02666666731238365,0.6530718803405762,1.2979520559310913,1.3850979804992676,1.036514163017273,0.6530718803405762,1.367668867111206,1.838257074356079,1.8033987283706665,1.820827841758728,1.4896732568740845,1.2979520559310913,0.008191721513867378,-1.0375598669052124,-0.37525054812431335,-0.305533766746521,-0.04409585893154144,0.09533768892288208,0.16505447030067444,0.11276688426733017,-0.16610021889209747,0.0604793019592762,0.46135076880455017,-0.1312418282032013,0.3916339874267578,0.09533768892288208,0.5310675501823425,0.6007843017578125,0.008191721513867378,0.28705883026123047,1.0016558170318604,1.210806131362915,0.5659258961677551,0.8273638486862183,0.4439215660095215,0.30448800325393677,0.5484967231750488,0.5136383175849915,1.0016558170318604,0.6705011129379272,1.0713725090026855,0.6182135343551636,0.6705011129379272,0.8796514272689819,1.1585185527801514,0.6705011129379272,1.663965106010437,1.663965106010437,1.175947666168213,0.04305011034011841],[1.2456644773483276,0.8273638486862183,1.7511111497879028,1.524531602859497,1.2979520559310913,1.6988235712051392,1.4373856782913208,0.9842265844345093,1.8731154203414917,1.6291067600250244,1.350239634513855,1.838257074356079,1.7511111497879028,1.838257074356079,2.047407388687134,1.977690577507019,1.7859694957733154,1.663965106010437,1.7336819171905518,1.524531602859497,1.5768191814422607,1.5593899488449097,1.2630937099456787,1.332810401916504,1.4373856782913208,1.175947666168213,1.193376898765564,1.4722440242767334,1.193376898765564,2.047407388687134,2.27398681640625,1.8731154203414917,1.8556863069534302,1.8731154203414917,1.977690577507019,1.9254029989242554,1.8905446529388428,2.0125489234924316,1.7859694957733154,1.9428322315216064,1.9428322315216064,2.082265853881836,2.1694116592407227,2.0996949672698975,2.082265853881836,1.9254029989242554,1.7685402631759644,1.6116775274276733,-0.009237472899258137,0.46135076880455017,0.5136383175849915,-0.009237472899258137,0.2696296274662018,-0.427538126707077,-0.1138126328587532,-1.2989978790283203,-1.804444432258606,0.18248365819454193,0.13019607961177826,-0.5146840810775757,-1.0027015209197998,-0.18352940678596497,-0.6715468168258667,-0.09638344496488571,-0.6018300652503967,-0.6366884708404541,0.8447930216789246,-0.20095860958099365,-0.2532461881637573,0.6530718803405762,0.3916339874267578,0.07790849357843399,-0.5495424866676331,-1.0375598669052124,-1.804444432258606,-1.7521568536758423,-1.804444432258606,-1.7870151996612549,-1.5604357719421387,-1.5255773067474365,-1.7695860862731934,-1.804444432258606,-1.490718960762024,-1.5952941179275513,-0.009237472899258137,-0.5844008922576904,-1.0201307535171509,-0.8109803795814514,-1.7695860862731934,-1.804444432258606,-1.7172985076904297,-1.490718960762024,-1.176993489265442,-0.8109803795814514,-1.1944226026535034,-0.9852723479270935,-1.2815686464309692,-1.4384313821792603,0.2347712367773056,0.2522004246711731,0.6182135343551636,0.14762526750564575,-0.009237472899258137,-0.06152505427598953,-0.04409585893154144,0.2696296274662018,0.19991286098957062,0.2522004246711731,0.02562091499567032,0.30448800325393677,0.32191720604896545,0.2347712367773056,0.16505447030067444,0.7576470375061035,0.7750762701034546,0.6705011129379272,0.4090631902217865,1.3850979804992676,2.3437037467956543,2.640000104904175,2.204270124435425,0.6182135343551636,2.047407388687134,1.0888017416000366,1.0016558170318604,-0.8109803795814514,0.8447930216789246,0.11276688426733017,-0.1138126328587532,0.6007843017578125,-0.16610021889209747,0.008191721513867378,1.4548147916793823,-0.16610021889209747,0.14762526750564575,2.361132860183716,1.6116775274276733,0.33934640884399414,0.6182135343551636,-0.5321133136749268,-0.5669716596603394,-0.6715468168258667,0.9319390058517456,-0.20095860958099365,0.2173420488834381,1.4896732568740845,-0.3229629695415497,-0.5669716596603394,0.49620914459228516,1.0190849304199219,0.9145098328590393,0.6182135343551636,1.5593899488449097,1.053943395614624,1.0190849304199219,0.6007843017578125,2.1694116592407227,-0.09638344496488571,2.1868410110473633,-0.02666666731238365,0.09533768892288208,-1.0201307535171509,0.28705883026123047,-0.37525054812431335,1.1585185527801514,0.8447930216789246,1.5593899488449097,0.07790849357843399,0.2347712367773056,-1.176993489265442,-0.6366884708404541,-0.4798257052898407,-0.7412636280059814,-0.20095860958099365,0.16505447030067444,0.2522004246711731,1.0713725090026855,1.2979520559310913,0.49620914459228516,0.5484967231750488,0.7576470375061035,1.507102370262146,1.6465359926223755,1.367668867111206,1.0713725090026855,0.6007843017578125,-0.04409585893154144,-0.6018300652503967,-0.7064052224159241,-0.23581700026988983,0.2522004246711731,-0.14867103099822998,-0.16610021889209747,0.13019607961177826,0.14762526750564575,0.16505447030067444,0.14762526750564575,-0.1138126328587532,-0.07895424962043762,0.16505447030067444,0.7750762701034546,0.13019607961177826,0.19991286098957062,0.32191720604896545,0.46135076880455017,0.6705011129379272,0.3916339874267578,0.6879302859306335,-0.09638344496488571,0.8447930216789246,0.8796514272689819,0.8447930216789246,0.32191720604896545,0.7053594589233398,0.7402178645133972,1.0713725090026855,0.7925054430961609,0.8622221946716309,0.8622221946716309,0.7576470375061035,1.175947666168213,0.6879302859306335,1.4896732568740845,0.9842265844345093],[1.332810401916504,0.8970806002616882,1.4373856782913208,1.2979520559310913,1.053943395614624,1.1410893201828003,1.4373856782913208,1.681394338607788,1.4896732568740845,1.7162526845932007,1.9254029989242554,1.524531602859497,1.681394338607788,2.082265853881836,1.9951198101043701,1.8556863069534302,1.838257074356079,1.8731154203414917,2.0125489234924316,1.681394338607788,1.3153812885284424,0.9842265844345093,1.2282352447509766,1.3850979804992676,1.036514163017273,1.332810401916504,0.49620914459228516,0.5833551287651062,1.4896732568740845,2.117124080657959,2.1694116592407227,1.9079738855361938,1.9079738855361938,2.117124080657959,1.9602614641189575,2.0648365020751953,1.7859694957733154,1.7511111497879028,1.8905446529388428,1.8905446529388428,2.239128589630127,2.117124080657959,2.1345534324645996,2.1694116592407227,1.9428322315216064,1.7336819171905518,1.5768191814422607,1.2630937099456787,0.8273638486862183,-0.009237472899258137,-0.06152505427598953,1.1585185527801514,-0.270675390958786,-0.4972549080848694,-0.04409585893154144,-0.305533766746521,-0.6366884708404541,-0.7064052224159241,-0.16610021889209747,-0.39267975091934204,-0.4449673295021057,-0.7238343954086304,-1.0549890995025635,-1.665010929107666,-0.6366884708404541,-0.41010892391204834,0.9145098328590393,0.6007843017578125,0.9319390058517456,-1.1247059106826782,0.5310675501823425,0.14762526750564575,-0.2881045639514923,-1.333856225013733,-1.4732897281646729,-1.804444432258606,-1.7870151996612549,-1.7695860862731934,-1.6998692750930786,-1.7347276210784912,-1.5778648853302002,-1.804444432258606,-0.7761220335960388,0.5484967231750488,-1.1944226026535034,-0.5321133136749268,0.2696296274662018,-1.665010929107666,-1.7695860862731934,-1.804444432258606,-1.2989978790283203,-1.1072766780853271,-0.6715468168258667,-1.2815686464309692,-1.246710181236267,-1.3687145709991455,-1.4558606147766113,-1.7347276210784912,-0.009237472899258137,-0.6018300652503967,-0.04409585893154144,0.02562091499567032,-0.14867103099822998,-0.270675390958786,-0.270675390958786,0.2173420488834381,-0.18352940678596497,0.2522004246711731,-0.07895424962043762,0.6182135343551636,0.3567756116390228,0.2347712367773056,0.5310675501823425,0.4439215660095215,1.1410893201828003,1.036514163017273,1.210806131362915,1.820827841758728,2.483137369155884,2.517995595932007,2.4482789039611816,2.5702831745147705,1.5942484140396118,1.0190849304199219,0.5136383175849915,-0.35782134532928467,0.008191721513867378,0.02562091499567032,0.33934640884399414,0.2522004246711731,0.28705883026123047,-0.04409585893154144,0.8099346160888672,0.8273638486862183,0.7053594589233398,0.49620914459228516,1.838257074356079,2.4134204387664795,1.7685402631759644,0.30448800325393677,-0.3229629695415497,-0.4798257052898407,1.4199564456939697,-0.3229629695415497,0.6879302859306335,1.524531602859497,-0.8632679581642151,-0.35782134532928467,0.16505447030067444,1.036514163017273,1.367668867111206,0.8099346160888672,0.7576470375061035,1.1585185527801514,-0.09638344496488571,0.7576470375061035,-0.8284096121788025,0.7053594589233398,1.524531602859497,-0.04409585893154144,0.9842265844345093,-1.0549890995025635,-1.6301524639129639,-0.462396502494812,-0.20095860958099365,1.1585185527801514,0.47877994179725647,0.3567756116390228,-0.14867103099822998,-0.8284096121788025,-1.2292810678482056,-0.8981263637542725,-0.8109803795814514,-0.04409585893154144,0.7227886915206909,1.2805228233337402,1.5419608354568481,1.332810401916504,0.6182135343551636,0.4090631902217865,0.8622221946716309,1.0713725090026855,1.2630937099456787,1.175947666168213,0.30448800325393677,-0.009237472899258137,-0.35782134532928467,-0.427538126707077,-0.1312418282032013,-0.09638344496488571,-0.04409585893154144,0.18248365819454193,0.07790849357843399,0.16505447030067444,0.13019607961177826,-0.16610021889209747,-0.14867103099822998,-0.06152505427598953,0.16505447030067444,0.4264923632144928,0.30448800325393677,0.19991286098957062,0.7402178645133972,0.6007843017578125,0.6705011129379272,1.0190849304199219,0.9319390058517456,0.8273638486862183,0.3567756116390228,0.6530718803405762,0.6879302859306335,0.5310675501823425,0.7053594589233398,1.0713725090026855,0.7402178645133972,0.7576470375061035,0.8447930216789246,0.7576470375061035,1.2282352447509766,0.7402178645133972,1.036514163017273,0.7925054430961609,1.210806131362915,1.332810401916504],[0.8622221946716309,1.1585185527801514,1.053943395614624,1.1410893201828003,1.332810401916504,1.053943395614624,1.4373856782913208,1.4199564456939697,1.8033987283706665,1.6291067600250244,1.6465359926223755,1.977690577507019,1.8033987283706665,1.9428322315216064,1.7511111497879028,1.7511111497879028,2.0125489234924316,1.8731154203414917,1.681394338607788,1.6291067600250244,1.4199564456939697,1.4025272130966187,1.838257074356079,0.9842265844345093,0.8447930216789246,1.053943395614624,0.28705883026123047,-0.16610021889209747,1.7511111497879028,1.5942484140396118,2.082265853881836,1.7859694957733154,1.9951198101043701,1.820827841758728,2.117124080657959,1.977690577507019,1.9951198101043701,2.0125489234924316,2.1345534324645996,2.082265853881836,2.1694116592407227,2.0648365020751953,2.047407388687134,1.9428322315216064,1.838257074356079,1.7162526845932007,1.5768191814422607,1.0190849304199219,0.5484967231750488,0.5484967231750488,0.9493681788444519,0.6879302859306335,0.30448800325393677,1.1410893201828003,0.3567756116390228,0.0604793019592762,-0.8458387851715088,-0.8109803795814514,-0.41010892391204834,0.07790849357843399,0.07790849357843399,-0.7412636280059814,-0.9329847693443298,-1.0375598669052124,-0.02666666731238365,-0.340392142534256,0.7750762701034546,0.3742047846317291,0.30448800325393677,-0.340392142534256,-0.619259238243103,0.6182135343551636,-0.37525054812431335,-1.6301524639129639,-1.7695860862731934,-1.804444432258606,-1.804444432258606,-1.804444432258606,-1.7695860862731934,-1.7870151996612549,-1.804444432258606,-1.7695860862731934,-1.7347276210784912,-1.5952941179275513,0.5136383175849915,-0.23581700026988983,-0.21838779747486115,-1.804444432258606,-1.7172985076904297,-1.4384313821792603,-0.7586928009986877,-0.1312418282032013,-0.9504139423370361,-0.3229629695415497,-0.8632679581642151,-1.1421350240707397,-1.804444432258606,-1.7870151996612549,-0.4798257052898407,-0.9678431153297424,-0.5844008922576904,-0.09638344496488571,0.7402178645133972,-0.305533766746521,0.16505447030067444,-0.02666666731238365,-0.1138126328587532,0.2696296274662018,0.46135076880455017,-0.2881045639514923,0.19991286098957062,0.49620914459228516,0.32191720604896545,0.30448800325393677,1.2630937099456787,0.7227886915206909,0.9145098328590393,2.587712526321411,2.1694116592407227,1.053943395614624,2.587712526321411,2.465708017349243,1.7859694957733154,0.3916339874267578,0.5659258961677551,-0.02666666731238365,0.07790849357843399,-0.2532461881637573,-0.07895424962043762,1.3153812885284424,0.3916339874267578,0.3742047846317291,-0.04409585893154144,0.6182135343551636,1.210806131362915,0.9493681788444519,1.2979520559310913,0.30448800325393677,0.7402178645133972,-0.06152505427598953,0.2696296274662018,0.11276688426733017,-0.07895424962043762,0.4090631902217865,1.5942484140396118,0.6530718803405762,-0.35782134532928467,0.30448800325393677,0.18248365819454193,-0.02666666731238365,0.5136383175849915,1.193376898765564,-0.3229629695415497,-0.4798257052898407,-0.1138126328587532,-0.09638344496488571,0.0604793019592762,1.4199564456939697,1.3153812885284424,-0.07895424962043762,1.1410893201828003,0.3567756116390228,0.2173420488834381,-0.270675390958786,0.2522004246711731,0.19991286098957062,0.3916339874267578,-0.41010892391204834,-1.7172985076904297,-0.7761220335960388,-0.427538126707077,-0.5669716596603394,0.32191720604896545,0.5136383175849915,0.5310675501823425,0.5659258961677551,1.036514163017273,1.2630937099456787,0.09533768892288208,0.4439215660095215,1.6988235712051392,1.1410893201828003,1.0016558170318604,1.175947666168213,1.332810401916504,0.0604793019592762,-0.5495424866676331,-0.1138126328587532,-0.3229629695415497,-0.619259238243103,-0.4798257052898407,-0.2532461881637573,0.04305011034011841,-0.09638344496488571,-0.06152505427598953,0.3742047846317291,-0.09638344496488571,0.16505447030067444,0.11276688426733017,-0.20095860958099365,0.13019607961177826,0.9319390058517456,0.49620914459228516,0.8099346160888672,0.3567756116390228,0.6356427073478699,0.46135076880455017,0.5833551287651062,0.32191720604896545,0.6356427073478699,0.9493681788444519,0.8273638486862183,0.7925054430961609,0.8622221946716309,0.6182135343551636,0.6182135343551636,0.9145098328590393,0.6705011129379272,0.7750762701034546,1.053943395614624,1.2282352447509766,1.2979520559310913,1.0190849304199219,1.175947666168213],[1.1236600875854492,1.4373856782913208,1.2805228233337402,1.2630937099456787,1.193376898765564,1.367668867111206,1.3850979804992676,1.3850979804992676,1.6988235712051392,1.8731154203414917,1.681394338607788,1.663965106010437,1.820827841758728,1.6988235712051392,1.7859694957733154,1.9428322315216064,1.5593899488449097,1.8556863069534302,1.8033987283706665,1.5419608354568481,1.0190849304199219,1.7685402631759644,1.2805228233337402,0.8273638486862183,0.5659258961677551,1.193376898765564,-0.07895424962043762,1.1062309741973877,1.524531602859497,1.9951198101043701,1.820827841758728,1.977690577507019,1.8556863069534302,1.838257074356079,1.8905446529388428,1.9602614641189575,1.838257074356079,1.9079738855361938,1.820827841758728,2.047407388687134,2.082265853881836,1.8905446529388428,2.0996949672698975,2.082265853881836,1.9428322315216064,2.047407388687134,1.2805228233337402,0.966797411441803,1.1236600875854492,0.8273638486862183,-0.23581700026988983,1.3153812885284424,0.46135076880455017,-0.009237472899258137,-0.4972549080848694,-0.8458387851715088,-0.2881045639514923,-1.2292810678482056,-1.0724183320999146,-0.39267975091934204,-0.6366884708404541,-0.7586928009986877,-0.8981263637542725,-0.7935512065887451,-0.6018300652503967,0.4439215660095215,-0.07895424962043762,-1.0549890995025635,0.7227886915206909,0.4439215660095215,-0.427538126707077,1.2979520559310913,-1.3687145709991455,-1.2989978790283203,-1.7695860862731934,-1.804444432258606,-1.7172985076904297,-1.647581696510315,-1.3861438035964966,-1.804444432258606,-1.5430065393447876,-1.2641394138336182,-0.41010892391204834,-1.5778648853302002,-1.3687145709991455,-1.4035730361938477,-1.804444432258606,-1.7695860862731934,-1.7347276210784912,0.0604793019592762,-0.7761220335960388,0.02562091499567032,-1.4732897281646729,-0.6715468168258667,-1.0375598669052124,-1.089847445487976,-1.7870151996612549,-1.7695860862731934,-1.0549890995025635,-1.4384313821792603,-1.0549890995025635,-0.06152505427598953,-0.18352940678596497,-0.009237472899258137,-0.23581700026988983,0.3742047846317291,0.0604793019592762,-0.06152505427598953,-0.09638344496488571,0.3567756116390228,0.4090631902217865,0.19991286098957062,0.9319390058517456,0.7402178645133972,0.9842265844345093,0.7227886915206909,0.7227886915206909,2.640000104904175,2.2565577030181885,2.4482789039611816,2.3785619735717773,2.3262743949890137,0.4439215660095215,1.2456644773483276,0.7576470375061035,-0.340392142534256,0.3567756116390228,0.32191720604896545,0.9145098328590393,1.6465359926223755,0.33934640884399414,0.2347712367773056,-0.07895424962043762,-0.427538126707077,1.193376898765564,0.32191720604896545,0.8273638486862183,1.332810401916504,0.5310675501823425,-0.23581700026988983,-0.4449673295021057,-0.07895424962043762,1.0888017416000366,0.2522004246711731,1.0713725090026855,0.6182135343551636,0.8796514272689819,0.6705011129379272,1.053943395614624,-0.35782134532928467,-1.0201307535171509,-0.14867103099822998,-0.7238343954086304,-0.5321133136749268,-0.462396502494812,0.0604793019592762,1.4548147916793823,0.5310675501823425,1.2805228233337402,1.5942484140396118,0.04305011034011841,1.6465359926223755,-0.06152505427598953,-0.14867103099822998,-0.5146840810775757,-0.21838779747486115,-0.20095860958099365,0.5310675501823425,1.6988235712051392,-1.4210021495819092,-1.1595642566680908,-0.35782134532928467,0.47877994179725647,-0.427538126707077,0.6356427073478699,0.9319390058517456,1.2630937099456787,0.6530718803405762,0.8796514272689819,0.5659258961677551,1.0016558170318604,0.9493681788444519,1.3850979804992676,1.1062309741973877,0.5310675501823425,0.18248365819454193,-0.21838779747486115,-0.7935512065887451,-0.427538126707077,0.07790849357843399,-0.07895424962043762,0.07790849357843399,0.09533768892288208,0.5484967231750488,0.19991286098957062,-0.270675390958786,0.4090631902217865,0.5136383175849915,0.5310675501823425,0.6356427073478699,0.7576470375061035,0.7053594589233398,0.2347712367773056,0.02562091499567032,0.6705011129379272,0.5833551287651062,0.7053594589233398,0.46135076880455017,0.6530718803405762,0.6705011129379272,0.7750762701034546,0.6530718803405762,0.6356427073478699,1.0713725090026855,0.8622221946716309,0.9145098328590393,0.7576470375061035,0.9145098328590393,0.8970806002616882,0.9319390058517456,0.8273638486862183,1.367668867111206,1.2282352447509766,1.367668867111206],[1.3850979804992676,1.1585185527801514,1.5419608354568481,1.175947666168213,1.5768191814422607,1.2456644773483276,1.2979520559310913,1.193376898765564,1.524531602859497,1.2630937099456787,1.9079738855361938,1.9254029989242554,1.663965106010437,1.681394338607788,1.6291067600250244,1.838257074356079,1.6465359926223755,1.6988235712051392,1.6465359926223755,1.681394338607788,1.2282352447509766,1.6116775274276733,1.036514163017273,0.7576470375061035,0.8796514272689819,0.5310675501823425,0.6879302859306335,1.1062309741973877,1.2282352447509766,1.5768191814422607,1.524531602859497,2.0125489234924316,1.8731154203414917,1.507102370262146,2.0299782752990723,1.977690577507019,1.6291067600250244,1.6465359926223755,1.5593899488449097,1.6465359926223755,2.047407388687134,1.977690577507019,2.1345534324645996,2.0299782752990723,2.151982545852661,1.8905446529388428,1.2805228233337402,0.8099346160888672,-0.340392142534256,1.2630937099456787,1.0888017416000366,-0.7064052224159241,-0.3229629695415497,0.32191720604896545,-0.23581700026988983,-0.37525054812431335,-1.2118518352508545,-1.3687145709991455,-0.9678431153297424,-0.7935512065887451,0.0604793019592762,0.02562091499567032,-0.3229629695415497,-0.6715468168258667,-0.6715468168258667,0.04305011034011841,0.4090631902217865,-0.20095860958099365,0.6530718803405762,-0.18352940678596497,-0.4798257052898407,0.5310675501823425,-0.35782134532928467,-0.8981263637542725,-1.0724183320999146,-1.7172985076904297,-1.6998692750930786,-1.4210021495819092,-1.6998692750930786,-1.647581696510315,-1.351285457611084,-1.804444432258606,-1.246710181236267,-1.0027015209197998,-0.270675390958786,-1.804444432258606,-1.7521568536758423,-1.6824400424957275,-0.2532461881637573,-0.427538126707077,0.6007843017578125,-1.5255773067474365,-0.427538126707077,0.32191720604896545,0.28705883026123047,-1.7695860862731934,-1.7870151996612549,-1.4035730361938477,0.008191721513867378,-0.340392142534256,-0.8458387851715088,-0.1312418282032013,-1.0201307535171509,-0.20095860958099365,-0.04409585893154144,-0.16610021889209747,0.14762526750564575,0.2173420488834381,0.16505447030067444,0.5659258961677551,0.13019607961177826,0.09533768892288208,0.02562091499567032,0.2522004246711731,1.0888017416000366,1.0190849304199219,1.367668867111206,2.5702831745147705,2.640000104904175,1.524531602859497,2.3262743949890137,1.8731154203414917,0.32191720604896545,0.6530718803405762,0.9319390058517456,0.09533768892288208,-0.06152505427598953,0.8970806002616882,1.175947666168213,1.0713725090026855,0.32191720604896545,1.0190849304199219,1.036514163017273,0.04305011034011841,0.5833551287651062,0.5136383175849915,1.4373856782913208,0.5136383175849915,1.2979520559310913,-0.02666666731238365,-0.1138126328587532,0.0604793019592762,0.6356427073478699,1.210806131362915,1.5942484140396118,0.0604793019592762,1.036514163017273,0.6007843017578125,1.3153812885284424,-0.5321133136749268,1.210806131362915,-0.07895424962043762,0.7576470375061035,-1.176993489265442,0.32191720604896545,-0.7761220335960388,0.8970806002616882,0.16505447030067444,0.30448800325393677,1.6988235712051392,1.350239634513855,-0.35782134532928467,-0.23581700026988983,1.5419608354568481,-0.305533766746521,-0.20095860958099365,-0.4972549080848694,0.4264923632144928,0.8099346160888672,0.5659258961677551,-0.7238343954086304,0.5484967231750488,1.1410893201828003,1.1410893201828003,1.210806131362915,0.8622221946716309,0.8970806002616882,0.9842265844345093,0.8970806002616882,0.7925054430961609,1.0713725090026855,1.332810401916504,1.0888017416000366,1.0713725090026855,0.18248365819454193,0.11276688426733017,-0.619259238243103,-0.16610021889209747,-0.06152505427598953,-0.5495424866676331,-0.427538126707077,0.04305011034011841,0.0604793019592762,-0.1312418282032013,0.3742047846317291,0.2347712367773056,0.2173420488834381,0.4439215660095215,0.33934640884399414,0.13019607961177826,0.4439215660095215,0.4439215660095215,0.46135076880455017,1.053943395614624,0.8970806002616882,0.5833551287651062,0.9145098328590393,0.8970806002616882,0.47877994179725647,0.6879302859306335,0.8622221946716309,0.7750762701034546,0.5484967231750488,0.8273638486862183,0.9493681788444519,0.8273638486862183,1.036514163017273,0.9319390058517456,0.7925054430961609,0.9319390058517456,0.7925054430961609,0.8970806002616882,1.4199564456939697,1.5593899488449097],[1.5768191814422607,1.8033987283706665,1.350239634513855,1.1410893201828003,1.367668867111206,1.1410893201828003,1.193376898765564,1.5593899488449097,1.838257074356079,1.507102370262146,1.2805228233337402,1.6988235712051392,1.6988235712051392,1.7685402631759644,1.4896732568740845,1.4722440242767334,1.5768191814422607,1.8905446529388428,1.8731154203414917,1.5593899488449097,1.663965106010437,1.6988235712051392,1.036514163017273,1.4722440242767334,-0.2881045639514923,-0.4798257052898407,0.7925054430961609,0.4090631902217865,0.0604793019592762,0.8796514272689819,1.5419608354568481,1.2282352447509766,1.9951198101043701,0.8970806002616882,1.3153812885284424,1.663965106010437,1.838257074356079,1.681394338607788,1.367668867111206,1.6291067600250244,1.7336819171905518,2.1694116592407227,2.117124080657959,1.9602614641189575,2.047407388687134,1.8556863069534302,1.4548147916793823,0.6007843017578125,-0.2881045639514923,1.0190849304199219,1.663965106010437,-0.6018300652503967,-0.9329847693443298,-0.7761220335960388,-0.18352940678596497,-0.6018300652503967,-0.9852723479270935,-0.9678431153297424,-0.9329847693443298,-1.508148193359375,-0.7935512065887451,-0.37525054812431335,-0.18352940678596497,-0.39267975091934204,-0.6889760494232178,-0.7935512065887451,0.07790849357843399,0.32191720604896545,0.6356427073478699,0.2522004246711731,-0.6715468168258667,0.5310675501823425,0.49620914459228516,-0.16610021889209747,-0.37525054812431335,-1.2292810678482056,-1.2989978790283203,-0.9155555367469788,-1.5430065393447876,-1.5430065393447876,-1.665010929107666,-1.4732897281646729,-1.1944226026535034,-1.176993489265442,-0.9504139423370361,-1.7521568536758423,-1.490718960762024,-0.009237472899258137,0.32191720604896545,-0.07895424962043762,-0.9155555367469788,-1.2292810678482056,-0.5495424866676331,-0.3229629695415497,-1.804444432258606,-1.7347276210784912,-1.6824400424957275,-0.9155555367469788,-0.6889760494232178,-0.5146840810775757,-0.6366884708404541,0.008191721513867378,-1.4210021495819092,0.16505447030067444,-0.1138126328587532,0.16505447030067444,-0.009237472899258137,-0.270675390958786,0.3742047846317291,0.3567756116390228,0.13019607961177826,-0.04409585893154144,0.2347712367773056,0.47877994179725647,0.6182135343551636,1.036514163017273,0.2173420488834381,2.43084979057312,2.4482789039611816,2.204270124435425,1.9079738855361938,2.640000104904175,0.8970806002616882,0.33934640884399414,1.3850979804992676,0.49620914459228516,-0.4972549080848694,1.1062309741973877,2.0125489234924316,1.036514163017273,1.2805228233337402,0.8099346160888672,1.4199564456939697,0.28705883026123047,0.9842265844345093,1.4548147916793823,1.2979520559310913,0.5659258961677551,1.193376898765564,0.7402178645133972,-0.4449673295021057,0.7402178645133972,1.036514163017273,1.838257074356079,1.0888017416000366,0.6182135343551636,0.3916339874267578,0.16505447030067444,1.5942484140396118,1.9602614641189575,0.5484967231750488,0.8622221946716309,1.2630937099456787,1.8033987283706665,1.5593899488449097,-0.5669716596603394,0.5310675501823425,-1.3164269924163818,-1.2641394138336182,-0.5669716596603394,-1.2815686464309692,0.7053594589233398,-0.4798257052898407,-0.02666666731238365,1.193376898765564,-0.35782134532928467,-0.04409585893154144,0.13019607961177826,-0.427538126707077,0.2347712367773056,0.8970806002616882,0.7402178645133972,1.367668867111206,1.0713725090026855,0.46135076880455017,0.7925054430961609,1.1062309741973877,0.9493681788444519,0.6007843017578125,1.193376898765564,1.0888017416000366,1.0016558170318604,1.2805228233337402,0.7053594589233398,0.30448800325393677,0.13019607961177826,0.09533768892288208,-0.5146840810775757,-0.3229629695415497,-0.41010892391204834,-0.2532461881637573,-0.1138126328587532,0.2522004246711731,0.13019607961177826,0.13019607961177826,0.33934640884399414,-0.009237472899258137,0.5833551287651062,0.2347712367773056,0.7576470375061035,0.5659258961677551,0.6356427073478699,0.5833551287651062,0.6182135343551636,0.6007843017578125,0.49620914459228516,0.46135076880455017,1.0888017416000366,0.8273638486862183,0.9493681788444519,0.9319390058517456,0.5659258961677551,1.1236600875854492,0.6530718803405762,0.6705011129379272,0.7053594589233398,1.0016558170318604,0.7227886915206909,1.1585185527801514,0.9145098328590393,1.036514163017273,0.9842265844345093,0.7402178645133972,1.6465359926223755],[1.2456644773483276,1.350239634513855,1.367668867111206,1.2979520559310913,1.2630937099456787,1.053943395614624,1.524531602859497,1.2979520559310913,1.4025272130966187,1.367668867111206,1.7859694957733154,1.8556863069534302,1.838257074356079,1.7336819171905518,1.8033987283706665,1.681394338607788,1.6988235712051392,1.7859694957733154,1.7162526845932007,1.9602614641189575,1.6465359926223755,1.193376898765564,1.350239634513855,0.2347712367773056,-0.37525054812431335,0.7576470375061035,1.2979520559310913,1.1236600875854492,0.11276688426733017,-0.18352940678596497,1.5419608354568481,1.7336819171905518,1.193376898765564,0.9145098328590393,1.175947666168213,1.9602614641189575,1.8556863069534302,1.5768191814422607,1.5942484140396118,1.332810401916504,1.4373856782913208,1.9951198101043701,2.117124080657959,1.9254029989242554,2.047407388687134,1.8033987283706665,1.5768191814422607,0.8622221946716309,0.8622221946716309,0.49620914459228516,1.1585185527801514,0.47877994179725647,-0.1138126328587532,-0.270675390958786,1.053943395614624,0.3567756116390228,0.13019607961177826,-0.5669716596603394,-0.6018300652503967,-0.8981263637542725,-0.7935512065887451,-0.4449673295021057,-0.14867103099822998,0.008191721513867378,-0.04409585893154144,-0.21838779747486115,-0.462396502494812,-0.07895424962043762,0.4439215660095215,0.11276688426733017,0.6879302859306335,0.8970806002616882,0.2347712367773056,0.09533768892288208,-0.305533766746521,-0.009237472899258137,-0.009237472899258137,0.11276688426733017,-0.8632679581642151,-0.5146840810775757,-0.8806971907615662,-0.270675390958786,-1.5778648853302002,-1.2292810678482056,-1.1421350240707397,-1.7172985076904297,-1.804444432258606,-0.3229629695415497,0.3916339874267578,-0.2532461881637573,-0.9852723479270935,-1.2118518352508545,-1.508148193359375,-1.2989978790283203,-1.6301524639129639,-1.7870151996612549,-0.5321133136749268,0.8099346160888672,0.2173420488834381,-0.340392142534256,0.0604793019592762,-0.5146840810775757,-0.7935512065887451,-0.06152505427598953,-0.04409585893154144,-0.5495424866676331,0.008191721513867378,-0.009237472899258137,0.09533768892288208,0.46135076880455017,-0.18352940678596497,0.4264923632144928,0.3567756116390228,0.2696296274662018,0.30448800325393677,0.09533768892288208,0.13019607961177826,1.7685402631759644,2.640000104904175,2.3785619735717773,2.552854061126709,2.517995595932007,0.8273638486862183,0.8273638486862183,2.047407388687134,0.5833551287651062,0.07790849357843399,-0.21838779747486115,1.8905446529388428,0.6007843017578125,1.210806131362915,-0.02666666731238365,1.8556863069534302,1.0713725090026855,1.4199564456939697,1.1062309741973877,0.7925054430961609,0.5136383175849915,1.1585185527801514,0.4439215660095215,0.14762526750564575,1.4722440242767334,-0.18352940678596497,1.4025272130966187,0.6705011129379272,-0.2532461881637573,-0.6018300652503967,-0.4798257052898407,0.8970806002616882,1.350239634513855,0.966797411441803,0.6705011129379272,0.966797411441803,2.204270124435425,1.193376898765564,-0.270675390958786,1.1236600875854492,0.04305011034011841,-0.5844008922576904,-1.2292810678482056,0.02562091499567032,0.46135076880455017,-0.04409585893154144,-0.4449673295021057,0.9319390058517456,0.0604793019592762,-0.14867103099822998,-0.04409585893154144,0.5833551287651062,0.6705011129379272,0.5484967231750488,1.3850979804992676,0.7925054430961609,0.7227886915206909,-0.06152505427598953,-0.20095860958099365,0.8099346160888672,1.0888017416000366,1.0190849304199219,0.966797411441803,1.0888017416000366,1.0888017416000366,0.6705011129379272,0.6182135343551636,-0.009237472899258137,-0.23581700026988983,-0.07895424962043762,-0.270675390958786,0.0604793019592762,-0.09638344496488571,0.07790849357843399,-0.14867103099822998,0.11276688426733017,0.2696296274662018,-0.2532461881637573,0.3916339874267578,0.3742047846317291,0.2347712367773056,0.47877994179725647,0.32191720604896545,0.4439215660095215,0.8796514272689819,0.8099346160888672,0.8970806002616882,0.6705011129379272,0.6182135343551636,1.053943395614624,0.9842265844345093,0.7402178645133972,0.7227886915206909,0.7750762701034546,0.5833551287651062,0.8622221946716309,0.7402178645133972,0.966797411441803,1.1585185527801514,0.966797411441803,0.9493681788444519,0.8796514272689819,0.8273638486862183,0.9145098328590393,1.2282352447509766,0.8796514272689819,0.8796514272689819],[1.507102370262146,1.4199564456939697,1.5593899488449097,1.7511111497879028,1.820827841758728,0.966797411441803,1.0713725090026855,1.1410893201828003,1.8033987283706665,1.7336819171905518,1.7685402631759644,1.820827841758728,1.5942484140396118,1.7859694957733154,1.8905446529388428,1.7336819171905518,1.4548147916793823,1.6465359926223755,1.7685402631759644,1.4025272130966187,1.6465359926223755,1.0190849304199219,0.7750762701034546,-0.18352940678596497,1.350239634513855,1.7162526845932007,1.7859694957733154,1.7511111497879028,1.9428322315216064,1.2630937099456787,1.524531602859497,1.6291067600250244,1.8033987283706665,1.350239634513855,1.1062309741973877,1.681394338607788,1.8556863069534302,1.9079738855361938,1.5942484140396118,1.663965106010437,1.663965106010437,1.977690577507019,1.977690577507019,1.9079738855361938,1.8905446529388428,1.663965106010437,1.4896732568740845,1.524531602859497,0.8622221946716309,-0.07895424962043762,0.07790849357843399,0.4264923632144928,0.33934640884399414,0.04305011034011841,0.18248365819454193,0.6007843017578125,0.008191721513867378,-0.04409585893154144,0.2522004246711731,0.2696296274662018,0.02562091499567032,0.33934640884399414,-0.09638344496488571,0.0604793019592762,0.16505447030067444,-0.06152505427598953,-0.427538126707077,-1.7695860862731934,0.5136383175849915,0.3742047846317291,1.0190849304199219,1.1062309741973877,0.7925054430961609,0.8622221946716309,-0.21838779747486115,1.2282352447509766,1.193376898765564,0.6530718803405762,0.30448800325393677,0.7750762701034546,0.30448800325393677,0.18248365819454193,-1.1072766780853271,-0.7412636280059814,-0.6541176438331604,-0.7761220335960388,-1.2292810678482056,-1.333856225013733,-0.9852723479270935,-0.8632679581642151,-0.340392142534256,-1.2815686464309692,-1.6127233505249023,0.966797411441803,-1.246710181236267,-0.7935512065887451,-0.427538126707077,0.8970806002616882,-0.5844008922576904,0.7402178645133972,0.13019607961177826,-0.20095860958099365,-0.14867103099822998,-0.340392142534256,-0.07895424962043762,-0.06152505427598953,0.0604793019592762,0.04305011034011841,0.11276688426733017,0.30448800325393677,0.02562091499567032,0.16505447030067444,0.19991286098957062,0.33934640884399414,0.19991286098957062,0.6007843017578125,0.2696296274662018,-0.21838779747486115,1.6116775274276733,2.3262743949890137,2.395991325378418,2.361132860183716,1.332810401916504,0.7053594589233398,1.6291067600250244,0.6879302859306335,-0.3229629695415497,0.7576470375061035,0.8273638486862183,2.0125489234924316,1.2282352447509766,1.6465359926223755,1.9079738855361938,0.9842265844345093,1.6291067600250244,1.2979520559310913,1.4025272130966187,1.838257074356079,1.5942484140396118,0.16505447030067444,1.332810401916504,1.9254029989242554,1.210806131362915,1.053943395614624,-0.2532461881637573,0.4264923632144928,-0.1312418282032013,0.09533768892288208,1.210806131362915,0.7925054430961609,0.8273638486862183,1.210806131362915,0.9493681788444519,0.7750762701034546,0.9319390058517456,1.4548147916793823,0.7925054430961609,-0.09638344496488571,-0.07895424962043762,0.7402178645133972,0.5659258961677551,-0.8284096121788025,0.4264923632144928,-0.2532461881637573,0.13019607961177826,-0.2881045639514923,0.04305011034011841,0.02562091499567032,0.2173420488834381,0.4264923632144928,0.3567756116390228,0.9319390058517456,1.5768191814422607,0.008191721513867378,0.02562091499567032,-0.4449673295021057,0.04305011034011841,1.1062309741973877,0.6879302859306335,1.1410893201828003,1.3153812885284424,1.0190849304199219,0.07790849357843399,0.4439215660095215,0.04305011034011841,0.18248365819454193,0.2347712367773056,0.2522004246711731,-0.4972549080848694,-0.09638344496488571,-0.009237472899258137,0.18248365819454193,0.09533768892288208,-0.1138126328587532,0.2173420488834381,0.4264923632144928,0.3567756116390228,0.09533768892288208,0.2347712367773056,0.7925054430961609,0.7402178645133972,0.11276688426733017,0.6705011129379272,0.46135076880455017,0.8273638486862183,0.8447930216789246,0.6879302859306335,0.6356427073478699,1.0016558170318604,0.4439215660095215,0.6879302859306335,0.8447930216789246,0.5659258961677551,0.7227886915206909,0.6879302859306335,0.6182135343551636,1.193376898765564,1.0190849304199219,1.053943395614624,0.9493681788444519,0.7227886915206909,0.966797411441803,0.8622221946716309,1.1062309741973877],[1.4373856782913208,1.4025272130966187,1.3850979804992676,1.681394338607788,1.332810401916504,1.4896732568740845,1.6291067600250244,1.6291067600250244,1.7162526845932007,1.4025272130966187,1.5768191814422607,1.6465359926223755,1.6988235712051392,2.117124080657959,1.4199564456939697,1.5419608354568481,1.7685402631759644,1.838257074356079,1.6465359926223755,1.8033987283706665,1.6116775274276733,1.210806131362915,1.524531602859497,1.1585185527801514,0.8099346160888672,1.0016558170318604,1.838257074356079,1.8905446529388428,1.7511111497879028,1.5593899488449097,1.8731154203414917,2.151982545852661,1.7859694957733154,1.2456644773483276,0.9319390058517456,1.4025272130966187,1.820827841758728,1.9951198101043701,2.047407388687134,1.8731154203414917,2.0125489234924316,1.8905446529388428,1.820827841758728,1.820827841758728,2.082265853881836,1.9079738855361938,1.175947666168213,1.4025272130966187,0.9493681788444519,1.0016558170318604,0.008191721513867378,0.6879302859306335,-0.04409585893154144,-0.16610021889209747,-0.06152505427598953,-0.07895424962043762,-0.37525054812431335,-0.4798257052898407,0.19991286098957062,0.6007843017578125,-0.04409585893154144,0.5833551287651062,-0.1138126328587532,0.2696296274662018,0.16505447030067444,0.2522004246711731,-0.37525054812431335,-0.23581700026988983,0.6530718803405762,0.3742047846317291,1.0190849304199219,1.036514163017273,0.9319390058517456,1.4373856782913208,-0.39267975091934204,1.2630937099456787,1.350239634513855,0.46135076880455017,0.02562091499567032,0.7925054430961609,-0.009237472899258137,-0.14867103099822998,-0.6366884708404541,-0.427538126707077,-0.9504139423370361,-0.1312418282032013,0.28705883026123047,-0.5146840810775757,-1.2989978790283203,-0.7412636280059814,-0.9155555367469788,-0.1312418282032013,-1.7521568536758423,-0.4798257052898407,0.8622221946716309,0.2696296274662018,1.036514163017273,1.036514163017273,-0.1138126328587532,-0.06152505427598953,-0.305533766746521,-0.6541176438331604,-0.18352940678596497,-0.16610021889209747,-0.16610021889209747,0.04305011034011841,-0.02666666731238365,-0.305533766746521,-0.1138126328587532,-0.06152505427598953,0.13019607961177826,0.19991286098957062,-0.06152505427598953,-0.06152505427598953,0.4264923632144928,-0.1138126328587532,0.9145098328590393,0.3742047846317291,0.6182135343551636,1.7162526845932007,2.640000104904175,2.082265853881836,0.7750762701034546,0.5659258961677551,1.367668867111206,0.14762526750564575,-0.4798257052898407,1.350239634513855,1.507102370262146,1.367668867111206,2.0996949672698975,1.2630937099456787,1.1585185527801514,1.507102370262146,1.5419608354568481,1.8556863069534302,1.9951198101043701,1.175947666168213,0.2696296274662018,0.33934640884399414,1.6291067600250244,1.681394338607788,0.5310675501823425,1.210806131362915,1.2805228233337402,1.7336819171905518,0.6007843017578125,1.3153812885284424,1.1236600875854492,1.4896732568740845,1.5419608354568481,1.3153812885284424,0.2696296274662018,0.4264923632144928,-0.20095860958099365,0.19991286098957062,1.0888017416000366,-1.176993489265442,1.0888017416000366,-0.8981263637542725,0.28705883026123047,1.6116775274276733,-0.9504139423370361,2.1868410110473633,0.3916339874267578,-0.09638344496488571,1.0190849304199219,0.2522004246711731,0.3742047846317291,0.2173420488834381,1.4025272130966187,0.9842265844345093,1.036514163017273,0.9493681788444519,-0.7935512065887451,0.18248365819454193,0.11276688426733017,0.2173420488834381,0.6182135343551636,1.036514163017273,0.8099346160888672,0.19991286098957062,0.09533768892288208,-0.270675390958786,0.07790849357843399,0.11276688426733017,0.4090631902217865,-0.5844008922576904,-0.39267975091934204,-0.35782134532928467,0.2347712367773056,0.07790849357843399,-0.16610021889209747,0.2173420488834381,-0.02666666731238365,0.28705883026123047,0.46135076880455017,0.18248365819454193,0.3742047846317291,0.3742047846317291,0.5310675501823425,0.9145098328590393,0.8273638486862183,0.4439215660095215,0.5136383175849915,0.8099346160888672,0.11276688426733017,0.5484967231750488,0.6879302859306335,0.9842265844345093,0.6182135343551636,0.5659258961677551,0.8796514272689819,0.6182135343551636,0.9319390058517456,1.0016558170318604,1.0190849304199219,1.1236600875854492,0.8273638486862183,0.8622221946716309,1.1585185527801514,1.2456644773483276,1.1410893201828003,0.6007843017578125],[1.507102370262146,1.3850979804992676,1.524531602859497,1.6291067600250244,1.4025272130966187,1.7685402631759644,1.3850979804992676,1.4548147916793823,1.4373856782913208,1.7685402631759644,1.332810401916504,1.4722440242767334,1.5768191814422607,1.6116775274276733,1.9254029989242554,1.3850979804992676,1.7685402631759644,1.7685402631759644,1.663965106010437,1.8556863069534302,1.4199564456939697,1.2456644773483276,1.0016558170318604,0.3567756116390228,1.0016558170318604,1.3850979804992676,1.7162526845932007,2.1868410110473633,2.0125489234924316,1.6291067600250244,1.332810401916504,1.6465359926223755,1.9602614641189575,1.507102370262146,0.8447930216789246,1.1410893201828003,1.838257074356079,2.1694116592407227,1.9428322315216064,1.9951198101043701,1.8731154203414917,1.7162526845932007,1.8731154203414917,1.6291067600250244,2.047407388687134,1.1236600875854492,0.9145098328590393,1.0190849304199219,1.2630937099456787,1.4722440242767334,-0.2532461881637573,0.47877994179725647,-0.009237472899258137,-0.7238343954086304,0.28705883026123047,-0.23581700026988983,-0.1138126328587532,-0.9504139423370361,-0.07895424962043762,-0.18352940678596497,0.47877994179725647,0.32191720604896545,-0.07895424962043762,-0.20095860958099365,0.04305011034011841,0.13019607961177826,0.3567756116390228,0.7227886915206909,1.2630937099456787,0.9319390058517456,0.966797411441803,0.5484967231750488,1.2805228233337402,1.1410893201828003,0.3567756116390228,0.8622221946716309,0.49620914459228516,0.19991286098957062,-0.37525054812431335,0.7576470375061035,-0.8632679581642151,0.18248365819454193,-0.7586928009986877,-1.0375598669052124,-0.35782134532928467,0.4264923632144928,0.09533768892288208,-1.0201307535171509,-1.490718960762024,-1.6127233505249023,-1.3164269924163818,0.02562091499567032,0.6879302859306335,0.6530718803405762,-0.18352940678596497,0.2347712367773056,0.46135076880455017,1.3153812885284424,-0.06152505427598953,-0.6366884708404541,0.49620914459228516,0.6356427073478699,-0.5321133136749268,0.0604793019592762,-1.5778648853302002,-0.35782134532928467,-0.18352940678596497,-0.09638344496488571,0.4264923632144928,-0.009237472899258137,0.4439215660095215,0.07790849357843399,0.3567756116390228,0.4439215660095215,-0.07895424962043762,0.6007843017578125,0.13019607961177826,0.18248365819454193,0.2522004246711731,0.5136383175849915,1.507102370262146,1.1062309741973877,-0.20095860958099365,0.2347712367773056,1.4373856782913208,-0.3229629695415497,-1.0027015209197998,1.6116775274276733,2.047407388687134,1.681394338607788,1.5593899488449097,1.4896732568740845,1.6988235712051392,1.332810401916504,1.663965106010437,1.507102370262146,1.524531602859497,0.7750762701034546,1.8033987283706665,0.5310675501823425,1.2979520559310913,1.4896732568740845,1.053943395614624,0.5659258961677551,1.8556863069534302,1.3153812885284424,1.4373856782913208,1.8556863069534302,0.8447930216789246,2.2565577030181885,1.5768191814422607,1.350239634513855,1.367668867111206,0.6879302859306335,1.332810401916504,1.977690577507019,0.18248365819454193,0.5833551287651062,0.5833551287651062,0.19991286098957062,-0.8458387851715088,-0.340392142534256,-0.6715468168258667,1.5942484140396118,0.18248365819454193,0.2696296274662018,-0.20095860958099365,-0.1138126328587532,-0.14867103099822998,0.4439215660095215,0.6705011129379272,1.2805228233337402,0.7402178645133972,1.1062309741973877,-0.3229629695415497,0.6007843017578125,0.7053594589233398,0.2173420488834381,0.07790849357843399,0.18248365819454193,0.6705011129379272,0.4439215660095215,0.2522004246711731,-0.2532461881637573,0.11276688426733017,0.04305011034011841,0.2347712367773056,0.19991286098957062,0.0604793019592762,0.04305011034011841,0.008191721513867378,-0.09638344496488571,0.04305011034011841,-0.3229629695415497,-0.20095860958099365,0.32191720604896545,0.19991286098957062,0.3916339874267578,0.2522004246711731,0.6182135343551636,0.7750762701034546,0.7750762701034546,0.6705011129379272,0.6530718803405762,0.4439215660095215,1.0190849304199219,0.5136383175849915,1.0016558170318604,0.8099346160888672,0.966797411441803,1.1062309741973877,0.8447930216789246,0.7227886915206909,1.0190849304199219,0.6705011129379272,1.053943395614624,1.193376898765564,0.9145098328590393,0.8622221946716309,1.1236600875854492,1.2282352447509766,1.2282352447509766,0.8447930216789246,1.0713725090026855],[1.3850979804992676,1.2805228233337402,1.3850979804992676,1.977690577507019,1.6116775274276733,1.507102370262146,1.663965106010437,1.4373856782913208,1.4548147916793823,1.4199564456939697,1.6465359926223755,1.681394338607788,1.663965106010437,1.6988235712051392,1.9951198101043701,1.5593899488449097,1.7162526845932007,1.8905446529388428,1.5768191814422607,1.6465359926223755,1.1236600875854492,1.2282352447509766,0.5659258961677551,-0.4798257052898407,0.5833551287651062,1.7162526845932007,2.047407388687134,2.082265853881836,1.7859694957733154,1.9079738855361938,1.8905446529388428,2.1345534324645996,2.082265853881836,1.350239634513855,1.193376898765564,1.5768191814422607,1.8731154203414917,2.2914161682128906,2.082265853881836,1.838257074356079,1.9428322315216064,1.8731154203414917,1.9079738855361938,1.681394338607788,1.663965106010437,1.6465359926223755,0.6530718803405762,1.053943395614624,1.5942484140396118,1.5942484140396118,0.6879302859306335,-0.3229629695415497,-1.0549890995025635,0.7402178645133972,0.02562091499567032,-0.5844008922576904,-0.09638344496488571,-0.7238343954086304,-0.39267975091934204,-1.5604357719421387,-0.1312418282032013,0.32191720604896545,-0.23581700026988983,-0.7586928009986877,-0.305533766746521,-0.37525054812431335,0.8099346160888672,-0.07895424962043762,0.4439215660095215,0.8447930216789246,0.2696296274662018,-0.18352940678596497,1.2979520559310913,0.11276688426733017,0.30448800325393677,-0.07895424962043762,-0.16610021889209747,-0.6715468168258667,-0.2881045639514923,-0.1138126328587532,-0.619259238243103,-0.009237472899258137,-0.5844008922576904,-0.5669716596603394,-0.462396502494812,0.11276688426733017,-0.09638344496488571,-1.333856225013733,-1.4210021495819092,-1.490718960762024,1.6116775274276733,1.2805228233337402,2.082265853881836,2.151982545852661,1.175947666168213,0.9319390058517456,1.053943395614624,-0.1138126328587532,-0.23581700026988983,0.4264923632144928,0.28705883026123047,0.9319390058517456,-0.20095860958099365,0.18248365819454193,-0.2881045639514923,0.008191721513867378,-0.18352940678596497,-1.089847445487976,-0.09638344496488571,0.07790849357843399,-0.1312418282032013,0.3916339874267578,0.2696296274662018,0.2696296274662018,0.6182135343551636,0.3916339874267578,0.3916339874267578,0.8099346160888672,0.6182135343551636,-0.18352940678596497,0.5136383175849915,0.966797411441803,0.8099346160888672,0.8099346160888672,0.2522004246711731,0.09533768892288208,1.4025272130966187,2.483137369155884,2.1694116592407227,1.7859694957733154,1.9428322315216064,1.5593899488449097,1.9951198101043701,1.9254029989242554,1.8033987283706665,1.2805228233337402,1.4025272130966187,1.053943395614624,1.9428322315216064,1.663965106010437,1.8556863069534302,0.46135076880455017,1.8033987283706665,2.117124080657959,1.4373856782913208,1.175947666168213,1.5768191814422607,0.2173420488834381,1.2979520559310913,0.8796514272689819,0.9493681788444519,1.2282352447509766,0.8447930216789246,1.036514163017273,0.6007843017578125,-0.16610021889209747,-0.427538126707077,-0.37525054812431335,0.28705883026123047,1.5593899488449097,0.966797411441803,-0.340392142534256,0.2522004246711731,-0.06152505427598953,0.07790849357843399,0.2696296274662018,-0.305533766746521,-0.5495424866676331,0.30448800325393677,0.07790849357843399,0.7750762701034546,1.193376898765564,0.6705011129379272,-0.14867103099822998,0.3916339874267578,0.16505447030067444,-0.009237472899258137,0.5659258961677551,1.036514163017273,-0.04409585893154144,0.16505447030067444,0.02562091499567032,0.008191721513867378,0.02562091499567032,0.02562091499567032,-0.07895424962043762,0.18248365819454193,-0.009237472899258137,-0.02666666731238365,0.18248365819454193,0.3567756116390228,0.14762526750564575,0.4090631902217865,0.11276688426733017,0.4090631902217865,0.5659258961677551,0.9319390058517456,0.5484967231750488,0.8970806002616882,0.2347712367773056,0.6705011129379272,0.8970806002616882,0.19991286098957062,0.6182135343551636,0.6182135343551636,0.8273638486862183,1.053943395614624,0.9145098328590393,1.053943395614624,0.8273638486862183,0.8273638486862183,0.5659258961677551,0.4439215660095215,1.1236600875854492,0.7576470375061035,0.9145098328590393,0.9493681788444519,0.7576470375061035,1.4373856782913208,1.1585185527801514,0.9842265844345093,1.2805228233337402,1.0713725090026855,1.053943395614624],[0.5659258961677551,1.838257074356079,1.7511111497879028,1.4373856782913208,1.8556863069534302,1.4199564456939697,1.1236600875854492,1.367668867111206,1.4373856782913208,1.4896732568740845,1.6116775274276733,1.7336819171905518,1.4548147916793823,1.6291067600250244,1.4548147916793823,1.6465359926223755,1.5419608354568481,1.4548147916793823,1.7511111497879028,1.5593899488449097,1.4199564456939697,2.0299782752990723,0.5136383175849915,1.4373856782913208,1.7336819171905518,1.4722440242767334,1.9079738855361938,1.977690577507019,2.0996949672698975,2.1694116592407227,2.1345534324645996,1.9428322315216064,1.9254029989242554,1.7336819171905518,2.0996949672698975,1.6291067600250244,1.8033987283706665,2.2914161682128906,2.2565577030181885,2.117124080657959,1.8556863069534302,1.838257074356079,1.5768191814422607,1.8731154203414917,1.681394338607788,1.2456644773483276,1.1410893201828003,0.7227886915206909,1.5768191814422607,1.7336819171905518,0.6530718803405762,0.2522004246711731,-0.2532461881637573,-0.7761220335960388,0.18248365819454193,-0.37525054812431335,-1.0027015209197998,-0.5844008922576904,-0.340392142534256,-0.21838779747486115,-0.09638344496488571,-0.009237472899258137,-0.4798257052898407,-1.2815686464309692,-1.4732897281646729,-0.20095860958099365,0.4264923632144928,0.46135076880455017,0.7227886915206909,0.8970806002616882,0.6007843017578125,-0.3229629695415497,0.9842265844345093,0.11276688426733017,0.09533768892288208,-0.21838779747486115,-0.619259238243103,-0.8806971907615662,-0.305533766746521,-0.8806971907615662,-0.270675390958786,-0.5669716596603394,-0.4972549080848694,0.008191721513867378,-0.1312418282032013,0.11276688426733017,-0.9852723479270935,-1.7347276210784912,-1.7347276210784912,-1.7695860862731934,1.3850979804992676,1.350239634513855,1.9602614641189575,2.082265853881836,1.7859694957733154,0.3916339874267578,1.7162526845932007,1.2456644773483276,0.5484967231750488,-0.9504139423370361,-0.340392142534256,-0.06152505427598953,-0.009237472899258137,-0.9504139423370361,-0.14867103099822998,-0.04409585893154144,-0.20095860958099365,-0.6018300652503967,0.09533768892288208,0.02562091499567032,0.09533768892288208,-0.20095860958099365,0.3567756116390228,-0.02666666731238365,-0.20095860958099365,0.4090631902217865,0.4090631902217865,0.9145098328590393,0.19991286098957062,0.30448800325393677,0.04305011034011841,0.47877994179725647,0.3567756116390228,1.0016558170318604,0.11276688426733017,-0.6541176438331604,1.5419608354568481,1.838257074356079,1.9951198101043701,2.1345534324645996,1.350239634513855,0.8099346160888672,1.350239634513855,1.1062309741973877,2.308845281600952,1.193376898765564,0.6705011129379272,1.0190849304199219,1.4896732568740845,2.1694116592407227,1.8731154203414917,1.9079738855361938,1.5419608354568481,0.5484967231750488,1.838257074356079,1.036514163017273,1.053943395614624,0.2696296274662018,1.3850979804992676,2.151982545852661,1.7162526845932007,0.8447930216789246,0.14762526750564575,-0.1138126328587532,0.3742047846317291,-0.4798257052898407,0.14762526750564575,0.28705883026123047,-0.2881045639514923,-0.4798257052898407,-0.427538126707077,0.8796514272689819,-0.9155555367469788,0.5310675501823425,-0.009237472899258137,0.4439215660095215,-0.7238343954086304,-0.7935512065887451,-0.7761220335960388,1.036514163017273,0.47877994179725647,0.7227886915206909,0.7402178645133972,0.46135076880455017,-0.7064052224159241,-0.4449673295021057,0.2347712367773056,0.9842265844345093,-0.02666666731238365,0.02562091499567032,-0.09638344496488571,0.13019607961177826,0.11276688426733017,-0.09638344496488571,-0.09638344496488571,0.13019607961177826,0.30448800325393677,0.04305011034011841,0.14762526750564575,-0.07895424962043762,-0.06152505427598953,-0.1312418282032013,0.02562091499567032,0.008191721513867378,0.18248365819454193,0.2522004246711731,0.7227886915206909,0.7053594589233398,0.8447930216789246,0.8447930216789246,0.6182135343551636,0.8622221946716309,0.7576470375061035,0.8796514272689819,1.0888017416000366,0.8970806002616882,0.8796514272689819,0.7053594589233398,0.4439215660095215,1.0713725090026855,0.5136383175849915,0.7053594589233398,1.175947666168213,0.6356427073478699,1.036514163017273,0.7227886915206909,1.2282352447509766,0.8970806002616882,1.0713725090026855,0.9145098328590393,1.0016558170318604,1.3850979804992676,0.9145098328590393,1.193376898765564],[1.332810401916504,1.367668867111206,1.332810401916504,1.681394338607788,1.5768191814422607,1.663965106010437,1.3153812885284424,1.2805228233337402,1.1062309741973877,1.9254029989242554,1.8731154203414917,1.4722440242767334,1.367668867111206,1.5419608354568481,1.524531602859497,1.507102370262146,1.5593899488449097,1.9602614641189575,1.663965106010437,1.2805228233337402,1.193376898765564,0.7402178645133972,0.3742047846317291,0.8273638486862183,1.4896732568740845,1.193376898765564,1.5419608354568481,1.2282352447509766,1.663965106010437,1.5593899488449097,1.3153812885284424,1.8033987283706665,1.681394338607788,2.047407388687134,1.8905446529388428,1.4199564456939697,1.4199564456939697,1.9602614641189575,2.308845281600952,2.082265853881836,1.6465359926223755,0.8796514272689819,1.053943395614624,1.3850979804992676,1.367668867111206,0.8622221946716309,0.46135076880455017,0.8273638486862183,1.3153812885284424,1.193376898765564,0.9493681788444519,-0.1138126328587532,-0.41010892391204834,0.6705011129379272,-0.7761220335960388,-0.5321133136749268,-0.7586928009986877,-0.7761220335960388,-0.6889760494232178,0.2522004246711731,-0.18352940678596497,0.33934640884399414,0.008191721513867378,0.0604793019592762,-0.7935512065887451,-0.04409585893154144,0.5484967231750488,0.6530718803405762,1.036514163017273,1.193376898765564,0.6530718803405762,-0.02666666731238365,0.07790849357843399,0.04305011034011841,-0.5321133136749268,-0.20095860958099365,-0.37525054812431335,-0.8806971907615662,-0.6366884708404541,-0.7761220335960388,-0.39267975091934204,-0.619259238243103,-0.21838779747486115,-0.5321133136749268,0.4439215660095215,-0.06152505427598953,-1.0724183320999146,-1.508148193359375,-1.5430065393447876,-1.1595642566680908,1.3850979804992676,2.1868410110473633,1.9079738855361938,0.9319390058517456,2.082265853881836,1.2282352447509766,2.0125489234924316,1.7685402631759644,1.053943395614624,-0.9852723479270935,-0.35782134532928467,-1.2118518352508545,-1.1421350240707397,0.8796514272689819,-0.619259238243103,-1.1072766780853271,0.13019607961177826,-0.6715468168258667,-0.5495424866676331,-0.4449673295021057,0.11276688426733017,0.49620914459228516,0.5659258961677551,-0.1138126328587532,0.28705883026123047,0.28705883026123047,0.2522004246711731,0.5136383175849915,0.9319390058517456,0.7750762701034546,0.8970806002616882,0.5833551287651062,0.9319390058517456,0.14762526750564575,-0.3229629695415497,-0.6715468168258667,1.8033987283706665,1.5768191814422607,1.9602614641189575,1.7511111497879028,2.1694116592407227,1.5768191814422607,1.1236600875854492,0.7402178645133972,1.663965106010437,1.193376898765564,1.7162526845932007,0.7227886915206909,0.6530718803405762,1.1585185527801514,1.820827841758728,1.6465359926223755,1.7336819171905518,0.8622221946716309,1.507102370262146,1.6988235712051392,1.4025272130966187,0.8796514272689819,1.9428322315216064,1.9428322315216064,0.8970806002616882,1.9602614641189575,1.4373856782913208,-0.4798257052898407,0.6007843017578125,-1.1247059106826782,0.3916339874267578,-0.04409585893154144,-0.4972549080848694,-0.9329847693443298,-0.06152505427598953,0.4439215660095215,0.02562091499567032,-0.3229629695415497,-0.20095860958099365,-0.37525054812431335,0.28705883026123047,-0.23581700026988983,-0.2532461881637573,0.33934640884399414,1.193376898765564,0.966797411441803,1.1062309741973877,-1.1247059106826782,-0.4972549080848694,0.4264923632144928,0.9319390058517456,0.5659258961677551,-0.5844008922576904,0.13019607961177826,0.07790849357843399,0.14762526750564575,0.30448800325393677,-0.06152505427598953,-0.07895424962043762,0.14762526750564575,0.04305011034011841,0.008191721513867378,-0.1138126328587532,0.19991286098957062,-0.04409585893154144,-0.37525054812431335,-0.23581700026988983,0.07790849357843399,0.0604793019592762,-0.02666666731238365,0.30448800325393677,0.14762526750564575,1.0713725090026855,0.7053594589233398,0.7750762701034546,0.6182135343551636,0.4264923632144928,0.9319390058517456,0.7925054430961609,0.7925054430961609,0.7053594589233398,1.0190849304199219,0.8099346160888672,0.7576470375061035,0.8970806002616882,1.2979520559310913,1.0016558170318604,1.1585185527801514,0.2696296274662018,0.9493681788444519,0.6530718803405762,0.7925054430961609,1.053943395614624,1.036514163017273,1.1410893201828003,1.0190849304199219,1.2979520559310913,0.9145098328590393],[1.507102370262146,1.2630937099456787,1.6116775274276733,1.7336819171905518,1.681394338607788,1.5942484140396118,1.524531602859497,1.3153812885284424,1.4025272130966187,1.6465359926223755,1.8731154203414917,1.681394338607788,1.5419608354568481,1.5942484140396118,1.663965106010437,1.7511111497879028,1.9254029989242554,1.5419608354568481,1.820827841758728,1.1236600875854492,1.7511111497879028,1.1062309741973877,1.1585185527801514,1.4373856782913208,1.1410893201828003,0.8622221946716309,0.9493681788444519,1.175947666168213,1.210806131362915,1.350239634513855,1.7162526845932007,2.0299782752990723,1.820827841758728,2.0996949672698975,2.0299782752990723,1.5768191814422607,1.5942484140396118,1.6291067600250244,1.9428322315216064,1.7685402631759644,1.9254029989242554,1.3850979804992676,1.0016558170318604,0.6705011129379272,0.4439215660095215,1.193376898765564,0.9842265844345093,0.6356427073478699,1.507102370262146,1.2979520559310913,-0.20095860958099365,0.2347712367773056,-0.5321133136749268,0.28705883026123047,0.04305011034011841,-0.9504139423370361,-1.1072766780853271,-0.5669716596603394,-0.2532461881637573,-0.5844008922576904,-0.9678431153297424,0.008191721513867378,-0.06152505427598953,0.6705011129379272,0.19991286098957062,1.053943395614624,0.7925054430961609,0.3916339874267578,1.0016558170318604,0.46135076880455017,-0.1138126328587532,-0.2881045639514923,-0.340392142534256,-0.4972549080848694,-0.6366884708404541,-0.18352940678596497,-0.427538126707077,-0.8981263637542725,-0.4449673295021057,-1.176993489265442,-0.8284096121788025,-0.340392142534256,0.8970806002616882,-0.1312418282032013,1.1236600875854492,-0.4972549080848694,-1.2815686464309692,-1.7347276210784912,-1.4384313821792603,0.33934640884399414,1.1410893201828003,1.820827841758728,1.7162526845932007,1.5593899488449097,2.082265853881836,1.210806131362915,0.7053594589233398,1.3850979804992676,-0.06152505427598953,0.19991286098957062,-1.5604357719421387,-1.2989978790283203,-1.333856225013733,0.04305011034011841,-0.340392142534256,-0.7238343954086304,-0.7586928009986877,-0.270675390958786,0.4439215660095215,-0.305533766746521,0.0604793019592762,-0.1138126328587532,0.4090631902217865,0.11276688426733017,0.2347712367773056,0.2347712367773056,0.13019607961177826,0.3742047846317291,0.2347712367773056,0.8447930216789246,0.0604793019592762,0.4439215660095215,0.6007843017578125,0.2347712367773056,-0.16610021889209747,0.30448800325393677,1.2456644773483276,1.1062309741973877,1.8731154203414917,1.6988235712051392,1.9602614641189575,1.7162526845932007,0.7750762701034546,1.6465359926223755,0.16505447030067444,1.0016558170318604,1.4025272130966187,-0.41010892391204834,1.053943395614624,0.6879302859306335,1.5942484140396118,1.5942484140396118,0.7053594589233398,0.8970806002616882,0.9842265844345093,0.4090631902217865,1.5942484140396118,0.30448800325393677,0.966797411441803,1.977690577507019,0.4439215660095215,-0.39267975091934204,1.4548147916793823,0.19991286098957062,0.02562091499567032,-0.7238343954086304,-0.23581700026988983,0.7402178645133972,-1.351285457611084,-0.02666666731238365,-0.23581700026988983,-0.8109803795814514,0.49620914459228516,0.7750762701034546,0.008191721513867378,-0.1312418282032013,-1.2292810678482056,0.30448800325393677,0.13019607961177826,0.6705011129379272,1.2282352447509766,1.2979520559310913,1.053943395614624,0.2522004246711731,0.8447930216789246,0.6182135343551636,1.1585185527801514,-0.6366884708404541,-0.09638344496488571,-0.1312418282032013,0.0604793019592762,0.02562091499567032,0.47877994179725647,0.14762526750564575,0.2173420488834381,0.4264923632144928,0.18248365819454193,0.28705883026123047,-0.04409585893154144,-0.18352940678596497,0.19991286098957062,-0.21838779747486115,0.2696296274662018,0.13019607961177826,0.008191721513867378,0.3742047846317291,0.19991286098957062,0.6879302859306335,0.3742047846317291,1.053943395614624,0.28705883026123047,0.7750762701034546,0.6879302859306335,0.6530718803405762,0.30448800325393677,0.9145098328590393,0.8447930216789246,1.1062309741973877,0.7227886915206909,0.966797411441803,0.9145098328590393,1.1062309741973877,0.9493681788444519,1.0713725090026855,0.5659258961677551,0.9493681788444519,0.8796514272689819,0.8622221946716309,0.8622221946716309,1.0713725090026855,1.0713725090026855,1.0888017416000366,0.9145098328590393,1.0190849304199219],[1.2456644773483276,1.524531602859497,1.350239634513855,1.6291067600250244,1.7685402631759644,1.4896732568740845,1.6291067600250244,1.507102370262146,1.8731154203414917,1.6116775274276733,1.6116775274276733,1.7162526845932007,1.7511111497879028,1.5942484140396118,1.2979520559310913,1.6988235712051392,1.3153812885284424,1.332810401916504,1.6988235712051392,1.367668867111206,1.367668867111206,0.32191720604896545,0.8447930216789246,1.1410893201828003,1.3850979804992676,0.7227886915206909,1.0016558170318604,1.175947666168213,0.7750762701034546,0.6879302859306335,0.49620914459228516,1.1585185527801514,1.1236600875854492,1.7336819171905518,1.8556863069534302,1.820827841758728,1.8556863069534302,1.036514163017273,1.0713725090026855,1.3850979804992676,1.2630937099456787,1.2456644773483276,1.5942484140396118,-0.14867103099822998,-0.340392142534256,0.8796514272689819,1.4896732568740845,1.663965106010437,1.4548147916793823,0.9319390058517456,0.5484967231750488,1.2630937099456787,0.14762526750564575,0.6705011129379272,-0.1312418282032013,1.1410893201828003,-0.07895424962043762,0.2696296274662018,-0.6018300652503967,-0.7064052224159241,-1.2641394138336182,-0.7064052224159241,0.18248365819454193,0.30448800325393677,0.966797411441803,0.8796514272689819,1.332810401916504,0.5659258961677551,-0.06152505427598953,-0.14867103099822998,-0.4449673295021057,0.0604793019592762,-0.23581700026988983,-0.7064052224159241,-0.427538126707077,-0.1312418282032013,-0.7412636280059814,-0.39267975091934204,-0.8806971907615662,-0.5146840810775757,-0.07895424962043762,-0.4972549080848694,-0.5321133136749268,-0.2881045639514923,-0.5669716596603394,-1.6301524639129639,-1.4384313821792603,-1.0201307535171509,0.0604793019592762,0.6705011129379272,0.8447930216789246,1.332810401916504,1.9079738855361938,1.5593899488449097,0.4439215660095215,0.5484967231750488,0.966797411441803,-0.7586928009986877,0.3916339874267578,0.49620914459228516,-0.6366884708404541,-1.5952941179275513,-1.1595642566680908,-1.5255773067474365,0.33934640884399414,-0.5669716596603394,-0.462396502494812,-0.18352940678596497,-0.37525054812431335,0.04305011034011841,-0.04409585893154144,0.18248365819454193,-0.009237472899258137,0.0604793019592762,0.07790849357843399,0.28705883026123047,0.2173420488834381,0.19991286098957062,0.28705883026123047,0.32191720604896545,0.2173420488834381,-0.5321133136749268,-0.6366884708404541,0.19991286098957062,-0.35782134532928467,0.4090631902217865,1.6116775274276733,1.8033987283706665,1.524531602859497,1.1410893201828003,2.2565577030181885,0.7925054430961609,1.4548147916793823,0.2173420488834381,0.02562091499567032,0.6879302859306335,-0.1312418282032013,-0.3229629695415497,0.6530718803405762,0.13019607961177826,1.4025272130966187,1.507102370262146,-0.462396502494812,0.9145098328590393,0.46135076880455017,-0.7761220335960388,0.7402178645133972,0.3916339874267578,0.6879302859306335,0.966797411441803,0.7576470375061035,0.11276688426733017,0.5833551287651062,0.6356427073478699,-0.39267975091934204,-0.6018300652503967,0.3567756116390228,0.13019607961177826,-0.18352940678596497,0.19991286098957062,-0.5321133136749268,-0.4798257052898407,0.28705883026123047,0.14762526750564575,0.6182135343551636,-0.06152505427598953,0.8796514272689819,-0.21838779747486115,0.6530718803405762,0.8796514272689819,0.8447930216789246,0.8796514272689819,1.350239634513855,-0.7935512065887451,0.0604793019592762,1.0190849304199219,1.0190849304199219,0.3742047846317291,0.0604793019592762,0.18248365819454193,-0.09638344496488571,0.09533768892288208,-0.14867103099822998,0.2173420488834381,0.14762526750564575,0.3742047846317291,0.2347712367773056,0.16505447030067444,0.008191721513867378,0.09533768892288208,0.16505447030067444,-0.02666666731238365,0.2347712367773056,-0.04409585893154144,0.3567756116390228,0.0604793019592762,0.11276688426733017,0.32191720604896545,0.9145098328590393,0.47877994179725647,0.9493681788444519,1.1062309741973877,1.0190849304199219,0.7402178645133972,0.5310675501823425,0.8970806002616882,0.6879302859306335,1.0888017416000366,0.6530718803405762,0.9842265844345093,0.8447930216789246,1.0713725090026855,0.7053594589233398,1.1410893201828003,1.332810401916504,0.8273638486862183,1.0016558170318604,0.5833551287651062,0.6879302859306335,0.7750762701034546,1.1062309741973877,0.8796514272689819,1.1410893201828003,1.053943395614624],[1.332810401916504,1.0190849304199219,1.6465359926223755,1.6291067600250244,1.8905446529388428,1.2805228233337402,1.4199564456939697,1.7511111497879028,1.8033987283706665,1.7511111497879028,1.8556863069534302,2.117124080657959,1.7685402631759644,1.8731154203414917,1.7685402631759644,1.4025272130966187,1.5942484140396118,1.7685402631759644,1.7511111497879028,1.4722440242767334,0.5659258961677551,0.13019607961177826,0.47877994179725647,0.47877994179725647,1.8556863069534302,1.820827841758728,1.507102370262146,0.9842265844345093,1.0713725090026855,0.7402178645133972,0.2696296274662018,0.5484967231750488,0.7750762701034546,1.5768191814422607,1.6116775274276733,1.820827841758728,1.4025272130966187,0.7227886915206909,0.7925054430961609,1.193376898765564,1.2282352447509766,0.8622221946716309,1.663965106010437,1.0016558170318604,-0.35782134532928467,-0.16610021889209747,-0.7412636280059814,1.1236600875854492,0.9145098328590393,0.16505447030067444,-0.7064052224159241,0.0604793019592762,1.0888017416000366,-0.41010892391204834,-0.35782134532928467,1.2805228233337402,-0.5669716596603394,0.04305011034011841,0.19991286098957062,-0.427538126707077,-1.2641394138336182,-1.3687145709991455,-0.07895424962043762,-0.305533766746521,1.193376898765564,0.8622221946716309,0.2522004246711731,0.5484967231750488,-0.3229629695415497,-0.6018300652503967,-0.37525054812431335,-0.39267975091934204,-0.6018300652503967,-0.21838779747486115,-0.2532461881637573,-0.6366884708404541,-1.0375598669052124,-0.427538126707077,-0.6018300652503967,0.14762526750564575,-0.009237472899258137,-0.37525054812431335,-1.5604357719421387,-0.8806971907615662,-0.9329847693443298,-1.647581696510315,-1.4210021495819092,0.4439215660095215,-1.0201307535171509,1.193376898765564,-0.2532461881637573,1.193376898765564,2.0125489234924316,0.8447930216789246,0.7925054430961609,0.7576470375061035,-1.2815686464309692,-0.8806971907615662,-0.4449673295021057,0.2347712367773056,1.036514163017273,-1.7521568536758423,-1.5952941179275513,-1.3164269924163818,0.30448800325393677,-0.35782134532928467,-0.9678431153297424,0.02562091499567032,0.2522004246711731,-0.4798257052898407,-0.009237472899258137,0.07790849357843399,-0.1138126328587532,0.04305011034011841,-0.21838779747486115,0.3916339874267578,0.11276688426733017,0.04305011034011841,0.28705883026123047,0.8099346160888672,0.7053594589233398,-0.7064052224159241,-0.2881045639514923,0.008191721513867378,1.7859694957733154,1.507102370262146,1.1585185527801514,1.3850979804992676,2.1345534324645996,1.838257074356079,1.175947666168213,0.5310675501823425,1.977690577507019,0.49620914459228516,0.3916339874267578,0.7402178645133972,0.19991286098957062,1.210806131362915,-0.07895424962043762,-0.7586928009986877,1.6291067600250244,1.175947666168213,-0.305533766746521,2.5005664825439453,1.5593899488449097,1.8905446529388428,0.8622221946716309,-0.009237472899258137,0.4090631902217865,0.7750762701034546,1.3850979804992676,-0.5146840810775757,-0.1312418282032013,0.4090631902217865,0.6705011129379272,0.8099346160888672,0.11276688426733017,0.04305011034011841,-0.18352940678596497,0.008191721513867378,-0.5844008922576904,-0.14867103099822998,-0.5844008922576904,-0.5844008922576904,0.11276688426733017,0.28705883026123047,0.14762526750564575,0.8447930216789246,0.49620914459228516,0.966797411441803,0.9842265844345093,0.8970806002616882,-0.6366884708404541,0.09533768892288208,1.193376898765564,1.6291067600250244,0.8447930216789246,-0.23581700026988983,-0.7935512065887451,-0.305533766746521,-0.20095860958099365,-0.1312418282032013,0.3916339874267578,-0.09638344496488571,0.3916339874267578,0.4090631902217865,0.14762526750564575,0.49620914459228516,0.2696296274662018,0.32191720604896545,-0.009237472899258137,0.18248365819454193,0.09533768892288208,-0.06152505427598953,0.13019607961177826,-0.009237472899258137,0.02562091499567032,0.46135076880455017,-0.04409585893154144,0.7053594589233398,0.2696296274662018,0.5484967231750488,0.6879302859306335,0.9145098328590393,0.8622221946716309,0.8622221946716309,0.7576470375061035,0.5310675501823425,0.9319390058517456,0.6530718803405762,1.1410893201828003,0.8796514272689819,1.210806131362915,1.350239634513855,1.0016558170318604,1.036514163017273,1.0016558170318604,1.0888017416000366,0.8796514272689819,0.7576470375061035,1.036514163017273,1.4199564456939697,0.5484967231750488,0.8447930216789246],[1.3850979804992676,1.8731154203414917,1.4722440242767334,1.332810401916504,1.4373856782913208,1.5942484140396118,1.507102370262146,1.820827841758728,1.350239634513855,1.5768191814422607,1.663965106010437,1.8556863069534302,1.838257074356079,1.681394338607788,1.3153812885284424,1.507102370262146,1.5419608354568481,1.8556863069534302,1.2805228233337402,1.367668867111206,0.2522004246711731,-0.3229629695415497,0.8622221946716309,1.0190849304199219,1.6988235712051392,1.7685402631759644,1.820827841758728,2.0299782752990723,1.9254029989242554,1.524531602859497,0.49620914459228516,0.6007843017578125,0.6879302859306335,1.367668867111206,1.663965106010437,2.117124080657959,1.6291067600250244,1.367668867111206,1.6465359926223755,1.1410893201828003,0.49620914459228516,0.4439215660095215,0.16505447030067444,0.5659258961677551,1.4548147916793823,0.7925054430961609,0.3742047846317291,-0.5669716596603394,0.4439215660095215,-0.07895424962043762,0.47877994179725647,-0.21838779747486115,-0.8284096121788025,-0.7935512065887451,-0.8109803795814514,0.4264923632144928,-0.09638344496488571,-0.4972549080848694,-0.1138126328587532,0.3916339874267578,-0.37525054812431335,-0.21838779747486115,0.19991286098957062,0.8099346160888672,0.3567756116390228,0.5136383175849915,0.8099346160888672,-0.009237472899258137,-1.0724183320999146,-0.7761220335960388,-0.305533766746521,-0.3229629695415497,0.13019607961177826,-0.18352940678596497,-0.4798257052898407,-0.5146840810775757,-0.16610021889209747,-0.23581700026988983,-0.009237472899258137,0.02562091499567032,0.11276688426733017,-0.18352940678596497,-1.2118518352508545,-1.1247059106826782,-1.0724183320999146,0.7227886915206909,1.663965106010437,-0.6541176438331604,-1.351285457611084,0.02562091499567032,0.6007843017578125,1.4373856782913208,1.4199564456939697,0.6705011129379272,0.0604793019592762,-0.8458387851715088,-0.6715468168258667,-1.3164269924163818,-0.35782134532928467,0.8796514272689819,1.0713725090026855,-1.1944226026535034,-1.7172985076904297,-1.5430065393447876,-0.5321133136749268,-0.41010892391204834,-0.1312418282032013,0.02562091499567032,-0.7412636280059814,-0.09638344496488571,-0.41010892391204834,-0.02666666731238365,-0.09638344496488571,0.16505447030067444,0.11276688426733017,0.19991286098957062,0.19991286098957062,0.5484967231750488,0.2696296274662018,0.4090631902217865,0.008191721513867378,-0.18352940678596497,1.1585185527801514,1.0190849304199219,1.820827841758728,1.6116775274276733,1.2456644773483276,1.838257074356079,1.8556863069534302,1.838257074356079,1.6465359926223755,1.4722440242767334,0.33934640884399414,0.9145098328590393,1.7162526845932007,-0.1312418282032013,-0.5321133136749268,1.332810401916504,0.13019607961177826,-0.009237472899258137,0.7576470375061035,0.7925054430961609,0.2696296274662018,1.7336819171905518,0.6530718803405762,1.1062309741973877,-1.0549890995025635,1.9079738855361938,0.2522004246711731,0.8970806002616882,-0.16610021889209747,0.9319390058517456,1.6465359926223755,0.8970806002616882,0.6182135343551636,1.2456644773483276,-0.2532461881637573,-0.5321133136749268,-1.5255773067474365,-0.07895424962043762,-0.8458387851715088,-0.07895424962043762,-0.5495424866676331,0.11276688426733017,0.2173420488834381,-0.009237472899258137,0.5659258961677551,0.7750762701034546,0.9319390058517456,1.0190849304199219,1.4025272130966187,1.5942484140396118,-0.9678431153297424,-0.23581700026988983,1.1585185527801514,0.4090631902217865,0.6356427073478699,0.33934640884399414,0.2347712367773056,-0.2532461881637573,0.18248365819454193,-0.16610021889209747,0.14762526750564575,0.07790849357843399,0.32191720604896545,0.28705883026123047,0.3916339874267578,0.04305011034011841,0.7402178645133972,0.6182135343551636,0.16505447030067444,-0.009237472899258137,-0.02666666731238365,-0.06152505427598953,-0.009237472899258137,-0.270675390958786,0.33934640884399414,0.8273638486862183,0.13019607961177826,0.966797411441803,0.5310675501823425,0.18248365819454193,0.6530718803405762,0.7227886915206909,0.4264923632144928,0.8970806002616882,0.6705011129379272,0.9145098328590393,0.9842265844345093,0.9145098328590393,1.193376898765564,0.9842265844345093,1.1410893201828003,1.350239634513855,0.8622221946716309,1.367668867111206,1.1410893201828003,1.053943395614624,1.2282352447509766,0.7750762701034546,0.9842265844345093,0.9145098328590393,1.193376898765564,0.7750762701034546],[1.367668867111206,1.1236600875854492,0.9319390058517456,1.4548147916793823,1.4548147916793823,1.7511111497879028,1.6291067600250244,1.7685402631759644,1.4896732568740845,1.7336819171905518,1.6116775274276733,1.4025272130966187,1.663965106010437,1.4722440242767334,1.2630937099456787,1.7336819171905518,1.7162526845932007,1.210806131362915,1.2456644773483276,0.5833551287651062,0.11276688426733017,1.1062309741973877,1.4896732568740845,1.5593899488449097,1.9602614641189575,2.0299782752990723,1.977690577507019,1.8731154203414917,1.9254029989242554,1.1410893201828003,0.8099346160888672,0.8622221946716309,1.2456644773483276,2.047407388687134,1.6116775274276733,2.0299782752990723,2.1868410110473633,2.27398681640625,1.8905446529388428,1.524531602859497,1.9079738855361938,1.2282352447509766,1.350239634513855,1.0190849304199219,1.3153812885284424,0.4264923632144928,0.966797411441803,-0.21838779747486115,0.6879302859306335,-0.5669716596603394,-0.4972549080848694,-0.1312418282032013,-0.5844008922576904,-0.09638344496488571,-0.3229629695415497,0.3567756116390228,-0.3229629695415497,-0.270675390958786,-0.20095860958099365,0.7227886915206909,0.8447930216789246,-0.009237472899258137,0.30448800325393677,1.0190849304199219,0.47877994179725647,0.7576470375061035,0.3742047846317291,0.3916339874267578,-0.427538126707077,-0.5495424866676331,-0.5844008922576904,-0.20095860958099365,-0.427538126707077,-0.02666666731238365,-0.23581700026988983,-0.340392142534256,-0.09638344496488571,-0.270675390958786,-0.21838779747486115,0.16505447030067444,0.46135076880455017,0.09533768892288208,-0.2532461881637573,-0.5844008922576904,-0.4972549080848694,-1.2989978790283203,0.46135076880455017,0.5136383175849915,-0.37525054812431335,1.210806131362915,0.8622221946716309,1.367668867111206,1.9079738855361938,1.350239634513855,-0.02666666731238365,-1.5255773067474365,-1.4732897281646729,-1.647581696510315,-1.0549890995025635,-0.4972549080848694,-0.07895424962043762,0.14762526750564575,-1.5430065393447876,-1.7695860862731934,-1.0375598669052124,-0.8109803795814514,-0.4449673295021057,-0.4798257052898407,-0.619259238243103,0.008191721513867378,-0.09638344496488571,0.32191720604896545,-0.14867103099822998,-0.04409585893154144,0.11276688426733017,0.4090631902217865,0.0604793019592762,-0.04409585893154144,0.5310675501823425,0.8796514272689819,0.0604793019592762,-0.09638344496488571,1.0713725090026855,0.6705011129379272,1.4896732568740845,1.9428322315216064,1.1236600875854492,1.977690577507019,1.3850979804992676,1.332810401916504,1.5593899488449097,1.9254029989242554,1.2979520559310913,1.8905446529388428,1.053943395614624,0.9145098328590393,-0.09638344496488571,1.507102370262146,-0.23581700026988983,1.2979520559310913,1.2805228233337402,-0.02666666731238365,1.4896732568740845,0.6356427073478699,-0.009237472899258137,0.6705011129379272,1.3153812885284424,-1.246710181236267,-0.5669716596603394,-0.7586928009986877,0.9145098328590393,1.0888017416000366,-0.09638344496488571,0.3742047846317291,1.3850979804992676,-0.619259238243103,0.2173420488834381,-0.2881045639514923,-0.23581700026988983,-0.3229629695415497,-0.4798257052898407,-0.427538126707077,-0.462396502494812,0.2522004246711731,0.2696296274662018,-0.270675390958786,1.1062309741973877,1.2456644773483276,1.1410893201828003,0.8796514272689819,1.1585185527801514,-0.07895424962043762,1.2456644773483276,0.9145098328590393,0.7053594589233398,0.7227886915206909,-0.3229629695415497,0.07790849357843399,-0.07895424962043762,0.2522004246711731,0.14762526750564575,0.4439215660095215,0.02562091499567032,1.0713725090026855,0.30448800325393677,0.0604793019592762,0.5833551287651062,0.28705883026123047,0.02562091499567032,-0.16610021889209747,-0.07895424962043762,-0.1312418282032013,0.0604793019592762,-0.23581700026988983,-0.21838779747486115,0.16505447030067444,-0.009237472899258137,0.7053594589233398,1.1585185527801514,0.5659258961677551,0.7053594589233398,0.9842265844345093,0.8273638486862183,0.8970806002616882,0.6007843017578125,1.1236600875854492,0.6182135343551636,0.966797411441803,0.7750762701034546,0.8796514272689819,1.0016558170318604,0.8447930216789246,1.053943395614624,0.9493681788444519,0.8970806002616882,1.053943395614624,1.193376898765564,1.4548147916793823,1.210806131362915,0.8447930216789246,0.6007843017578125,0.33934640884399414,1.0016558170318604,0.8273638486862183],[1.9079738855361938,1.681394338607788,1.2282352447509766,1.350239634513855,1.9602614641189575,1.350239634513855,1.6116775274276733,1.9254029989242554,1.6465359926223755,1.7336819171905518,1.7685402631759644,1.4373856782913208,1.6988235712051392,1.7859694957733154,1.2805228233337402,1.9602614641189575,1.9602614641189575,1.2630937099456787,1.1585185527801514,0.16505447030067444,0.8796514272689819,1.4548147916793823,1.7859694957733154,1.4025272130966187,2.0299782752990723,2.0299782752990723,2.0125489234924316,2.2216992378234863,1.6291067600250244,1.7336819171905518,1.4548147916793823,1.5593899488449097,1.4025272130966187,1.7162526845932007,2.0996949672698975,2.1694116592407227,1.9602614641189575,1.8556863069534302,2.047407388687134,2.27398681640625,1.8556863069534302,1.2630937099456787,0.8622221946716309,0.7925054430961609,0.11276688426733017,-0.07895424962043762,0.11276688426733017,0.4439215660095215,0.07790849357843399,0.0604793019592762,-0.619259238243103,-0.35782134532928467,-0.5321133136749268,-0.4449673295021057,-0.6889760494232178,0.8622221946716309,0.2696296274662018,0.14762526750564575,-0.1138126328587532,0.5484967231750488,-0.02666666731238365,0.32191720604896545,1.193376898765564,0.6182135343551636,0.33934640884399414,0.7053594589233398,-0.14867103099822998,-0.4449673295021057,-0.39267975091934204,-0.270675390958786,-0.2881045639514923,-0.009237472899258137,0.02562091499567032,0.04305011034011841,-0.270675390958786,-0.2532461881637573,0.13019607961177826,0.18248365819454193,0.6007843017578125,0.4264923632144928,0.13019607961177826,0.47877994179725647,0.3916339874267578,-0.23581700026988983,-0.2532461881637573,-0.6715468168258667,-1.1072766780853271,-1.0201307535171509,0.32191720604896545,1.9951198101043701,0.8970806002616882,1.838257074356079,1.8731154203414917,0.8273638486862183,-1.5255773067474365,-0.5146840810775757,-1.6998692750930786,-1.804444432258606,-1.176993489265442,-1.4035730361938477,-0.462396502494812,-0.3229629695415497,-1.0724183320999146,-1.647581696510315,-1.7870151996612549,-0.9852723479270935,-0.7586928009986877,-0.14867103099822998,-0.06152505427598953,-0.21838779747486115,-0.305533766746521,0.13019607961177826,0.5484967231750488,0.32191720604896545,0.2696296274662018,0.16505447030067444,0.4090631902217865,0.14762526750564575,0.2522004246711731,0.6530718803405762,0.28705883026123047,-0.21838779747486115,1.2456644773483276,0.8273638486862183,1.1062309741973877,0.9842265844345093,1.036514163017273,2.3785619735717773,1.6988235712051392,1.6116775274276733,1.8731154203414917,1.681394338607788,1.2630937099456787,1.6988235712051392,1.5942484140396118,1.0888017416000366,-0.04409585893154144,1.1062309741973877,-0.4449673295021057,0.4439215660095215,0.7402178645133972,1.0190849304199219,0.2696296274662018,0.28705883026123047,0.9493681788444519,0.5833551287651062,0.46135076880455017,-0.5495424866676331,-0.8458387851715088,0.7576470375061035,1.0713725090026855,-0.6889760494232178,0.30448800325393677,-0.18352940678596497,0.11276688426733017,0.4264923632144928,-0.20095860958099365,-0.4798257052898407,-0.5495424866676331,-0.18352940678596497,-0.04409585893154144,0.46135076880455017,-0.18352940678596497,0.09533768892288208,-0.009237472899258137,0.5659258961677551,0.9842265844345093,1.210806131362915,0.8796514272689819,1.193376898765564,1.8033987283706665,1.0190849304199219,1.210806131362915,1.4199564456939697,1.8556863069534302,0.6879302859306335,0.46135076880455017,0.0604793019592762,-0.20095860958099365,0.008191721513867378,0.14762526750564575,0.02562091499567032,0.11276688426733017,0.2522004246711731,0.5310675501823425,0.7053594589233398,0.02562091499567032,0.7402178645133972,0.5484967231750488,0.7227886915206909,0.6530718803405762,0.13019607961177826,0.04305011034011841,-0.06152505427598953,0.09533768892288208,0.16505447030067444,0.14762526750564575,0.6879302859306335,0.008191721513867378,1.036514163017273,0.47877994179725647,0.30448800325393677,0.7402178645133972,0.5484967231750488,0.7053594589233398,0.9842265844345093,0.7576470375061035,0.8099346160888672,0.7750762701034546,0.8447930216789246,0.9493681788444519,0.9319390058517456,1.053943395614624,1.0888017416000366,1.332810401916504,1.210806131362915,1.1585185527801514,1.3153812885284424,1.4199564456939697,1.3850979804992676,0.7053594589233398,0.6705011129379272,0.7227886915206909,1.210806131362915],[1.367668867111206,1.350239634513855,1.5942484140396118,1.332810401916504,1.2456644773483276,1.350239634513855,1.7685402631759644,1.6988235712051392,1.7859694957733154,1.8033987283706665,1.820827841758728,1.7336819171905518,1.4896732568740845,1.507102370262146,1.367668867111206,1.2456644773483276,1.5419608354568481,1.6116775274276733,0.8447930216789246,1.2979520559310913,1.367668867111206,1.2282352447509766,1.4025272130966187,1.2630937099456787,1.507102370262146,1.5419608354568481,1.6988235712051392,1.681394338607788,2.0648365020751953,1.524531602859497,1.0888017416000366,1.820827841758728,1.7685402631759644,1.681394338607788,1.7685402631759644,2.204270124435425,2.117124080657959,2.0299782752990723,1.8033987283706665,1.9079738855361938,1.4025272130966187,1.820827841758728,0.7053594589233398,0.6356427073478699,-0.04409585893154144,0.3742047846317291,0.4264923632144928,0.9493681788444519,0.7576470375061035,0.3916339874267578,0.18248365819454193,-0.2532461881637573,-0.5495424866676331,0.19991286098957062,-1.0724183320999146,0.7925054430961609,0.6007843017578125,0.18248365819454193,-0.18352940678596497,0.07790849357843399,0.18248365819454193,1.524531602859497,1.2805228233337402,0.7750762701034546,-0.16610021889209747,0.07790849357843399,0.32191720604896545,-0.16610021889209747,-0.07895424962043762,-0.340392142534256,-0.06152505427598953,-0.06152505427598953,0.13019607961177826,0.11276688426733017,0.5484967231750488,-0.009237472899258137,0.07790849357843399,0.2347712367773056,0.9493681788444519,0.9319390058517456,0.4439215660095215,0.7750762701034546,0.16505447030067444,0.2522004246711731,0.0604793019592762,-0.20095860958099365,-0.1312418282032013,-0.340392142534256,-0.39267975091934204,-0.8284096121788025,1.6116775274276733,1.1236600875854492,1.4199564456939697,1.1410893201828003,-1.665010929107666,-1.0027015209197998,-1.665010929107666,-1.7521568536758423,-1.7172985076904297,-1.804444432258606,-0.7761220335960388,-1.5604357719421387,-0.340392142534256,-1.5952941179275513,-1.5430065393447876,-1.508148193359375,-1.2118518352508545,-1.246710181236267,0.04305011034011841,-0.06152505427598953,-0.20095860958099365,-0.1312418282032013,-0.18352940678596497,-0.1312418282032013,-0.16610021889209747,-0.02666666731238365,0.32191720604896545,0.02562091499567032,0.4439215660095215,0.3567756116390228,0.008191721513867378,-0.8981263637542725,0.47877994179725647,0.32191720604896545,0.11276688426733017,-0.6541176438331604,0.5484967231750488,1.9079738855361938,1.507102370262146,1.6465359926223755,1.6291067600250244,1.350239634513855,1.820827841758728,1.6116775274276733,1.2805228233337402,1.0190849304199219,1.9428322315216064,0.9319390058517456,2.239128589630127,0.2522004246711731,0.7925054430961609,1.4199564456939697,0.5136383175849915,-0.427538126707077,-1.2292810678482056,-0.39267975091934204,-0.39267975091934204,-0.7412636280059814,-1.2815686464309692,-0.7238343954086304,-0.8806971907615662,0.46135076880455017,0.19991286098957062,0.3567756116390228,0.4439215660095215,-0.2532461881637573,0.7750762701034546,0.18248365819454193,-0.8109803795814514,-1.6824400424957275,-0.2881045639514923,-0.1138126328587532,-0.07895424962043762,0.008191721513867378,0.2522004246711731,-0.009237472899258137,1.0190849304199219,1.4373856782913208,1.2282352447509766,1.4199564456939697,2.0299782752990723,1.507102370262146,1.6988235712051392,1.2630937099456787,0.5136383175849915,0.2347712367773056,-0.09638344496488571,-0.41010892391204834,-0.18352940678596497,0.18248365819454193,-0.09638344496488571,0.2347712367773056,0.5136383175849915,-0.4972549080848694,-0.04409585893154144,0.16505447030067444,0.2522004246711731,0.49620914459228516,0.5833551287651062,0.5136383175849915,0.04305011034011841,-0.2532461881637573,-0.02666666731238365,-0.02666666731238365,0.2173420488834381,-0.02666666731238365,0.7227886915206909,-0.02666666731238365,0.5659258961677551,0.7925054430961609,0.6705011129379272,0.7750762701034546,0.8796514272689819,0.966797411441803,0.7576470375061035,1.0713725090026855,0.7925054430961609,1.0888017416000366,0.9319390058517456,0.9493681788444519,0.8796514272689819,0.8447930216789246,1.0713725090026855,0.8273638486862183,1.053943395614624,1.2456644773483276,1.4025272130966187,1.4373856782913208,1.507102370262146,1.2456644773483276,1.3850979804992676,0.8622221946716309,0.49620914459228516,0.6356427073478699],[1.2979520559310913,1.681394338607788,1.7511111497879028,1.7685402631759644,1.5593899488449097,1.9428322315216064,1.8033987283706665,1.8033987283706665,1.7162526845932007,1.681394338607788,1.6291067600250244,1.7336819171905518,2.082265853881836,1.4722440242767334,1.9602614641189575,1.4548147916793823,1.4199564456939697,1.4025272130966187,1.1236600875854492,1.1062309741973877,1.0016558170318604,1.9254029989242554,0.7750762701034546,0.13019607961177826,0.8622221946716309,1.0190849304199219,1.7336819171905518,1.332810401916504,1.7511111497879028,1.7511111497879028,1.4896732568740845,1.1585185527801514,1.1585185527801514,0.3916339874267578,1.7685402631759644,1.7511111497879028,1.7859694957733154,2.0299782752990723,1.524531602859497,2.1694116592407227,2.0996949672698975,0.6007843017578125,1.2979520559310913,-0.09638344496488571,-0.21838779747486115,0.8273638486862183,-0.23581700026988983,0.008191721513867378,0.0604793019592762,1.053943395614624,-0.1312418282032013,0.2173420488834381,-0.16610021889209747,0.4439215660095215,-1.490718960762024,0.32191720604896545,0.4090631902217865,0.6182135343551636,0.6007843017578125,0.33934640884399414,0.2696296274662018,0.49620914459228516,0.6007843017578125,0.8622221946716309,-0.39267975091934204,-0.462396502494812,-0.16610021889209747,0.18248365819454193,-0.3229629695415497,0.008191721513867378,0.4090631902217865,0.14762526750564575,0.30448800325393677,0.3916339874267578,0.30448800325393677,0.47877994179725647,0.6356427073478699,0.32191720604896545,0.8622221946716309,0.5833551287651062,0.8447930216789246,0.966797411441803,0.3742047846317291,0.33934640884399414,0.3916339874267578,0.5659258961677551,0.6705011129379272,0.6007843017578125,0.2347712367773056,0.49620914459228516,0.4439215660095215,1.1585185527801514,0.4264923632144928,1.5419608354568481,-1.7172985076904297,-1.7870151996612549,-1.7870151996612549,-1.7870151996612549,-1.6998692750930786,-1.7172985076904297,-1.7347276210784912,-1.7172985076904297,-0.6018300652503967,-1.7695860862731934,-1.6998692750930786,-1.7521568536758423,-1.508148193359375,-1.804444432258606,-0.8981263637542725,-0.2532461881637573,-0.7064052224159241,-0.02666666731238365,-0.1138126328587532,-0.04409585893154144,0.13019607961177826,-0.340392142534256,0.5136383175849915,0.5659258961677551,0.13019607961177826,0.7750762701034546,0.14762526750564575,-0.5146840810775757,0.8273638486862183,0.32191720604896545,-0.6018300652503967,-0.9329847693443298,-0.8109803795814514,1.6988235712051392,1.8556863069534302,1.8905446529388428,1.7511111497879028,1.9602614641189575,1.663965106010437,1.4373856782913208,1.9079738855361938,1.053943395614624,0.8622221946716309,-0.305533766746521,0.0604793019592762,0.8447930216789246,1.5768191814422607,1.1062309741973877,1.4722440242767334,-0.07895424962043762,1.3153812885284424,-0.8981263637542725,-0.9155555367469788,-0.6018300652503967,-1.0724183320999146,-0.7935512065887451,0.5659258961677551,0.07790849357843399,0.09533768892288208,1.332810401916504,-1.1421350240707397,-0.06152505427598953,-0.6018300652503967,0.32191720604896545,0.16505447030067444,-1.2118518352508545,-1.3687145709991455,-1.0375598669052124,-1.4035730361938477,-0.6541176438331604,0.13019607961177826,0.3916339874267578,0.9842265844345093,1.3850979804992676,1.1410893201828003,1.6465359926223755,1.053943395614624,1.8556863069534302,1.4199564456939697,1.4722440242767334,1.2282352447509766,0.4090631902217865,-0.09638344496488571,0.13019607961177826,0.30448800325393677,0.32191720604896545,0.13019607961177826,0.2522004246711731,0.6530718803405762,0.32191720604896545,-0.04409585893154144,0.0604793019592762,0.16505447030067444,0.46135076880455017,0.6007843017578125,0.4439215660095215,0.5484967231750488,0.47877994179725647,0.28705883026123047,-0.009237472899258137,0.04305011034011841,0.14762526750564575,0.7750762701034546,0.6530718803405762,0.2347712367773056,0.7750762701034546,0.6530718803405762,0.3567756116390228,0.7227886915206909,0.8970806002616882,0.5484967231750488,0.7402178645133972,0.7402178645133972,0.9493681788444519,0.8273638486862183,0.9319390058517456,1.0016558170318604,1.2630937099456787,0.9842265844345093,1.0713725090026855,1.1062309741973877,1.0190849304199219,1.0016558170318604,1.0713725090026855,1.2805228233337402,1.350239634513855,1.2979520559310913,1.0190849304199219,0.8970806002616882,0.8273638486862183],[1.0888017416000366,1.4199564456939697,0.8796514272689819,1.367668867111206,1.5768191814422607,1.6291067600250244,1.4548147916793823,1.4722440242767334,1.8556863069534302,1.7859694957733154,1.7511111497879028,1.5593899488449097,1.7511111497879028,1.7162526845932007,1.681394338607788,1.507102370262146,1.1236600875854492,1.6988235712051392,0.9145098328590393,1.1585185527801514,1.507102370262146,1.663965106010437,1.332810401916504,2.3437037467956543,1.7859694957733154,1.175947666168213,0.2347712367773056,1.681394338607788,1.977690577507019,1.4373856782913208,1.977690577507019,1.2979520559310913,0.2173420488834381,1.193376898765564,0.8273638486862183,0.7925054430961609,0.7053594589233398,0.9145098328590393,1.1410893201828003,1.3153812885284424,0.13019607961177826,-0.427538126707077,1.2456644773483276,1.681394338607788,0.7402178645133972,0.7402178645133972,0.3916339874267578,0.8970806002616882,0.5136383175849915,0.7053594589233398,-0.39267975091934204,0.7576470375061035,0.3567756116390228,0.07790849357843399,-0.7412636280059814,-0.5669716596603394,0.2522004246711731,0.5659258961677551,0.32191720604896545,0.5659258961677551,0.966797411441803,0.11276688426733017,0.33934640884399414,1.0888017416000366,0.2347712367773056,-0.340392142534256,-0.7586928009986877,-0.270675390958786,-0.35782134532928467,-0.16610021889209747,0.09533768892288208,0.008191721513867378,-0.02666666731238365,0.49620914459228516,0.16505447030067444,0.7750762701034546,0.7053594589233398,0.5310675501823425,0.7402178645133972,0.9493681788444519,0.3916339874267578,0.49620914459228516,1.1062309741973877,0.8099346160888672,0.966797411441803,0.4439215660095215,0.7750762701034546,0.2696296274662018,0.4264923632144928,0.6356427073478699,0.49620914459228516,0.47877994179725647,-0.270675390958786,0.30448800325393677,-0.270675390958786,-1.7521568536758423,-1.804444432258606,-1.7870151996612549,-1.804444432258606,-1.7347276210784912,-1.6127233505249023,-1.246710181236267,-0.7412636280059814,-1.0375598669052124,-1.7521568536758423,-1.7695860862731934,-1.804444432258606,-1.6824400424957275,-0.6889760494232178,0.2696296274662018,-0.270675390958786,-0.5321133136749268,-0.23581700026988983,-0.02666666731238365,0.0604793019592762,0.32191720604896545,0.2347712367773056,-0.04409585893154144,0.6007843017578125,0.11276688426733017,-0.06152505427598953,-0.462396502494812,-0.4449673295021057,-0.5495424866676331,-1.1072766780853271,-0.9329847693443298,-1.0201307535171509,1.1236600875854492,1.7162526845932007,1.7859694957733154,2.27398681640625,1.8556863069534302,1.2630937099456787,1.2805228233337402,1.0190849304199219,1.7511111497879028,1.1062309741973877,1.350239634513855,1.4722440242767334,0.2696296274662018,0.6356427073478699,1.053943395614624,1.350239634513855,1.4025272130966187,1.7685402631759644,1.1410893201828003,1.367668867111206,-1.804444432258606,-0.8458387851715088,0.11276688426733017,-0.6715468168258667,0.3567756116390228,-0.7761220335960388,-0.7238343954086304,-0.7238343954086304,-0.5146840810775757,-1.4384313821792603,-0.06152505427598953,0.14762526750564575,-0.9155555367469788,0.16505447030067444,-0.4798257052898407,-0.619259238243103,-0.6715468168258667,-0.5146840810775757,-0.009237472899258137,1.5593899488449097,1.332810401916504,1.6988235712051392,1.5942484140396118,1.663965106010437,1.7336819171905518,1.7336819171905518,1.524531602859497,1.5593899488449097,-0.009237472899258137,-0.462396502494812,-0.16610021889209747,0.18248365819454193,0.33934640884399414,0.02562091499567032,-0.4449673295021057,0.0604793019592762,0.6182135343551636,0.07790849357843399,0.11276688426733017,0.5310675501823425,0.6879302859306335,1.1236600875854492,0.4264923632144928,0.5833551287651062,-0.02666666731238365,-0.2532461881637573,-0.1312418282032013,0.16505447030067444,-0.14867103099822998,0.2696296274662018,0.2696296274662018,0.6356427073478699,0.5659258961677551,0.5833551287651062,0.9493681788444519,0.7227886915206909,0.7576470375061035,0.8273638486862183,0.46135076880455017,0.6007843017578125,0.9145098328590393,0.6530718803405762,0.7925054430961609,1.0016558170318604,0.7925054430961609,1.2805228233337402,0.9319390058517456,1.210806131362915,1.1410893201828003,0.7750762701034546,1.2979520559310913,1.2630937099456787,1.210806131362915,1.2456644773483276,1.2805228233337402,1.332810401916504,0.7925054430961609],[0.6007843017578125,0.9145098328590393,1.367668867111206,1.2805228233337402,1.524531602859497,1.7685402631759644,1.6465359926223755,1.4548147916793823,1.820827841758728,1.7859694957733154,1.4896732568740845,1.524531602859497,1.4896732568740845,1.9951198101043701,2.0125489234924316,1.7685402631759644,1.7162526845932007,1.053943395614624,0.49620914459228516,0.5484967231750488,1.210806131362915,1.681394338607788,1.8556863069534302,1.7859694957733154,1.6988235712051392,1.0888017416000366,0.32191720604896545,-0.04409585893154144,0.9842265844345093,1.1585185527801514,1.663965106010437,1.524531602859497,0.9493681788444519,1.820827841758728,1.6465359926223755,1.2805228233337402,1.4199564456939697,1.193376898765564,1.332810401916504,0.6879302859306335,1.2805228233337402,-0.5844008922576904,-0.09638344496488571,1.524531602859497,0.2522004246711731,0.7227886915206909,0.47877994179725647,0.9319390058517456,0.5484967231750488,-0.2881045639514923,0.0604793019592762,0.8970806002616882,0.7576470375061035,0.5136383175849915,-0.427538126707077,-0.7412636280059814,-0.5321133136749268,-0.1312418282032013,0.07790849357843399,1.0016558170318604,0.9842265844345093,0.47877994179725647,0.8796514272689819,1.0190849304199219,0.3916339874267578,0.0604793019592762,-0.1312418282032013,-0.23581700026988983,0.09533768892288208,0.008191721513867378,0.0604793019592762,0.0604793019592762,0.30448800325393677,0.4264923632144928,-0.1138126328587532,0.8099346160888672,0.9319390058517456,0.8099346160888672,0.47877994179725647,0.3567756116390228,1.0888017416000366,0.7402178645133972,0.5484967231750488,0.7925054430961609,0.2173420488834381,0.7402178645133972,0.6705011129379272,0.6530718803405762,0.5659258961677551,0.4264923632144928,1.0016558170318604,-0.39267975091934204,0.7053594589233398,0.6530718803405762,-0.04409585893154144,-1.7870151996612549,-1.7870151996612549,-1.7870151996612549,-1.804444432258606,-1.804444432258606,-1.3687145709991455,-1.1247059106826782,-0.8109803795814514,-0.6366884708404541,-1.804444432258606,-1.7521568536758423,-1.6301524639129639,-1.6301524639129639,-1.089847445487976,-0.9504139423370361,-0.3229629695415497,-0.20095860958099365,0.4264923632144928,0.008191721513867378,0.30448800325393677,0.2696296274662018,0.47877994179725647,0.28705883026123047,0.8622221946716309,0.2522004246711731,0.32191720604896545,0.3916339874267578,0.30448800325393677,-1.2292810678482056,-1.0549890995025635,-0.9155555367469788,-1.2815686464309692,0.6182135343551636,1.4199564456939697,1.5593899488449097,1.9079738855361938,1.3153812885284424,1.2630937099456787,1.681394338607788,1.7685402631759644,0.7227886915206909,0.7925054430961609,1.2282352447509766,0.7053594589233398,-0.1312418282032013,0.5136383175849915,1.7859694957733154,1.9254029989242554,0.2696296274662018,0.9145098328590393,1.2630937099456787,1.8033987283706665,0.9493681788444519,-0.305533766746521,-1.6998692750930786,-1.2989978790283203,-1.508148193359375,-0.5669716596603394,-0.6366884708404541,-1.2641394138336182,-0.8458387851715088,-1.490718960762024,-0.5321133136749268,0.04305011034011841,-0.7761220335960388,-0.37525054812431335,-1.1595642566680908,-0.6018300652503967,-0.9678431153297424,0.5310675501823425,-0.18352940678596497,0.8447930216789246,1.210806131362915,1.9254029989242554,1.7685402631759644,1.8033987283706665,1.838257074356079,1.8905446529388428,1.210806131362915,0.2173420488834381,0.13019607961177826,-0.04409585893154144,0.0604793019592762,0.4439215660095215,0.14762526750564575,0.5659258961677551,0.2696296274662018,0.49620914459228516,-0.1312418282032013,0.09533768892288208,0.14762526750564575,0.49620914459228516,0.07790849357843399,0.4264923632144928,0.6530718803405762,-0.04409585893154144,0.13019607961177826,-0.09638344496488571,-0.462396502494812,-0.427538126707077,0.2173420488834381,0.30448800325393677,0.3916339874267578,1.4373856782913208,0.7576470375061035,0.7925054430961609,0.6530718803405762,0.8622221946716309,0.5310675501823425,0.8622221946716309,0.8970806002616882,1.0016558170318604,1.0713725090026855,1.053943395614624,0.6705011129379272,0.8622221946716309,1.1236600875854492,0.5659258961677551,0.9842265844345093,0.9319390058517456,1.0888017416000366,1.053943395614624,1.3153812885284424,1.036514163017273,1.0713725090026855,1.4722440242767334,1.4548147916793823,1.524531602859497,1.193376898765564],[1.4025272130966187,0.8622221946716309,1.2630937099456787,1.2282352447509766,1.9951198101043701,1.4199564456939697,1.681394338607788,2.0648365020751953,1.5768191814422607,1.9428322315216064,1.820827841758728,1.5419608354568481,1.7162526845932007,1.8556863069534302,1.524531602859497,1.6291067600250244,1.4025272130966187,0.3567756116390228,0.008191721513867378,-0.04409585893154144,0.0604793019592762,2.082265853881836,1.9602614641189575,1.8556863069534302,1.977690577507019,1.5419608354568481,0.46135076880455017,-0.39267975091934204,0.4090631902217865,-0.20095860958099365,1.1236600875854492,1.681394338607788,1.8556863069534302,1.6465359926223755,1.4548147916793823,1.5419608354568481,0.8622221946716309,1.2282352447509766,1.332810401916504,0.32191720604896545,0.2522004246711731,-1.0375598669052124,-0.4972549080848694,-0.18352940678596497,0.7576470375061035,0.8099346160888672,0.09533768892288208,1.4025272130966187,1.0016558170318604,-0.6018300652503967,0.2696296274662018,0.2173420488834381,0.2522004246711731,-0.02666666731238365,-0.4449673295021057,-0.7238343954086304,-0.8458387851715088,0.0604793019592762,0.9145098328590393,1.0190849304199219,0.9319390058517456,1.1410893201828003,0.2696296274662018,-0.20095860958099365,0.6356427073478699,-0.21838779747486115,0.09533768892288208,-0.16610021889209747,-0.427538126707077,0.008191721513867378,0.18248365819454193,-0.16610021889209747,0.07790849357843399,0.6007843017578125,0.49620914459228516,0.7402178645133972,0.6182135343551636,0.3742047846317291,0.4439215660095215,0.8099346160888672,1.053943395614624,0.7750762701034546,0.8099346160888672,0.32191720604896545,0.7750762701034546,0.9145098328590393,0.5833551287651062,0.2696296274662018,0.19991286098957062,0.19991286098957062,0.4090631902217865,0.7053594589233398,0.7925054430961609,0.6530718803405762,-0.14867103099822998,-1.804444432258606,-1.7347276210784912,-1.7521568536758423,-1.6301524639129639,-1.7870151996612549,-1.804444432258606,-1.5778648853302002,-0.427538126707077,-0.2881045639514923,-1.7172985076904297,-1.804444432258606,-1.665010929107666,-1.5952941179275513,-1.089847445487976,-1.4384313821792603,-0.4798257052898407,-0.4449673295021057,0.0604793019592762,0.16505447030067444,0.0604793019592762,0.3742047846317291,0.6879302859306335,0.2347712367773056,0.5136383175849915,0.6007843017578125,0.2173420488834381,1.210806131362915,-0.5146840810775757,-1.1944226026535034,-0.9155555367469788,-0.5669716596603394,-0.6889760494232178,1.0888017416000366,1.8731154203414917,1.3850979804992676,1.7511111497879028,1.175947666168213,1.5942484140396118,1.7685402631759644,1.4025272130966187,1.8033987283706665,1.1236600875854492,1.193376898765564,1.4025272130966187,1.0888017416000366,2.0648365020751953,2.117124080657959,1.8905446529388428,2.640000104904175,1.9951198101043701,0.30448800325393677,1.838257074356079,1.8731154203414917,0.9145098328590393,-1.1595642566680908,-0.09638344496488571,-0.7064052224159241,0.0604793019592762,-0.8109803795814514,-1.2292810678482056,-1.2815686464309692,-0.6889760494232178,-1.0375598669052124,0.33934640884399414,0.11276688426733017,-0.3229629695415497,-0.18352940678596497,0.3742047846317291,-0.14867103099822998,-0.18352940678596497,1.350239634513855,1.1585185527801514,1.1236600875854492,1.820827841758728,1.9602614641189575,1.7162526845932007,1.350239634513855,1.820827841758728,1.2630937099456787,-0.2532461881637573,-0.270675390958786,-0.20095860958099365,-0.02666666731238365,-0.009237472899258137,0.3916339874267578,0.02562091499567032,0.30448800325393677,0.16505447030067444,0.4090631902217865,0.14762526750564575,0.47877994179725647,0.28705883026123047,0.16505447030067444,0.3742047846317291,0.32191720604896545,0.49620914459228516,0.2347712367773056,0.0604793019592762,0.28705883026123047,0.2347712367773056,-0.09638344496488571,0.3742047846317291,0.47877994179725647,0.8447930216789246,0.30448800325393677,0.8447930216789246,0.8273638486862183,0.6530718803405762,0.7402178645133972,0.3567756116390228,1.193376898765564,0.6356427073478699,0.8447930216789246,1.053943395614624,1.0016558170318604,1.0888017416000366,0.7576470375061035,0.6705011129379272,1.0190849304199219,1.1062309741973877,1.0888017416000366,1.1236600875854492,1.053943395614624,1.1410893201828003,1.332810401916504,1.3850979804992676,1.6291067600250244,1.5593899488449097,1.4199564456939697],[1.036514163017273,0.7925054430961609,0.7576470375061035,1.2456644773483276,1.4896732568740845,1.3850979804992676,1.367668867111206,1.681394338607788,1.6291067600250244,1.6465359926223755,1.820827841758728,1.6291067600250244,1.7336819171905518,1.5768191814422607,1.507102370262146,1.663965106010437,1.332810401916504,0.966797411441803,0.6356427073478699,0.7053594589233398,0.47877994179725647,1.5419608354568481,1.193376898765564,1.3153812885284424,1.663965106010437,1.5593899488449097,1.332810401916504,-0.340392142534256,-1.351285457611084,-0.8981263637542725,0.5484967231750488,1.1410893201828003,1.7685402631759644,1.4896732568740845,0.6705011129379272,0.6879302859306335,-0.7761220335960388,0.966797411441803,1.524531602859497,0.9493681788444519,0.6356427073478699,-0.305533766746521,-0.5844008922576904,0.5659258961677551,1.350239634513855,1.053943395614624,0.6007843017578125,1.1062309741973877,-0.6541176438331604,-0.14867103099822998,0.7053594589233398,0.04305011034011841,-0.20095860958099365,0.18248365819454193,-0.305533766746521,-0.7761220335960388,-0.8632679581642151,-0.009237472899258137,0.49620914459228516,1.0888017416000366,1.0016558170318604,0.6007843017578125,-0.20095860958099365,0.5659258961677551,0.46135076880455017,-0.5844008922576904,-0.2532461881637573,-0.23581700026988983,0.3916339874267578,0.18248365819454193,0.3742047846317291,0.6356427073478699,0.3916339874267578,0.16505447030067444,0.09533768892288208,0.49620914459228516,0.19991286098957062,0.7227886915206909,0.5833551287651062,0.9493681788444519,0.3742047846317291,0.5136383175849915,0.7576470375061035,0.07790849357843399,0.6356427073478699,0.7227886915206909,0.7576470375061035,0.5136383175849915,0.8970806002616882,0.2696296274662018,-0.06152505427598953,0.18248365819454193,0.6007843017578125,0.4264923632144928,0.11276688426733017,-1.5778648853302002,-1.804444432258606,-1.804444432258606,0.47877994179725647,-1.804444432258606,-1.7347276210784912,-1.7695860862731934,-1.333856225013733,-1.5430065393447876,-0.9678431153297424,-1.4732897281646729,-1.4210021495819092,-1.6824400424957275,-1.1944226026535034,-0.9852723479270935,-0.7238343954086304,-0.1138126328587532,0.04305011034011841,0.5659258961677551,0.11276688426733017,0.33934640884399414,1.2630937099456787,1.1410893201828003,0.47877994179725647,0.5833551287651062,1.6116775274276733,1.6116775274276733,-0.462396502494812,-1.0724183320999146,-1.2118518352508545,-0.8806971907615662,-1.1421350240707397,1.332810401916504,2.047407388687134,1.4373856782913208,1.838257074356079,1.3850979804992676,1.681394338607788,1.7859694957733154,1.8033987283706665,1.350239634513855,1.4548147916793823,1.8033987283706665,0.7576470375061035,1.9254029989242554,1.175947666168213,1.6988235712051392,0.6356427073478699,1.7685402631759644,1.9079738855361938,1.4025272130966187,1.6465359926223755,-1.4558606147766113,0.7925054430961609,-0.04409585893154144,-1.0027015209197998,-0.8458387851715088,-0.14867103099822998,0.2696296274662018,-0.9678431153297424,-0.9155555367469788,-1.351285457611084,-0.9504139423370361,-0.8284096121788025,0.33934640884399414,-0.6366884708404541,-1.2641394138336182,-0.6715468168258667,-0.06152505427598953,0.6007843017578125,-0.20095860958099365,0.9319390058517456,1.2630937099456787,1.7162526845932007,1.9079738855361938,1.524531602859497,1.8731154203414917,1.8905446529388428,1.5942484140396118,0.49620914459228516,-0.20095860958099365,-0.1138126328587532,-0.1312418282032013,0.11276688426733017,-0.16610021889209747,0.3916339874267578,0.11276688426733017,-0.06152505427598953,0.3916339874267578,0.4090631902217865,0.008191721513867378,0.5136383175849915,0.02562091499567032,0.14762526750564575,0.2347712367773056,0.5310675501823425,0.11276688426733017,-0.02666666731238365,0.30448800325393677,-0.07895424962043762,-0.09638344496488571,0.02562091499567032,0.33934640884399414,1.175947666168213,0.7227886915206909,1.036514163017273,0.5833551287651062,0.7402178645133972,0.8273638486862183,0.8970806002616882,0.8447930216789246,1.1062309741973877,0.46135076880455017,0.6182135343551636,1.4373856782913208,0.8796514272689819,0.7925054430961609,1.1062309741973877,1.1585185527801514,0.7925054430961609,1.0888017416000366,1.1585185527801514,0.9493681788444519,1.2630937099456787,0.7402178645133972,1.332810401916504,1.367668867111206,1.2630937099456787,1.681394338607788],[0.8622221946716309,0.4439215660095215,1.2630937099456787,0.966797411441803,1.4025272130966187,1.8556863069534302,1.7685402631759644,1.8033987283706665,1.977690577507019,1.8905446529388428,1.8033987283706665,1.7511111497879028,1.6465359926223755,1.5419608354568481,1.367668867111206,1.4722440242767334,1.2805228233337402,0.7053594589233398,0.47877994179725647,-0.340392142534256,0.13019607961177826,1.1585185527801514,0.3742047846317291,-0.04409585893154144,1.1062309741973877,1.175947666168213,0.9842265844345093,0.07790849357843399,-0.7761220335960388,-0.8458387851715088,-0.340392142534256,0.2696296274662018,1.367668867111206,1.2805228233337402,1.4199564456939697,0.8273638486862183,-1.0724183320999146,-0.7412636280059814,0.33934640884399414,0.6879302859306335,1.2282352447509766,0.4439215660095215,-0.5146840810775757,0.7053594589233398,0.7750762701034546,1.193376898765564,-0.009237472899258137,1.0888017416000366,0.13019607961177826,-0.7238343954086304,0.4090631902217865,0.5310675501823425,0.3742047846317291,0.2347712367773056,-0.07895424962043762,-0.3229629695415497,-0.340392142534256,0.2522004246711731,0.49620914459228516,0.5310675501823425,1.0190849304199219,0.6530718803405762,0.5484967231750488,-0.09638344496488571,-0.270675390958786,-0.4972549080848694,0.11276688426733017,-0.14867103099822998,0.008191721513867378,0.2696296274662018,0.16505447030067444,0.2522004246711731,-0.340392142534256,0.32191720604896545,0.5310675501823425,0.3742047846317291,0.9319390058517456,0.6530718803405762,0.6705011129379272,0.5833551287651062,1.0016558170318604,0.7402178645133972,0.6182135343551636,0.5659258961677551,0.5484967231750488,0.5484967231750488,0.7576470375061035,0.2347712367773056,0.7750762701034546,0.8796514272689819,0.3916339874267578,0.04305011034011841,0.7925054430961609,0.6530718803405762,0.6182135343551636,-1.1247059106826782,-1.647581696510315,0.008191721513867378,1.2805228233337402,-1.804444432258606,-1.804444432258606,-1.7172985076904297,-1.4210021495819092,-1.3164269924163818,-0.5146840810775757,-1.1072766780853271,-1.3687145709991455,-1.1072766780853271,-0.8981263637542725,-0.23581700026988983,-0.4798257052898407,-0.07895424962043762,0.2173420488834381,0.2173420488834381,0.46135076880455017,0.5136383175849915,0.04305011034011841,0.8970806002616882,0.18248365819454193,0.7402178645133972,1.5593899488449097,1.2805228233337402,-1.1421350240707397,-0.2532461881637573,-1.1072766780853271,-0.37525054812431335,-1.2292810678482056,1.663965106010437,1.4373856782913208,1.7162526845932007,1.367668867111206,1.507102370262146,1.1585185527801514,1.2630937099456787,1.4722440242767334,1.2630937099456787,1.332810401916504,1.5593899488449097,1.2979520559310913,1.0713725090026855,1.838257074356079,0.8970806002616882,1.7336819171905518,1.7511111497879028,1.4373856782913208,1.3850979804992676,2.5702831745147705,1.9602614641189575,0.0604793019592762,1.5768191814422607,-0.14867103099822998,0.5136383175849915,-1.246710181236267,-1.0724183320999146,0.02562091499567032,-1.0375598669052124,-1.2292810678482056,-1.508148193359375,-1.2641394138336182,-0.5669716596603394,-0.4449673295021057,-0.8806971907615662,0.0604793019592762,0.9493681788444519,1.1410893201828003,1.7859694957733154,0.5659258961677551,0.5659258961677551,1.4896732568740845,1.8905446529388428,1.9079738855361938,1.9254029989242554,1.6116775274276733,1.3850979804992676,0.7402178645133972,0.07790849357843399,0.2522004246711731,0.18248365819454193,-0.07895424962043762,0.11276688426733017,0.0604793019592762,0.30448800325393677,-0.09638344496488571,0.5833551287651062,0.04305011034011841,0.5659258961677551,0.5136383175849915,0.5310675501823425,0.30448800325393677,0.7576470375061035,0.33934640884399414,0.28705883026123047,0.04305011034011841,0.18248365819454193,0.11276688426733017,0.11276688426733017,0.5310675501823425,0.13019607961177826,0.3742047846317291,0.7053594589233398,0.6182135343551636,0.6182135343551636,0.9319390058517456,0.8622221946716309,0.8796514272689819,0.9842265844345093,0.7576470375061035,1.036514163017273,0.9842265844345093,0.7576470375061035,1.0016558170318604,0.8447930216789246,0.5659258961677551,0.9842265844345093,0.966797411441803,0.966797411441803,1.053943395614624,1.2805228233337402,0.8273638486862183,1.175947666168213,1.1585185527801514,1.524531602859497,1.367668867111206,1.2805228233337402],[0.6007843017578125,0.5310675501823425,0.5484967231750488,1.0888017416000366,1.2456644773483276,1.524531602859497,1.681394338607788,1.2979520559310913,1.820827841758728,1.8905446529388428,1.5942484140396118,1.9428322315216064,1.6116775274276733,1.5768191814422607,1.210806131362915,0.8099346160888672,0.02562091499567032,-0.41010892391204834,-0.5844008922576904,0.33934640884399414,0.6530718803405762,0.5136383175849915,-0.06152505427598953,0.13019607961177826,-0.16610021889209747,0.008191721513867378,-0.4972549080848694,-0.4449673295021057,0.6530718803405762,0.14762526750564575,0.18248365819454193,-0.06152505427598953,0.9493681788444519,0.09533768892288208,-0.427538126707077,-0.04409585893154144,-0.8109803795814514,-1.6998692750930786,-0.9155555367469788,-1.3164269924163818,-0.16610021889209747,0.47877994179725647,0.3742047846317291,-0.6715468168258667,0.19991286098957062,0.4439215660095215,0.6007843017578125,0.2522004246711731,0.19991286098957062,0.46135076880455017,-0.1312418282032013,0.46135076880455017,0.07790849357843399,0.3916339874267578,0.7750762701034546,0.07790849357843399,0.19991286098957062,0.8099346160888672,1.0190849304199219,1.0016558170318604,0.2522004246711731,0.8970806002616882,0.6356427073478699,-0.270675390958786,-0.5321133136749268,-0.04409585893154144,-0.1138126328587532,-0.04409585893154144,0.30448800325393677,0.33934640884399414,0.47877994179725647,0.7053594589233398,0.6007843017578125,0.33934640884399414,0.11276688426733017,0.6705011129379272,0.6007843017578125,0.47877994179725647,0.8796514272689819,0.5484967231750488,0.7227886915206909,0.7053594589233398,0.5833551287651062,0.7750762701034546,0.7750762701034546,0.6705011129379272,0.9145098328590393,0.5484967231750488,1.175947666168213,0.7053594589233398,0.4264923632144928,0.30448800325393677,0.8622221946716309,0.5833551287651062,0.32191720604896545,-0.09638344496488571,-1.6824400424957275,0.16505447030067444,0.6530718803405762,-1.4732897281646729,-1.6824400424957275,-1.5778648853302002,-1.7695860862731934,-1.5778648853302002,-0.462396502494812,-1.0201307535171509,-0.7412636280059814,-0.5495424866676331,-0.340392142534256,-0.5495424866676331,0.2173420488834381,0.2522004246711731,0.2347712367773056,-0.02666666731238365,0.2522004246711731,0.3567756116390228,-0.009237472899258137,0.2522004246711731,0.5136383175849915,1.3850979804992676,0.9493681788444519,1.1062309741973877,-1.1595642566680908,-0.8109803795814514,-1.1944226026535034,-0.4972549080848694,-0.6366884708404541,1.5593899488449097,1.524531602859497,1.5942484140396118,1.681394338607788,2.047407388687134,1.4199564456939697,1.820827841758728,1.4025272130966187,1.2630937099456787,1.0190849304199219,1.5768191814422607,1.820827841758728,2.0125489234924316,0.966797411441803,0.3567756116390228,1.175947666168213,1.8731154203414917,1.1585185527801514,0.6705011129379272,1.663965106010437,0.7576470375061035,1.0713725090026855,1.9602614641189575,-0.340392142534256,1.7336819171905518,-1.2989978790283203,-0.1312418282032013,-0.9852723479270935,-1.1072766780853271,-1.5778648853302002,-1.1247059106826782,-1.2989978790283203,-1.0375598669052124,-0.270675390958786,-0.8981263637542725,-0.6889760494232178,0.02562091499567032,0.4090631902217865,0.6705011129379272,0.9842265844345093,1.2805228233337402,1.5942484140396118,1.6116775274276733,1.9254029989242554,1.7511111497879028,1.7511111497879028,1.350239634513855,0.9493681788444519,-0.07895424962043762,0.14762526750564575,-0.09638344496488571,0.32191720604896545,0.0604793019592762,0.2522004246711731,0.09533768892288208,-0.02666666731238365,0.6530718803405762,0.7227886915206909,0.4264923632144928,0.04305011034011841,0.2347712367773056,0.33934640884399414,0.2696296274662018,0.19991286098957062,0.28705883026123047,0.2696296274662018,-0.18352940678596497,-0.14867103099822998,0.16505447030067444,0.008191721513867378,0.5136383175849915,0.8447930216789246,0.3916339874267578,1.036514163017273,0.6182135343551636,0.8447930216789246,0.9842265844345093,0.6705011129379272,0.9145098328590393,1.210806131362915,1.3850979804992676,0.9842265844345093,0.6879302859306335,1.0888017416000366,0.9319390058517456,0.7750762701034546,1.1236600875854492,1.0190849304199219,1.1236600875854492,1.1236600875854492,1.1062309741973877,1.2282352447509766,1.1410893201828003,1.053943395614624,1.350239634513855,1.8033987283706665,1.5768191814422607],[0.30448800325393677,0.6182135343551636,0.6182135343551636,0.8099346160888672,0.966797411441803,1.1585185527801514,1.2805228233337402,1.6116775274276733,1.6465359926223755,1.8033987283706665,1.2456644773483276,1.8033987283706665,1.4373856782913208,1.524531602859497,0.9319390058517456,0.11276688426733017,0.2347712367773056,-0.09638344496488571,-0.6366884708404541,-0.20095860958099365,1.3153812885284424,1.5593899488449097,1.2456644773483276,1.350239634513855,0.7227886915206909,-0.7586928009986877,-0.5321133136749268,-0.04409585893154144,1.2979520559310913,0.8970806002616882,0.49620914459228516,0.008191721513867378,-0.18352940678596497,-1.5255773067474365,-1.1421350240707397,0.02562091499567032,0.14762526750564575,-1.1944226026535034,-0.6889760494232178,-0.7064052224159241,0.2696296274662018,1.2456644773483276,1.053943395614624,0.4264923632144928,-0.16610021889209747,-1.0201307535171509,1.2282352447509766,0.7750762701034546,0.7750762701034546,0.07790849357843399,0.04305011034011841,0.4264923632144928,0.5659258961677551,0.2347712367773056,-0.619259238243103,-0.04409585893154144,1.4373856782913208,0.8273638486862183,1.053943395614624,0.46135076880455017,-0.14867103099822998,0.14762526750564575,0.6182135343551636,-0.305533766746521,-0.37525054812431335,0.19991286098957062,0.11276688426733017,0.28705883026123047,-0.009237472899258137,0.5310675501823425,0.32191720604896545,0.09533768892288208,0.33934640884399414,0.7053594589233398,0.4090631902217865,0.5659258961677551,0.46135076880455017,0.47877994179725647,1.1585185527801514,0.3916339874267578,0.6530718803405762,0.33934640884399414,0.3567756116390228,0.5484967231750488,0.6879302859306335,0.7053594589233398,0.7402178645133972,0.8447930216789246,0.7925054430961609,0.3742047846317291,0.2696296274662018,1.1585185527801514,0.9319390058517456,0.32191720604896545,0.7402178645133972,0.3567756116390228,-1.7172985076904297,-0.8284096121788025,-0.20095860958099365,-1.6998692750930786,-1.7695860862731934,-0.18352940678596497,-1.5778648853302002,-1.6301524639129639,-1.4035730361938477,-0.5495424866676331,-0.427538126707077,-0.4972549080848694,0.11276688426733017,0.13019607961177826,0.18248365819454193,0.13019607961177826,0.30448800325393677,0.7402178645133972,0.09533768892288208,0.3916339874267578,0.2173420488834381,0.2522004246711731,0.7750762701034546,1.6116775274276733,1.332810401916504,0.6879302859306335,-1.4035730361938477,-1.4384313821792603,-1.4732897281646729,-0.9504139423370361,0.13019607961177826,1.5768191814422607,1.7859694957733154,1.2805228233337402,1.681394338607788,1.193376898765564,1.5419608354568481,1.6465359926223755,1.6291067600250244,1.524531602859497,1.7685402631759644,1.5942484140396118,1.036514163017273,1.2805228233337402,0.30448800325393677,1.367668867111206,0.7750762701034546,-0.1138126328587532,-0.14867103099822998,0.28705883026123047,-0.305533766746521,-0.09638344496488571,0.19991286098957062,-0.340392142534256,0.8447930216789246,0.30448800325393677,-0.9155555367469788,-0.6018300652503967,-1.2815686464309692,-0.16610021889209747,-0.6889760494232178,-1.1072766780853271,-0.8806971907615662,-0.9155555367469788,-1.4035730361938477,-0.340392142534256,-0.7935512065887451,-0.9678431153297424,1.2979520559310913,1.053943395614624,1.4199564456939697,0.8970806002616882,1.210806131362915,1.7162526845932007,1.838257074356079,1.8731154203414917,1.9602614641189575,1.3153812885284424,1.0713725090026855,0.008191721513867378,0.0604793019592762,0.13019607961177826,0.0604793019592762,-0.07895424962043762,0.18248365819454193,0.07790849357843399,0.47877994179725647,0.6007843017578125,0.7750762701034546,0.49620914459228516,0.4090631902217865,0.6705011129379272,0.4090631902217865,0.2696296274662018,0.5484967231750488,0.2347712367773056,0.008191721513867378,-0.16610021889209747,0.02562091499567032,0.2347712367773056,0.8622221946716309,0.4090631902217865,0.6879302859306335,0.8622221946716309,0.6356427073478699,1.1410893201828003,0.7925054430961609,0.6705011129379272,1.053943395614624,0.9493681788444519,0.8447930216789246,1.1585185527801514,0.8796514272689819,1.0713725090026855,1.053943395614624,0.9493681788444519,0.9493681788444519,1.175947666168213,1.036514163017273,1.1585185527801514,0.9319390058517456,1.0713725090026855,1.2282352447509766,1.053943395614624,1.175947666168213,1.0713725090026855,0.8796514272689819,1.6291067600250244],[0.2522004246711731,0.3916339874267578,0.5136383175849915,0.5310675501823425,0.8970806002616882,1.332810401916504,1.4722440242767334,1.332810401916504,1.5942484140396118,1.507102370262146,1.524531602859497,1.7511111497879028,1.2805228233337402,1.350239634513855,0.8796514272689819,-0.009237472899258137,-0.009237472899258137,0.5833551287651062,0.16505447030067444,-0.41010892391204834,0.47877994179725647,1.332810401916504,1.2805228233337402,1.7859694957733154,1.4025272130966187,1.053943395614624,0.7750762701034546,0.5310675501823425,1.0190849304199219,1.210806131362915,1.3850979804992676,-0.5669716596603394,-1.1421350240707397,-1.4732897281646729,-1.176993489265442,1.1410893201828003,1.4025272130966187,1.9254029989242554,1.0016558170318604,1.4025272130966187,2.082265853881836,1.7336819171905518,1.4025272130966187,1.053943395614624,0.3916339874267578,-0.02666666731238365,-0.5669716596603394,0.46135076880455017,-0.7412636280059814,-0.09638344496488571,-0.14867103099822998,-0.1312418282032013,0.3567756116390228,-0.06152505427598953,-0.09638344496488571,0.8622221946716309,1.0016558170318604,1.2630937099456787,0.3916339874267578,0.47877994179725647,0.14762526750564575,-0.21838779747486115,-0.5321133136749268,-0.04409585893154144,0.11276688426733017,-0.3229629695415497,0.0604793019592762,0.5659258961677551,0.6879302859306335,0.5659258961677551,0.7227886915206909,0.3916339874267578,0.6705011129379272,0.5136383175849915,0.2696296274662018,0.5136383175849915,0.8273638486862183,0.32191720604896545,0.49620914459228516,0.5310675501823425,0.6356427073478699,0.6530718803405762,0.18248365819454193,0.6356427073478699,0.8447930216789246,0.6530718803405762,0.6705011129379272,0.5833551287651062,0.9493681788444519,0.8622221946716309,0.4090631902217865,0.4264923632144928,1.053943395614624,0.7402178645133972,0.47877994179725647,0.5659258961677551,-1.4384313821792603,-1.804444432258606,-1.7695860862731934,-1.7695860862731934,-1.3687145709991455,-0.5669716596603394,-1.7347276210784912,-1.7347276210784912,-1.6824400424957275,-0.619259238243103,-0.340392142534256,0.2173420488834381,0.07790849357843399,-0.16610021889209747,0.2347712367773056,0.11276688426733017,0.3567756116390228,0.0604793019592762,0.30448800325393677,0.14762526750564575,0.8622221946716309,0.6879302859306335,1.663965106010437,1.7511111497879028,0.6007843017578125,-0.5669716596603394,-1.6998692750930786,-1.5952941179275513,-0.6889760494232178,-1.1595642566680908,-1.3164269924163818,1.053943395614624,0.7750762701034546,1.053943395614624,1.0888017416000366,0.7227886915206909,0.6182135343551636,0.7576470375061035,0.3742047846317291,1.2630937099456787,0.5659258961677551,0.7402178645133972,0.04305011034011841,0.008191721513867378,-0.8458387851715088,-0.06152505427598953,0.07790849357843399,-0.8109803795814514,-0.8981263637542725,0.14762526750564575,0.49620914459228516,-0.270675390958786,-1.4210021495819092,-0.305533766746521,-0.2881045639514923,-0.1312418282032013,-0.4972549080848694,-0.02666666731238365,0.7576470375061035,-0.35782134532928467,-0.6541176438331604,-1.0027015209197998,-1.176993489265442,-1.351285457611084,-1.089847445487976,-1.0375598669052124,-0.9504139423370361,-0.6366884708404541,0.5136383175849915,-0.7935512065887451,1.036514163017273,1.0713725090026855,0.19991286098957062,1.0016558170318604,1.8905446529388428,1.7162526845932007,1.6465359926223755,0.7053594589233398,-0.6366884708404541,0.7053594589233398,0.4439215660095215,0.2522004246711731,0.07790849357843399,0.3916339874267578,0.4264923632144928,0.4090631902217865,0.07790849357843399,0.2522004246711731,0.2522004246711731,0.4264923632144928,0.4090631902217865,0.6182135343551636,0.47877994179725647,0.46135076880455017,0.8796514272689819,0.5484967231750488,0.2696296274662018,0.28705883026123047,-0.06152505427598953,0.19991286098957062,0.46135076880455017,0.8099346160888672,0.7576470375061035,1.0888017416000366,0.8447930216789246,0.8622221946716309,0.9319390058517456,0.6879302859306335,0.8622221946716309,1.0713725090026855,1.0190849304199219,1.350239634513855,1.036514163017273,1.0713725090026855,1.1410893201828003,1.0016558170318604,1.0888017416000366,1.3153812885284424,1.1410893201828003,1.1410893201828003,1.1585185527801514,1.0190849304199219,1.0713725090026855,0.7750762701034546,1.175947666168213,0.9493681788444519,1.2805228233337402,1.350239634513855],[0.7402178645133972,0.3916339874267578,0.008191721513867378,0.18248365819454193,0.6007843017578125,0.7402178645133972,0.7750762701034546,1.2456644773483276,1.7685402631759644,1.524531602859497,1.5419608354568481,1.681394338607788,1.7162526845932007,1.4199564456939697,1.4025272130966187,0.3742047846317291,0.0604793019592762,0.9145098328590393,1.0888017416000366,0.6530718803405762,-0.8981263637542725,0.11276688426733017,1.367668867111206,1.3153812885284424,1.8556863069534302,1.350239634513855,1.2805228233337402,0.7227886915206909,0.16505447030067444,0.966797411441803,1.838257074356079,1.4373856782913208,0.7750762701034546,-1.5778648853302002,-1.3861438035964966,-0.7761220335960388,1.6116775274276733,1.9428322315216064,1.350239634513855,1.9428322315216064,1.7685402631759644,1.681394338607788,0.8273638486862183,1.1236600875854492,1.1062309741973877,1.0016558170318604,0.19991286098957062,-0.6366884708404541,-0.4449673295021057,-0.427538126707077,0.04305011034011841,-0.09638344496488571,0.46135076880455017,0.14762526750564575,0.07790849357843399,0.6182135343551636,1.0016558170318604,1.2630937099456787,0.7750762701034546,0.8099346160888672,0.49620914459228516,-0.270675390958786,-0.07895424962043762,-0.270675390958786,-0.14867103099822998,-0.16610021889209747,0.13019607961177826,0.2173420488834381,-0.04409585893154144,-0.23581700026988983,0.11276688426733017,0.6182135343551636,0.3567756116390228,0.3742047846317291,0.5136383175849915,0.8796514272689819,0.6182135343551636,0.7925054430961609,0.7227886915206909,0.7402178645133972,0.6182135343551636,0.4439215660095215,0.4090631902217865,0.6007843017578125,0.7750762701034546,0.5833551287651062,0.8796514272689819,0.8796514272689819,0.6007843017578125,0.6705011129379272,0.5484967231750488,1.0016558170318604,0.6879302859306335,0.9493681788444519,0.7925054430961609,0.8447930216789246,0.2347712367773056,-1.1944226026535034,-1.804444432258606,-1.804444432258606,-1.665010929107666,-1.6127233505249023,-1.804444432258606,-1.804444432258606,-1.6127233505249023,-0.4449673295021057,-0.16610021889209747,0.16505447030067444,-0.04409585893154144,0.19991286098957062,0.18248365819454193,0.4090631902217865,0.5484967231750488,0.30448800325393677,-0.1138126328587532,0.2522004246711731,0.47877994179725647,1.4548147916793823,1.507102370262146,1.350239634513855,0.47877994179725647,-0.5146840810775757,-1.3164269924163818,-1.4035730361938477,-1.176993489265442,-1.089847445487976,-0.305533766746521,-0.02666666731238365,-0.6366884708404541,0.47877994179725647,-0.2881045639514923,-0.462396502494812,0.2696296274662018,0.5136383175849915,-0.06152505427598953,-0.009237472899258137,-0.16610021889209747,-0.6889760494232178,-1.246710181236267,-1.089847445487976,-1.3164269924163818,0.6530718803405762,-0.16610021889209747,-0.7412636280059814,0.8970806002616882,-0.7586928009986877,0.8099346160888672,0.6879302859306335,-0.9329847693443298,-0.9852723479270935,-0.2532461881637573,-1.089847445487976,-0.6715468168258667,-0.5146840810775757,-0.04409585893154144,-1.0549890995025635,-0.6541176438331604,-0.6715468168258667,-0.16610021889209747,0.16505447030067444,-0.9329847693443298,-0.6541176438331604,-0.35782134532928467,-1.647581696510315,-0.5669716596603394,0.14762526750564575,0.49620914459228516,0.9319390058517456,0.5659258961677551,1.4199564456939697,1.7511111497879028,1.7162526845932007,1.1585185527801514,0.8447930216789246,-0.8109803795814514,0.33934640884399414,1.5942484140396118,0.2696296274662018,-0.1138126328587532,0.09533768892288208,-0.14867103099822998,0.2173420488834381,0.3742047846317291,0.02562091499567032,0.2347712367773056,0.7227886915206909,0.02562091499567032,0.30448800325393677,0.5833551287651062,0.8622221946716309,0.6705011129379272,0.49620914459228516,0.4439215660095215,0.13019607961177826,0.5136383175849915,0.49620914459228516,0.5484967231750488,0.7227886915206909,1.0016558170318604,0.7402178645133972,0.8622221946716309,0.966797411441803,0.5833551287651062,0.8622221946716309,1.0190849304199219,0.9145098328590393,1.0713725090026855,0.8447930216789246,1.175947666168213,1.210806131362915,0.9842265844345093,0.966797411441803,1.1410893201828003,1.0888017416000366,0.8447930216789246,1.3153812885284424,1.4199564456939697,0.9493681788444519,1.1062309741973877,0.9145098328590393,1.1236600875854492,1.2805228233337402,1.4548147916793823,1.053943395614624],[0.33934640884399414,-0.009237472899258137,0.18248365819454193,0.3742047846317291,0.28705883026123047,0.2522004246711731,1.036514163017273,1.350239634513855,1.4199564456939697,1.193376898765564,1.6291067600250244,1.5942484140396118,1.6291067600250244,0.7227886915206909,0.9319390058517456,0.3742047846317291,-0.6715468168258667,0.7576470375061035,1.4025272130966187,1.524531602859497,1.2456644773483276,-0.09638344496488571,0.7925054430961609,0.5659258961677551,0.33934640884399414,-0.270675390958786,-0.21838779747486115,0.008191721513867378,0.49620914459228516,0.8447930216789246,1.1236600875854492,1.663965106010437,0.9842265844345093,-0.7064052224159241,-0.5321133136749268,1.663965106010437,1.6291067600250244,1.8731154203414917,1.7336819171905518,2.3262743949890137,2.204270124435425,2.0299782752990723,0.7227886915206909,0.7925054430961609,0.46135076880455017,1.3850979804992676,1.036514163017273,0.33934640884399414,0.16505447030067444,0.5659258961677551,0.8970806002616882,0.28705883026123047,0.2522004246711731,0.2696296274662018,1.0713725090026855,1.2282352447509766,0.6007843017578125,0.7750762701034546,-0.39267975091934204,0.7053594589233398,0.02562091499567032,-0.35782134532928467,-0.270675390958786,-0.009237472899258137,-0.5495424866676331,0.14762526750564575,0.28705883026123047,0.33934640884399414,0.7402178645133972,0.5833551287651062,0.3567756116390228,0.49620914459228516,0.13019607961177826,0.47877994179725647,0.8273638486862183,0.5833551287651062,1.1236600875854492,0.5136383175849915,0.6530718803405762,0.7227886915206909,0.7402178645133972,0.47877994179725647,0.8273638486862183,0.6182135343551636,0.7053594589233398,1.0016558170318604,0.6705011129379272,0.49620914459228516,0.9319390058517456,0.7053594589233398,0.6879302859306335,0.8970806002616882,0.7227886915206909,0.8970806002616882,0.9145098328590393,0.6530718803405762,0.49620914459228516,-0.2532461881637573,-1.6824400424957275,-1.7870151996612549,-1.665010929107666,-1.5255773067474365,-1.7521568536758423,-1.804444432258606,-1.2292810678482056,-0.5146840810775757,-0.20095860958099365,-0.07895424962043762,-0.23581700026988983,0.28705883026123047,0.28705883026123047,0.30448800325393677,0.16505447030067444,-0.16610021889209747,0.6356427073478699,0.46135076880455017,0.9842265844345093,1.6465359926223755,1.0888017416000366,1.0190849304199219,0.5136383175849915,-1.089847445487976,-1.4558606147766113,-1.5778648853302002,-1.0724183320999146,-1.490718960762024,-1.3164269924163818,-1.1421350240707397,-0.9329847693443298,-0.5146840810775757,-0.4972549080848694,-0.8806971907615662,-0.5844008922576904,-0.9504139423370361,-0.2532461881637573,-0.462396502494812,-0.20095860958099365,-1.176993489265442,-1.1247059106826782,-1.6824400424957275,-0.5321133136749268,1.977690577507019,1.367668867111206,0.008191721513867378,0.8099346160888672,-0.6715468168258667,1.1236600875854492,1.1236600875854492,-0.5146840810775757,1.4548147916793823,0.14762526750564575,0.33934640884399414,-0.8109803795814514,-1.2118518352508545,-0.7412636280059814,0.3567756116390228,-0.7761220335960388,-1.2641394138336182,-0.14867103099822998,0.7576470375061035,-0.6541176438331604,-0.4449673295021057,0.32191720604896545,0.18248365819454193,-0.3229629695415497,-0.7412636280059814,-0.23581700026988983,-0.009237472899258137,0.8796514272689819,1.0713725090026855,2.0996949672698975,1.4025272130966187,1.4025272130966187,-0.07895424962043762,-0.35782134532928467,0.6007843017578125,1.0713725090026855,1.367668867111206,0.16505447030067444,-0.09638344496488571,0.3567756116390228,0.47877994179725647,0.3567756116390228,-0.07895424962043762,0.5136383175849915,0.2522004246711731,0.7576470375061035,0.5833551287651062,0.3567756116390228,0.28705883026123047,0.2522004246711731,0.11276688426733017,0.0604793019592762,0.16505447030067444,-0.04409585893154144,0.8970806002616882,0.33934640884399414,0.6879302859306335,0.2173420488834381,0.7925054430961609,1.053943395614624,1.1585185527801514,1.036514163017273,1.193376898765564,1.0713725090026855,1.1062309741973877,1.1585185527801514,1.2630937099456787,0.8099346160888672,0.9145098328590393,1.053943395614624,0.9842265844345093,1.036514163017273,0.9493681788444519,1.2456644773483276,1.4373856782913208,1.175947666168213,1.0190849304199219,1.1585185527801514,1.036514163017273,1.2979520559310913,1.3850979804992676,0.966797411441803,1.1236600875854492],[0.33934640884399414,0.2522004246711731,-0.02666666731238365,0.18248365819454193,0.0604793019592762,0.6007843017578125,0.8970806002616882,0.6705011129379272,1.2456644773483276,1.0016558170318604,1.6291067600250244,1.663965106010437,1.4025272130966187,1.2805228233337402,0.4439215660095215,0.4090631902217865,-0.2532461881637573,0.33934640884399414,0.9493681788444519,1.7162526845932007,1.9079738855361938,1.5593899488449097,1.1410893201828003,0.9145098328590393,0.6879302859306335,-0.7412636280059814,-1.1421350240707397,-0.7761220335960388,-0.14867103099822998,-0.02666666731238365,0.2173420488834381,0.04305011034011841,0.9493681788444519,-0.270675390958786,1.0016558170318604,1.9602614641189575,1.977690577507019,1.7511111497879028,1.9951198101043701,2.047407388687134,1.8905446529388428,1.6988235712051392,1.175947666168213,1.332810401916504,1.2282352447509766,1.175947666168213,0.8273638486862183,0.7053594589233398,0.6182135343551636,0.6530718803405762,0.6182135343551636,0.3567756116390228,0.2173420488834381,0.8099346160888672,0.47877994179725647,0.7053594589233398,0.07790849357843399,0.6007843017578125,0.0604793019592762,-0.8284096121788025,0.3567756116390228,-0.305533766746521,-0.1138126328587532,0.18248365819454193,-0.04409585893154144,-0.07895424962043762,0.5484967231750488,0.7053594589233398,0.0604793019592762,0.5659258961677551,0.16505447030067444,0.0604793019592762,-0.04409585893154144,0.6007843017578125,0.5484967231750488,0.5484967231750488,0.8273638486862183,0.4439215660095215,0.5833551287651062,0.3916339874267578,0.3567756116390228,0.4439215660095215,0.7925054430961609,0.7402178645133972,0.7227886915206909,1.0190849304199219,0.7227886915206909,0.966797411441803,0.9842265844345093,0.5484967231750488,0.5833551287651062,0.7576470375061035,1.2805228233337402,0.6705011129379272,0.6530718803405762,0.8622221946716309,0.7402178645133972,0.6705011129379272,-1.0375598669052124,-1.6998692750930786,-1.804444432258606,-0.07895424962043762,0.14762526750564575,-1.5430065393447876,-1.3687145709991455,-0.4972549080848694,-0.5321133136749268,-0.009237472899258137,0.07790849357843399,0.2522004246711731,0.4264923632144928,0.02562091499567032,0.09533768892288208,0.4090631902217865,0.28705883026123047,1.1236600875854492,1.5942484140396118,1.4548147916793823,1.1585185527801514,-0.02666666731238365,-0.7238343954086304,-1.1944226026535034,-1.6824400424957275,-1.7870151996612549,-1.2118518352508545,-1.1247059106826782,-0.619259238243103,-0.6889760494232178,-0.8109803795814514,-0.5844008922576904,-0.270675390958786,-0.4972549080848694,-0.5669716596603394,-0.4972549080848694,-0.4798257052898407,-0.9155555367469788,-0.41010892391204834,-0.7064052224159241,0.13019607961177826,0.2696296274662018,-1.665010929107666,0.04305011034011841,1.2805228233337402,-1.089847445487976,0.5659258961677551,2.0648365020751953,1.8556863069534302,2.361132860183716,-0.5146840810775757,1.036514163017273,-0.37525054812431335,-0.7412636280059814,-1.0027015209197998,-1.1421350240707397,-1.2641394138336182,-0.5321133136749268,1.1410893201828003,-0.9504139423370361,-0.8109803795814514,-0.18352940678596497,0.28705883026123047,-0.5844008922576904,0.6879302859306335,0.04305011034011841,-0.8632679581642151,0.3916339874267578,-1.246710181236267,-0.8806971907615662,1.4199564456939697,1.8033987283706665,2.0648365020751953,1.2979520559310913,1.4896732568740845,-0.09638344496488571,-0.6541176438331604,0.07790849357843399,1.681394338607788,1.2979520559310913,0.7576470375061035,0.3916339874267578,0.6879302859306335,0.2347712367773056,0.2522004246711731,0.49620914459228516,0.13019607961177826,0.16505447030067444,0.2696296274662018,0.46135076880455017,0.4090631902217865,0.6007843017578125,0.2696296274662018,0.2696296274662018,0.3916339874267578,-0.20095860958099365,-0.02666666731238365,0.6007843017578125,0.008191721513867378,0.8447930216789246,0.9145098328590393,1.0888017416000366,1.036514163017273,1.053943395614624,0.966797411441803,0.7925054430961609,0.9319390058517456,1.1236600875854492,1.210806131362915,1.2456644773483276,1.175947666168213,1.0190849304199219,0.8622221946716309,1.1585185527801514,1.2979520559310913,0.8099346160888672,1.2630937099456787,1.0888017416000366,1.4025272130966187,1.193376898765564,1.0888017416000366,0.7402178645133972,0.8796514272689819,1.193376898765564,0.9493681788444519,1.1410893201828003],[0.2347712367773056,0.32191720604896545,0.2522004246711731,0.30448800325393677,0.4090631902217865,0.09533768892288208,0.5310675501823425,0.3742047846317291,1.0190849304199219,1.193376898765564,1.6291067600250244,1.4548147916793823,1.4373856782913208,0.7576470375061035,0.2173420488834381,1.036514163017273,1.1585185527801514,-0.305533766746521,-0.14867103099822998,1.5768191814422607,1.838257074356079,1.507102370262146,0.5136383175849915,1.0190849304199219,1.5942484140396118,-0.8458387851715088,-1.5255773067474365,-1.4210021495819092,-0.3229629695415497,0.49620914459228516,-0.14867103099822998,1.524531602859497,1.0016558170318604,-0.5669716596603394,-1.089847445487976,1.4548147916793823,1.977690577507019,1.2805228233337402,0.8970806002616882,1.053943395614624,1.681394338607788,1.2805228233337402,1.332810401916504,1.507102370262146,1.681394338607788,1.350239634513855,1.0190849304199219,0.7925054430961609,1.2979520559310913,0.8796514272689819,0.9319390058517456,0.5659258961677551,0.32191720604896545,1.2630937099456787,0.3567756116390228,0.0604793019592762,-0.23581700026988983,0.6356427073478699,0.11276688426733017,0.07790849357843399,-0.9852723479270935,-0.1312418282032013,-0.02666666731238365,-0.23581700026988983,0.11276688426733017,0.04305011034011841,-0.16610021889209747,0.19991286098957062,0.7227886915206909,0.2522004246711731,0.7576470375061035,0.32191720604896545,0.8099346160888672,0.7402178645133972,0.19991286098957062,1.0190849304199219,0.6356427073478699,0.7576470375061035,0.6356427073478699,0.6879302859306335,0.5659258961677551,0.8970806002616882,0.5484967231750488,0.6182135343551636,0.7227886915206909,0.6705011129379272,1.0713725090026855,0.7925054430961609,0.5310675501823425,1.036514163017273,0.5484967231750488,0.7750762701034546,1.0713725090026855,0.8447930216789246,0.9493681788444519,0.7402178645133972,1.1062309741973877,0.47877994179725647,-0.09638344496488571,0.19991286098957062,-0.7412636280059814,-1.6301524639129639,-0.8284096121788025,-1.7347276210784912,-0.7586928009986877,-0.5146840810775757,-0.8109803795814514,-0.2532461881637573,0.04305011034011841,0.11276688426733017,0.5136383175849915,0.7053594589233398,0.2347712367773056,0.30448800325393677,0.3567756116390228,1.5768191814422607,1.6465359926223755,1.0888017416000366,0.7227886915206909,0.09533768892288208,-0.8284096121788025,-1.246710181236267,-1.6998692750930786,-1.7172985076904297,-1.0201307535171509,-1.089847445487976,0.07790849357843399,-1.1421350240707397,-0.5146840810775757,0.04305011034011841,-0.21838779747486115,-0.39267975091934204,-0.6366884708404541,0.14762526750564575,-0.23581700026988983,0.2173420488834381,0.7750762701034546,-0.5146840810775757,0.7925054430961609,0.07790849357843399,0.6182135343551636,1.350239634513855,0.8099346160888672,0.4264923632144928,1.5768191814422607,2.047407388687134,-0.5146840810775757,1.9951198101043701,0.4439215660095215,1.0190849304199219,0.2696296274662018,-0.7586928009986877,-1.4210021495819092,-0.7761220335960388,-0.6889760494232178,0.11276688426733017,-0.7935512065887451,1.332810401916504,0.008191721513867378,-1.6127233505249023,-0.2532461881637573,0.32191720604896545,-0.6889760494232178,0.9319390058517456,-0.20095860958099365,-0.8284096121788025,-0.8458387851715088,-1.1595642566680908,0.5833551287651062,1.3153812885284424,1.4025272130966187,0.9842265844345093,1.3153812885284424,-0.1312418282032013,0.0604793019592762,0.18248365819454193,1.2979520559310913,1.820827841758728,0.9493681788444519,0.8447930216789246,-0.06152505427598953,0.30448800325393677,0.8273638486862183,0.18248365819454193,0.3916339874267578,0.7576470375061035,0.47877994179725647,0.07790849357843399,0.8796514272689819,0.7576470375061035,0.4264923632144928,0.28705883026123047,-0.009237472899258137,0.6530718803405762,0.7750762701034546,0.8796514272689819,0.2696296274662018,0.5833551287651062,1.210806131362915,0.8273638486862183,0.6879302859306335,1.0016558170318604,1.350239634513855,0.966797411441803,0.7576470375061035,1.0016558170318604,1.2456644773483276,1.193376898765564,1.2805228233337402,1.1585185527801514,1.2979520559310913,1.1062309741973877,1.1236600875854492,1.2282352447509766,1.0713725090026855,1.1062309741973877,1.0016558170318604,1.036514163017273,1.2630937099456787,1.1062309741973877,1.0888017416000366,1.6116775274276733,1.2805228233337402,1.4722440242767334],[0.966797411441803,-0.06152505427598953,-0.009237472899258137,0.18248365819454193,-0.07895424962043762,0.13019607961177826,0.2696296274662018,0.7576470375061035,0.7750762701034546,1.175947666168213,1.4025272130966187,1.7685402631759644,1.367668867111206,0.6879302859306335,-0.41010892391204834,1.5768191814422607,1.6465359926223755,1.6988235712051392,1.4548147916793823,0.6879302859306335,1.5419608354568481,1.4199564456939697,0.7227886915206909,-0.4972549080848694,1.524531602859497,-0.16610021889209747,0.008191721513867378,-0.07895424962043762,0.16505447030067444,1.6465359926223755,0.07790849357843399,-0.270675390958786,-0.1138126328587532,-0.9504139423370361,-0.37525054812431335,1.053943395614624,1.5593899488449097,1.524531602859497,1.4025272130966187,1.3153812885284424,1.350239634513855,1.5768191814422607,2.0996949672698975,1.6988235712051392,1.7859694957733154,1.332810401916504,0.9319390058517456,1.0190849304199219,0.7925054430961609,0.5659258961677551,0.3567756116390228,0.49620914459228516,0.14762526750564575,-0.009237472899258137,0.16505447030067444,0.3742047846317291,0.13019607961177826,0.008191721513867378,0.2173420488834381,-0.305533766746521,-0.14867103099822998,-0.2881045639514923,-0.20095860958099365,-0.16610021889209747,0.04305011034011841,0.6530718803405762,0.19991286098957062,0.16505447030067444,-0.04409585893154144,0.7227886915206909,0.2696296274662018,0.32191720604896545,0.8273638486862183,0.7576470375061035,0.6530718803405762,0.6705011129379272,0.9319390058517456,0.7053594589233398,0.47877994179725647,0.966797411441803,1.0016558170318604,0.5310675501823425,0.9319390058517456,1.1585185527801514,0.9145098328590393,0.7053594589233398,0.8622221946716309,1.0016558170318604,0.7227886915206909,1.1236600875854492,0.966797411441803,0.8796514272689819,0.7402178645133972,1.332810401916504,0.8447930216789246,1.0190849304199219,0.8099346160888672,0.8099346160888672,0.8099346160888672,-0.427538126707077,-1.2118518352508545,-1.5778648853302002,-1.6998692750930786,-1.7521568536758423,-1.6301524639129639,-0.7064052224159241,-0.2881045639514923,0.19991286098957062,0.4090631902217865,0.2347712367773056,0.4439215660095215,0.07790849357843399,0.6879302859306335,0.8796514272689819,1.9254029989242554,1.8556863069534302,1.5419608354568481,1.0713725090026855,-0.009237472899258137,-0.20095860958099365,-1.0549890995025635,-1.2989978790283203,-1.4035730361938477,-1.5604357719421387,-1.2989978790283203,-1.3687145709991455,0.6007843017578125,-0.5146840810775757,-0.619259238243103,-0.4798257052898407,-0.009237472899258137,0.2173420488834381,0.33934640884399414,-1.4558606147766113,-0.20095860958099365,0.18248365819454193,0.9842265844345093,1.6465359926223755,1.4548147916793823,0.8273638486862183,1.4896732568740845,0.5659258961677551,1.8556863069534302,0.09533768892288208,-0.6018300652503967,2.151982545852661,0.3567756116390228,0.4439215660095215,0.8273638486862183,0.28705883026123047,-0.6541176438331604,-0.4972549080848694,-0.1312418282032013,-1.1595642566680908,-0.8981263637542725,0.4264923632144928,1.5942484140396118,-1.1247059106826782,-0.7586928009986877,0.008191721513867378,-0.09638344496488571,-0.18352940678596497,0.13019607961177826,-0.18352940678596497,-0.7412636280059814,-0.9678431153297424,-1.4384313821792603,-0.7761220335960388,-0.37525054812431335,0.09533768892288208,0.8273638486862183,0.9145098328590393,0.7576470375061035,0.7402178645133972,-0.270675390958786,-0.07895424962043762,0.9145098328590393,1.6988235712051392,1.9602614641189575,0.8099346160888672,0.2522004246711731,0.3916339874267578,0.16505447030067444,0.47877994179725647,0.3916339874267578,0.6007843017578125,0.5659258961677551,0.32191720604896545,0.6879302859306335,0.9319390058517456,0.6007843017578125,0.3567756116390228,0.30448800325393677,0.4439215660095215,0.9493681788444519,1.0888017416000366,0.6879302859306335,0.5484967231750488,0.7576470375061035,0.8970806002616882,1.053943395614624,0.7925054430961609,1.0190849304199219,0.9319390058517456,0.8970806002616882,0.9145098328590393,1.053943395614624,1.0016558170318604,0.966797411441803,1.1585185527801514,1.4373856782913208,1.2456644773483276,1.0888017416000366,1.193376898765564,1.2282352447509766,0.966797411441803,1.1062309741973877,1.175947666168213,0.7227886915206909,0.9319390058517456,1.0190849304199219,1.1585185527801514,0.8273638486862183,1.0190849304199219],[0.5310675501823425,0.19991286098957062,0.46135076880455017,-0.04409585893154144,-0.2532461881637573,0.02562091499567032,0.5484967231750488,0.3916339874267578,0.4439215660095215,0.5484967231750488,0.8622221946716309,0.9145098328590393,1.210806131362915,1.2456644773483276,0.8970806002616882,0.2173420488834381,1.1062309741973877,1.8905446529388428,1.5419608354568481,1.4896732568740845,1.3153812885284424,1.7511111497879028,1.6116775274276733,1.210806131362915,0.13019607961177826,1.2282352447509766,0.4090631902217865,-0.7238343954086304,-0.8284096121788025,-0.20095860958099365,-0.2881045639514923,-1.6127233505249023,-1.7521568536758423,-1.176993489265442,-0.5844008922576904,-0.6889760494232178,1.4722440242767334,1.193376898765564,0.8273638486862183,1.507102370262146,1.681394338607788,1.9079738855361938,1.820827841758728,1.7685402631759644,1.0016558170318604,1.5768191814422607,1.210806131362915,-0.14867103099822998,0.07790849357843399,0.4090631902217865,-0.2532461881637573,-0.16610021889209747,0.11276688426733017,0.14762526750564575,0.11276688426733017,-0.20095860958099365,0.5484967231750488,1.210806131362915,-0.18352940678596497,-0.6541176438331604,-0.18352940678596497,-0.2532461881637573,0.13019607961177826,0.0604793019592762,0.02562091499567032,-0.02666666731238365,0.49620914459228516,0.7750762701034546,0.5659258961677551,0.07790849357843399,0.9842265844345093,0.9842265844345093,0.4264923632144928,0.5833551287651062,0.4090631902217865,0.7576470375061035,0.9145098328590393,0.8273638486862183,1.0888017416000366,0.3742047846317291,0.7227886915206909,0.8447930216789246,0.49620914459228516,0.6705011129379272,1.5942484140396118,0.7576470375061035,0.2522004246711731,1.0016558170318604,0.9145098328590393,0.7402178645133972,0.9319390058517456,1.053943395614624,1.0190849304199219,0.9493681788444519,1.036514163017273,1.0713725090026855,0.966797411441803,0.6879302859306335,1.0888017416000366,-0.2532461881637573,-0.9504139423370361,-1.0724183320999146,-0.7586928009986877,-0.8981263637542725,-0.5844008922576904,-0.427538126707077,0.3742047846317291,-0.21838779747486115,0.966797411441803,0.8099346160888672,0.7053594589233398,0.33934640884399414,0.8622221946716309,1.350239634513855,1.838257074356079,1.5768191814422607,1.524531602859497,0.9493681788444519,-0.04409585893154144,-0.7412636280059814,-1.2292810678482056,-1.176993489265442,-1.2292810678482056,-1.6824400424957275,-1.351285457611084,-0.5844008922576904,0.9319390058517456,-0.427538126707077,-0.1138126328587532,-0.04409585893154144,0.02562091499567032,0.008191721513867378,-0.5321133136749268,-0.8458387851715088,-0.37525054812431335,0.5136383175849915,0.18248365819454193,1.1410893201828003,1.4199564456939697,0.18248365819454193,0.28705883026123047,1.0713725090026855,0.8970806002616882,-1.2641394138336182,0.4090631902217865,-0.6889760494232178,-0.04409585893154144,-0.462396502494812,-0.305533766746521,-0.5844008922576904,1.4548147916793823,-0.6541176438331604,-0.8284096121788025,-0.2532461881637573,-0.7064052224159241,-0.6541176438331604,-0.2532461881637573,-0.4449673295021057,-1.5604357719421387,0.7576470375061035,-0.20095860958099365,-0.6889760494232178,-0.07895424962043762,-0.2881045639514923,-0.07895424962043762,-0.9329847693443298,-1.1595642566680908,0.32191720604896545,0.008191721513867378,0.7053594589233398,-0.06152505427598953,1.4025272130966187,0.9842265844345093,0.9319390058517456,-0.5495424866676331,0.16505447030067444,0.8970806002616882,1.193376898765564,2.0125489234924316,1.8731154203414917,0.3567756116390228,0.3916339874267578,0.28705883026123047,0.5484967231750488,0.5310675501823425,0.32191720604896545,0.33934640884399414,0.8622221946716309,0.7402178645133972,0.16505447030067444,0.8273638486862183,0.32191720604896545,0.3916339874267578,0.7750762701034546,0.32191720604896545,-0.1138126328587532,0.14762526750564575,0.7402178645133972,0.5136383175849915,0.966797411441803,0.966797411441803,0.8447930216789246,1.0888017416000366,1.0190849304199219,1.0713725090026855,1.1062309741973877,1.0713725090026855,1.0713725090026855,1.2805228233337402,1.0190849304199219,1.3850979804992676,1.0016558170318604,1.3850979804992676,0.9319390058517456,0.9145098328590393,1.4373856782913208,1.4025272130966187,1.2805228233337402,1.2630937099456787,1.0713725090026855,1.2456644773483276,0.966797411441803,1.175947666168213,1.2630937099456787],[1.0888017416000366,0.2347712367773056,0.04305011034011841,-0.18352940678596497,-0.1312418282032013,-0.20095860958099365,-0.5321133136749268,0.09533768892288208,0.07790849357843399,0.8970806002616882,1.1062309741973877,1.1585185527801514,1.820827841758728,1.6116775274276733,1.4548147916793823,-0.5495424866676331,-0.2532461881637573,1.5419608354568481,2.0125489234924316,1.524531602859497,0.8970806002616882,1.6116775274276733,1.6465359926223755,1.4199564456939697,1.193376898765564,1.175947666168213,0.28705883026123047,-0.09638344496488571,0.6007843017578125,-1.089847445487976,-1.508148193359375,-1.6998692750930786,-1.804444432258606,-0.37525054812431335,1.5593899488449097,-0.8284096121788025,-0.20095860958099365,1.1236600875854492,1.6291067600250244,1.838257074356079,2.27398681640625,2.0996949672698975,0.7925054430961609,0.30448800325393677,0.7402178645133972,1.0713725090026855,-0.340392142534256,-0.305533766746521,-0.9155555367469788,-0.20095860958099365,-0.1312418282032013,-0.16610021889209747,0.5833551287651062,0.49620914459228516,0.8273638486862183,1.193376898765564,1.5593899488449097,1.350239634513855,-0.619259238243103,-0.2881045639514923,-0.1138126328587532,-0.06152505427598953,0.13019607961177826,0.14762526750564575,0.47877994179725647,0.2173420488834381,0.8622221946716309,0.5833551287651062,0.5484967231750488,0.5659258961677551,0.6182135343551636,0.30448800325393677,0.46135076880455017,0.4439215660095215,0.6530718803405762,0.9145098328590393,0.7402178645133972,0.6530718803405762,0.7053594589233398,0.49620914459228516,0.7750762701034546,0.7750762701034546,0.7053594589233398,0.966797411441803,0.6007843017578125,1.1062309741973877,1.036514163017273,0.7750762701034546,0.7576470375061035,0.8796514272689819,0.9319390058517456,1.1410893201828003,0.966797411441803,0.9493681788444519,0.966797411441803,0.9319390058517456,1.053943395614624,0.8622221946716309,0.7925054430961609,0.47877994179725647,1.5768191814422607,0.8099346160888672,1.0713725090026855,0.5659258961677551,0.8099346160888672,0.6356427073478699,0.9842265844345093,0.8099346160888672,0.9145098328590393,0.6879302859306335,0.8273638486862183,1.193376898765564,1.3153812885284424,1.5942484140396118,1.6465359926223755,1.5419608354568481,0.966797411441803,0.04305011034011841,-0.7238343954086304,-0.9504139423370361,-1.2815686464309692,-1.246710181236267,-1.351285457611084,-1.2815686464309692,-1.2641394138336182,-0.5321133136749268,-0.7064052224159241,-0.2881045639514923,0.9842265844345093,0.32191720604896545,0.09533768892288208,0.5310675501823425,-0.1312418282032013,0.47877994179725647,1.175947666168213,1.4896732568740845,1.8731154203414917,1.210806131362915,1.838257074356079,1.5768191814422607,1.663965106010437,1.2282352447509766,1.1062309741973877,-0.06152505427598953,1.663965106010437,1.524531602859497,1.5419608354568481,1.1062309741973877,1.0190849304199219,1.4548147916793823,1.5768191814422607,1.5768191814422607,-0.1138126328587532,1.332810401916504,-0.20095860958099365,-0.37525054812431335,-0.23581700026988983,0.18248365819454193,0.4439215660095215,-1.0201307535171509,-0.07895424962043762,0.2173420488834381,0.16505447030067444,0.7402178645133972,0.6007843017578125,-0.09638344496488571,-0.9852723479270935,1.8731154203414917,-0.9329847693443298,-0.1138126328587532,-0.1138126328587532,0.7750762701034546,0.966797411441803,0.13019607961177826,-0.427538126707077,-0.04409585893154144,1.1062309741973877,1.838257074356079,1.5768191814422607,1.5942484140396118,1.4199564456939697,0.19991286098957062,0.19991286098957062,0.2696296274662018,0.32191720604896545,0.46135076880455017,0.5833551287651062,0.6530718803405762,0.2696296274662018,0.6530718803405762,0.4090631902217865,0.09533768892288208,0.9493681788444519,0.49620914459228516,0.32191720604896545,0.7576470375061035,0.02562091499567032,0.33934640884399414,0.8447930216789246,0.9319390058517456,0.9145098328590393,0.7227886915206909,0.9493681788444519,1.4199564456939697,0.9319390058517456,0.966797411441803,1.175947666168213,0.9842265844345093,1.0713725090026855,0.9145098328590393,1.2456644773483276,1.2282352447509766,1.193376898765564,1.053943395614624,1.4025272130966187,1.193376898765564,1.1585185527801514,1.2456644773483276,1.2979520559310913,0.9145098328590393,1.0016558170318604,1.3153812885284424,1.2282352447509766,1.2630937099456787],[0.9319390058517456,0.7402178645133972,0.6182135343551636,0.4090631902217865,0.18248365819454193,0.11276688426733017,-0.305533766746521,0.19991286098957062,0.09533768892288208,0.2696296274662018,0.5136383175849915,1.5942484140396118,1.7336819171905518,1.332810401916504,1.5768191814422607,1.5419608354568481,1.053943395614624,1.6465359926223755,2.082265853881836,1.7511111497879028,0.8099346160888672,-0.4449673295021057,-0.6889760494232178,-0.04409585893154144,0.7053594589233398,1.210806131362915,0.3916339874267578,-0.5146840810775757,-0.8632679581642151,-1.1421350240707397,-1.5604357719421387,-1.0375598669052124,-0.23581700026988983,-0.427538126707077,2.1345534324645996,1.2456644773483276,1.3850979804992676,1.1585185527801514,1.663965106010437,2.0648365020751953,1.9254029989242554,1.681394338607788,0.8970806002616882,1.5593899488449097,0.5136383175849915,0.2347712367773056,-0.04409585893154144,-0.7935512065887451,0.11276688426733017,0.11276688426733017,1.0888017416000366,1.2805228233337402,1.4722440242767334,1.9254029989242554,1.6291067600250244,1.2979520559310913,1.210806131362915,0.7053594589233398,0.02562091499567032,-0.5844008922576904,-0.1138126328587532,0.2696296274662018,0.4090631902217865,0.4090631902217865,0.32191720604896545,0.16505447030067444,0.02562091499567032,0.8273638486862183,0.6182135343551636,0.13019607961177826,0.6007843017578125,0.7402178645133972,0.8099346160888672,0.7053594589233398,0.30448800325393677,0.14762526750564575,0.6530718803405762,0.6182135343551636,0.5310675501823425,0.8447930216789246,0.6356427073478699,0.8622221946716309,1.0190849304199219,0.7576470375061035,1.0713725090026855,0.8273638486862183,0.8447930216789246,0.9493681788444519,0.966797411441803,0.8796514272689819,0.8099346160888672,0.9319390058517456,1.193376898765564,1.2456644773483276,1.0190849304199219,1.193376898765564,1.3153812885284424,1.1585185527801514,1.175947666168213,1.175947666168213,0.9319390058517456,0.7227886915206909,0.7576470375061035,1.1236600875854492,1.4548147916793823,1.1410893201828003,0.7053594589233398,0.7053594589233398,0.9319390058517456,1.0888017416000366,0.7053594589233398,0.6879302859306335,1.681394338607788,1.663965106010437,1.5593899488449097,0.6007843017578125,0.33934640884399414,-0.07895424962043762,-0.8632679581642151,-1.2118518352508545,-1.1421350240707397,-1.1072766780853271,-1.0201307535171509,-1.4035730361938477,-1.0375598669052124,-0.9155555367469788,-1.0201307535171509,-0.41010892391204834,-0.04409585893154144,-0.2532461881637573,-0.21838779747486115,-1.0201307535171509,-0.427538126707077,0.9493681788444519,1.8905446529388428,1.9079738855361938,2.117124080657959,1.8033987283706665,0.7925054430961609,1.8556863069534302,1.8033987283706665,1.5942484140396118,0.9145098328590393,-0.35782134532928467,-0.9155555367469788,1.681394338607788,2.239128589630127,1.175947666168213,-0.41010892391204834,1.5768191814422607,1.175947666168213,0.33934640884399414,1.0713725090026855,0.4264923632144928,0.4439215660095215,-0.20095860958099365,-0.8109803795814514,-0.3229629695415497,-0.340392142534256,-0.16610021889209747,0.5136383175849915,0.3742047846317291,-0.09638344496488571,1.4548147916793823,0.8970806002616882,-0.305533766746521,-0.9155555367469788,0.33934640884399414,-0.9329847693443298,1.1585185527801514,-0.04409585893154144,0.8447930216789246,0.49620914459228516,0.4439215660095215,-0.3229629695415497,0.13019607961177826,1.1585185527801514,1.681394338607788,1.663965106010437,1.7859694957733154,0.7750762701034546,0.13019607961177826,0.4090631902217865,0.4439215660095215,0.18248365819454193,0.2347712367773056,0.6007843017578125,0.2522004246711731,0.5833551287651062,0.49620914459228516,0.07790849357843399,0.13019607961177826,0.5136383175849915,0.8447930216789246,0.4439215660095215,0.8273638486862183,0.46135076880455017,0.6356427073478699,0.966797411441803,0.8970806002616882,0.9319390058517456,1.0888017416000366,1.2630937099456787,0.7227886915206909,0.8099346160888672,1.1236600875854492,1.3153812885284424,0.8622221946716309,1.053943395614624,1.1410893201828003,1.2282352447509766,1.1062309741973877,0.8447930216789246,1.0190849304199219,1.2630937099456787,0.9319390058517456,0.966797411441803,1.2805228233337402,0.6879302859306335,1.0190849304199219,1.2456644773483276,0.6182135343551636,1.0016558170318604,1.193376898765564],[1.977690577507019,1.350239634513855,0.6705011129379272,0.2347712367773056,-0.270675390958786,-0.3229629695415497,0.008191721513867378,-0.270675390958786,-0.20095860958099365,0.5310675501823425,0.2173420488834381,0.8622221946716309,1.2805228233337402,1.8731154203414917,1.9079738855361938,2.0125489234924316,1.9951198101043701,2.151982545852661,2.1345534324645996,1.9602614641189575,1.4373856782913208,-0.5669716596603394,-1.2118518352508545,-0.7586928009986877,0.2347712367773056,0.7053594589233398,0.9493681788444519,1.507102370262146,-1.0549890995025635,-0.9678431153297424,-0.9329847693443298,-0.5146840810775757,0.6007843017578125,-0.16610021889209747,1.2456644773483276,1.6988235712051392,1.4373856782913208,1.9428322315216064,1.524531602859497,1.6988235712051392,1.663965106010437,2.0648365020751953,1.6465359926223755,1.053943395614624,0.11276688426733017,0.19991286098957062,0.28705883026123047,0.0604793019592762,-0.41010892391204834,0.11276688426733017,1.507102370262146,1.3153812885284424,1.6465359926223755,1.6988235712051392,1.6988235712051392,1.1585185527801514,0.7750762701034546,0.6007843017578125,-0.1312418282032013,-0.07895424962043762,-0.02666666731238365,0.07790849357843399,0.13019607961177826,0.8622221946716309,0.2696296274662018,0.49620914459228516,0.8447930216789246,0.32191720604896545,0.6356427073478699,0.8099346160888672,0.6530718803405762,0.19991286098957062,0.3916339874267578,0.6182135343551636,0.7750762701034546,0.6879302859306335,0.6530718803405762,0.6705011129379272,0.7576470375061035,0.4439215660095215,0.4264923632144928,0.6356427073478699,0.8447930216789246,0.9145098328590393,0.8970806002616882,0.8796514272689819,1.0016558170318604,1.1585185527801514,0.8273638486862183,0.7750762701034546,1.0713725090026855,1.0713725090026855,0.8970806002616882,1.053943395614624,1.193376898765564,0.8622221946716309,0.9145098328590393,1.0888017416000366,0.8970806002616882,0.6530718803405762,0.7750762701034546,0.7227886915206909,1.367668867111206,1.0888017416000366,0.6007843017578125,1.053943395614624,1.2282352447509766,0.7576470375061035,1.053943395614624,1.507102370262146,1.4548147916793823,1.5419608354568481,1.5768191814422607,1.4025272130966187,1.175947666168213,0.966797411441803,0.02562091499567032,-0.7412636280059814,-0.5495424866676331,-1.0375598669052124,-1.0027015209197998,-0.9155555367469788,-1.1072766780853271,-1.2641394138336182,-1.1595642566680908,-0.8458387851715088,-0.9852723479270935,-0.23581700026988983,-0.02666666731238365,0.2522004246711731,0.3567756116390228,0.18248365819454193,-0.5321133136749268,-0.2881045639514923,1.0016558170318604,1.4896732568740845,2.0299782752990723,1.820827841758728,1.4199564456939697,1.9428322315216064,2.2914161682128906,2.1694116592407227,2.0125489234924316,0.19991286098957062,1.4722440242767334,0.7750762701034546,-0.5495424866676331,1.3850979804992676,0.49620914459228516,-0.5146840810775757,0.47877994179725647,0.4090631902217865,1.0713725090026855,1.7511111497879028,1.0713725090026855,-0.7761220335960388,-0.04409585893154144,-0.41010892391204834,-0.39267975091934204,-0.7761220335960388,0.7053594589233398,-0.5321133136749268,0.6879302859306335,1.2979520559310913,0.8796514272689819,-0.5844008922576904,-1.3687145709991455,0.13019607961177826,-0.8632679581642151,0.9319390058517456,0.11276688426733017,0.6356427073478699,1.1410893201828003,-0.5146840810775757,-0.7064052224159241,0.2696296274662018,0.7925054430961609,1.036514163017273,1.4896732568740845,0.9493681788444519,-0.6715468168258667,-0.1312418282032013,0.4439215660095215,0.16505447030067444,0.2696296274662018,0.28705883026123047,0.4439215660095215,0.9145098328590393,-0.1138126328587532,0.5659258961677551,0.3567756116390228,0.49620914459228516,0.6182135343551636,0.5833551287651062,0.7402178645133972,0.16505447030067444,-0.02666666731238365,0.6007843017578125,0.9493681788444519,0.8273638486862183,0.9319390058517456,1.036514163017273,0.9493681788444519,1.332810401916504,1.210806131362915,1.3850979804992676,1.3850979804992676,1.2456644773483276,1.175947666168213,1.2630937099456787,1.2630937099456787,1.210806131362915,1.2282352447509766,1.0713725090026855,1.2456644773483276,1.210806131362915,1.053943395614624,0.8796514272689819,0.8447930216789246,1.1062309741973877,0.8970806002616882,1.053943395614624,1.350239634513855,1.2282352447509766],[1.5942484140396118,1.6291067600250244,1.367668867111206,1.0888017416000366,0.13019607961177826,-0.39267975091934204,-0.2881045639514923,-0.20095860958099365,-0.06152505427598953,-0.4449673295021057,0.18248365819454193,0.9842265844345093,0.7925054430961609,0.6705011129379272,1.838257074356079,2.1868410110473633,2.1694116592407227,2.204270124435425,2.151982545852661,1.820827841758728,1.0713725090026855,-0.5669716596603394,-1.1944226026535034,-1.804444432258606,0.02562091499567032,0.04305011034011841,0.9145098328590393,0.6007843017578125,-0.5321133136749268,-1.7870151996612549,-0.8981263637542725,1.0190849304199219,1.8033987283706665,1.4199564456939697,-0.07895424962043762,0.9145098328590393,1.2282352447509766,2.0996949672698975,1.4025272130966187,1.7859694957733154,1.6291067600250244,2.0125489234924316,1.2805228233337402,0.8622221946716309,0.19991286098957062,-0.1138126328587532,-0.21838779747486115,-0.04409585893154144,0.6879302859306335,0.8970806002616882,1.4373856782913208,1.5419608354568481,1.7336819171905518,1.4896732568740845,1.175947666168213,1.2979520559310913,0.7053594589233398,0.8447930216789246,0.0604793019592762,-0.462396502494812,0.0604793019592762,0.6007843017578125,0.2347712367773056,0.4439215660095215,0.8622221946716309,0.6356427073478699,0.46135076880455017,0.6705011129379272,0.3567756116390228,0.2696296274662018,0.2696296274662018,0.47877994179725647,1.036514163017273,0.6182135343551636,0.6182135343551636,0.30448800325393677,0.5484967231750488,0.6705011129379272,0.4090631902217865,0.9842265844345093,0.6530718803405762,0.8447930216789246,0.7576470375061035,0.7402178645133972,0.9493681788444519,0.6879302859306335,1.0190849304199219,0.7227886915206909,1.0190849304199219,0.9319390058517456,1.2282352447509766,1.175947666168213,1.4722440242767334,1.2456644773483276,0.9842265844345093,1.0016558170318604,1.193376898765564,1.0016558170318604,0.8099346160888672,1.193376898765564,1.3850979804992676,0.9145098328590393,1.3153812885284424,1.0190849304199219,1.3850979804992676,1.1236600875854492,0.8796514272689819,1.2630937099456787,1.2805228233337402,0.8796514272689819,1.2805228233337402,1.507102370262146,1.332810401916504,1.8556863069534302,0.8796514272689819,0.14762526750564575,-0.7064052224159241,-0.4798257052898407,-1.089847445487976,-0.8981263637542725,-0.7412636280059814,-0.7412636280059814,-0.7064052224159241,-0.9678431153297424,-1.2815686464309692,-0.4972549080848694,-0.5844008922576904,-0.9155555367469788,-0.35782134532928467,-0.1138126328587532,0.0604793019592762,0.0604793019592762,-0.305533766746521,-1.1421350240707397,-0.9504139423370361,0.11276688426733017,1.1585185527801514,1.350239634513855,1.8905446529388428,2.151982545852661,1.350239634513855,1.8905446529388428,1.2805228233337402,1.350239634513855,1.9951198101043701,1.9254029989242554,1.4896732568740845,1.6465359926223755,2.1345534324645996,1.367668867111206,0.14762526750564575,0.8273638486862183,1.6465359926223755,1.2630937099456787,1.7162526845932007,-1.5952941179275513,-0.305533766746521,-1.089847445487976,-0.16610021889209747,-0.09638344496488571,-0.009237472899258137,1.681394338607788,-0.14867103099822998,1.053943395614624,0.966797411441803,0.6705011129379272,-0.8632679581642151,-0.23581700026988983,-0.9329847693443298,0.5310675501823425,0.6182135343551636,-0.09638344496488571,1.2456644773483276,1.036514163017273,-0.3229629695415497,0.008191721513867378,0.5310675501823425,1.524531602859497,0.5484967231750488,-0.06152505427598953,-1.176993489265442,-0.23581700026988983,0.0604793019592762,0.33934640884399414,0.16505447030067444,0.49620914459228516,0.6530718803405762,0.2347712367773056,0.5484967231750488,0.16505447030067444,0.32191720604896545,0.7925054430961609,0.47877994179725647,0.6879302859306335,0.8622221946716309,0.5310675501823425,0.9145098328590393,0.7227886915206909,0.6879302859306335,0.7576470375061035,0.966797411441803,1.0190849304199219,1.175947666168213,0.9145098328590393,1.1236600875854492,0.8622221946716309,0.8796514272689819,1.350239634513855,1.2979520559310913,1.2282352447509766,1.2630937099456787,1.2282352447509766,1.3850979804992676,1.2282352447509766,1.193376898765564,1.0713725090026855,0.966797411441803,1.175947666168213,0.6879302859306335,1.0713725090026855,0.8622221946716309,1.2456644773483276,1.175947666168213,1.210806131362915],[1.9428322315216064,1.820827841758728,1.681394338607788,0.966797411441803,0.7402178645133972,0.09533768892288208,-0.16610021889209747,-0.23581700026988983,-0.8632679581642151,-0.5146840810775757,-0.35782134532928467,0.8273638486862183,1.0713725090026855,1.2979520559310913,1.7685402631759644,1.820827841758728,1.2979520559310913,1.6988235712051392,2.308845281600952,2.0299782752990723,1.2805228233337402,0.11276688426733017,-0.6018300652503967,-0.7761220335960388,-0.41010892391204834,-0.20095860958099365,1.3153812885284424,-0.5669716596603394,-0.2881045639514923,-0.9329847693443298,0.16505447030067444,1.1410893201828003,0.7402178645133972,1.210806131362915,-0.41010892391204834,0.6356427073478699,1.367668867111206,2.117124080657959,1.332810401916504,1.663965106010437,1.7162526845932007,1.8731154203414917,1.2282352447509766,-0.2881045639514923,-0.2532461881637573,0.11276688426733017,-0.14867103099822998,1.350239634513855,0.6705011129379272,1.3850979804992676,1.5942484140396118,1.507102370262146,1.5768191814422607,1.4199564456939697,1.5419608354568481,1.210806131362915,0.8796514272689819,0.5659258961677551,-0.2532461881637573,-0.5321133136749268,-0.1312418282032013,0.18248365819454193,-0.06152505427598953,0.28705883026123047,0.0604793019592762,0.6530718803405762,0.3567756116390228,0.4264923632144928,0.5484967231750488,0.4090631902217865,0.47877994179725647,0.5659258961677551,0.33934640884399414,0.5310675501823425,0.6356427073478699,0.7227886915206909,1.0190849304199219,0.9493681788444519,0.8970806002616882,0.6356427073478699,0.7227886915206909,0.6356427073478699,0.8796514272689819,0.9493681788444519,1.0190849304199219,1.175947666168213,0.7750762701034546,0.8622221946716309,1.175947666168213,0.8970806002616882,0.8447930216789246,0.7750762701034546,1.4896732568740845,1.2630937099456787,0.966797411441803,1.175947666168213,1.6465359926223755,1.175947666168213,1.210806131362915,1.2630937099456787,1.332810401916504,1.1585185527801514,0.8447930216789246,1.5768191814422607,1.210806131362915,1.0190849304199219,1.2979520559310913,0.9842265844345093,1.036514163017273,1.3153812885284424,1.7511111497879028,1.524531602859497,1.367668867111206,1.1062309741973877,0.3916339874267578,-0.3229629695415497,-0.4972549080848694,-0.5321133136749268,-1.0724183320999146,-0.8284096121788025,-0.2532461881637573,-0.340392142534256,-0.5669716596603394,-0.427538126707077,-0.7238343954086304,-0.6541176438331604,-0.37525054812431335,-0.4972549080848694,-0.7935512065887451,-0.7586928009986877,-0.3229629695415497,-0.06152505427598953,-0.4972549080848694,0.2347712367773056,0.18248365819454193,-0.619259238243103,-1.176993489265442,-0.4798257052898407,0.33934640884399414,1.036514163017273,1.4373856782913208,1.2456644773483276,1.7336819171905518,0.4439215660095215,1.5768191814422607,1.332810401916504,1.507102370262146,0.7750762701034546,1.193376898765564,1.053943395614624,1.210806131362915,0.6879302859306335,0.14762526750564575,0.6182135343551636,0.9319390058517456,-0.5495424866676331,-0.2532461881637573,0.0604793019592762,-0.6366884708404541,0.0604793019592762,0.0604793019592762,0.2347712367773056,1.210806131362915,1.0016558170318604,0.7402178645133972,0.09533768892288208,-0.8284096121788025,-0.7412636280059814,-1.665010929107666,0.7053594589233398,-0.39267975091934204,-0.340392142534256,0.6879302859306335,-0.14867103099822998,-1.1595642566680908,-0.6366884708404541,0.8622221946716309,1.4722440242767334,-0.23581700026988983,-0.5669716596603394,-1.1944226026535034,-0.7935512065887451,-0.1312418282032013,0.28705883026123047,0.46135076880455017,0.4090631902217865,0.7402178645133972,0.46135076880455017,1.036514163017273,0.5136383175849915,0.7402178645133972,0.0604793019592762,0.966797411441803,0.008191721513867378,1.193376898765564,0.46135076880455017,0.4090631902217865,0.7402178645133972,0.8099346160888672,1.175947666168213,1.1062309741973877,1.1585185527801514,0.9145098328590393,0.966797411441803,1.1410893201828003,1.193376898765564,1.0713725090026855,1.2282352447509766,1.036514163017273,1.2805228233337402,1.2805228233337402,1.1236600875854492,1.053943395614624,1.2979520559310913,1.0190849304199219,1.0888017416000366,0.8796514272689819,0.6007843017578125,0.7925054430961609,1.036514163017273,1.1410893201828003,0.8622221946716309,1.0888017416000366,1.0888017416000366],[1.681394338607788,1.7162526845932007,1.524531602859497,1.524531602859497,1.507102370262146,0.8622221946716309,0.11276688426733017,-0.06152505427598953,-0.07895424962043762,-0.462396502494812,0.16505447030067444,1.2979520559310913,1.838257074356079,1.4722440242767334,0.6007843017578125,0.30448800325393677,0.2347712367773056,1.175947666168213,1.6291067600250244,1.9602614641189575,1.4722440242767334,0.18248365819454193,-0.37525054812431335,0.6007843017578125,0.966797411441803,0.8796514272689819,0.2347712367773056,1.1236600875854492,0.6182135343551636,-0.5146840810775757,-0.270675390958786,0.14762526750564575,0.6182135343551636,-0.18352940678596497,1.332810401916504,1.1410893201828003,1.3153812885284424,1.5942484140396118,1.4896732568740845,1.6291067600250244,1.5419608354568481,1.2805228233337402,0.7576470375061035,0.0604793019592762,0.3742047846317291,0.7402178645133972,0.9842265844345093,1.1062309741973877,1.0016558170318604,1.210806131362915,1.7336819171905518,1.4722440242767334,1.4548147916793823,1.4199564456939697,1.1062309741973877,1.507102370262146,1.2456644773483276,0.2522004246711731,-0.6366884708404541,-0.270675390958786,0.04305011034011841,0.5659258961677551,0.13019607961177826,0.4439215660095215,0.49620914459228516,0.0604793019592762,0.6705011129379272,0.4264923632144928,0.8447930216789246,0.6182135343551636,0.8796514272689819,0.46135076880455017,0.4090631902217865,0.6182135343551636,0.5136383175849915,0.6879302859306335,0.8273638486862183,0.6182135343551636,0.7227886915206909,0.8447930216789246,0.6182135343551636,0.8099346160888672,0.7576470375061035,0.7227886915206909,1.053943395614624,1.0888017416000366,0.9493681788444519,0.7227886915206909,0.9842265844345093,1.036514163017273,1.0888017416000366,1.2282352447509766,1.193376898765564,1.193376898765564,0.8622221946716309,0.8970806002616882,1.0713725090026855,1.2282352447509766,1.1236600875854492,1.053943395614624,1.0190849304199219,0.8796514272689819,0.9842265844345093,0.7576470375061035,1.5419608354568481,0.8970806002616882,1.663965106010437,1.036514163017273,1.5768191814422607,1.7859694957733154,1.6988235712051392,1.6116775274276733,1.2630937099456787,0.9145098328590393,0.14762526750564575,-0.6715468168258667,-1.0027015209197998,-0.5146840810775757,-0.6366884708404541,-0.5321133136749268,-0.5844008922576904,-0.7412636280059814,-0.6715468168258667,-0.8458387851715088,-0.7412636280059814,-0.3229629695415497,0.8796514272689819,0.3916339874267578,-0.5146840810775757,-0.6366884708404541,-1.490718960762024,-0.37525054812431335,-0.06152505427598953,0.5484967231750488,-0.6366884708404541,-0.37525054812431335,-0.3229629695415497,-0.8458387851715088,-0.9329847693443298,-1.1421350240707397,-1.351285457611084,0.6007843017578125,1.1236600875854492,1.681394338607788,1.350239634513855,2.0125489234924316,2.1694116592407227,1.7162526845932007,0.7053594589233398,0.5833551287651062,0.4439215660095215,0.4264923632144928,0.7925054430961609,-0.4798257052898407,0.966797411441803,0.14762526750564575,-0.7064052224159241,-0.340392142534256,-0.9852723479270935,0.19991286098957062,-0.39267975091934204,0.5833551287651062,0.9319390058517456,1.0016558170318604,0.8970806002616882,0.3916339874267578,-0.7238343954086304,-0.41010892391204834,-0.8284096121788025,1.2630937099456787,-0.04409585893154144,-0.8458387851715088,1.036514163017273,1.0888017416000366,-0.5146840810775757,-0.35782134532928467,0.14762526750564575,-0.009237472899258137,-0.8632679581642151,-1.0201307535171509,-1.4732897281646729,-1.5952941179275513,-0.5321133136749268,0.07790849357843399,0.3567756116390228,0.0604793019592762,0.46135076880455017,0.5310675501823425,0.3567756116390228,0.2522004246711731,-0.02666666731238365,0.7053594589233398,0.46135076880455017,0.5833551287651062,-0.1138126328587532,0.4439215660095215,0.07790849357843399,0.5136383175849915,0.7227886915206909,0.8622221946716309,1.0190849304199219,0.966797411441803,0.9842265844345093,0.9842265844345093,1.210806131362915,1.053943395614624,1.0888017416000366,1.053943395614624,1.1236600875854492,1.2630937099456787,1.2456644773483276,1.1410893201828003,1.1062309741973877,0.6007843017578125,1.2456644773483276,1.2282352447509766,1.2979520559310913,1.036514163017273,0.6705011129379272,0.9842265844345093,1.2282352447509766,0.8970806002616882,1.0888017416000366,1.4548147916793823],[1.838257074356079,1.7685402631759644,1.7336819171905518,1.820827841758728,1.2979520559310913,0.8099346160888672,0.966797411441803,0.32191720604896545,0.11276688426733017,0.2522004246711731,0.9842265844345093,1.4548147916793823,1.9951198101043701,1.7859694957733154,1.7859694957733154,1.367668867111206,1.4025272130966187,1.2282352447509766,0.8622221946716309,1.4896732568740845,1.9428322315216064,1.507102370262146,1.210806131362915,1.9951198101043701,0.8447930216789246,1.350239634513855,1.2630937099456787,1.4199564456939697,1.053943395614624,0.2347712367773056,-0.340392142534256,0.6705011129379272,-0.340392142534256,-1.1247059106826782,1.2979520559310913,1.0888017416000366,1.5593899488449097,1.9951198101043701,1.6988235712051392,1.5419608354568481,1.5593899488449097,0.8273638486862183,-0.07895424962043762,0.2347712367773056,1.4548147916793823,0.8796514272689819,1.1236600875854492,1.6291067600250244,1.2456644773483276,1.1585185527801514,1.681394338607788,1.193376898765564,1.507102370262146,1.663965106010437,1.6988235712051392,1.1410893201828003,1.0888017416000366,-0.41010892391204834,-0.009237472899258137,0.0604793019592762,0.16505447030067444,0.13019607961177826,0.8796514272689819,0.5310675501823425,0.7750762701034546,0.6705011129379272,0.8099346160888672,0.3916339874267578,0.49620914459228516,0.8796514272689819,0.5484967231750488,0.6356427073478699,0.6356427073478699,0.9493681788444519,0.5659258961677551,0.8273638486862183,0.5659258961677551,0.8796514272689819,0.8796514272689819,0.6007843017578125,0.6356427073478699,1.1062309741973877,1.0888017416000366,0.8099346160888672,1.1236600875854492,0.9493681788444519,0.7925054430961609,1.0190849304199219,0.9842265844345093,1.1585185527801514,1.367668867111206,1.2979520559310913,1.1585185527801514,1.3153812885284424,1.0190849304199219,1.2630937099456787,1.332810401916504,1.2456644773483276,1.1062309741973877,0.966797411441803,1.3153812885284424,1.4548147916793823,1.1062309741973877,0.7402178645133972,1.3153812885284424,1.193376898765564,1.2282352447509766,0.7227886915206909,1.5768191814422607,1.7685402631759644,1.7859694957733154,1.350239634513855,1.1062309741973877,0.6007843017578125,-0.4449673295021057,-0.4798257052898407,-0.8458387851715088,-0.8109803795814514,-0.619259238243103,-0.462396502494812,-0.427538126707077,-0.6018300652503967,-0.23581700026988983,-0.6715468168258667,-0.5669716596603394,0.0604793019592762,1.5768191814422607,0.30448800325393677,0.8273638486862183,-0.619259238243103,-1.0201307535171509,-0.7586928009986877,-0.3229629695415497,0.2522004246711731,-0.02666666731238365,0.7750762701034546,-0.462396502494812,1.036514163017273,-0.20095860958099365,-0.6541176438331604,-0.23581700026988983,-0.14867103099822998,-0.5146840810775757,0.5659258961677551,1.193376898765564,1.4722440242767334,0.7402178645133972,1.8731154203414917,1.4199564456939697,0.7053594589233398,0.4090631902217865,0.6356427073478699,1.3850979804992676,0.2173420488834381,-0.07895424962043762,-0.2532461881637573,-0.4449673295021057,0.02562091499567032,-0.5321133136749268,1.1062309741973877,1.053943395614624,0.9145098328590393,1.175947666168213,0.9842265844345093,1.036514163017273,-0.02666666731238365,-1.0375598669052124,-0.340392142534256,-0.6715468168258667,0.02562091499567032,-0.41010892391204834,0.09533768892288208,0.9842265844345093,1.1062309741973877,-0.4972549080848694,-0.41010892391204834,0.11276688426733017,-0.39267975091934204,-1.176993489265442,-1.5778648853302002,-1.665010929107666,-1.6301524639129639,-1.6301524639129639,0.5833551287651062,0.02562091499567032,0.4090631902217865,0.3742047846317291,0.32191720604896545,0.7053594589233398,-0.06152505427598953,0.8622221946716309,0.6530718803405762,0.47877994179725647,0.5310675501823425,-0.009237472899258137,0.47877994179725647,0.3567756116390228,0.5484967231750488,0.4090631902217865,0.7053594589233398,1.1062309741973877,0.6356427073478699,0.9842265844345093,0.7925054430961609,1.210806131362915,1.1236600875854492,1.4722440242767334,1.1236600875854492,1.0016558170318604,1.2630937099456787,1.1062309741973877,1.0016558170318604,1.4548147916793823,1.1062309741973877,1.175947666168213,1.350239634513855,1.1236600875854492,1.1585185527801514,1.1236600875854492,1.053943395614624,1.1062309741973877,0.966797411441803,0.8447930216789246,0.9319390058517456],[1.9951198101043701,1.9951198101043701,1.7162526845932007,1.8731154203414917,1.6988235712051392,1.681394338607788,0.8970806002616882,1.4896732568740845,-0.23581700026988983,0.30448800325393677,1.4025272130966187,1.4722440242767334,1.977690577507019,1.838257074356079,1.7336819171905518,1.175947666168213,1.663965106010437,2.1868410110473633,1.9254029989242554,1.9428322315216064,1.8905446529388428,1.3850979804992676,1.332810401916504,1.507102370262146,1.2456644773483276,0.8622221946716309,-0.6366884708404541,-0.06152505427598953,-0.8981263637542725,-1.246710181236267,-1.5952941179275513,-0.6541176438331604,-1.5952941179275513,-0.270675390958786,1.2282352447509766,1.053943395614624,1.1585185527801514,1.681394338607788,1.5768191814422607,1.524531602859497,-0.305533766746521,-0.7064052224159241,0.3567756116390228,0.2173420488834381,0.8273638486862183,0.8970806002616882,1.193376898765564,1.4722440242767334,1.9079738855361938,2.0125489234924316,1.9951198101043701,2.047407388687134,1.7685402631759644,1.2805228233337402,1.2979520559310913,0.6879302859306335,-0.37525054812431335,-0.270675390958786,-0.09638344496488571,-0.07895424962043762,-0.06152505427598953,0.33934640884399414,0.5310675501823425,0.33934640884399414,0.7402178645133972,0.5484967231750488,0.9319390058517456,0.7053594589233398,0.8099346160888672,0.47877994179725647,0.49620914459228516,0.6530718803405762,0.6705011129379272,0.6530718803405762,0.6356427073478699,0.8447930216789246,0.8796514272689819,0.9145098328590393,1.053943395614624,0.7750762701034546,0.8622221946716309,0.9319390058517456,1.2805228233337402,0.8796514272689819,1.1062309741973877,0.9842265844345093,1.0713725090026855,1.0713725090026855,1.0713725090026855,1.175947666168213,1.367668867111206,1.4722440242767334,1.210806131362915,0.8622221946716309,0.8273638486862183,1.1410893201828003,1.2979520559310913,1.367668867111206,1.1062309741973877,1.0190849304199219,1.193376898765564,1.193376898765564,1.1585185527801514,0.8273638486862183,0.966797411441803,0.9493681788444519,1.210806131362915,1.6116775274276733,1.5593899488449097,1.7162526845932007,1.4548147916793823,1.036514163017273,0.47877994179725647,-0.21838779747486115,-0.5844008922576904,-0.5844008922576904,-0.305533766746521,-0.619259238243103,-0.37525054812431335,0.02562091499567032,-0.21838779747486115,-0.4449673295021057,-0.18352940678596497,-0.5844008922576904,-0.5495424866676331,-0.14867103099822998,1.2630937099456787,0.8447930216789246,-1.1247059106826782,-0.9504139423370361,-0.9678431153297424,-0.9504139423370361,0.6182135343551636,-0.2881045639514923,-0.16610021889209747,0.07790849357843399,0.9842265844345093,1.8731154203414917,0.7750762701034546,1.5593899488449097,2.117124080657959,-0.270675390958786,-0.37525054812431335,-0.9504139423370361,-1.1247059106826782,-1.2118518352508545,-0.2532461881637573,-0.427538126707077,-0.14867103099822998,1.5768191814422607,0.9493681788444519,0.3742047846317291,1.332810401916504,1.7859694957733154,1.2282352447509766,-0.270675390958786,-0.1138126328587532,0.4264923632144928,1.175947666168213,0.49620914459228516,-0.14867103099822998,-0.6018300652503967,1.367668867111206,0.6530718803405762,0.19991286098957062,0.5484967231750488,-0.3229629695415497,-1.0724183320999146,-1.5952941179275513,0.09533768892288208,1.2456644773483276,-0.6715468168258667,0.2347712367773056,-0.340392142534256,-0.04409585893154144,-1.0027015209197998,-1.089847445487976,-1.3164269924163818,-1.7172985076904297,-1.7870151996612549,-1.804444432258606,-1.5778648853302002,-1.7347276210784912,1.4896732568740845,1.193376898765564,0.4439215660095215,0.04305011034011841,0.6007843017578125,0.30448800325393677,0.7053594589233398,0.008191721513867378,0.7227886915206909,0.5136383175849915,0.32191720604896545,0.49620914459228516,0.49620914459228516,0.46135076880455017,0.3916339874267578,0.7402178645133972,0.4090631902217865,0.966797411441803,0.9493681788444519,0.5484967231750488,0.8970806002616882,0.7576470375061035,1.210806131362915,1.4199564456939697,1.2630937099456787,0.8273638486862183,1.1410893201828003,0.9145098328590393,1.0888017416000366,0.9319390058517456,1.2630937099456787,1.1585185527801514,1.2282352447509766,0.8447930216789246,1.0713725090026855,1.350239634513855,0.9842265844345093,1.332810401916504,1.193376898765564,0.9842265844345093,1.2456644773483276],[1.838257074356079,2.0648365020751953,2.082265853881836,1.838257074356079,1.7685402631759644,1.7511111497879028,1.2282352447509766,1.2805228233337402,0.5310675501823425,0.09533768892288208,0.9145098328590393,1.838257074356079,2.2914161682128906,1.9254029989242554,1.4373856782913208,1.4722440242767334,2.1345534324645996,1.9602614641189575,1.9428322315216064,2.047407388687134,1.8556863069534302,1.524531602859497,1.524531602859497,2.0299782752990723,1.7859694957733154,1.0713725090026855,-1.333856225013733,-1.7172985076904297,-1.2641394138336182,-1.4035730361938477,-1.5430065393447876,-0.9678431153297424,-1.246710181236267,1.0713725090026855,1.193376898765564,0.9842265844345093,1.4373856782913208,1.4025272130966187,1.7162526845932007,1.2282352447509766,0.18248365819454193,0.2173420488834381,0.6182135343551636,1.350239634513855,0.8970806002616882,1.507102370262146,1.4025272130966187,1.6988235712051392,1.8556863069534302,1.9254029989242554,2.1694116592407227,2.0996949672698975,1.9428322315216064,1.5942484140396118,1.4722440242767334,1.053943395614624,-0.7064052224159241,-0.2881045639514923,0.09533768892288208,0.02562091499567032,0.008191721513867378,0.02562091499567032,0.11276688426733017,0.47877994179725647,0.6705011129379272,0.2696296274662018,0.6705011129379272,0.5833551287651062,0.6182135343551636,0.4264923632144928,0.49620914459228516,0.9493681788444519,0.28705883026123047,0.5310675501823425,0.7925054430961609,0.6879302859306335,0.966797411441803,0.8970806002616882,1.1062309741973877,0.8099346160888672,0.966797411441803,1.2282352447509766,0.966797411441803,1.0713725090026855,0.966797411441803,1.1236600875854492,1.1585185527801514,0.9842265844345093,1.0190849304199219,0.966797411441803,1.0713725090026855,1.367668867111206,1.0888017416000366,0.8447930216789246,1.3850979804992676,0.966797411441803,1.3153812885284424,1.2282352447509766,1.210806131362915,0.8970806002616882,0.8447930216789246,1.210806131362915,1.0888017416000366,0.966797411441803,1.210806131362915,1.210806131362915,1.7162526845932007,1.7685402631759644,1.2805228233337402,1.6116775274276733,1.3850979804992676,0.6007843017578125,0.14762526750564575,-0.16610021889209747,-0.8632679581642151,-0.41010892391204834,-0.3229629695415497,-0.37525054812431335,-0.06152505427598953,-0.2881045639514923,-0.5495424866676331,-0.6366884708404541,-0.7586928009986877,-0.37525054812431335,0.02562091499567032,-0.09638344496488571,1.7685402631759644,0.16505447030067444,-0.35782134532928467,0.2173420488834381,-0.5495424866676331,-0.21838779747486115,-0.18352940678596497,-0.305533766746521,-0.39267975091934204,-0.8109803795814514,-0.4798257052898407,1.053943395614624,0.2522004246711731,0.07790849357843399,1.7511111497879028,0.7227886915206909,0.7925054430961609,-1.1421350240707397,1.2456644773483276,-1.5255773067474365,-1.1072766780853271,0.02562091499567032,0.02562091499567032,-0.3229629695415497,1.4722440242767334,2.082265853881836,1.507102370262146,0.4439215660095215,0.5833551287651062,1.332810401916504,0.6705011129379272,-0.6018300652503967,-0.23581700026988983,1.0016558170318604,2.0299782752990723,0.02562091499567032,1.036514163017273,0.02562091499567032,-0.16610021889209747,0.8796514272689819,-0.8806971907615662,-1.333856225013733,-0.9852723479270935,-0.427538126707077,0.30448800325393677,0.16505447030067444,-0.5669716596603394,-1.5952941179275513,-0.5669716596603394,-0.23581700026988983,-1.0724183320999146,-1.0549890995025635,-1.5430065393447876,-1.490718960762024,-1.804444432258606,-1.665010929107666,-0.009237472899258137,1.6988235712051392,2.082265853881836,0.5659258961677551,0.6182135343551636,0.19991286098957062,0.16505447030067444,0.6356427073478699,0.14762526750564575,0.9842265844345093,0.46135076880455017,0.3742047846317291,0.7750762701034546,0.14762526750564575,0.04305011034011841,0.33934640884399414,0.46135076880455017,0.9842265844345093,0.9319390058517456,0.7750762701034546,1.4896732568740845,1.367668867111206,1.4548147916793823,1.1236600875854492,1.3850979804992676,1.2456644773483276,1.0888017416000366,1.0888017416000366,1.1410893201828003,0.966797411441803,0.9145098328590393,1.1585185527801514,1.367668867111206,1.1585185527801514,1.1585185527801514,0.8796514272689819,1.1062309741973877,1.2979520559310913,1.053943395614624,0.9842265844345093,1.1585185527801514,1.210806131362915],[1.9079738855361938,1.820827841758728,1.9428322315216064,1.820827841758728,2.0299782752990723,1.4896732568740845,1.6116775274276733,0.9145098328590393,1.0888017416000366,0.008191721513867378,0.8970806002616882,1.1062309741973877,1.977690577507019,1.8556863069534302,1.5768191814422607,1.6988235712051392,1.8033987283706665,1.8731154203414917,1.7685402631759644,1.7336819171905518,1.8556863069534302,1.6465359926223755,1.838257074356079,2.1694116592407227,1.8731154203414917,2.0648365020751953,-0.5495424866676331,-1.7695860862731934,-1.333856225013733,-1.2292810678482056,-1.0027015209197998,-0.305533766746521,0.4264923632144928,1.175947666168213,1.4548147916793823,0.966797411441803,1.350239634513855,1.7859694957733154,1.663965106010437,1.524531602859497,1.0713725090026855,0.2522004246711731,1.2630937099456787,1.0888017416000366,1.7162526845932007,1.350239634513855,1.4722440242767334,1.4548147916793823,1.7162526845932007,1.8556863069534302,1.6465359926223755,1.663965106010437,1.4722440242767334,1.4896732568740845,1.5593899488449097,1.2630937099456787,-0.6715468168258667,-0.7238343954086304,-0.04409585893154144,-0.20095860958099365,-0.09638344496488571,0.18248365819454193,0.04305011034011841,0.2522004246711731,0.8099346160888672,0.7402178645133972,0.7402178645133972,0.33934640884399414,0.8273638486862183,0.4264923632144928,0.4264923632144928,0.8273638486862183,0.8622221946716309,0.7227886915206909,0.8796514272689819,0.6879302859306335,0.9319390058517456,1.036514163017273,1.1236600875854492,0.7402178645133972,0.966797411441803,0.966797411441803,1.1062309741973877,1.2805228233337402,0.6879302859306335,1.7511111497879028,1.367668867111206,1.1062309741973877,1.1585185527801514,1.1585185527801514,1.367668867111206,1.1236600875854492,1.2979520559310913,1.210806131362915,1.0713725090026855,1.4373856782913208,0.9319390058517456,1.2282352447509766,1.1410893201828003,1.4373856782913208,1.0016558170318604,1.210806131362915,1.1062309741973877,1.2456644773483276,1.210806131362915,1.4199564456939697,1.820827841758728,1.8556863069534302,1.524531602859497,1.4199564456939697,0.6879302859306335,0.6007843017578125,-0.340392142534256,-0.7412636280059814,-0.7238343954086304,-0.37525054812431335,-0.270675390958786,-0.02666666731238365,-0.5146840810775757,-0.07895424962043762,-0.23581700026988983,-0.02666666731238365,0.11276688426733017,-0.37525054812431335,-0.14867103099822998,1.036514163017273,1.3153812885284424,-0.1138126328587532,-0.09638344496488571,0.0604793019592762,0.5659258961677551,0.9319390058517456,0.2173420488834381,-0.21838779747486115,-0.4449673295021057,0.0604793019592762,0.04305011034011841,-0.5321133136749268,-0.9678431153297424,-0.340392142534256,0.07790849357843399,1.4722440242767334,1.0713725090026855,0.49620914459228516,-0.270675390958786,1.7162526845932007,0.32191720604896545,-1.0375598669052124,-0.6018300652503967,-0.18352940678596497,0.30448800325393677,0.6356427073478699,1.193376898765564,0.8447930216789246,0.6530718803405762,1.053943395614624,1.4548147916793823,-0.7064052224159241,-1.1421350240707397,0.9493681788444519,0.7227886915206909,1.9079738855361938,1.507102370262146,1.036514163017273,-0.6018300652503967,0.07790849357843399,-1.2641394138336182,-0.7412636280059814,-0.7412636280059814,-0.5844008922576904,-0.462396502494812,0.11276688426733017,-0.270675390958786,-0.9329847693443298,-0.8458387851715088,0.7750762701034546,-0.8458387851715088,-1.5604357719421387,-1.7521568536758423,-1.804444432258606,-1.508148193359375,-1.5952941179275513,0.6705011129379272,1.5942484140396118,1.7511111497879028,1.2456644773483276,0.3567756116390228,0.5484967231750488,0.32191720604896545,0.4439215660095215,0.3916339874267578,0.49620914459228516,0.6530718803405762,1.053943395614624,0.46135076880455017,1.193376898765564,0.30448800325393677,0.2173420488834381,0.7750762701034546,1.2456644773483276,0.9493681788444519,1.332810401916504,1.3153812885284424,0.966797411441803,0.8622221946716309,1.332810401916504,1.210806131362915,1.053943395614624,1.2282352447509766,1.1410893201828003,1.053943395614624,1.3153812885284424,1.053943395614624,0.9842265844345093,1.193376898765564,1.4373856782913208,1.2630937099456787,1.1585185527801514,0.8099346160888672,1.2979520559310913,0.7053594589233398,0.8622221946716309,1.1236600875854492,1.2805228233337402],[1.8033987283706665,1.7859694957733154,1.9079738855361938,1.7336819171905518,1.820827841758728,1.820827841758728,1.7336819171905518,1.1236600875854492,0.5136383175849915,0.9319390058517456,1.4896732568740845,1.6988235712051392,1.2805228233337402,0.7576470375061035,1.7162526845932007,1.8033987283706665,1.5942484140396118,1.5419608354568481,1.9428322315216064,2.1694116592407227,2.082265853881836,2.0125489234924316,2.1345534324645996,2.4134204387664795,1.3850979804992676,2.3262743949890137,0.2696296274662018,-1.5604357719421387,-1.089847445487976,-1.3687145709991455,-0.270675390958786,0.6530718803405762,0.7402178645133972,0.6530718803405762,1.820827841758728,1.1585185527801514,1.524531602859497,1.5768191814422607,1.7685402631759644,1.9602614641189575,0.9145098328590393,1.175947666168213,0.9842265844345093,0.7227886915206909,1.1062309741973877,1.5419608354568481,1.7336819171905518,1.7685402631759644,1.8731154203414917,1.9079738855361938,1.663965106010437,1.6291067600250244,1.4199564456939697,1.7162526845932007,1.2282352447509766,1.2282352447509766,-0.6366884708404541,-0.35782134532928467,-0.21838779747486115,0.09533768892288208,0.32191720604896545,0.13019607961177826,0.18248365819454193,-0.009237472899258137,0.49620914459228516,0.32191720604896545,0.2347712367773056,0.4439215660095215,0.2173420488834381,0.6182135343551636,0.5659258961677551,0.7925054430961609,0.7925054430961609,0.5833551287651062,0.8622221946716309,0.9145098328590393,0.7576470375061035,0.6182135343551636,0.966797411441803,1.0190849304199219,0.9493681788444519,1.175947666168213,1.0016558170318604,1.193376898765564,1.2282352447509766,1.0190849304199219,1.175947666168213,1.2805228233337402,1.0888017416000366,1.036514163017273,0.9145098328590393,0.9842265844345093,1.036514163017273,1.2282352447509766,0.8447930216789246,1.2979520559310913,0.8970806002616882,1.036514163017273,1.4199564456939697,1.053943395614624,1.3850979804992676,0.8796514272689819,0.9319390058517456,1.4373856782913208,0.9145098328590393,1.7162526845932007,1.7162526845932007,1.4548147916793823,1.0016558170318604,1.053943395614624,0.5310675501823425,0.2173420488834381,-0.07895424962043762,-0.18352940678596497,-0.6541176438331604,-0.340392142534256,0.02562091499567032,0.3567756116390228,-0.1312418282032013,-0.41010892391204834,-0.270675390958786,-0.35782134532928467,0.07790849357843399,-0.09638344496488571,-0.09638344496488571,2.0996949672698975,0.16505447030067444,-0.7586928009986877,0.2522004246711731,0.18248365819454193,1.367668867111206,1.210806131362915,1.5768191814422607,0.8099346160888672,0.11276688426733017,-0.5321133136749268,-0.619259238243103,-0.270675390958786,-0.7064052224159241,-1.176993489265442,-0.9678431153297424,-0.2881045639514923,-1.351285457611084,-0.20095860958099365,-0.18352940678596497,-0.427538126707077,0.4090631902217865,1.6291067600250244,-0.009237472899258137,0.33934640884399414,-0.04409585893154144,-0.340392142534256,-0.2881045639514923,1.053943395614624,0.8970806002616882,1.5593899488449097,0.9493681788444519,-0.3229629695415497,-0.3229629695415497,1.0016558170318604,0.33934640884399414,0.16505447030067444,1.053943395614624,0.8273638486862183,0.0604793019592762,-1.089847445487976,-1.2641394138336182,-1.490718960762024,-1.804444432258606,-0.2881045639514923,0.7750762701034546,-0.4972549080848694,-0.2881045639514923,-0.619259238243103,-0.427538126707077,1.175947666168213,0.8099346160888672,-1.7172985076904297,-1.6998692750930786,-1.804444432258606,-1.6824400424957275,-1.1595642566680908,1.175947666168213,1.4199564456939697,1.524531602859497,1.6988235712051392,1.2805228233337402,-0.009237472899258137,0.18248365819454193,0.4090631902217865,0.8099346160888672,0.4439215660095215,0.6705011129379272,0.2173420488834381,-0.16610021889209747,0.4264923632144928,0.09533768892288208,0.32191720604896545,0.3567756116390228,0.5310675501823425,1.2979520559310913,1.0016558170318604,0.966797411441803,1.3153812885284424,1.350239634513855,1.4548147916793823,1.367668867111206,1.175947666168213,0.9319390058517456,1.036514163017273,0.966797411441803,1.5593899488449097,1.0888017416000366,1.2456644773483276,1.1410893201828003,1.2979520559310913,1.3153812885284424,1.681394338607788,0.8099346160888672,1.0190849304199219,0.9842265844345093,0.6182135343551636,0.9493681788444519,1.193376898765564],[1.8033987283706665,1.9602614641189575,1.9079738855361938,2.117124080657959,1.977690577507019,2.0648365020751953,1.9602614641189575,1.6116775274276733,1.1236600875854492,1.6291067600250244,1.838257074356079,1.4025272130966187,0.9145098328590393,0.49620914459228516,1.210806131362915,1.7859694957733154,1.6988235712051392,1.2630937099456787,1.4199564456939697,1.8905446529388428,1.8731154203414917,2.2216992378234863,1.8033987283706665,1.5593899488449097,1.524531602859497,1.3850979804992676,1.9602614641189575,0.3567756116390228,0.09533768892288208,-0.5669716596603394,-0.04409585893154144,0.5833551287651062,1.175947666168213,0.7227886915206909,1.4373856782913208,1.0888017416000366,1.367668867111206,1.4025272130966187,1.7336819171905518,1.6291067600250244,1.2456644773483276,0.7576470375061035,1.8033987283706665,1.2456644773483276,1.7336819171905518,1.0888017416000366,1.7336819171905518,1.820827841758728,1.7859694957733154,1.9428322315216064,1.9951198101043701,1.838257074356079,1.663965106010437,1.507102370262146,1.3850979804992676,1.0190849304199219,-0.23581700026988983,-0.427538126707077,-0.04409585893154144,-0.270675390958786,0.2522004246711731,0.4439215660095215,0.46135076880455017,0.49620914459228516,0.7402178645133972,0.8447930216789246,0.5484967231750488,0.47877994179725647,0.6007843017578125,0.8447930216789246,0.8447930216789246,0.8099346160888672,0.3916339874267578,0.9319390058517456,0.8447930216789246,0.9493681788444519,0.7750762701034546,0.7925054430961609,0.966797411441803,1.0016558170318604,0.8447930216789246,1.2630937099456787,1.0888017416000366,0.8622221946716309,0.9493681788444519,1.4373856782913208,0.9842265844345093,0.8970806002616882,1.0888017416000366,0.8622221946716309,1.036514163017273,1.0888017416000366,1.2282352447509766,0.8273638486862183,1.175947666168213,1.2282352447509766,0.9319390058517456,0.966797411441803,1.0713725090026855,1.2630937099456787,1.1062309741973877,1.1062309741973877,1.0888017416000366,1.332810401916504,1.7685402631759644,1.6988235712051392,1.8033987283706665,1.2805228233337402,0.9493681788444519,0.5833551287651062,0.04305011034011841,-0.2532461881637573,-0.427538126707077,-0.5844008922576904,-0.619259238243103,-0.21838779747486115,-0.06152505427598953,-0.20095860958099365,-0.07895424962043762,-0.21838779747486115,0.09533768892288208,-0.4972549080848694,-0.02666666731238365,0.14762526750564575,-0.16610021889209747,1.8033987283706665,-0.4798257052898407,-1.1944226026535034,-0.6018300652503967,0.47877994179725647,0.8447930216789246,0.008191721513867378,-0.09638344496488571,-0.21838779747486115,-1.0027015209197998,-0.37525054812431335,-0.8109803795814514,-1.1247059106826782,-1.1595642566680908,-0.07895424962043762,-0.462396502494812,-0.8632679581642151,-0.6366884708404541,-1.0027015209197998,-1.4558606147766113,-0.9155555367469788,-1.3861438035964966,-0.6889760494232178,-0.39267975091934204,0.2522004246711731,-0.21838779747486115,0.2347712367773056,-0.270675390958786,-0.4798257052898407,1.332810401916504,1.3153812885284424,0.9842265844345093,1.1062309741973877,0.2522004246711731,0.13019607961177826,-0.18352940678596497,-0.009237472899258137,1.2456644773483276,1.5768191814422607,-0.2881045639514923,0.3916339874267578,-1.1595642566680908,-1.351285457611084,-1.1944226026535034,-0.462396502494812,-0.16610021889209747,-0.5495424866676331,-1.7172985076904297,-1.1595642566680908,-0.37525054812431335,0.7925054430961609,1.1585185527801514,-1.4732897281646729,-1.6998692750930786,-1.665010929107666,-0.35782134532928467,0.5659258961677551,1.1585185527801514,1.663965106010437,1.838257074356079,1.507102370262146,2.3785619735717773,-0.06152505427598953,0.33934640884399414,0.11276688426733017,0.33934640884399414,0.5484967231750488,0.5659258961677551,0.47877994179725647,0.7925054430961609,0.2347712367773056,0.11276688426733017,0.3742047846317291,0.966797411441803,0.7925054430961609,1.1585185527801514,1.4896732568740845,1.210806131362915,1.175947666168213,1.2282352447509766,1.210806131362915,1.0713725090026855,1.175947666168213,1.1410893201828003,1.1062309741973877,1.367668867111206,1.0888017416000366,1.1585185527801514,0.9145098328590393,1.507102370262146,1.4199564456939697,1.5419608354568481,1.036514163017273,1.175947666168213,0.9319390058517456,0.966797411441803,0.9842265844345093,1.175947666168213,0.8796514272689819],[1.7685402631759644,1.663965106010437,1.820827841758728,1.9254029989242554,1.9951198101043701,1.9079738855361938,1.7511111497879028,1.3153812885284424,1.053943395614624,1.4373856782913208,1.0190849304199219,1.175947666168213,0.966797411441803,1.1062309741973877,1.8556863069534302,2.047407388687134,1.6116775274276733,0.28705883026123047,0.19991286098957062,0.9319390058517456,1.4548147916793823,1.2979520559310913,1.1236600875854492,1.210806131362915,1.175947666168213,1.7162526845932007,0.6705011129379272,-0.2532461881637573,0.28705883026123047,-0.7586928009986877,0.7750762701034546,0.7227886915206909,1.1585185527801514,1.2282352447509766,0.7925054430961609,1.2979520559310913,0.9493681788444519,1.5593899488449097,1.4025272130966187,1.3153812885284424,1.350239634513855,0.966797411441803,1.838257074356079,1.5942484140396118,1.5768191814422607,1.4548147916793823,1.6465359926223755,1.3153812885284424,1.7511111497879028,1.9951198101043701,1.7511111497879028,1.7336819171905518,1.332810401916504,1.4373856782913208,1.2630937099456787,0.6705011129379272,0.2347712367773056,-0.37525054812431335,-0.2532461881637573,-0.1312418282032013,-0.07895424962043762,0.09533768892288208,0.13019607961177826,0.46135076880455017,0.2696296274662018,0.04305011034011841,0.7750762701034546,0.6530718803405762,0.7053594589233398,0.46135076880455017,0.6705011129379272,0.47877994179725647,0.966797411441803,0.4264923632144928,0.5484967231750488,0.7750762701034546,1.0190849304199219,0.7402178645133972,1.0190849304199219,0.8099346160888672,0.8622221946716309,1.367668867111206,0.8970806002616882,1.0888017416000366,1.1585185527801514,1.210806131362915,1.1236600875854492,1.1410893201828003,1.3153812885284424,1.2456644773483276,0.9842265844345093,1.0713725090026855,1.3153812885284424,1.2805228233337402,1.0888017416000366,1.4025272130966187,1.1585185527801514,0.9319390058517456,0.9493681788444519,1.1062309741973877,1.3153812885284424,1.2456644773483276,1.2630937099456787,1.663965106010437,1.5419608354568481,1.4373856782913208,1.210806131362915,1.1236600875854492,0.6705011129379272,0.14762526750564575,-0.20095860958099365,-0.41010892391204834,-0.619259238243103,0.02562091499567032,-0.23581700026988983,-0.1312418282032013,-0.09638344496488571,0.11276688426733017,-0.23581700026988983,-0.009237472899258137,-0.07895424962043762,-0.02666666731238365,0.3567756116390228,-0.02666666731238365,0.11276688426733017,1.8905446529388428,-0.009237472899258137,-0.7935512065887451,-0.35782134532928467,-0.5844008922576904,-0.619259238243103,-0.06152505427598953,-0.3229629695415497,-0.02666666731238365,0.5310675501823425,0.5484967231750488,-0.1312418282032013,-0.5321133136749268,1.663965106010437,-0.14867103099822998,0.6705011129379272,-0.9678431153297424,-0.41010892391204834,-1.1421350240707397,-1.176993489265442,-0.5495424866676331,-1.0027015209197998,-0.305533766746521,0.008191721513867378,0.2522004246711731,-0.4449673295021057,-1.1595642566680908,0.8970806002616882,0.5310675501823425,0.8099346160888672,0.8970806002616882,1.175947666168213,1.053943395614624,0.28705883026123047,-0.6541176438331604,0.2347712367773056,-0.305533766746521,0.09533768892288208,1.210806131362915,0.7576470375061035,-0.427538126707077,-1.508148193359375,-1.6301524639129639,-0.8981263637542725,0.3742047846317291,0.2173420488834381,-1.5952941179275513,-0.5321133136749268,-1.1072766780853271,-0.1138126328587532,0.9493681788444519,1.5768191814422607,-1.0027015209197998,-1.3861438035964966,-0.462396502494812,0.07790849357843399,1.0888017416000366,1.5942484140396118,1.6465359926223755,1.6988235712051392,1.5593899488449097,2.082265853881836,0.8796514272689819,0.2522004246711731,0.32191720604896545,0.3916339874267578,0.6530718803405762,0.49620914459228516,0.2696296274662018,0.14762526750564575,0.3567756116390228,0.4264923632144928,0.07790849357843399,0.7402178645133972,1.3153812885284424,0.8970806002616882,1.0888017416000366,1.3153812885284424,1.2282352447509766,1.0713725090026855,1.210806131362915,1.036514163017273,0.8796514272689819,1.0016558170318604,1.1585185527801514,1.1585185527801514,0.8099346160888672,1.0016558170318604,1.1585185527801514,1.1236600875854492,1.507102370262146,1.663965106010437,1.1236600875854492,1.2630937099456787,0.6356427073478699,0.8447930216789246,0.8099346160888672,1.0888017416000366,1.1585185527801514],[1.820827841758728,1.8905446529388428,1.9079738855361938,1.663965106010437,1.8033987283706665,1.9079738855361938,1.9079738855361938,1.5768191814422607,0.7750762701034546,1.2282352447509766,1.2630937099456787,1.210806131362915,1.367668867111206,1.7685402631759644,2.082265853881836,1.7685402631759644,1.663965106010437,0.4264923632144928,0.5659258961677551,0.11276688426733017,-0.5495424866676331,-0.5844008922576904,-0.2881045639514923,0.16505447030067444,-0.09638344496488571,0.5833551287651062,0.9319390058517456,1.2805228233337402,-0.7064052224159241,0.18248365819454193,0.3916339874267578,0.7925054430961609,0.9842265844345093,1.210806131362915,1.524531602859497,0.966797411441803,1.2282352447509766,1.663965106010437,1.2456644773483276,1.0888017416000366,1.2805228233337402,1.2979520559310913,1.8556863069534302,1.5942484140396118,1.838257074356079,1.7162526845932007,2.239128589630127,1.977690577507019,1.5768191814422607,1.8033987283706665,1.820827841758728,1.663965106010437,1.4373856782913208,1.681394338607788,1.663965106010437,0.5833551287651062,-0.20095860958099365,-0.18352940678596497,-0.02666666731238365,0.09533768892288208,-0.02666666731238365,-0.1138126328587532,0.07790849357843399,0.6356427073478699,0.4439215660095215,0.5833551287651062,0.6356427073478699,0.6879302859306335,0.46135076880455017,0.8622221946716309,0.6879302859306335,0.7402178645133972,0.0604793019592762,0.7576470375061035,0.7925054430961609,1.210806131362915,0.6879302859306335,1.2979520559310913,0.7925054430961609,1.053943395614624,1.0016558170318604,0.8970806002616882,1.2805228233337402,1.2282352447509766,1.1236600875854492,1.2805228233337402,1.367668867111206,1.1585185527801514,1.3153812885284424,1.4025272130966187,1.2630937099456787,1.2456644773483276,1.1236600875854492,1.2630937099456787,1.1410893201828003,1.1585185527801514,1.210806131362915,1.2979520559310913,1.3153812885284424,1.4896732568740845,1.4548147916793823,1.367668867111206,1.524531602859497,1.9254029989242554,1.524531602859497,1.524531602859497,1.3153812885284424,0.8273638486862183,0.3742047846317291,0.5136383175849915,-0.06152505427598953,-0.2532461881637573,-0.5146840810775757,-0.009237472899258137,-0.009237472899258137,-0.270675390958786,-0.2532461881637573,-0.23581700026988983,0.32191720604896545,-0.07895424962043762,-0.07895424962043762,0.04305011034011841,-0.14867103099822998,0.2173420488834381,1.332810401916504,1.350239634513855,-0.427538126707077,-0.305533766746521,0.9842265844345093,-0.009237472899258137,-0.39267975091934204,0.008191721513867378,-0.462396502494812,-0.41010892391204834,0.3567756116390228,0.5833551287651062,-0.37525054812431335,-0.20095860958099365,-0.340392142534256,-0.270675390958786,-0.4449673295021057,-1.0549890995025635,-1.7870151996612549,-0.5844008922576904,-0.09638344496488571,0.8099346160888672,-0.305533766746521,-1.4210021495819092,-0.35782134532928467,-1.2815686464309692,-0.04409585893154144,0.8099346160888672,-0.35782134532928467,-0.3229629695415497,1.1236600875854492,-0.06152505427598953,0.2522004246711731,0.09533768892288208,0.47877994179725647,0.02562091499567032,-0.1312418282032013,-1.089847445487976,-0.6366884708404541,0.8796514272689819,0.2173420488834381,0.2347712367773056,-1.508148193359375,-1.4384313821792603,-0.4798257052898407,0.7227886915206909,1.4373856782913208,-0.305533766746521,-1.3164269924163818,-0.7412636280059814,-0.6366884708404541,0.7576470375061035,1.838257074356079,1.053943395614624,-0.35782134532928467,0.18248365819454193,0.6007843017578125,0.9493681788444519,1.3153812885284424,1.7685402631759644,1.2456644773483276,1.350239634513855,1.9254029989242554,1.2456644773483276,0.5484967231750488,0.5310675501823425,0.02562091499567032,0.5310675501823425,0.3742047846317291,0.19991286098957062,0.07790849357843399,0.6705011129379272,0.2522004246711731,0.32191720604896545,0.8273638486862183,0.6356427073478699,0.9145098328590393,1.2630937099456787,1.2456644773483276,1.4199564456939697,0.9145098328590393,1.193376898765564,1.036514163017273,1.2805228233337402,0.8622221946716309,0.8273638486862183,1.2805228233337402,1.3850979804992676,1.3153812885284424,1.1585185527801514,1.4548147916793823,1.2282352447509766,1.3153812885284424,1.6116775274276733,1.4373856782913208,0.9842265844345093,1.0190849304199219,1.1410893201828003,1.0888017416000366,1.2456644773483276],[1.8556863069534302,1.663965106010437,1.7336819171905518,1.9428322315216064,1.8033987283706665,1.5768191814422607,1.7162526845932007,1.5942484140396118,1.2805228233337402,1.6465359926223755,1.1062309741973877,0.7576470375061035,1.4373856782913208,1.7162526845932007,1.4199564456939697,1.6291067600250244,1.9428322315216064,1.9254029989242554,1.9079738855361938,1.0016558170318604,0.3567756116390228,-0.340392142534256,-1.1595642566680908,-0.8284096121788025,-0.9852723479270935,0.02562091499567032,-1.1595642566680908,-0.2532461881637573,-0.35782134532928467,-0.9678431153297424,-1.508148193359375,0.8099346160888672,1.210806131362915,1.7162526845932007,1.3850979804992676,1.1062309741973877,1.175947666168213,1.367668867111206,1.3850979804992676,1.350239634513855,1.4025272130966187,1.5942484140396118,1.6116775274276733,2.0299782752990723,1.663965106010437,1.7336819171905518,1.5419608354568481,1.5768191814422607,1.9079738855361938,1.367668867111206,1.8731154203414917,1.6988235712051392,1.4548147916793823,1.2979520559310913,1.0888017416000366,0.3916339874267578,-0.5844008922576904,-0.04409585893154144,-0.14867103099822998,-0.09638344496488571,-0.2881045639514923,-0.09638344496488571,0.11276688426733017,0.8970806002616882,0.7925054430961609,0.5310675501823425,0.6007843017578125,0.18248365819454193,0.18248365819454193,0.8622221946716309,0.3742047846317291,0.5833551287651062,0.6182135343551636,0.7053594589233398,0.9145098328590393,0.6182135343551636,0.5833551287651062,1.1236600875854492,1.1062309741973877,0.9319390058517456,1.2282352447509766,1.3153812885284424,0.8970806002616882,1.210806131362915,0.9319390058517456,1.2630937099456787,1.4025272130966187,1.0888017416000366,0.9493681788444519,0.966797411441803,1.1062309741973877,1.2282352447509766,1.350239634513855,1.2630937099456787,1.2282352447509766,1.0016558170318604,1.4548147916793823,1.507102370262146,1.507102370262146,0.8447930216789246,1.2805228233337402,1.9428322315216064,1.9079738855361938,1.838257074356079,1.507102370262146,1.332810401916504,0.7402178645133972,0.6007843017578125,0.16505447030067444,-0.427538126707077,-0.2532461881637573,0.14762526750564575,-0.18352940678596497,-0.07895424962043762,-0.009237472899258137,0.14762526750564575,0.5136383175849915,0.09533768892288208,0.09533768892288208,0.008191721513867378,0.3742047846317291,0.16505447030067444,-0.02666666731238365,0.46135076880455017,1.5419608354568481,1.4199564456939697,-0.7935512065887451,0.7227886915206909,0.6356427073478699,1.4896732568740845,1.4896732568740845,0.33934640884399414,0.0604793019592762,-0.5495424866676331,-0.7586928009986877,0.7227886915206909,-0.35782134532928467,0.49620914459228516,-0.5669716596603394,1.2630937099456787,1.2282352447509766,-0.1312418282032013,1.053943395614624,0.02562091499567032,0.7402178645133972,0.7750762701034546,0.6182135343551636,1.332810401916504,1.0888017416000366,0.3916339874267578,-0.7586928009986877,-0.8981263637542725,-0.04409585893154144,-0.4798257052898407,-0.305533766746521,-0.4972549080848694,-0.4972549080848694,0.9145098328590393,1.0888017416000366,0.2696296274662018,-0.8632679581642151,-0.6715468168258667,-0.39267975091934204,0.02562091499567032,0.7227886915206909,-0.6366884708404541,-0.462396502494812,-1.6998692750930786,-0.07895424962043762,1.1236600875854492,0.4264923632144928,-0.9852723479270935,-1.2989978790283203,-0.3229629695415497,0.3567756116390228,0.5833551287651062,1.8731154203414917,0.7053594589233398,1.2456644773483276,0.6705011129379272,1.2979520559310913,0.9319390058517456,1.175947666168213,1.0888017416000366,0.6182135343551636,1.367668867111206,1.5419608354568481,1.6465359926223755,1.193376898765564,0.3742047846317291,-0.09638344496488571,-0.06152505427598953,0.4090631902217865,-0.1312418282032013,0.7227886915206909,0.30448800325393677,-0.02666666731238365,0.28705883026123047,0.3916339874267578,0.5659258961677551,0.6007843017578125,0.966797411441803,0.9842265844345093,1.0713725090026855,1.0888017416000366,1.0190849304199219,1.1410893201828003,1.2282352447509766,1.175947666168213,0.7227886915206909,1.4199564456939697,1.1236600875854492,1.2630937099456787,1.1062309741973877,1.2805228233337402,0.9842265844345093,1.507102370262146,1.2282352447509766,1.4548147916793823,0.9319390058517456,1.0190849304199219,0.8970806002616882,0.8447930216789246,1.1410893201828003],[1.7162526845932007,1.7336819171905518,1.9428322315216064,2.0125489234924316,1.7162526845932007,1.5593899488449097,1.4025272130966187,1.6291067600250244,0.6182135343551636,1.5942484140396118,0.6356427073478699,0.04305011034011841,1.4896732568740845,1.1585185527801514,0.2347712367773056,1.2630937099456787,1.8731154203414917,2.151982545852661,2.27398681640625,2.27398681640625,1.7336819171905518,0.18248365819454193,-0.6018300652503967,-0.7935512065887451,-1.0375598669052124,-1.333856225013733,-1.5604357719421387,0.008191721513867378,-0.2532461881637573,-1.4035730361938477,-1.6998692750930786,0.9145098328590393,0.9145098328590393,1.7336819171905518,0.9493681788444519,1.3850979804992676,1.6291067600250244,1.507102370262146,1.4199564456939697,1.193376898765564,1.2805228233337402,1.332810401916504,1.7162526845932007,1.8033987283706665,2.27398681640625,1.9079738855361938,1.9428322315216064,1.507102370262146,1.7685402631759644,1.820827841758728,1.507102370262146,1.4199564456939697,1.1062309741973877,1.1062309741973877,1.0888017416000366,-0.340392142534256,-0.2532461881637573,-0.6366884708404541,0.18248365819454193,0.4264923632144928,-0.02666666731238365,0.33934640884399414,0.30448800325393677,0.3916339874267578,0.13019607961177826,0.4264923632144928,0.8622221946716309,0.5484967231750488,0.32191720604896545,0.30448800325393677,0.7576470375061035,0.5310675501823425,0.7576470375061035,0.7925054430961609,1.1236600875854492,0.8970806002616882,0.6879302859306335,1.036514163017273,1.1585185527801514,0.966797411441803,0.7925054430961609,1.0016558170318604,1.2805228233337402,0.966797411441803,1.175947666168213,1.3153812885284424,1.367668867111206,1.2630937099456787,1.210806131362915,1.1236600875854492,1.4199564456939697,1.1410893201828003,0.9493681788444519,1.0713725090026855,1.1410893201828003,1.2282352447509766,1.2456644773483276,1.193376898765564,0.9145098328590393,1.210806131362915,1.820827841758728,1.681394338607788,1.7511111497879028,1.6116775274276733,1.5942484140396118,0.6705011129379272,0.47877994179725647,0.11276688426733017,-0.2881045639514923,-0.5146840810775757,-0.23581700026988983,-0.07895424962043762,-0.14867103099822998,0.2173420488834381,0.2522004246711731,0.18248365819454193,-0.009237472899258137,0.28705883026123047,-0.06152505427598953,-0.06152505427598953,0.5310675501823425,0.7576470375061035,0.2347712367773056,-0.009237472899258137,1.9079738855361938,1.1236600875854492,-1.3164269924163818,0.4264923632144928,1.0888017416000366,1.2979520559310913,1.524531602859497,0.13019607961177826,-0.5146840810775757,0.5310675501823425,0.6182135343551636,1.507102370262146,0.7227886915206909,0.49620914459228516,0.4439215660095215,0.11276688426733017,0.008191721513867378,0.2522004246711731,0.7750762701034546,0.49620914459228516,0.11276688426733017,1.0190849304199219,0.5659258961677551,0.4439215660095215,0.7227886915206909,0.13019607961177826,-0.16610021889209747,-1.0724183320999146,-0.8458387851715088,-1.0375598669052124,0.09533768892288208,-0.35782134532928467,0.19991286098957062,0.7402178645133972,1.3850979804992676,0.4264923632144928,-0.20095860958099365,-0.6366884708404541,-0.16610021889209747,0.6705011129379272,0.7750762701034546,-0.7586928009986877,-0.9852723479270935,-1.490718960762024,0.14762526750564575,1.0888017416000366,0.19991286098957062,-1.4558606147766113,-1.1072766780853271,-0.04409585893154144,-0.5146840810775757,0.7750762701034546,0.7925054430961609,0.9319390058517456,-0.14867103099822998,1.0016558170318604,0.966797411441803,0.30448800325393677,1.1585185527801514,0.2173420488834381,0.966797411441803,1.2456644773483276,1.7162526845932007,1.5768191814422607,0.7925054430961609,1.507102370262146,0.32191720604896545,0.07790849357843399,0.0604793019592762,0.4264923632144928,-0.02666666731238365,0.46135076880455017,-0.06152505427598953,-0.23581700026988983,0.4264923632144928,0.3742047846317291,0.8447930216789246,1.1410893201828003,1.036514163017273,1.332810401916504,1.332810401916504,1.1410893201828003,1.175947666168213,0.9319390058517456,1.4722440242767334,1.4373856782913208,1.2630937099456787,1.036514163017273,1.036514163017273,1.0016558170318604,0.9842265844345093,1.2805228233337402,1.4199564456939697,1.4722440242767334,1.2805228233337402,0.966797411441803,0.7227886915206909,0.49620914459228516,0.8970806002616882,0.8970806002616882],[1.838257074356079,1.8905446529388428,1.7336819171905518,1.7162526845932007,1.663965106010437,1.663965106010437,1.524531602859497,1.036514163017273,1.0016558170318604,0.9842265844345093,0.7925054430961609,1.2456644773483276,1.6116775274276733,1.0190849304199219,0.33934640884399414,0.7227886915206909,1.9951198101043701,2.047407388687134,2.047407388687134,1.8731154203414917,1.8033987283706665,0.7402178645133972,0.7053594589233398,-0.1138126328587532,-1.1247059106826782,-1.0724183320999146,-0.8806971907615662,-0.9504139423370361,0.4264923632144928,-0.4972549080848694,-1.1072766780853271,0.3916339874267578,1.1062309741973877,1.0888017416000366,1.1585185527801514,0.6182135343551636,1.2456644773483276,1.7162526845932007,1.5768191814422607,1.036514163017273,0.9145098328590393,1.332810401916504,1.5419608354568481,1.7685402631759644,1.820827841758728,2.0299782752990723,1.977690577507019,1.9428322315216064,1.7511111497879028,1.6988235712051392,1.5942484140396118,1.4373856782913208,1.4025272130966187,1.350239634513855,0.5484967231750488,-0.7586928009986877,-0.462396502494812,0.04305011034011841,-0.462396502494812,0.30448800325393677,0.6705011129379272,-0.14867103099822998,0.04305011034011841,0.11276688426733017,0.49620914459228516,0.33934640884399414,0.5833551287651062,0.7402178645133972,0.46135076880455017,0.8447930216789246,0.7576470375061035,0.8970806002616882,1.0016558170318604,0.966797411441803,1.0016558170318604,0.8447930216789246,0.6879302859306335,1.1585185527801514,1.0190849304199219,0.9842265844345093,1.1410893201828003,1.175947666168213,1.4722440242767334,1.0713725090026855,1.053943395614624,1.2456644773483276,1.4025272130966187,1.053943395614624,1.193376898765564,1.332810401916504,1.2805228233337402,1.4199564456939697,1.367668867111206,1.0713725090026855,1.2630937099456787,1.0888017416000366,1.1062309741973877,1.193376898765564,1.193376898765564,1.6291067600250244,1.9079738855361938,1.7336819171905518,1.507102370262146,1.4896732568740845,0.5310675501823425,0.8447930216789246,-0.1312418282032013,0.0604793019592762,-0.340392142534256,-0.06152505427598953,-0.5495424866676331,0.09533768892288208,0.16505447030067444,0.2696296274662018,0.2522004246711731,0.14762526750564575,0.32191720604896545,0.02562091499567032,0.2347712367773056,0.4264923632144928,-0.14867103099822998,-0.02666666731238365,0.5659258961677551,0.47877994179725647,1.5768191814422607,1.6291067600250244,-1.246710181236267,-0.6889760494232178,1.4896732568740845,1.7685402631759644,1.7162526845932007,0.5833551287651062,-0.6018300652503967,-0.270675390958786,0.8970806002616882,0.8273638486862183,1.524531602859497,0.6530718803405762,-0.07895424962043762,0.7053594589233398,0.33934640884399414,1.1062309741973877,0.9493681788444519,0.04305011034011841,0.16505447030067444,0.47877994179725647,0.30448800325393677,-0.1312418282032013,1.2456644773483276,0.6007843017578125,1.036514163017273,0.18248365819454193,-0.37525054812431335,-1.1247059106826782,-0.35782134532928467,0.008191721513867378,0.47877994179725647,0.02562091499567032,0.3916339874267578,0.9319390058517456,0.09533768892288208,-0.3229629695415497,-0.462396502494812,0.7925054430961609,1.2282352447509766,0.13019607961177826,0.11276688426733017,-1.4384313821792603,0.02562091499567032,1.2805228233337402,-0.009237472899258137,-0.7064052224159241,-0.9852723479270935,0.008191721513867378,-0.4798257052898407,0.008191721513867378,1.838257074356079,-0.5844008922576904,-0.9155555367469788,-0.340392142534256,0.30448800325393677,0.7227886915206909,0.7227886915206909,0.8796514272689819,0.04305011034011841,0.8273638486862183,0.6182135343551636,-0.8632679581642151,0.5484967231750488,1.507102370262146,1.820827841758728,1.4548147916793823,0.4090631902217865,0.6007843017578125,0.33934640884399414,0.008191721513867378,0.3742047846317291,0.28705883026123047,0.4264923632144928,0.33934640884399414,0.7402178645133972,1.1585185527801514,0.9842265844345093,0.8447930216789246,1.1236600875854492,1.210806131362915,1.1236600875854492,0.9842265844345093,1.1236600875854492,1.332810401916504,1.2805228233337402,1.6116775274276733,1.1410893201828003,1.0016558170318604,0.6705011129379272,1.350239634513855,1.2979520559310913,1.367668867111206,1.350239634513855,1.1062309741973877,0.7053594589233398,0.6530718803405762,1.0016558170318604,1.1236600875854492],[1.5593899488449097,1.7336819171905518,1.7162526845932007,1.7859694957733154,1.9428322315216064,1.8033987283706665,1.367668867111206,1.1236600875854492,1.210806131362915,1.2282352447509766,0.966797411441803,1.663965106010437,0.9145098328590393,1.6291067600250244,1.6291067600250244,1.9602614641189575,2.0299782752990723,2.047407388687134,2.117124080657959,2.151982545852661,2.0125489234924316,1.8905446529388428,1.5942484140396118,0.6705011129379272,0.5310675501823425,-0.8109803795814514,-0.39267975091934204,1.175947666168213,0.5310675501823425,-0.1138126328587532,0.07790849357843399,0.6530718803405762,1.1236600875854492,1.367668867111206,1.5768191814422607,0.9145098328590393,0.8099346160888672,1.4373856782913208,1.4199564456939697,1.367668867111206,1.3850979804992676,1.6116775274276733,1.8033987283706665,1.681394338607788,1.2805228233337402,1.6465359926223755,1.8905446529388428,1.838257074356079,1.4548147916793823,1.3850979804992676,2.082265853881836,1.6988235712051392,1.3153812885284424,1.0190849304199219,0.33934640884399414,-0.5146840810775757,-0.7412636280059814,-0.270675390958786,0.46135076880455017,0.13019607961177826,0.04305011034011841,0.49620914459228516,0.7750762701034546,0.8447930216789246,0.30448800325393677,0.7925054430961609,0.6007843017578125,0.9493681788444519,0.9493681788444519,0.6530718803405762,0.7750762701034546,0.49620914459228516,0.8273638486862183,0.8273638486862183,0.2347712367773056,0.8273638486862183,1.3850979804992676,0.8099346160888672,1.053943395614624,0.9842265844345093,1.053943395614624,1.193376898765564,1.193376898765564,1.2979520559310913,0.9493681788444519,1.2282352447509766,1.053943395614624,1.175947666168213,1.3850979804992676,1.1410893201828003,1.036514163017273,1.1236600875854492,1.193376898765564,1.2805228233337402,0.9145098328590393,1.2979520559310913,1.175947666168213,1.5593899488449097,1.6465359926223755,1.8033987283706665,1.6291067600250244,1.6291067600250244,1.5593899488449097,1.2456644773483276,0.6356427073478699,0.09533768892288208,0.4090631902217865,-0.270675390958786,-0.270675390958786,-0.009237472899258137,-0.4449673295021057,0.0604793019592762,-0.14867103099822998,0.2173420488834381,0.19991286098957062,-0.1138126328587532,0.32191720604896545,-0.2532461881637573,0.30448800325393677,0.16505447030067444,1.210806131362915,0.7750762701034546,0.7402178645133972,0.3916339874267578,2.204270124435425,1.5419608354568481,-0.8109803795814514,0.9842265844345093,1.7511111497879028,1.2630937099456787,1.7336819171905518,0.8970806002616882,0.02562091499567032,0.8447930216789246,0.8796514272689819,1.367668867111206,1.0713725090026855,0.5136383175849915,1.0713725090026855,0.6182135343551636,0.9493681788444519,1.053943395614624,0.47877994179725647,0.2347712367773056,-0.18352940678596497,0.6879302859306335,-0.04409585893154144,0.7402178645133972,0.9145098328590393,0.3916339874267578,1.2282352447509766,0.8099346160888672,-0.3229629695415497,-0.9155555367469788,-0.619259238243103,-0.5495424866676331,-0.06152505427598953,0.0604793019592762,-0.7064052224159241,0.30448800325393677,-0.9155555367469788,-0.6541176438331604,-0.14867103099822998,0.09533768892288208,0.49620914459228516,-1.1072766780853271,-0.04409585893154144,-1.4558606147766113,0.11276688426733017,1.1585185527801514,0.13019607961177826,-1.2292810678482056,0.02562091499567032,-0.340392142534256,-0.340392142534256,0.04305011034011841,1.2805228233337402,-0.6541176438331604,-0.9329847693443298,0.07790849357843399,0.5659258961677551,0.5136383175849915,1.1062309741973877,-1.1072766780853271,-0.340392142534256,0.0604793019592762,0.16505447030067444,0.46135076880455017,1.0713725090026855,1.524531602859497,1.524531602859497,2.0125489234924316,1.6116775274276733,1.2456644773483276,1.2805228233337402,0.09533768892288208,-0.07895424962043762,-1.1944226026535034,-0.7761220335960388,-0.07895424962043762,0.008191721513867378,-0.14867103099822998,0.7227886915206909,0.9145098328590393,0.9319390058517456,0.8622221946716309,0.8796514272689819,1.507102370262146,1.3850979804992676,1.1585185527801514,1.210806131362915,1.507102370262146,1.175947666168213,0.7576470375061035,0.6879302859306335,1.0016558170318604,1.2979520559310913,1.350239634513855,1.5942484140396118,0.9319390058517456,0.3567756116390228,1.2282352447509766,1.1236600875854492,1.350239634513855],[1.4548147916793823,1.681394338607788,1.9079738855361938,1.7162526845932007,1.663965106010437,1.681394338607788,1.4199564456939697,1.1062309741973877,1.0190849304199219,1.1585185527801514,0.5484967231750488,0.9319390058517456,1.367668867111206,1.977690577507019,2.0299782752990723,2.151982545852661,2.082265853881836,2.0299782752990723,1.9602614641189575,1.6988235712051392,2.047407388687134,1.7511111497879028,1.5768191814422607,0.8273638486862183,0.8273638486862183,0.18248365819454193,-0.6541176438331604,0.9145098328590393,0.14762526750564575,-0.02666666731238365,0.46135076880455017,0.8970806002616882,0.9319390058517456,1.5593899488449097,1.210806131362915,1.3850979804992676,1.7511111497879028,1.7511111497879028,1.4025272130966187,1.4548147916793823,1.2979520559310913,1.332810401916504,1.3153812885284424,1.7685402631759644,1.7336819171905518,1.7336819171905518,1.8556863069534302,1.838257074356079,1.524531602859497,1.175947666168213,1.3153812885284424,1.2979520559310913,1.1236600875854492,0.6356427073478699,-0.5146840810775757,-0.6366884708404541,-0.41010892391204834,-0.14867103099822998,-0.06152505427598953,0.3916339874267578,0.2173420488834381,0.6356427073478699,0.4090631902217865,0.8447930216789246,1.0190849304199219,0.3742047846317291,0.7750762701034546,0.30448800325393677,0.966797411441803,0.6007843017578125,0.6182135343551636,0.7227886915206909,0.9493681788444519,0.9319390058517456,0.8099346160888672,0.7750762701034546,0.7925054430961609,0.7750762701034546,1.193376898765564,0.8622221946716309,1.0016558170318604,1.0713725090026855,1.332810401916504,0.8796514272689819,1.0713725090026855,1.2282352447509766,1.0016558170318604,0.7750762701034546,1.2282352447509766,1.2456644773483276,1.4548147916793823,1.2282352447509766,1.1410893201828003,1.350239634513855,1.210806131362915,1.2630937099456787,1.2456644773483276,1.2630937099456787,1.6988235712051392,2.0125489234924316,1.5768191814422607,1.5593899488449097,1.1062309741973877,0.8796514272689819,0.9493681788444519,-0.1312418282032013,-0.270675390958786,-0.2881045639514923,-0.16610021889209747,0.19991286098957062,0.3916339874267578,-0.02666666731238365,0.4264923632144928,-0.07895424962043762,0.13019607961177826,0.04305011034011841,0.30448800325393677,0.30448800325393677,0.4439215660095215,0.6879302859306335,0.49620914459228516,0.13019607961177826,0.8622221946716309,0.5659258961677551,2.082265853881836,0.8099346160888672,-0.619259238243103,0.2696296274662018,1.4722440242767334,1.1410893201828003,1.3850979804992676,1.053943395614624,0.6705011129379272,0.2522004246711731,1.1236600875854492,1.1062309741973877,1.1410893201828003,0.6007843017578125,1.3153812885284424,1.4373856782913208,0.9493681788444519,0.7750762701034546,-0.6018300652503967,0.16505447030067444,0.4264923632144928,0.19991286098957062,1.0888017416000366,1.507102370262146,1.820827841758728,0.2522004246711731,-0.16610021889209747,1.0713725090026855,-0.462396502494812,0.32191720604896545,0.4439215660095215,-0.5321133136749268,-0.41010892391204834,-0.1138126328587532,-0.14867103099822998,0.2522004246711731,-0.14867103099822998,-0.8981263637542725,-0.6889760494232178,0.5659258961677551,0.46135076880455017,-0.9329847693443298,-0.06152505427598953,-1.6824400424957275,0.008191721513867378,0.8099346160888672,0.6182135343551636,0.2173420488834381,-0.2881045639514923,-1.4558606147766113,-1.0549890995025635,1.5419608354568481,0.5310675501823425,-1.665010929107666,-0.9155555367469788,-1.2815686464309692,0.6356427073478699,0.6530718803405762,0.6356427073478699,-0.270675390958786,1.4373856782913208,0.14762526750564575,-0.02666666731238365,0.7576470375061035,0.8099346160888672,1.350239634513855,1.977690577507019,1.977690577507019,0.8099346160888672,-0.2881045639514923,1.1236600875854492,-0.4798257052898407,-1.804444432258606,-1.7695860862731934,-1.7521568536758423,-0.4798257052898407,-1.4384313821792603,-0.7238343954086304,0.8796514272689819,0.9493681788444519,0.7053594589233398,0.8622221946716309,0.8447930216789246,0.8099346160888672,0.8970806002616882,1.036514163017273,0.9319390058517456,1.0713725090026855,1.3153812885284424,1.0016558170318604,0.8099346160888672,1.193376898765564,1.2630937099456787,1.4548147916793823,1.5593899488449097,0.9493681788444519,0.8099346160888672,1.2805228233337402,1.1410893201828003,1.210806131362915],[1.5768191814422607,1.3153812885284424,1.507102370262146,1.681394338607788,1.6291067600250244,1.6988235712051392,1.4722440242767334,1.3153812885284424,1.0713725090026855,1.4025272130966187,0.8796514272689819,0.4264923632144928,1.6116775274276733,1.9079738855361938,1.7859694957733154,1.7859694957733154,1.9079738855361938,1.1062309741973877,1.0190849304199219,1.2630937099456787,0.966797411441803,1.1236600875854492,0.7925054430961609,0.0604793019592762,0.3916339874267578,-0.6889760494232178,1.1410893201828003,-0.18352940678596497,0.2696296274662018,1.0016558170318604,0.966797411441803,0.2696296274662018,1.1585185527801514,1.6465359926223755,1.036514163017273,1.4896732568740845,1.1585185527801514,1.210806131362915,1.5942484140396118,1.524531602859497,1.838257074356079,1.6988235712051392,1.332810401916504,1.350239634513855,1.820827841758728,1.977690577507019,1.6116775274276733,1.507102370262146,1.053943395614624,1.1410893201828003,0.8447930216789246,1.2282352447509766,0.2347712367773056,0.2522004246711731,-0.619259238243103,-0.14867103099822998,-0.4449673295021057,0.0604793019592762,-0.06152505427598953,0.7053594589233398,0.2173420488834381,0.30448800325393677,0.5310675501823425,1.1585185527801514,0.19991286098957062,0.9145098328590393,0.16505447030067444,0.3916339874267578,0.2522004246711731,1.053943395614624,0.8796514272689819,0.6705011129379272,1.1585185527801514,0.7053594589233398,1.193376898765564,0.7227886915206909,0.5833551287651062,1.2282352447509766,1.053943395614624,1.0016558170318604,0.9145098328590393,1.2805228233337402,1.053943395614624,0.9145098328590393,1.1236600875854492,1.1585185527801514,1.367668867111206,1.175947666168213,1.1236600875854492,1.0190849304199219,1.2282352447509766,1.036514163017273,1.0888017416000366,1.036514163017273,1.2456644773483276,1.3850979804992676,1.210806131362915,1.9079738855361938,1.5942484140396118,1.4373856782913208,1.6116775274276733,1.332810401916504,1.2282352447509766,0.7925054430961609,0.14762526750564575,-0.18352940678596497,-0.39267975091934204,-0.4449673295021057,0.0604793019592762,0.02562091499567032,-0.07895424962043762,0.4090631902217865,0.33934640884399414,0.30448800325393677,0.6530718803405762,0.6182135343551636,0.3742047846317291,0.6530718803405762,0.4264923632144928,0.3567756116390228,0.4439215660095215,0.5136383175849915,1.1062309741973877,1.2282352447509766,2.3785619735717773,1.350239634513855,-0.8981263637542725,0.008191721513867378,1.4199564456939697,1.4199564456939697,1.9428322315216064,1.5942484140396118,1.6465359926223755,1.2979520559310913,1.3153812885284424,0.966797411441803,0.2522004246711731,0.8970806002616882,0.8099346160888672,0.7053594589233398,0.6530718803405762,1.1062309741973877,-0.3229629695415497,-0.23581700026988983,-0.1312418282032013,0.0604793019592762,0.2696296274662018,1.0190849304199219,1.7162526845932007,1.1062309741973877,0.32191720604896545,0.2696296274662018,-0.35782134532928467,-0.09638344496488571,-0.14867103099822998,0.0604793019592762,-0.23581700026988983,-0.37525054812431335,-0.4449673295021057,0.5310675501823425,0.09533768892288208,-0.7238343954086304,0.18248365819454193,0.9842265844345093,1.4025272130966187,-0.5321133136749268,-0.4972549080848694,-1.508148193359375,0.0604793019592762,1.0016558170318604,0.07790849357843399,0.8622221946716309,-0.427538126707077,-0.9329847693443298,-0.5146840810775757,0.07790849357843399,1.4548147916793823,-0.7412636280059814,-1.089847445487976,-1.0375598669052124,-0.23581700026988983,0.8622221946716309,0.9319390058517456,0.07790849357843399,0.28705883026123047,0.18248365819454193,0.7750762701034546,0.5136383175849915,0.6007843017578125,1.5419608354568481,1.4373856782913208,1.4896732568740845,1.8556863069534302,-0.7586928009986877,0.9842265844345093,-0.07895424962043762,-0.9155555367469788,-1.5778648853302002,1.0016558170318604,-1.1247059106826782,-1.6127233505249023,1.2630937099456787,-0.06152505427598953,-0.07895424962043762,0.6530718803405762,0.8970806002616882,0.8099346160888672,0.5659258961677551,1.053943395614624,0.8970806002616882,1.2630937099456787,1.5593899488449097,1.2630937099456787,0.9842265844345093,0.9319390058517456,0.6530718803405762,1.1062309741973877,1.3153812885284424,1.4373856782913208,1.1585185527801514,0.4090631902217865,0.8796514272689819,1.0888017416000366,1.5593899488449097],[1.4548147916793823,1.4722440242767334,1.7511111497879028,1.4199564456939697,1.7162526845932007,1.7859694957733154,1.663965106010437,1.2282352447509766,1.6116775274276733,1.3850979804992676,0.9493681788444519,1.367668867111206,1.5942484140396118,1.7685402631759644,1.663965106010437,1.507102370262146,0.49620914459228516,-0.23581700026988983,0.09533768892288208,-0.14867103099822998,0.46135076880455017,0.28705883026123047,0.14762526750564575,-1.2989978790283203,-0.9155555367469788,-1.3164269924163818,-0.9852723479270935,-1.2989978790283203,0.32191720604896545,0.9319390058517456,1.4373856782913208,0.7402178645133972,1.332810401916504,1.2805228233337402,1.5768191814422607,1.053943395614624,1.4373856782913208,0.8273638486862183,1.5942484140396118,1.7162526845932007,1.8556863069534302,1.8731154203414917,1.8033987283706665,1.3153812885284424,1.2630937099456787,1.7511111497879028,1.5419608354568481,1.1410893201828003,0.7402178645133972,1.5593899488449097,1.0190849304199219,1.2456644773483276,-0.462396502494812,-0.270675390958786,-0.305533766746521,-0.4449673295021057,-0.23581700026988983,-0.3229629695415497,0.16505447030067444,-0.04409585893154144,0.2173420488834381,0.16505447030067444,0.7925054430961609,-0.07895424962043762,0.3742047846317291,0.18248365819454193,0.3916339874267578,0.7402178645133972,0.6007843017578125,0.6182135343551636,0.3742047846317291,0.7925054430961609,0.6356427073478699,0.7053594589233398,0.3742047846317291,0.8970806002616882,1.0016558170318604,0.8970806002616882,0.6705011129379272,1.4896732568740845,1.0713725090026855,0.8796514272689819,0.9493681788444519,1.5942484140396118,0.8796514272689819,1.1062309741973877,0.966797411441803,0.7925054430961609,1.2456644773483276,1.3850979804992676,1.0190849304199219,1.0713725090026855,1.175947666168213,1.2805228233337402,1.4373856782913208,1.367668867111206,1.9079738855361938,1.524531602859497,1.6988235712051392,1.8905446529388428,1.2282352447509766,0.7402178645133972,0.7227886915206909,0.5659258961677551,0.07790849357843399,-0.14867103099822998,-0.07895424962043762,0.04305011034011841,0.04305011034011841,-0.1138126328587532,-0.14867103099822998,0.02562091499567032,-0.04409585893154144,0.09533768892288208,0.5484967231750488,0.7227886915206909,0.5484967231750488,0.6356427073478699,0.5484967231750488,0.7750762701034546,0.6530718803405762,1.053943395614624,0.5833551287651062,1.053943395614624,2.1694116592407227,1.977690577507019,-0.18352940678596497,0.30448800325393677,1.9079738855361938,1.8905446529388428,1.4896732568740845,1.7859694957733154,1.350239634513855,1.053943395614624,0.9842265844345093,1.507102370262146,0.33934640884399414,0.16505447030067444,1.1062309741973877,0.8622221946716309,0.4439215660095215,0.008191721513867378,0.30448800325393677,0.6182135343551636,0.6705011129379272,0.6007843017578125,0.07790849357843399,0.8796514272689819,1.7511111497879028,0.7925054430961609,1.053943395614624,0.5310675501823425,-0.20095860958099365,-0.6018300652503967,-0.619259238243103,-0.20095860958099365,0.49620914459228516,0.5833551287651062,1.193376898765564,0.5310675501823425,0.3742047846317291,-0.340392142534256,-0.427538126707077,0.5310675501823425,1.367668867111206,-0.35782134532928467,-0.6018300652503967,-1.5604357719421387,-0.37525054812431335,0.6530718803405762,1.1410893201828003,-0.06152505427598953,-1.508148193359375,-1.490718960762024,-0.37525054812431335,1.7511111497879028,0.8273638486862183,-0.9155555367469788,-1.1247059106826782,-0.8632679581642151,0.2696296274662018,1.838257074356079,1.0888017416000366,0.6356427073478699,0.5136383175849915,0.7053594589233398,0.3742047846317291,0.5484967231750488,1.0713725090026855,1.2456644773483276,1.3850979804992676,1.6116775274276733,1.2282352447509766,2.308845281600952,0.966797411441803,1.2630937099456787,1.1585185527801514,2.3785619735717773,2.0648365020751953,1.0713725090026855,-1.0549890995025635,-1.7695860862731934,0.9145098328590393,0.4090631902217865,0.09533768892288208,0.19991286098957062,0.4090631902217865,0.49620914459228516,0.6705011129379272,0.8970806002616882,1.0713725090026855,1.053943395614624,1.4373856782913208,0.7750762701034546,0.9842265844345093,0.8099346160888672,1.2456644773483276,1.2630937099456787,1.507102370262146,1.0713725090026855,0.6356427073478699,0.7925054430961609,1.524531602859497,1.4373856782913208],[0.8273638486862183,1.036514163017273,1.6291067600250244,1.5942484140396118,1.332810401916504,1.5419608354568481,1.663965106010437,1.4896732568740845,1.4373856782913208,1.5768191814422607,1.4025272130966187,1.6116775274276733,1.4025272130966187,1.0713725090026855,0.16505447030067444,0.47877994179725647,0.49620914459228516,1.210806131362915,1.0016558170318604,-0.4798257052898407,0.32191720604896545,0.19991286098957062,0.2522004246711731,-0.462396502494812,-1.7172985076904297,-1.6824400424957275,-1.508148193359375,-1.7347276210784912,-1.7347276210784912,0.4439215660095215,0.9842265844345093,0.9493681788444519,1.2456644773483276,0.49620914459228516,0.966797411441803,1.036514163017273,1.0190849304199219,1.5593899488449097,1.367668867111206,1.7685402631759644,1.7162526845932007,1.7685402631759644,1.6116775274276733,1.8033987283706665,1.4896732568740845,1.8731154203414917,1.3153812885284424,0.5833551287651062,0.9493681788444519,1.1062309741973877,0.4090631902217865,0.13019607961177826,-0.5321133136749268,-0.9329847693443298,-0.8632679581642151,-0.2881045639514923,-0.14867103099822998,-0.1138126328587532,0.30448800325393677,0.5310675501823425,-0.14867103099822998,0.49620914459228516,0.09533768892288208,0.47877994179725647,0.2173420488834381,0.19991286098957062,-0.06152505427598953,0.7925054430961609,0.2347712367773056,0.5833551287651062,0.8447930216789246,0.8447930216789246,0.7576470375061035,0.8273638486862183,0.49620914459228516,0.9319390058517456,1.0016558170318604,0.9493681788444519,0.7750762701034546,0.6705011129379272,0.8099346160888672,1.3850979804992676,1.210806131362915,1.2979520559310913,1.175947666168213,1.1585185527801514,1.2630937099456787,1.0190849304199219,1.210806131362915,0.8970806002616882,1.1585185527801514,1.1236600875854492,1.1585185527801514,1.5593899488449097,1.820827841758728,1.8033987283706665,1.4199564456939697,1.663965106010437,1.2282352447509766,1.0190849304199219,0.7227886915206909,0.0604793019592762,0.0604793019592762,-0.1138126328587532,-0.20095860958099365,0.14762526750564575,0.32191720604896545,0.02562091499567032,-0.16610021889209747,0.6007843017578125,-0.270675390958786,0.11276688426733017,0.0604793019592762,0.49620914459228516,0.8622221946716309,0.2522004246711731,0.14762526750564575,0.6182135343551636,0.9319390058517456,0.8273638486862183,0.9319390058517456,1.2282352447509766,1.1062309741973877,1.1585185527801514,1.4548147916793823,1.7511111497879028,0.18248365819454193,-0.21838779747486115,1.507102370262146,1.5593899488449097,1.7511111497879028,1.5768191814422607,1.6116775274276733,1.6465359926223755,0.9145098328590393,0.5484967231750488,0.6705011129379272,0.6007843017578125,0.7925054430961609,0.18248365819454193,0.7402178645133972,1.2979520559310913,-0.305533766746521,0.11276688426733017,1.193376898765564,1.3850979804992676,1.332810401916504,2.4482789039611816,0.5310675501823425,0.19991286098957062,0.18248365819454193,0.18248365819454193,0.33934640884399414,-0.8981263637542725,-1.4732897281646729,-1.4384313821792603,-1.0027015209197998,1.175947666168213,0.7750762701034546,0.07790849357843399,0.6530718803405762,-1.508148193359375,-0.2881045639514923,0.9319390058517456,0.49620914459228516,0.6007843017578125,-0.9329847693443298,-1.5430065393447876,0.8273638486862183,0.7227886915206909,0.19991286098957062,-1.176993489265442,-1.089847445487976,-1.4035730361938477,-0.5146840810775757,0.6879302859306335,-0.09638344496488571,-1.490718960762024,-1.2815686464309692,0.19991286098957062,1.175947666168213,1.1410893201828003,0.9145098328590393,0.3567756116390228,0.7925054430961609,0.9319390058517456,0.966797411441803,0.8796514272689819,0.6530718803405762,1.3850979804992676,0.966797411441803,1.367668867111206,1.4025272130966187,1.838257074356079,-0.02666666731238365,2.082265853881836,0.2347712367773056,1.036514163017273,0.11276688426733017,-0.02666666731238365,0.07790849357843399,-1.6301524639129639,0.8796514272689819,1.2456644773483276,-0.1138126328587532,-0.1138126328587532,-0.09638344496488571,0.47877994179725647,0.6705011129379272,0.8622221946716309,1.036514163017273,1.210806131362915,1.175947666168213,1.2805228233337402,0.8447930216789246,0.8796514272689819,0.9145098328590393,0.7227886915206909,1.6291067600250244,1.2630937099456787,0.6705011129379272,1.036514163017273,1.350239634513855,1.7511111497879028],[0.19991286098957062,0.46135076880455017,1.4722440242767334,1.367668867111206,1.1410893201828003,1.8556863069534302,1.2979520559310913,0.9319390058517456,1.1062309741973877,1.350239634513855,1.524531602859497,1.4373856782913208,1.524531602859497,1.193376898765564,0.7925054430961609,1.210806131362915,1.7859694957733154,2.1345534324645996,1.6988235712051392,1.5942484140396118,0.49620914459228516,-1.089847445487976,-1.1421350240707397,-0.16610021889209747,-1.0201307535171509,-1.176993489265442,-1.5952941179275513,-0.8109803795814514,-1.3687145709991455,-0.6541176438331604,0.966797411441803,1.1062309741973877,1.036514163017273,0.7750762701034546,0.49620914459228516,0.6182135343551636,1.0190849304199219,1.2456644773483276,1.4199564456939697,1.7685402631759644,1.7162526845932007,1.663965106010437,1.4548147916793823,1.6291067600250244,1.4722440242767334,1.3850979804992676,1.3153812885284424,0.8796514272689819,0.7402178645133972,0.6530718803405762,0.19991286098957062,0.6007843017578125,-0.7064052224159241,-0.7412636280059814,-0.7761220335960388,-0.20095860958099365,-0.20095860958099365,-0.14867103099822998,-0.04409585893154144,-0.009237472899258137,0.4439215660095215,0.4439215660095215,0.32191720604896545,0.6705011129379272,-0.04409585893154144,-0.18352940678596497,-0.07895424962043762,0.11276688426733017,0.09533768892288208,0.008191721513867378,0.33934640884399414,0.2696296274662018,0.6182135343551636,-0.23581700026988983,0.8970806002616882,1.2282352447509766,0.6530718803405762,0.6182135343551636,0.7227886915206909,0.9493681788444519,0.8970806002616882,1.1236600875854492,0.6182135343551636,0.9319390058517456,0.8970806002616882,0.9145098328590393,1.0190849304199219,0.7925054430961609,0.8273638486862183,1.036514163017273,1.1236600875854492,1.036514163017273,1.2805228233337402,1.9079738855361938,1.8556863069534302,1.2805228233337402,1.4548147916793823,1.4025272130966187,0.7925054430961609,1.053943395614624,0.8796514272689819,0.07790849357843399,-0.09638344496488571,-0.18352940678596497,0.2696296274662018,0.0604793019592762,0.09533768892288208,0.2696296274662018,-0.1138126328587532,0.16505447030067444,0.7925054430961609,-0.06152505427598953,0.3567756116390228,0.6182135343551636,0.8796514272689819,0.33934640884399414,0.5484967231750488,0.6182135343551636,0.7576470375061035,0.9842265844345093,1.053943395614624,1.175947666168213,1.210806131362915,1.3153812885284424,1.2979520559310913,1.5593899488449097,0.4090631902217865,-1.2292810678482056,0.16505447030067444,1.210806131362915,1.367668867111206,1.7511111497879028,1.3850979804992676,1.6465359926223755,1.4548147916793823,1.2630937099456787,0.5136383175849915,-0.07895424962043762,0.4439215660095215,-0.20095860958099365,1.193376898765564,1.4548147916793823,0.008191721513867378,0.32191720604896545,1.2805228233337402,0.5136383175849915,1.5768191814422607,1.977690577507019,1.1585185527801514,0.7925054430961609,-0.1312418282032013,0.2173420488834381,-0.5669716596603394,-0.16610021889209747,-0.4449673295021057,-1.2292810678482056,-0.5495424866676331,-0.6366884708404541,0.47877994179725647,0.6356427073478699,0.04305011034011841,-0.5146840810775757,-0.009237472899258137,-0.06152505427598953,0.7053594589233398,0.7227886915206909,-1.1595642566680908,-1.7347276210784912,0.19991286098957062,0.9842265844345093,-1.0375598669052124,-1.5952941179275513,-1.7347276210784912,-0.7935512065887451,0.9319390058517456,1.2805228233337402,-0.4449673295021057,-1.3164269924163818,-0.35782134532928467,1.6988235712051392,1.6116775274276733,1.5593899488449097,0.6007843017578125,0.3742047846317291,0.6879302859306335,1.175947666168213,1.2979520559310913,0.7227886915206909,1.036514163017273,1.0713725090026855,1.210806131362915,1.5419608354568481,1.2282352447509766,1.507102370262146,1.524531602859497,1.210806131362915,-0.02666666731238365,1.036514163017273,-0.09638344496488571,0.008191721513867378,-1.0027015209197998,-0.1312418282032013,-0.04409585893154144,1.1410893201828003,-0.619259238243103,-0.14867103099822998,0.07790849357843399,0.2696296274662018,0.5833551287651062,0.9145098328590393,0.8970806002616882,1.0016558170318604,1.332810401916504,0.7402178645133972,0.7925054430961609,0.9319390058517456,1.193376898765564,1.0888017416000366,1.507102370262146,1.2456644773483276,0.8273638486862183,0.9319390058517456,1.2979520559310913,1.2282352447509766],[0.3567756116390228,0.13019607961177826,0.9145098328590393,1.1585185527801514,1.4722440242767334,1.5593899488449097,1.7336819171905518,1.3850979804992676,1.4373856782913208,1.7511111497879028,1.524531602859497,1.2456644773483276,1.4548147916793823,0.8622221946716309,1.4373856782913208,1.9254029989242554,2.047407388687134,2.0648365020751953,1.7859694957733154,1.838257074356079,1.507102370262146,1.2456644773483276,0.9319390058517456,0.8447930216789246,1.507102370262146,-0.6366884708404541,-0.4449673295021057,-0.9329847693443298,-1.6127233505249023,-0.9678431153297424,0.7750762701034546,1.332810401916504,1.4896732568740845,1.210806131362915,0.5833551287651062,0.7576470375061035,0.2173420488834381,1.2805228233337402,1.1410893201828003,1.2805228233337402,1.4722440242767334,1.507102370262146,1.3153812885284424,1.681394338607788,1.7685402631759644,1.3850979804992676,0.9145098328590393,0.9842265844345093,1.2282352447509766,1.0016558170318604,0.5310675501823425,-0.270675390958786,-1.2989978790283203,-0.6889760494232178,-0.4798257052898407,-0.5321133136749268,0.02562091499567032,-0.04409585893154144,0.2347712367773056,-0.09638344496488571,0.7053594589233398,-0.20095860958099365,0.5833551287651062,0.16505447030067444,-0.04409585893154144,-0.06152505427598953,0.13019607961177826,0.16505447030067444,-0.23581700026988983,-0.16610021889209747,-0.39267975091934204,-0.21838779747486115,-0.340392142534256,0.28705883026123047,0.008191721513867378,0.2522004246711731,0.7925054430961609,0.5310675501823425,0.6879302859306335,0.9145098328590393,1.0713725090026855,0.7576470375061035,1.1410893201828003,0.8273638486862183,1.0016558170318604,1.175947666168213,0.7402178645133972,0.8796514272689819,1.053943395614624,1.1062309741973877,1.193376898765564,1.210806131362915,1.5768191814422607,1.663965106010437,1.524531602859497,1.820827841758728,1.4896732568740845,1.175947666168213,1.1410893201828003,0.6705011129379272,0.8796514272689819,0.13019607961177826,-0.1138126328587532,-0.02666666731238365,0.02562091499567032,-0.07895424962043762,-0.02666666731238365,0.2522004246711731,0.5659258961677551,0.47877994179725647,0.32191720604896545,0.28705883026123047,0.5659258961677551,0.7750762701034546,1.053943395614624,1.0016558170318604,0.9493681788444519,1.0888017416000366,1.0190849304199219,1.3850979804992676,0.966797411441803,1.507102370262146,0.966797411441803,1.332810401916504,1.175947666168213,1.9254029989242554,1.6291067600250244,-0.4449673295021057,-0.4798257052898407,0.4264923632144928,0.6356427073478699,1.820827841758728,1.2979520559310913,1.4722440242767334,1.9951198101043701,1.1410893201828003,0.9319390058517456,0.008191721513867378,0.09533768892288208,-0.009237472899258137,1.350239634513855,0.8970806002616882,1.1410893201828003,0.8622221946716309,0.28705883026123047,-0.1312418282032013,2.0648365020751953,2.361132860183716,0.7750762701034546,0.2522004246711731,-0.6366884708404541,-0.35782134532928467,-0.16610021889209747,-0.41010892391204834,-0.7238343954086304,-0.5321133136749268,1.0713725090026855,-0.6541176438331604,0.19991286098957062,0.8273638486862183,0.3916339874267578,-0.07895424962043762,0.02562091499567032,1.2282352447509766,-0.02666666731238365,1.3850979804992676,-1.2989978790283203,-1.333856225013733,0.19991286098957062,0.2696296274662018,-0.21838779747486115,-1.7347276210784912,-1.351285457611084,0.0604793019592762,0.9319390058517456,0.8447930216789246,-1.5778648853302002,-0.270675390958786,0.008191721513867378,1.2282352447509766,1.681394338607788,1.4722440242767334,1.5768191814422607,0.7925054430961609,1.367668867111206,0.3742047846317291,0.9493681788444519,1.193376898765564,1.2805228233337402,0.7750762701034546,1.053943395614624,1.5768191814422607,1.5942484140396118,1.175947666168213,1.8556863069534302,0.7750762701034546,0.33934640884399414,0.6879302859306335,1.2282352447509766,0.5136383175849915,-0.7935512065887451,1.053943395614624,0.6182135343551636,0.30448800325393677,-0.2881045639514923,-0.14867103099822998,0.30448800325393677,0.3916339874267578,0.4439215660095215,1.0016558170318604,0.966797411441803,0.7576470375061035,1.0888017416000366,1.0190849304199219,0.5833551287651062,0.6705011129379272,1.210806131362915,0.7925054430961609,1.0713725090026855,0.8970806002616882,1.0713725090026855,1.193376898765564,1.524531602859497,1.663965106010437],[-0.06152505427598953,0.6007843017578125,0.02562091499567032,1.175947666168213,1.4896732568740845,1.6465359926223755,1.7685402631759644,1.524531602859497,1.681394338607788,1.7336819171905518,1.4373856782913208,1.0713725090026855,0.6182135343551636,1.193376898765564,1.663965106010437,2.117124080657959,2.0299782752990723,1.8731154203414917,1.4373856782913208,1.9602614641189575,1.6465359926223755,1.4548147916793823,1.1062309741973877,1.5942484140396118,1.0190849304199219,1.053943395614624,0.11276688426733017,-0.04409585893154144,-0.9329847693443298,-1.2292810678482056,0.8796514272689819,1.193376898765564,1.053943395614624,1.3850979804992676,0.30448800325393677,0.6530718803405762,1.1062309741973877,1.1062309741973877,1.4548147916793823,1.210806131362915,1.2282352447509766,1.1410893201828003,1.2805228233337402,1.332810401916504,2.0299782752990723,1.3153812885284424,0.7750762701034546,0.7227886915206909,1.1410893201828003,0.6705011129379272,1.4025272130966187,-0.6541176438331604,-0.7761220335960388,-0.619259238243103,-0.462396502494812,-0.340392142534256,-0.2881045639514923,0.008191721513867378,0.32191720604896545,0.3567756116390228,-0.2532461881637573,0.28705883026123047,-0.5669716596603394,-0.6541176438331604,-0.7238343954086304,0.3916339874267578,-0.5495424866676331,-0.8458387851715088,-0.18352940678596497,-0.2881045639514923,-0.6715468168258667,-0.6366884708404541,-0.41010892391204834,-0.9504139423370361,-0.37525054812431335,0.04305011034011841,0.46135076880455017,0.5136383175849915,0.9319390058517456,0.7227886915206909,1.0190849304199219,0.9493681788444519,1.036514163017273,0.8273638486862183,0.7750762701034546,0.7925054430961609,1.1410893201828003,1.1236600875854492,0.9493681788444519,1.053943395614624,1.3153812885284424,1.8556863069534302,1.5942484140396118,1.5593899488449097,1.3153812885284424,1.2979520559310913,1.193376898765564,0.7576470375061035,0.7053594589233398,0.14762526750564575,0.02562091499567032,0.008191721513867378,0.11276688426733017,-0.21838779747486115,0.2696296274662018,0.0604793019592762,0.33934640884399414,0.9145098328590393,-0.14867103099822998,0.2522004246711731,0.3916339874267578,1.0016558170318604,0.6530718803405762,0.5484967231750488,1.053943395614624,1.1585185527801514,1.0713725090026855,1.350239634513855,1.2630937099456787,0.6007843017578125,0.9842265844345093,0.8447930216789246,0.8622221946716309,1.4025272130966187,0.6705011129379272,1.8033987283706665,1.6116775274276733,0.7053594589233398,-0.619259238243103,-1.0724183320999146,-0.7935512065887451,1.838257074356079,0.9493681788444519,1.6116775274276733,1.6291067600250244,1.3850979804992676,1.2456644773483276,0.2696296274662018,0.11276688426733017,0.14762526750564575,0.4090631902217865,0.9319390058517456,0.7053594589233398,0.6182135343551636,0.09533768892288208,-0.04409585893154144,1.3153812885284424,2.517995595932007,0.7925054430961609,1.9079738855361938,-0.5669716596603394,-1.089847445487976,-0.3229629695415497,-0.5146840810775757,0.49620914459228516,0.18248365819454193,1.210806131362915,0.07790849357843399,0.32191720604896545,0.2696296274662018,-0.305533766746521,0.33934640884399414,0.07790849357843399,1.3153812885284424,1.1585185527801514,0.7576470375061035,-0.9155555367469788,1.3153812885284424,0.3742047846317291,0.008191721513867378,-1.1421350240707397,-1.665010929107666,-1.7521568536758423,-0.06152505427598953,1.5593899488449097,-0.06152505427598953,-0.9329847693443298,-0.4972549080848694,1.5593899488449097,2.0125489234924316,1.838257074356079,1.5419608354568481,1.4373856782913208,0.6879302859306335,-0.7935512065887451,0.5659258961677551,-0.009237472899258137,-0.02666666731238365,0.7053594589233398,1.2456644773483276,0.8970806002616882,1.9602614641189575,1.6988235712051392,1.1236600875854492,1.7511111497879028,1.6116775274276733,0.2522004246711731,1.2630937099456787,1.4722440242767334,0.008191721513867378,0.13019607961177826,1.3153812885284424,1.3850979804992676,-0.39267975091934204,-0.340392142534256,0.07790849357843399,0.30448800325393677,0.49620914459228516,0.8447930216789246,0.9493681788444519,1.1062309741973877,0.9493681788444519,1.036514163017273,0.9842265844345093,0.8970806002616882,1.0016558170318604,0.8796514272689819,1.2282352447509766,1.1236600875854492,1.6291067600250244,1.210806131362915,1.175947666168213,1.524531602859497,1.6116775274276733],[0.11276688426733017,-0.35782134532928467,0.6007843017578125,0.9145098328590393,1.036514163017273,1.9254029989242554,1.2979520559310913,1.2979520559310913,1.5768191814422607,1.350239634513855,0.8099346160888672,0.04305011034011841,0.04305011034011841,0.5659258961677551,1.7336819171905518,2.1345534324645996,1.838257074356079,0.8273638486862183,0.07790849357843399,-0.7761220335960388,1.0190849304199219,1.663965106010437,2.3262743949890137,2.0648365020751953,2.082265853881836,2.0125489234924316,1.2456644773483276,0.30448800325393677,-0.7064052224159241,-1.1944226026535034,1.6465359926223755,1.175947666168213,1.036514163017273,0.6705011129379272,0.46135076880455017,0.7227886915206909,1.1236600875854492,1.0190849304199219,1.367668867111206,1.4199564456939697,1.507102370262146,0.8796514272689819,1.036514163017273,1.507102370262146,1.7511111497879028,1.8556863069534302,0.008191721513867378,0.8796514272689819,0.46135076880455017,0.32191720604896545,0.6007843017578125,-0.5669716596603394,-0.7935512065887451,-0.7064052224159241,-0.09638344496488571,-0.07895424962043762,0.3916339874267578,0.0604793019592762,-0.06152505427598953,0.3916339874267578,0.4439215660095215,-0.35782134532928467,-0.23581700026988983,-0.4972549080848694,0.3567756116390228,-0.340392142534256,-0.2532461881637573,-0.1312418282032013,-0.7761220335960388,-0.7761220335960388,-0.270675390958786,-0.7761220335960388,-0.9678431153297424,-0.6889760494232178,-0.8981263637542725,-0.5146840810775757,0.5310675501823425,0.5833551287651062,0.9319390058517456,0.7227886915206909,0.9145098328590393,0.6705011129379272,0.9842265844345093,0.7576470375061035,0.7227886915206909,0.9319390058517456,0.9493681788444519,1.0190849304199219,0.9493681788444519,1.2979520559310913,1.8033987283706665,1.6116775274276733,1.5942484140396118,1.367668867111206,1.1410893201828003,1.1410893201828003,0.7925054430961609,0.49620914459228516,0.04305011034011841,-0.14867103099822998,0.13019607961177826,0.008191721513867378,-0.009237472899258137,0.07790849357843399,-0.340392142534256,-0.21838779747486115,0.3916339874267578,0.13019607961177826,0.32191720604896545,0.49620914459228516,0.3916339874267578,0.6356427073478699,0.8273638486862183,0.8273638486862183,1.1062309741973877,0.9493681788444519,0.5833551287651062,0.8970806002616882,0.7750762701034546,1.332810401916504,1.367668867111206,1.2456644773483276,1.193376898765564,0.8622221946716309,1.0190849304199219,1.6465359926223755,1.5768191814422607,1.4025272130966187,1.0888017416000366,-0.20095860958099365,-1.0027015209197998,-0.09638344496488571,1.2456644773483276,1.2979520559310913,0.47877994179725647,1.4548147916793823,1.036514163017273,1.367668867111206,0.02562091499567032,-0.619259238243103,0.9319390058517456,1.0190849304199219,0.16505447030067444,0.4439215660095215,-0.619259238243103,-0.5495424866676331,-0.7412636280059814,1.6116775274276733,1.8033987283706665,1.210806131362915,0.0604793019592762,-0.21838779747486115,0.4439215660095215,0.3742047846317291,-0.21838779747486115,0.14762526750564575,0.18248365819454193,-0.270675390958786,0.2522004246711731,1.3153812885284424,0.5659258961677551,0.2347712367773056,0.2173420488834381,1.6116775274276733,0.4439215660095215,-1.0375598669052124,0.19991286098957062,-1.804444432258606,-0.5146840810775757,-1.0027015209197998,-1.508148193359375,-1.804444432258606,-1.4210021495819092,-0.21838779747486115,1.053943395614624,0.02562091499567032,0.2173420488834381,1.4199564456939697,1.7511111497879028,1.0713725090026855,1.5942484140396118,1.3153812885284424,1.5593899488449097,2.117124080657959,-0.20095860958099365,-0.04409585893154144,1.4722440242767334,0.9319390058517456,0.30448800325393677,1.2282352447509766,0.9319390058517456,1.4722440242767334,1.5593899488449097,1.367668867111206,1.4548147916793823,1.1410893201828003,0.28705883026123047,1.6291067600250244,1.4199564456939697,1.0190849304199219,0.7227886915206909,1.4722440242767334,1.3153812885284424,1.0016558170318604,-0.8632679581642151,0.09533768892288208,0.3567756116390228,0.6879302859306335,1.0713725090026855,0.9493681788444519,1.036514163017273,0.8970806002616882,0.8970806002616882,1.2805228233337402,0.6530718803405762,0.8970806002616882,0.7750762701034546,1.0190849304199219,1.1585185527801514,1.0190849304199219,1.332810401916504,1.332810401916504,1.524531602859497,1.4025272130966187],[-0.16610021889209747,0.19991286098957062,0.5659258961677551,0.46135076880455017,1.4025272130966187,1.2282352447509766,1.5768191814422607,1.7511111497879028,1.2979520559310913,1.175947666168213,1.4722440242767334,1.1236600875854492,1.1062309741973877,1.5768191814422607,2.047407388687134,2.1694116592407227,1.0888017416000366,-0.462396502494812,-0.6018300652503967,-0.8109803795814514,-0.14867103099822998,1.4373856782913208,1.4199564456939697,1.6988235712051392,1.9602614641189575,1.5942484140396118,1.2456644773483276,0.8273638486862183,0.30448800325393677,0.28705883026123047,0.7576470375061035,0.6530718803405762,1.053943395614624,1.036514163017273,0.6879302859306335,0.008191721513867378,1.1585185527801514,1.4199564456939697,1.4025272130966187,1.1062309741973877,0.966797411441803,1.0190849304199219,0.5136383175849915,0.7053594589233398,1.0190849304199219,0.2173420488834381,-0.8458387851715088,-0.5146840810775757,-0.5844008922576904,-0.20095860958099365,-0.06152505427598953,-1.2292810678482056,-0.8284096121788025,-0.6018300652503967,-0.6366884708404541,-0.41010892391204834,-0.21838779747486115,-0.07895424962043762,-0.340392142534256,-0.8284096121788025,-0.06152505427598953,-0.462396502494812,-0.8806971907615662,0.7925054430961609,-0.21838779747486115,-0.2881045639514923,-0.340392142534256,-0.7935512065887451,-1.0201307535171509,-1.0201307535171509,-1.176993489265442,-1.246710181236267,-1.4035730361938477,-1.2815686464309692,-1.0027015209197998,-0.9329847693443298,0.2522004246711731,0.47877994179725647,0.6879302859306335,0.6879302859306335,0.7925054430961609,0.5659258961677551,0.6530718803405762,0.7402178645133972,0.7576470375061035,0.9319390058517456,1.1585185527801514,1.1236600875854492,1.5942484140396118,1.8556863069534302,1.350239634513855,1.8033987283706665,1.663965106010437,1.210806131362915,0.7925054430961609,0.8273638486862183,0.18248365819454193,0.33934640884399414,0.02562091499567032,-0.21838779747486115,0.3742047846317291,0.28705883026123047,0.13019607961177826,0.13019607961177826,-0.23581700026988983,0.3567756116390228,0.5136383175849915,0.2347712367773056,0.32191720604896545,0.4264923632144928,0.4264923632144928,1.036514163017273,0.7053594589233398,0.7925054430961609,0.6182135343551636,0.9493681788444519,1.1585185527801514,1.0190849304199219,1.1585185527801514,1.4896732568740845,1.350239634513855,1.053943395614624,1.332810401916504,0.966797411441803,-0.1312418282032013,0.28705883026123047,0.8622221946716309,1.2282352447509766,1.5942484140396118,0.7227886915206909,0.4439215660095215,-1.2292810678482056,-0.5495424866676331,1.4548147916793823,1.4896732568740845,1.036514163017273,0.7402178645133972,0.5136383175849915,-0.8284096121788025,-0.5669716596603394,-0.2532461881637573,1.210806131362915,1.175947666168213,-0.21838779747486115,-0.3229629695415497,-0.8284096121788025,-0.8109803795814514,1.663965106010437,1.7859694957733154,1.838257074356079,-0.305533766746521,-0.305533766746521,-0.2881045639514923,-0.21838779747486115,0.16505447030067444,0.07790849357843399,0.07790849357843399,-1.0375598669052124,-0.8284096121788025,0.008191721513867378,0.8796514272689819,-0.8806971907615662,-0.009237472899258137,2.640000104904175,0.9842265844345093,-1.6127233505249023,0.3742047846317291,-1.1421350240707397,0.2522004246711731,-0.7064052224159241,-1.5778648853302002,-1.7870151996612549,-1.246710181236267,0.3916339874267578,0.5659258961677551,-0.37525054812431335,-0.4972549080848694,2.4134204387664795,1.4896732568740845,1.7511111497879028,0.11276688426733017,1.350239634513855,2.117124080657959,1.193376898765564,-0.37525054812431335,-0.9852723479270935,-0.02666666731238365,0.008191721513867378,0.8099346160888672,0.5310675501823425,1.5419608354568481,1.1410893201828003,1.1062309741973877,0.9493681788444519,1.2456644773483276,1.1062309741973877,1.193376898765564,1.5593899488449097,1.1585185527801514,1.0190849304199219,1.2282352447509766,0.6530718803405762,0.30448800325393677,-0.9852723479270935,-0.305533766746521,0.4090631902217865,0.5136383175849915,0.9842265844345093,1.1410893201828003,1.1236600875854492,1.2805228233337402,1.1062309741973877,0.7750762701034546,0.7227886915206909,0.7576470375061035,0.7925054430961609,0.8796514272689819,0.8796514272689819,1.0888017416000366,1.4199564456939697,1.4025272130966187,1.2979520559310913,1.332810401916504,1.3153812885284424],[0.2522004246711731,-0.2881045639514923,0.13019607961177826,0.6879302859306335,1.4025272130966187,1.8556863069534302,1.6116775274276733,1.524531602859497,1.524531602859497,1.681394338607788,1.6465359926223755,1.507102370262146,1.4896732568740845,1.838257074356079,1.820827841758728,1.5768191814422607,0.966797411441803,0.3567756116390228,-0.4972549080848694,-0.5669716596603394,-0.8632679581642151,-0.04409585893154144,0.8273638486862183,1.9951198101043701,1.350239634513855,1.9428322315216064,1.7336819171905518,1.036514163017273,1.4025272130966187,0.5833551287651062,0.3742047846317291,1.193376898765564,0.6182135343551636,0.19991286098957062,0.6007843017578125,0.19991286098957062,0.7925054430961609,1.210806131362915,0.8099346160888672,1.3153812885284424,1.2979520559310913,1.0190849304199219,0.9145098328590393,1.0016558170318604,0.07790849357843399,-0.2881045639514923,-0.6366884708404541,-1.351285457611084,-0.7064052224159241,-0.462396502494812,-0.8458387851715088,-0.9155555367469788,-0.6889760494232178,-0.7761220335960388,-0.6541176438331604,-0.16610021889209747,-0.14867103099822998,-0.7064052224159241,-0.02666666731238365,-0.1138126328587532,-0.305533766746521,-0.02666666731238365,0.6007843017578125,-0.5321133136749268,-0.1138126328587532,-0.35782134532928467,-1.1247059106826782,-1.2989978790283203,-1.0375598669052124,-1.246710181236267,-1.0027015209197998,-1.2641394138336182,-1.5604357719421387,-1.4558606147766113,-1.176993489265442,-0.305533766746521,0.16505447030067444,0.14762526750564575,0.5659258961677551,0.6530718803405762,0.5484967231750488,0.8447930216789246,0.46135076880455017,1.036514163017273,1.0888017416000366,0.6356427073478699,1.2456644773483276,1.507102370262146,1.4548147916793823,1.507102370262146,1.4722440242767334,1.1236600875854492,1.2282352447509766,1.193376898765564,0.5833551287651062,0.7227886915206909,0.02562091499567032,0.04305011034011841,0.11276688426733017,0.13019607961177826,0.32191720604896545,-0.20095860958099365,0.14762526750564575,0.7053594589233398,0.2696296274662018,0.6356427073478699,0.7576470375061035,0.33934640884399414,0.7925054430961609,0.6356427073478699,0.5833551287651062,0.9493681788444519,1.0713725090026855,0.8622221946716309,1.2456644773483276,1.0888017416000366,0.8970806002616882,1.4373856782913208,1.210806131362915,1.4199564456939697,1.3153812885284424,0.9842265844345093,0.8273638486862183,0.5310675501823425,-0.009237472899258137,0.8273638486862183,1.0016558170318604,0.47877994179725647,0.8273638486862183,1.2979520559310913,1.507102370262146,-0.02666666731238365,-0.8806971907615662,-0.20095860958099365,1.4025272130966187,1.524531602859497,1.2979520559310913,0.6705011129379272,0.30448800325393677,0.0604793019592762,-0.23581700026988983,-0.3229629695415497,0.5310675501823425,0.16505447030067444,0.16505447030067444,-1.0375598669052124,-0.7761220335960388,-0.340392142534256,1.838257074356079,1.4722440242767334,0.8099346160888672,-0.5321133136749268,-0.462396502494812,-0.37525054812431335,0.32191720604896545,-0.1138126328587532,-1.1072766780853271,-1.2118518352508545,-0.4972549080848694,0.11276688426733017,-0.23581700026988983,-1.351285457611084,-1.1944226026535034,1.1062309741973877,-0.4798257052898407,-1.804444432258606,-1.4732897281646729,-0.6018300652503967,-1.2815686464309692,-1.1072766780853271,-1.5778648853302002,-1.4035730361938477,-1.2118518352508545,0.5659258961677551,0.8622221946716309,0.5136383175849915,0.6705011129379272,0.8970806002616882,1.053943395614624,-0.20095860958099365,1.1062309741973877,2.0299782752990723,1.6465359926223755,1.367668867111206,0.966797411441803,-0.5844008922576904,-0.619259238243103,-1.4035730361938477,-0.8806971907615662,-0.9155555367469788,-0.1312418282032013,1.332810401916504,1.2456644773483276,-0.06152505427598953,0.3916339874267578,0.8447930216789246,1.1585185527801514,1.0888017416000366,1.1585185527801514,0.7576470375061035,1.1585185527801514,1.332810401916504,-1.1595642566680908,-0.39267975091934204,0.28705883026123047,0.5833551287651062,1.1062309741973877,1.1410893201828003,1.0713725090026855,1.0190849304199219,0.6007843017578125,0.8622221946716309,0.8796514272689819,0.9319390058517456,0.6007843017578125,1.175947666168213,0.9842265844345093,1.2630937099456787,1.350239634513855,1.4896732568740845,1.5419608354568481,1.524531602859497,1.6988235712051392,1.5942484140396118],[-0.4972549080848694,0.3916339874267578,0.8447930216789246,1.9951198101043701,1.4896732568740845,1.681394338607788,2.082265853881836,1.7685402631759644,1.838257074356079,1.6988235712051392,1.3850979804992676,1.5768191814422607,1.8033987283706665,1.5942484140396118,1.2630937099456787,0.9842265844345093,0.9145098328590393,-0.37525054812431335,-0.305533766746521,-0.340392142534256,-0.6541176438331604,-1.351285457611084,-0.9155555367469788,0.3916339874267578,0.966797411441803,1.5942484140396118,1.2630937099456787,1.053943395614624,1.1585185527801514,1.036514163017273,1.4722440242767334,1.524531602859497,0.7576470375061035,-0.3229629695415497,-0.16610021889209747,0.30448800325393677,0.6182135343551636,1.1585185527801514,1.4722440242767334,1.193376898765564,1.3153812885284424,1.0016558170318604,0.18248365819454193,0.6007843017578125,1.0888017416000366,-0.20095860958099365,0.4439215660095215,-0.16610021889209747,-0.5321133136749268,-1.2292810678482056,-1.1421350240707397,-0.8458387851715088,-0.6366884708404541,-0.7238343954086304,-1.1072766780853271,-0.41010892391204834,0.07790849357843399,1.1236600875854492,-0.6366884708404541,0.0604793019592762,-0.7064052224159241,-0.04409585893154144,-0.35782134532928467,-0.4798257052898407,-0.5321133136749268,-1.1072766780853271,-0.4972549080848694,-1.1421350240707397,-1.351285457611084,-1.1944226026535034,-1.4384313821792603,-1.5778648853302002,-1.089847445487976,-1.1421350240707397,-0.9155555367469788,-0.9504139423370361,-0.270675390958786,-0.14867103099822998,0.47877994179725647,0.30448800325393677,0.30448800325393677,0.3567756116390228,0.47877994179725647,0.28705883026123047,1.175947666168213,1.7162526845932007,1.838257074356079,1.6291067600250244,1.5593899488449097,1.4722440242767334,1.1410893201828003,1.0016558170318604,0.6007843017578125,0.6007843017578125,0.6530718803405762,0.4439215660095215,0.11276688426733017,0.33934640884399414,0.008191721513867378,0.09533768892288208,0.2173420488834381,0.3567756116390228,0.09533768892288208,0.6007843017578125,0.6182135343551636,0.4264923632144928,0.8099346160888672,1.036514163017273,0.6530718803405762,0.8447930216789246,1.036514163017273,0.9842265844345093,1.0016558170318604,0.9842265844345093,1.2805228233337402,1.524531602859497,1.036514163017273,1.2456644773483276,1.210806131362915,1.2630937099456787,1.193376898765564,1.1585185527801514,0.7053594589233398,0.5136383175849915,0.4090631902217865,1.0888017416000366,1.193376898765564,-0.18352940678596497,-0.7412636280059814,0.5833551287651062,0.6530718803405762,0.9493681788444519,0.2696296274662018,-1.1944226026535034,-0.9504139423370361,0.8970806002616882,1.0190849304199219,1.3153812885284424,0.30448800325393677,0.5484967231750488,-0.305533766746521,0.30448800325393677,-0.8109803795814514,-0.7064052224159241,-0.2532461881637573,-0.4972549080848694,-1.1072766780853271,-1.2815686464309692,1.7162526845932007,1.5419608354568481,0.8622221946716309,-0.23581700026988983,-0.5844008922576904,-0.8981263637542725,-1.4384313821792603,-0.20095860958099365,-0.8284096121788025,-0.4972549080848694,-0.5669716596603394,-0.5844008922576904,-1.4210021495819092,-1.2292810678482056,-1.5255773067474365,0.16505447030067444,-1.665010929107666,1.3850979804992676,-0.5844008922576904,-1.246710181236267,-1.2989978790283203,-1.4558606147766113,-1.665010929107666,-1.4210021495819092,-0.2881045639514923,0.16505447030067444,1.367668867111206,1.332810401916504,1.4373856782913208,0.6007843017578125,0.7227886915206909,0.9145098328590393,1.5942484140396118,2.0299782752990723,1.681394338607788,1.2979520559310913,0.2173420488834381,0.2173420488834381,-0.21838779747486115,-0.9504139423370361,-1.0201307535171509,-0.7935512065887451,-0.7586928009986877,-0.4972549080848694,-0.7238343954086304,-1.0549890995025635,-1.0027015209197998,-0.9329847693443298,-1.0549890995025635,-1.4384313821792603,-1.4384313821792603,-1.1595642566680908,-0.5495424866676331,-0.7412636280059814,-0.23581700026988983,0.8970806002616882,1.1062309741973877,1.367668867111206,1.0713725090026855,1.036514163017273,0.9842265844345093,0.966797411441803,0.6705011129379272,0.6705011129379272,0.7576470375061035,1.0016558170318604,0.6182135343551636,1.0888017416000366,1.210806131362915,1.4199564456939697,1.4722440242767334,1.367668867111206,1.5768191814422607,1.2282352447509766,1.4025272130966187,1.1410893201828003],[-0.23581700026988983,0.4439215660095215,0.49620914459228516,1.1062309741973877,1.367668867111206,1.7162526845932007,1.9602614641189575,1.524531602859497,1.5593899488449097,1.4548147916793823,1.4199564456939697,1.4548147916793823,1.2456644773483276,1.2282352447509766,1.5419608354568481,1.5942484140396118,1.4199564456939697,1.5419608354568481,1.6465359926223755,0.2173420488834381,-1.351285457611084,-0.8284096121788025,-1.0375598669052124,-0.09638344496488571,0.6182135343551636,1.193376898765564,0.2347712367773056,1.036514163017273,0.2522004246711731,0.7053594589233398,0.6530718803405762,1.1585185527801514,1.350239634513855,0.6007843017578125,0.0604793019592762,0.47877994179725647,0.8622221946716309,0.8447930216789246,0.966797411441803,0.8796514272689819,0.3742047846317291,0.9493681788444519,0.5659258961677551,0.9493681788444519,0.3916339874267578,0.14762526750564575,0.8970806002616882,-0.04409585893154144,-1.089847445487976,-1.490718960762024,-0.7761220335960388,-0.7761220335960388,-0.340392142534256,-0.9852723479270935,-1.089847445487976,-0.4798257052898407,-0.3229629695415497,-1.1944226026535034,-0.5146840810775757,-1.089847445487976,-0.270675390958786,0.30448800325393677,-0.14867103099822998,-1.0375598669052124,-0.9852723479270935,-1.0724183320999146,-0.8458387851715088,-1.246710181236267,-1.5430065393447876,-1.3164269924163818,-1.4732897281646729,-1.3861438035964966,-1.1072766780853271,-1.3164269924163818,-1.1247059106826782,-1.0027015209197998,-0.8458387851715088,-0.305533766746521,0.07790849357843399,0.13019607961177826,0.3916339874267578,0.5833551287651062,0.5310675501823425,1.4199564456939697,1.5942484140396118,1.367668867111206,1.4896732568740845,1.5419608354568481,1.367668867111206,1.4896732568740845,0.8622221946716309,0.6530718803405762,0.46135076880455017,0.2522004246711731,0.18248365819454193,0.2696296274662018,0.14762526750564575,0.008191721513867378,0.28705883026123047,0.3916339874267578,0.3742047846317291,0.46135076880455017,0.49620914459228516,0.2347712367773056,0.5833551287651062,0.9842265844345093,0.7227886915206909,0.8447930216789246,1.175947666168213,0.8447930216789246,1.2282352447509766,1.2630937099456787,1.4722440242767334,1.4373856782913208,1.4548147916793823,1.4548147916793823,1.193376898765564,1.4548147916793823,1.4373856782913208,0.966797411441803,1.053943395614624,0.8447930216789246,1.4025272130966187,1.1062309741973877,0.33934640884399414,1.2630937099456787,1.9254029989242554,0.46135076880455017,-0.427538126707077,-1.2118518352508545,-0.340392142534256,0.6879302859306335,1.053943395614624,-0.35782134532928467,-0.4449673295021057,0.09533768892288208,1.1062309741973877,1.175947666168213,0.6705011129379272,0.3916339874267578,-0.04409585893154144,-0.1312418282032013,-0.6889760494232178,-1.2118518352508545,-0.7761220335960388,-0.5669716596603394,-1.3164269924163818,-1.089847445487976,0.8796514272689819,1.4896732568740845,-0.5844008922576904,-0.2532461881637573,-0.4449673295021057,-0.07895424962043762,0.16505447030067444,0.30448800325393677,-0.1312418282032013,-0.09638344496488571,0.02562091499567032,-0.462396502494812,-0.7935512065887451,-1.1944226026535034,2.308845281600952,0.2696296274662018,2.517995595932007,-1.5952941179275513,-1.3861438035964966,-1.089847445487976,-1.2641394138336182,-1.2989978790283203,-1.4732897281646729,-1.7172985076904297,-0.340392142534256,0.2522004246711731,1.332810401916504,1.681394338607788,1.3850979804992676,1.6291067600250244,1.332810401916504,1.8033987283706665,1.838257074356079,1.820827841758728,1.6291067600250244,0.6879302859306335,-1.246710181236267,0.32191720604896545,-0.04409585893154144,-0.7238343954086304,-0.7064052224159241,-0.4798257052898407,-0.37525054812431335,-0.23581700026988983,-0.5495424866676331,-0.6889760494232178,-0.8284096121788025,-0.9504139423370361,-1.2641394138336182,-1.1595642566680908,-1.6301524639129639,-0.9504139423370361,-1.0724183320999146,0.4090631902217865,1.1410893201828003,1.3850979804992676,0.8447930216789246,1.1062309741973877,1.2630937099456787,1.4025272130966187,1.036514163017273,0.8273638486862183,0.4439215660095215,0.7402178645133972,0.8970806002616882,0.6705011129379272,0.47877994179725647,1.1410893201828003,1.1585185527801514,1.350239634513855,1.5942484140396118,1.5942484140396118,1.7336819171905518,1.820827841758728,1.4548147916793823,1.4025272130966187],[-0.04409585893154144,0.33934640884399414,0.46135076880455017,0.6705011129379272,0.966797411441803,1.0888017416000366,1.8033987283706665,1.5593899488449097,1.0888017416000366,1.3850979804992676,0.966797411441803,1.0713725090026855,1.4373856782913208,1.2805228233337402,1.7685402631759644,1.8905446529388428,2.151982545852661,1.9254029989242554,1.977690577507019,1.6465359926223755,0.8622221946716309,-1.2292810678482056,-1.508148193359375,-0.8632679581642151,-0.6366884708404541,-0.2532461881637573,0.46135076880455017,0.11276688426733017,1.4025272130966187,0.9145098328590393,1.210806131362915,0.9319390058517456,1.053943395614624,0.11276688426733017,0.33934640884399414,0.8796514272689819,0.7925054430961609,1.053943395614624,0.9842265844345093,-0.2881045639514923,0.33934640884399414,0.4090631902217865,0.04305011034011841,-0.009237472899258137,0.6007843017578125,0.9145098328590393,1.0888017416000366,0.5659258961677551,-1.1247059106826782,-1.089847445487976,-0.09638344496488571,-0.5495424866676331,-0.21838779747486115,-0.6715468168258667,-1.0549890995025635,-0.8458387851715088,0.5136383175849915,-1.0724183320999146,0.09533768892288208,-0.14867103099822998,0.008191721513867378,0.18248365819454193,-1.176993489265442,-0.7412636280059814,-1.1072766780853271,-0.6018300652503967,-1.2641394138336182,-1.1421350240707397,-1.1944226026535034,-1.351285457611084,-1.4732897281646729,-1.4558606147766113,-1.2292810678482056,-1.508148193359375,-1.508148193359375,-1.1247059106826782,-0.9329847693443298,-0.23581700026988983,0.04305011034011841,0.19991286098957062,0.07790849357843399,0.32191720604896545,1.663965106010437,1.7685402631759644,1.3850979804992676,1.3153812885284424,1.5419608354568481,1.8033987283706665,1.2282352447509766,0.9145098328590393,0.47877994179725647,0.8099346160888672,0.3742047846317291,0.2173420488834381,0.2696296274662018,0.4090631902217865,0.4264923632144928,0.008191721513867378,0.4090631902217865,0.2347712367773056,-0.07895424962043762,0.32191720604896545,0.7053594589233398,0.966797411441803,0.6879302859306335,0.7576470375061035,0.8970806002616882,0.8970806002616882,1.0016558170318604,1.1236600875854492,1.1062309741973877,1.5419608354568481,1.210806131362915,1.5942484140396118,1.3850979804992676,1.4199564456939697,1.1410893201828003,0.6705011129379272,0.6705011129379272,0.47877994179725647,0.7053594589233398,-0.340392142534256,0.7925054430961609,0.8796514272689819,0.5136383175849915,-0.04409585893154144,1.1062309741973877,1.0888017416000366,0.14762526750564575,-0.7586928009986877,-1.2292810678482056,0.7227886915206909,1.350239634513855,1.0888017416000366,-0.35782134532928467,-1.089847445487976,0.0604793019592762,0.6356427073478699,1.175947666168213,-0.2532461881637573,0.2522004246711731,0.4439215660095215,-0.6366884708404541,-1.0549890995025635,-1.3687145709991455,-1.1944226026535034,-1.665010929107666,-1.0027015209197998,0.32191720604896545,0.6879302859306335,0.16505447030067444,-0.6715468168258667,-1.1595642566680908,-1.0724183320999146,-0.6889760494232178,0.3916339874267578,-0.427538126707077,-0.4972549080848694,0.8622221946716309,0.8099346160888672,-0.21838779747486115,-0.7064052224159241,-0.5495424866676331,-0.16610021889209747,-1.804444432258606,0.3567756116390228,-0.6541176438331604,-1.0201307535171509,-1.0027015209197998,-1.2641394138336182,-1.3861438035964966,-1.7347276210784912,-1.333856225013733,0.09533768892288208,1.507102370262146,0.28705883026123047,0.8796514272689819,1.175947666168213,1.5768191814422607,0.5833551287651062,0.9842265844345093,1.4722440242767334,1.2805228233337402,-0.2532461881637573,-1.4035730361938477,0.4264923632144928,0.4439215660095215,-0.305533766746521,-0.07895424962043762,-0.41010892391204834,-0.20095860958099365,-0.8458387851715088,-0.7238343954086304,-0.8632679581642151,-0.5669716596603394,-1.0027015209197998,-1.333856225013733,-1.0375598669052124,-1.2118518352508545,-0.7064052224159241,-0.20095860958099365,0.8099346160888672,1.1236600875854492,1.2979520559310913,1.6116775274276733,0.8796514272689819,0.8622221946716309,0.9842265844345093,0.7227886915206909,0.7925054430961609,0.49620914459228516,0.6879302859306335,0.7576470375061035,0.9493681788444519,1.0888017416000366,1.2630937099456787,0.7750762701034546,1.4722440242767334,1.3850979804992676,1.7336819171905518,1.2630937099456787,1.2282352447509766,1.4025272130966187,0.8447930216789246],[0.14762526750564575,-0.1138126328587532,-0.305533766746521,0.6007843017578125,0.7750762701034546,0.6879302859306335,1.0016558170318604,1.2456644773483276,1.350239634513855,1.1236600875854492,0.4439215660095215,1.0190849304199219,0.8447930216789246,0.8273638486862183,1.8731154203414917,1.7685402631759644,2.151982545852661,2.4134204387664795,1.7162526845932007,1.8033987283706665,0.5659258961677551,-1.0549890995025635,-1.333856225013733,-0.35782134532928467,-0.4798257052898407,-0.6366884708404541,0.8447930216789246,0.3742047846317291,1.4199564456939697,0.6879302859306335,1.1062309741973877,1.0190849304199219,1.0190849304199219,1.4025272130966187,-0.09638344496488571,0.16505447030067444,0.6530718803405762,0.8796514272689819,0.4439215660095215,0.9319390058517456,0.6182135343551636,0.8099346160888672,-0.14867103099822998,-0.8632679581642151,-1.1944226026535034,0.3567756116390228,0.008191721513867378,-0.21838779747486115,-1.246710181236267,-0.9155555367469788,-0.6541176438331604,-0.39267975091934204,-0.5321133136749268,-0.6889760494232178,-0.8981263637542725,0.14762526750564575,-0.7412636280059814,-1.089847445487976,-0.5495424866676331,0.49620914459228516,-0.462396502494812,-1.2292810678482056,-0.8806971907615662,-0.5146840810775757,-0.37525054812431335,-1.3687145709991455,-1.089847445487976,-1.1595642566680908,-1.1421350240707397,-1.5952941179275513,-1.508148193359375,-1.2641394138336182,-1.3164269924163818,-1.5430065393447876,-1.5430065393447876,-1.176993489265442,-0.9329847693443298,-0.305533766746521,-0.4972549080848694,0.6705011129379272,1.3850979804992676,1.838257074356079,1.4373856782913208,1.5768191814422607,1.7336819171905518,1.5419608354568481,0.9319390058517456,0.9319390058517456,0.8447930216789246,0.2696296274662018,0.7402178645133972,0.3916339874267578,0.07790849357843399,0.2347712367773056,0.30448800325393677,-0.06152505427598953,0.11276688426733017,0.11276688426733017,0.28705883026123047,0.47877994179725647,0.46135076880455017,0.7576470375061035,0.5136383175849915,0.7925054430961609,0.7576470375061035,0.9145098328590393,1.1585185527801514,0.9145098328590393,1.0888017416000366,0.9493681788444519,1.1410893201828003,1.2282352447509766,1.6988235712051392,1.663965106010437,1.4896732568740845,1.210806131362915,1.2805228233337402,0.9493681788444519,0.9145098328590393,0.9145098328590393,1.210806131362915,0.7402178645133972,0.6530718803405762,0.6879302859306335,0.2696296274662018,0.8796514272689819,1.8033987283706665,-0.305533766746521,0.07790849357843399,-0.305533766746521,-0.340392142534256,-1.089847445487976,-0.35782134532928467,-0.305533766746521,0.8099346160888672,-0.7761220335960388,-0.305533766746521,-0.02666666731238365,0.11276688426733017,-0.1138126328587532,-0.04409585893154144,-0.16610021889209747,-0.09638344496488571,-0.5495424866676331,-0.7412636280059814,-0.8458387851715088,-0.8458387851715088,-1.2641394138336182,1.036514163017273,-0.4449673295021057,0.09533768892288208,1.2805228233337402,-0.5669716596603394,-0.5669716596603394,0.2696296274662018,-0.02666666731238365,0.7402178645133972,-1.176993489265442,0.6530718803405762,1.663965106010437,-0.14867103099822998,-0.270675390958786,2.622570753097534,1.4722440242767334,1.9951198101043701,-0.8109803795814514,-0.4972549080848694,-0.7935512065887451,-1.0375598669052124,-1.0027015209197998,-1.1247059106826782,-1.4732897281646729,-0.9504139423370361,-0.5146840810775757,0.46135076880455017,1.367668867111206,1.4025272130966187,1.6291067600250244,1.1236600875854492,0.7053594589233398,1.5593899488449097,1.7162526845932007,1.507102370262146,-0.6366884708404541,-0.5495424866676331,-0.04409585893154144,1.5419608354568481,0.28705883026123047,0.2347712367773056,0.008191721513867378,-0.305533766746521,-0.39267975091934204,-0.41010892391204834,-0.35782134532928467,-0.6541176438331604,-0.7761220335960388,-0.7238343954086304,-1.1247059106826782,-0.9678431153297424,-0.41010892391204834,0.3742047846317291,0.8970806002616882,1.3850979804992676,1.332810401916504,1.193376898765564,1.0016558170318604,1.2282352447509766,1.210806131362915,0.5659258961677551,0.5833551287651062,0.30448800325393677,0.46135076880455017,1.175947666168213,1.1062309741973877,1.1585185527801514,1.2805228233337402,1.6116775274276733,1.681394338607788,1.1062309741973877,1.6116775274276733,1.6988235712051392,1.2979520559310913,1.210806131362915,1.4548147916793823],[-0.04409585893154144,0.11276688426733017,0.28705883026123047,0.07790849357843399,-0.2881045639514923,0.2347712367773056,0.7227886915206909,1.2805228233337402,1.367668867111206,1.3153812885284424,1.193376898765564,1.1062309741973877,0.6530718803405762,1.0888017416000366,1.3153812885284424,0.7227886915206909,2.1694116592407227,2.0648365020751953,2.3785619735717773,2.0996949672698975,1.977690577507019,0.30448800325393677,-0.39267975091934204,-0.270675390958786,-0.5844008922576904,0.47877994179725647,1.175947666168213,0.8796514272689819,1.2630937099456787,1.1410893201828003,1.1062309741973877,0.4090631902217865,-0.37525054812431335,-0.427538126707077,0.33934640884399414,0.28705883026123047,0.9145098328590393,0.0604793019592762,1.3153812885284424,1.820827841758728,0.3916339874267578,0.8447930216789246,-0.09638344496488571,-0.3229629695415497,-1.3164269924163818,-1.1247059106826782,-0.5321133136749268,-0.41010892391204834,-0.9678431153297424,-0.619259238243103,-0.6889760494232178,-1.647581696510315,-1.3861438035964966,-0.8632679581642151,-0.5321133136749268,0.32191720604896545,0.09533768892288208,-0.1138126328587532,-1.089847445487976,-0.340392142534256,-0.2532461881637573,-0.6715468168258667,-0.35782134532928467,-0.9504139423370361,-1.0027015209197998,-1.0027015209197998,-1.5255773067474365,-1.3164269924163818,-1.3861438035964966,-0.9852723479270935,-0.9329847693443298,-1.1072766780853271,-1.6998692750930786,-1.6998692750930786,-1.6127233505249023,-1.5952941179275513,-1.089847445487976,-0.2532461881637573,0.18248365819454193,1.5419608354568481,1.6988235712051392,1.7511111497879028,1.6291067600250244,1.4722440242767334,1.2282352447509766,0.8970806002616882,1.193376898765564,0.8447930216789246,0.7576470375061035,0.7402178645133972,0.3916339874267578,0.13019607961177826,0.32191720604896545,0.008191721513867378,-0.14867103099822998,0.2696296274662018,0.4264923632144928,0.2522004246711731,0.49620914459228516,0.6007843017578125,0.8970806002616882,0.6007843017578125,0.5659258961677551,0.9145098328590393,1.175947666168213,1.3153812885284424,0.966797411441803,1.367668867111206,0.7925054430961609,1.507102370262146,1.4722440242767334,1.5942484140396118,1.4548147916793823,1.1236600875854492,1.332810401916504,1.2979520559310913,1.210806131362915,0.9319390058517456,0.8796514272689819,0.9319390058517456,0.5310675501823425,0.8796514272689819,0.8447930216789246,0.9493681788444519,0.5136383175849915,0.7750762701034546,2.552854061126709,1.9079738855361938,-1.0027015209197998,-0.8109803795814514,-0.41010892391204834,-1.0375598669052124,-1.1247059106826782,0.7925054430961609,-0.07895424962043762,0.2347712367773056,-0.8981263637542725,-0.5669716596603394,-0.21838779747486115,0.3916339874267578,0.30448800325393677,0.02562091499567032,0.18248365819454193,-0.619259238243103,-0.6366884708404541,-0.7238343954086304,-0.462396502494812,1.5593899488449097,1.210806131362915,0.14762526750564575,1.2979520559310913,1.663965106010437,-0.6366884708404541,-0.5146840810775757,-0.5146840810775757,0.09533768892288208,0.32191720604896545,-0.9329847693443298,0.14762526750564575,1.1585185527801514,0.30448800325393677,1.4722440242767334,-0.20095860958099365,-0.8981263637542725,-0.37525054812431335,-0.5146840810775757,-0.39267975091934204,-0.6541176438331604,-0.7238343954086304,-0.7412636280059814,-0.8806971907615662,-1.0027015209197998,-0.7238343954086304,-1.3164269924163818,-0.1138126328587532,1.5768191814422607,1.9254029989242554,1.3850979804992676,1.4896732568740845,1.7511111497879028,1.6465359926223755,1.8033987283706665,1.2630937099456787,-0.09638344496488571,-0.6889760494232178,0.5136383175849915,1.367668867111206,1.210806131362915,-0.462396502494812,-0.3229629695415497,-0.4972549080848694,0.008191721513867378,-0.37525054812431335,-0.35782134532928467,-0.5669716596603394,-0.37525054812431335,-0.9329847693443298,-0.8632679581642151,-0.9155555367469788,0.3742047846317291,0.6356427073478699,0.9145098328590393,1.2805228233337402,1.2630937099456787,0.966797411441803,1.1236600875854492,0.966797411441803,0.5484967231750488,0.09533768892288208,0.32191720604896545,0.32191720604896545,0.8796514272689819,1.1062309741973877,1.2282352447509766,1.4548147916793823,1.350239634513855,1.332810401916504,1.1236600875854492,1.5942484140396118,1.2282352447509766,1.4373856782913208,1.524531602859497,0.966797411441803,0.9493681788444519],[0.30448800325393677,-0.5495424866676331,-0.37525054812431335,-0.305533766746521,-0.5321133136749268,-0.41010892391204834,-0.340392142534256,1.0016558170318604,1.6116775274276733,0.8447930216789246,1.4548147916793823,1.507102370262146,1.1236600875854492,0.9319390058517456,0.7402178645133972,1.8033987283706665,1.6988235712051392,1.9428322315216064,2.117124080657959,1.9602614641189575,1.4025272130966187,1.367668867111206,1.663965106010437,1.681394338607788,2.0299782752990723,1.4548147916793823,0.19991286098957062,0.008191721513867378,0.8796514272689819,0.9145098328590393,1.2456644773483276,0.7053594589233398,-0.07895424962043762,-0.8284096121788025,-0.5146840810775757,0.4264923632144928,0.5136383175849915,1.2282352447509766,0.16505447030067444,-0.06152505427598953,0.3742047846317291,0.32191720604896545,-0.04409585893154144,0.16505447030067444,-1.1072766780853271,-1.1247059106826782,-1.1944226026535034,-1.2292810678482056,-1.0375598669052124,-0.5495424866676331,-1.1944226026535034,-1.333856225013733,-1.2641394138336182,-0.9504139423370361,0.13019607961177826,0.3742047846317291,0.6879302859306335,0.14762526750564575,-0.04409585893154144,1.2630937099456787,-0.16610021889209747,-0.21838779747486115,-1.0724183320999146,-1.6301524639129639,-1.4384313821792603,-1.5430065393447876,-1.333856225013733,-0.619259238243103,-0.8981263637542725,-1.0724183320999146,-1.246710181236267,-1.6127233505249023,-1.5604357719421387,-1.6824400424957275,-1.5430065393447876,-1.1595642566680908,-0.8981263637542725,0.32191720604896545,1.5419608354568481,1.4548147916793823,1.507102370262146,1.4896732568740845,1.524531602859497,1.1410893201828003,1.175947666168213,0.8447930216789246,0.8622221946716309,0.4090631902217865,0.3567756116390228,0.47877994179725647,0.32191720604896545,0.07790849357843399,0.11276688426733017,0.30448800325393677,0.5659258961677551,-0.23581700026988983,0.4090631902217865,0.5484967231750488,0.7750762701034546,0.7925054430961609,0.5833551287651062,1.2805228233337402,0.8099346160888672,1.1062309741973877,1.0190849304199219,0.8970806002616882,0.7053594589233398,1.1236600875854492,1.2979520559310913,1.036514163017273,1.367668867111206,1.6116775274276733,1.350239634513855,1.2456644773483276,1.3153812885284424,0.9493681788444519,1.0713725090026855,0.6879302859306335,1.4722440242767334,0.7227886915206909,0.9842265844345093,0.6530718803405762,1.4025272130966187,1.193376898765564,0.9842265844345093,1.0713725090026855,2.308845281600952,1.036514163017273,1.367668867111206,-1.5255773067474365,0.04305011034011841,0.16505447030067444,-0.8632679581642151,-0.8109803795814514,-0.1312418282032013,-0.427538126707077,-0.5321133136749268,-0.8806971907615662,-0.6018300652503967,-0.06152505427598953,0.46135076880455017,0.32191720604896545,0.2173420488834381,-0.16610021889209747,0.07790849357843399,-0.462396502494812,-0.4449673295021057,1.524531602859497,-0.02666666731238365,-0.02666666731238365,1.175947666168213,1.5593899488449097,-0.4972549080848694,-0.5321133136749268,-0.4449673295021057,0.7053594589233398,0.18248365819454193,-1.0724183320999146,-1.4035730361938477,0.09533768892288208,0.5310675501823425,1.1062309741973877,2.1694116592407227,1.350239634513855,-0.5321133136749268,-0.18352940678596497,-0.5495424866676331,-0.4798257052898407,-0.7238343954086304,-1.0375598669052124,-1.1421350240707397,-0.8806971907615662,-0.8284096121788025,-1.176993489265442,-0.9852723479270935,1.2979520559310913,1.5942484140396118,1.8731154203414917,1.5942484140396118,1.8033987283706665,1.8905446529388428,1.0713725090026855,-0.270675390958786,-1.1247059106826782,0.8622221946716309,1.7511111497879028,1.1585185527801514,0.4090631902217865,-0.1312418282032013,-0.06152505427598953,-0.02666666731238365,-0.427538126707077,-0.340392142534256,-0.7935512065887451,-0.5146840810775757,-0.8284096121788025,-0.7064052224159241,-1.2989978790283203,-0.1312418282032013,0.7402178645133972,1.053943395614624,0.966797411441803,1.0190849304199219,1.663965106010437,1.2456644773483276,0.8099346160888672,0.8970806002616882,0.9493681788444519,0.4090631902217865,0.3742047846317291,0.6530718803405762,1.2979520559310913,1.4025272130966187,1.4548147916793823,1.193376898765564,1.524531602859497,1.2805228233337402,1.507102370262146,1.5942484140396118,1.053943395614624,1.2630937099456787,1.175947666168213,1.4896732568740845,1.053943395614624],[0.9842265844345093,0.19991286098957062,-0.09638344496488571,-0.619259238243103,-0.270675390958786,-0.9678431153297424,-0.35782134532928467,0.13019607961177826,1.036514163017273,1.507102370262146,1.3153812885284424,1.4722440242767334,1.210806131362915,1.838257074356079,1.838257074356079,1.9428322315216064,2.0125489234924316,1.8731154203414917,2.0996949672698975,1.5593899488449097,2.117124080657959,1.9951198101043701,1.7336819171905518,1.4373856782913208,2.1868410110473633,1.524531602859497,0.8796514272689819,-0.7238343954086304,0.02562091499567032,0.8796514272689819,-0.4972549080848694,0.07790849357843399,0.02562091499567032,-0.9852723479270935,-0.02666666731238365,-0.23581700026988983,0.008191721513867378,0.13019607961177826,-0.07895424962043762,-0.9329847693443298,-0.4449673295021057,0.7925054430961609,0.07790849357843399,0.07790849357843399,-0.9852723479270935,-1.5430065393447876,-1.4384313821792603,-1.176993489265442,-0.6541176438331604,-0.2532461881637573,-0.6541176438331604,-1.1421350240707397,-1.0549890995025635,-1.1072766780853271,-0.5321133136749268,-0.7586928009986877,-0.7935512065887451,-0.4798257052898407,-0.23581700026988983,-1.246710181236267,-0.41010892391204834,-1.0027015209197998,-0.9504139423370361,-1.351285457611084,-1.0724183320999146,-0.7761220335960388,-1.0201307535171509,-0.9852723479270935,-1.7347276210784912,-1.4384313821792603,-1.3861438035964966,-1.5430065393447876,-1.7695860862731934,-1.490718960762024,-1.508148193359375,-0.7586928009986877,0.8447930216789246,1.4896732568740845,1.3850979804992676,1.9254029989242554,1.5419608354568481,1.1410893201828003,1.524531602859497,1.2805228233337402,0.8622221946716309,0.9493681788444519,0.3567756116390228,0.18248365819454193,-0.07895424962043762,0.2696296274662018,0.0604793019592762,-0.04409585893154144,0.5833551287651062,0.3567756116390228,0.4090631902217865,0.2522004246711731,0.5659258961677551,0.3567756116390228,0.966797411441803,0.9842265844345093,0.8099346160888672,0.8796514272689819,1.0016558170318604,1.0190849304199219,1.507102370262146,1.1410893201828003,1.4025272130966187,1.4722440242767334,1.3850979804992676,1.4199564456939697,1.4548147916793823,1.2805228233337402,1.367668867111206,1.053943395614624,0.7750762701034546,1.2282352447509766,0.7053594589233398,0.9493681788444519,0.8447930216789246,0.7750762701034546,0.8796514272689819,0.7227886915206909,0.9319390058517456,1.175947666168213,1.175947666168213,1.5593899488449097,2.395991325378418,0.32191720604896545,1.036514163017273,-0.4972549080848694,-1.2292810678482056,-0.16610021889209747,-0.9504139423370361,-1.333856225013733,-0.619259238243103,-0.5669716596603394,0.02562091499567032,-1.0724183320999146,-1.1944226026535034,0.18248365819454193,-0.6889760494232178,-0.16610021889209747,0.30448800325393677,0.5310675501823425,-1.7521568536758423,-0.6715468168258667,-0.2881045639514923,1.210806131362915,0.3916339874267578,1.5942484140396118,1.838257074356079,1.2282352447509766,-0.02666666731238365,0.16505447030067444,-0.35782134532928467,-0.02666666731238365,0.02562091499567032,-0.7586928009986877,-1.5604357719421387,0.5484967231750488,0.9493681788444519,0.8622221946716309,1.350239634513855,0.2347712367773056,-0.2532461881637573,-0.35782134532928467,-0.6541176438331604,-0.6366884708404541,-0.462396502494812,-0.5844008922576904,-0.5669716596603394,-0.6715468168258667,-0.7064052224159241,-0.619259238243103,-1.1247059106826782,-0.1138126328587532,1.2630937099456787,1.8556863069534302,1.5768191814422607,1.7511111497879028,2.117124080657959,1.367668867111206,-0.6018300652503967,0.18248365819454193,1.367668867111206,1.7511111497879028,1.4896732568740845,1.507102370262146,-0.02666666731238365,0.13019607961177826,-0.1138126328587532,-0.16610021889209747,-0.2881045639514923,-0.37525054812431335,-0.4798257052898407,-0.5495424866676331,-0.5321133136749268,-0.6541176438331604,0.49620914459228516,0.6530718803405762,1.2630937099456787,1.0190849304199219,1.0713725090026855,1.2456644773483276,1.2282352447509766,0.5833551287651062,0.8099346160888672,0.2696296274662018,0.4264923632144928,0.7053594589233398,0.5136383175849915,1.2630937099456787,1.175947666168213,1.0190849304199219,1.5593899488449097,1.5942484140396118,1.6465359926223755,1.7162526845932007,1.053943395614624,1.3153812885284424,1.4025272130966187,1.0888017416000366,1.5593899488449097,0.6356427073478699],[1.4199564456939697,1.1236600875854492,0.2347712367773056,0.13019607961177826,-0.340392142534256,-0.7761220335960388,-0.2532461881637573,-0.23581700026988983,0.6182135343551636,1.175947666168213,1.367668867111206,1.2805228233337402,1.977690577507019,1.681394338607788,1.838257074356079,1.7162526845932007,1.9079738855361938,2.27398681640625,2.047407388687134,2.1694116592407227,2.204270124435425,1.663965106010437,1.175947666168213,0.7925054430961609,-0.7412636280059814,0.4439215660095215,-1.804444432258606,-1.333856225013733,-1.2292810678482056,-0.5495424866676331,0.13019607961177826,-0.6889760494232178,-0.9329847693443298,-0.6715468168258667,-0.20095860958099365,-0.37525054812431335,0.49620914459228516,-0.21838779747486115,-0.04409585893154144,-0.305533766746521,0.7925054430961609,1.0190849304199219,0.19991286098957062,0.07790849357843399,0.19991286098957062,-0.9155555367469788,-1.0027015209197998,-0.7586928009986877,-0.7935512065887451,-0.462396502494812,-0.6715468168258667,-1.647581696510315,-1.2118518352508545,-0.16610021889209747,-1.3687145709991455,0.4439215660095215,0.16505447030067444,-0.14867103099822998,-1.5255773067474365,-1.0027015209197998,-0.20095860958099365,-0.462396502494812,-0.7238343954086304,-0.4798257052898407,-1.4210021495819092,-1.089847445487976,-1.2989978790283203,-1.2292810678482056,-1.508148193359375,-1.333856225013733,-1.6301524639129639,-1.7347276210784912,-1.647581696510315,-1.4210021495819092,0.8796514272689819,1.0713725090026855,1.524531602859497,1.6988235712051392,1.7511111497879028,1.350239634513855,1.4896732568740845,1.036514163017273,1.210806131362915,0.7750762701034546,0.5659258961677551,0.6530718803405762,0.5659258961677551,1.193376898765564,0.14762526750564575,0.32191720604896545,-0.09638344496488571,-0.1138126328587532,0.14762526750564575,0.30448800325393677,0.3567756116390228,0.30448800325393677,1.1062309741973877,0.7402178645133972,0.7750762701034546,1.0016558170318604,0.6705011129379272,1.0713725090026855,1.2630937099456787,0.7750762701034546,0.966797411441803,1.210806131362915,1.175947666168213,1.4896732568740845,1.4896732568740845,1.4548147916793823,1.350239634513855,1.0888017416000366,1.0190849304199219,1.2456644773483276,0.9842265844345093,0.5833551287651062,0.7750762701034546,0.9145098328590393,1.0190849304199219,0.8273638486862183,1.0016558170318604,1.0888017416000366,1.0016558170318604,0.8970806002616882,1.1585185527801514,1.7336819171905518,2.0125489234924316,1.8556863069534302,0.6530718803405762,0.16505447030067444,0.09533768892288208,-1.1595642566680908,-0.2532461881637573,0.04305011034011841,-0.9852723479270935,-0.9852723479270935,-0.41010892391204834,-0.5495424866676331,-0.8806971907615662,-0.5844008922576904,0.11276688426733017,-0.39267975091934204,-0.2881045639514923,0.32191720604896545,-0.6889760494232178,-0.35782134532928467,-0.305533766746521,-0.619259238243103,1.2805228233337402,0.07790849357843399,1.2282352447509766,0.04305011034011841,-0.09638344496488571,-0.5844008922576904,-0.7064052224159241,-0.3229629695415497,0.5659258961677551,0.0604793019592762,-0.5669716596603394,0.30448800325393677,0.9842265844345093,1.175947666168213,-0.270675390958786,-0.462396502494812,-0.09638344496488571,-0.4798257052898407,-0.41010892391204834,-0.5669716596603394,-0.6715468168258667,-0.07895424962043762,-0.340392142534256,-0.5146840810775757,-0.4972549080848694,-0.7412636280059814,-0.619259238243103,-0.8458387851715088,-0.6366884708404541,1.9079738855361938,1.8731154203414917,1.820827841758728,1.0713725090026855,1.2282352447509766,0.9145098328590393,2.204270124435425,2.117124080657959,1.6291067600250244,1.3850979804992676,1.3850979804992676,1.7511111497879028,0.11276688426733017,-0.2881045639514923,-0.4798257052898407,-0.35782134532928467,-0.6018300652503967,-0.4449673295021057,-0.7761220335960388,-0.6715468168258667,-0.06152505427598953,0.7925054430961609,0.9493681788444519,0.966797411441803,1.1410893201828003,0.9842265844345093,0.8796514272689819,0.7576470375061035,0.13019607961177826,0.47877994179725647,0.3742047846317291,0.0604793019592762,0.8622221946716309,0.49620914459228516,1.4199564456939697,2.047407388687134,1.6291067600250244,1.367668867111206,1.175947666168213,1.4722440242767334,1.524531602859497,1.2630937099456787,0.7925054430961609,1.1062309741973877,0.7576470375061035,1.1062309741973877,1.0016558170318604],[1.193376898765564,0.8273638486862183,0.6530718803405762,0.4090631902217865,0.32191720604896545,-0.07895424962043762,-1.1595642566680908,0.14762526750564575,1.193376898765564,1.2456644773483276,1.6988235712051392,1.4199564456939697,1.681394338607788,1.5419608354568481,1.838257074356079,1.9254029989242554,1.350239634513855,1.9428322315216064,1.0190849304199219,1.6465359926223755,1.838257074356079,1.663965106010437,0.5136383175849915,-0.6018300652503967,-1.0201307535171509,-0.8632679581642151,-1.5255773067474365,-1.5430065393447876,-1.1247059106826782,-0.7761220335960388,-0.305533766746521,-0.5495424866676331,-0.7064052224159241,-0.06152505427598953,-0.305533766746521,0.13019607961177826,-0.4449673295021057,0.32191720604896545,0.4090631902217865,0.09533768892288208,0.8273638486862183,0.8622221946716309,0.14762526750564575,0.18248365819454193,0.19991286098957062,-0.4972549080848694,-0.6541176438331604,-0.8284096121788025,-0.18352940678596497,-0.2532461881637573,-1.1595642566680908,-1.7347276210784912,-1.2118518352508545,-1.804444432258606,-0.7586928009986877,0.09533768892288208,-0.4798257052898407,-0.305533766746521,-0.8632679581642151,-0.06152505427598953,-1.0201307535171509,-0.8632679581642151,-1.2641394138336182,-1.3164269924163818,-1.1421350240707397,-1.1595642566680908,-1.508148193359375,-1.2989978790283203,-1.333856225013733,-1.5255773067474365,-1.665010929107666,-1.804444432258606,-0.7761220335960388,1.5593899488449097,0.8796514272689819,1.5942484140396118,1.4025272130966187,1.332810401916504,1.820827841758728,1.1585185527801514,0.9145098328590393,1.0190849304199219,0.5310675501823425,0.2522004246711731,0.3916339874267578,0.2696296274662018,0.3742047846317291,0.2696296274662018,0.30448800325393677,0.14762526750564575,0.02562091499567032,0.46135076880455017,0.8970806002616882,0.7925054430961609,1.0190849304199219,0.49620914459228516,0.8970806002616882,0.6705011129379272,1.0190849304199219,1.1062309741973877,1.1585185527801514,0.9493681788444519,1.4373856782913208,1.2805228233337402,1.4199564456939697,1.332810401916504,1.4199564456939697,1.2805228233337402,1.3850979804992676,1.3850979804992676,1.5768191814422607,0.9842265844345093,1.053943395614624,0.8622221946716309,0.8447930216789246,0.9145098328590393,0.8099346160888672,0.8622221946716309,0.8970806002616882,0.9842265844345093,0.8970806002616882,1.193376898765564,1.350239634513855,1.0713725090026855,1.4373856782913208,1.3153812885284424,1.7859694957733154,1.6291067600250244,1.193376898765564,-0.6541176438331604,-0.009237472899258137,-0.3229629695415497,-0.7238343954086304,-1.0375598669052124,-0.2532461881637573,-1.7521568536758423,-0.35782134532928467,-0.8632679581642151,-0.9504139423370361,-0.41010892391204834,-0.41010892391204834,0.8447930216789246,0.16505447030067444,-0.9155555367469788,-0.9329847693443298,0.18248365819454193,-1.2815686464309692,-0.619259238243103,0.4439215660095215,-0.4972549080848694,0.6182135343551636,-0.7238343954086304,0.13019607961177826,0.8622221946716309,-0.009237472899258137,-0.305533766746521,0.7402178645133972,0.2173420488834381,-0.619259238243103,-0.1138126328587532,0.6182135343551636,1.2979520559310913,0.09533768892288208,-0.16610021889209747,-0.4449673295021057,-0.18352940678596497,-0.270675390958786,-0.41010892391204834,-0.06152505427598953,-0.4798257052898407,-0.39267975091934204,-0.37525054812431335,-0.2532461881637573,-0.5146840810775757,-0.7586928009986877,-0.462396502494812,-1.1421350240707397,1.2630937099456787,1.9254029989242554,1.4548147916793823,1.0016558170318604,1.4896732568740845,1.8033987283706665,1.8905446529388428,1.7162526845932007,1.7336819171905518,1.681394338607788,1.1236600875854492,1.3850979804992676,0.5833551287651062,-0.4449673295021057,-0.270675390958786,-0.6541176438331604,-0.2881045639514923,-1.2118518352508545,-0.20095860958099365,-0.37525054812431335,0.7227886915206909,0.6007843017578125,0.9842265844345093,0.8273638486862183,0.9319390058517456,0.8099346160888672,0.8099346160888672,-0.270675390958786,-0.1138126328587532,-0.340392142534256,0.19991286098957062,0.7053594589233398,1.193376898765564,1.2805228233337402,1.5419608354568481,1.1062309741973877,1.4373856782913208,1.2979520559310913,1.1062309741973877,1.507102370262146,1.3850979804992676,1.2805228233337402,1.4722440242767334,1.1236600875854492,1.0190849304199219,0.7227886915206909,0.7227886915206909],[1.3153812885284424,1.6291067600250244,1.0190849304199219,0.6007843017578125,0.46135076880455017,-0.009237472899258137,-0.009237472899258137,-0.1312418282032013,0.966797411441803,1.210806131362915,1.7511111497879028,2.0996949672698975,1.5593899488449097,1.4548147916793823,1.4896732568740845,-0.04409585893154144,-0.09638344496488571,-0.41010892391204834,1.524531602859497,1.524531602859497,1.350239634513855,1.524531602859497,0.32191720604896545,-0.9678431153297424,-0.9504139423370361,-1.3687145709991455,-1.333856225013733,-0.4798257052898407,-0.9852723479270935,-0.5844008922576904,-0.39267975091934204,-0.35782134532928467,-0.4798257052898407,0.49620914459228516,0.5136383175849915,0.14762526750564575,-0.18352940678596497,0.4439215660095215,-0.4972549080848694,0.3916339874267578,0.32191720604896545,0.6879302859306335,1.193376898765564,0.8622221946716309,1.4722440242767334,1.350239634513855,1.332810401916504,1.1585185527801514,0.5659258961677551,-0.7238343954086304,-0.9329847693443298,-1.6301524639129639,-0.37525054812431335,-0.6018300652503967,-1.0201307535171509,-0.06152505427598953,-0.8981263637542725,-0.14867103099822998,-0.009237472899258137,-0.9504139423370361,1.5419608354568481,-1.1944226026535034,-1.246710181236267,-1.5952941179275513,-0.8806971907615662,-0.9504139423370361,-1.3164269924163818,-1.490718960762024,-1.2641394138336182,-1.6127233505249023,-1.7347276210784912,0.2347712367773056,1.838257074356079,1.8731154203414917,1.6465359926223755,1.350239634513855,1.1585185527801514,0.9842265844345093,1.175947666168213,1.1410893201828003,0.6705011129379272,0.46135076880455017,0.47877994179725647,0.49620914459228516,0.7053594589233398,0.7750762701034546,0.5310675501823425,0.5833551287651062,0.49620914459228516,0.6530718803405762,0.4439215660095215,0.6007843017578125,0.7227886915206909,0.6356427073478699,0.4090631902217865,0.9493681788444519,0.7925054430961609,1.036514163017273,1.1585185527801514,1.2456644773483276,1.1062309741973877,1.2979520559310913,1.367668867111206,1.350239634513855,1.4199564456939697,1.6291067600250244,1.2456644773483276,1.5593899488449097,1.1062309741973877,1.2456644773483276,1.2456644773483276,1.193376898765564,1.1585185527801514,0.9493681788444519,0.7402178645133972,0.9319390058517456,0.8273638486862183,1.210806131362915,1.0190849304199219,1.0713725090026855,1.5419608354568481,1.4896732568740845,1.2282352447509766,1.2630937099456787,1.367668867111206,1.8556863069534302,1.5593899488449097,0.33934640884399414,1.1062309741973877,0.6182135343551636,-0.7064052224159241,0.14762526750564575,-0.39267975091934204,-0.9852723479270935,-0.8981263637542725,-0.7412636280059814,-1.7347276210784912,-1.1944226026535034,-0.8284096121788025,-0.6889760494232178,-0.7238343954086304,-0.23581700026988983,0.04305011034011841,-0.07895424962043762,-0.619259238243103,-0.35782134532928467,-0.427538126707077,0.2347712367773056,0.32191720604896545,0.6182135343551636,0.3742047846317291,-0.5146840810775757,-0.340392142534256,0.07790849357843399,0.0604793019592762,0.07790849357843399,1.2805228233337402,0.5484967231750488,-1.2989978790283203,-0.7935512065887451,0.49620914459228516,1.4199564456939697,0.5833551287651062,0.19991286098957062,-0.305533766746521,-0.14867103099822998,-0.06152505427598953,-0.37525054812431335,0.09533768892288208,-0.619259238243103,-0.18352940678596497,-0.1312418282032013,-0.1312418282032013,-0.6541176438331604,-0.4449673295021057,-0.4798257052898407,-0.39267975091934204,0.11276688426733017,1.4548147916793823,1.8731154203414917,1.7685402631759644,1.6116775274276733,1.820827841758728,1.175947666168213,1.838257074356079,1.7859694957733154,1.4199564456939697,1.210806131362915,0.7925054430961609,1.350239634513855,-0.2881045639514923,-0.6541176438331604,-0.2532461881637573,-0.5146840810775757,-0.6715468168258667,-0.1138126328587532,0.3916339874267578,1.0713725090026855,1.0713725090026855,0.3916339874267578,0.9842265844345093,0.9842265844345093,0.7750762701034546,0.18248365819454193,-0.21838779747486115,-0.37525054812431335,0.30448800325393677,0.16505447030067444,1.0190849304199219,1.2979520559310913,1.350239634513855,1.507102370262146,1.7685402631759644,1.2805228233337402,1.193376898765564,1.3850979804992676,1.3850979804992676,1.0016558170318604,1.3153812885284424,1.0190849304199219,0.7402178645133972,1.0888017416000366,1.053943395614624,0.7750762701034546],[1.820827841758728,1.977690577507019,0.7750762701034546,1.0713725090026855,0.8099346160888672,-0.1138126328587532,0.13019607961177826,-0.09638344496488571,0.13019607961177826,1.2979520559310913,1.4025272130966187,1.210806131362915,1.1585185527801514,1.053943395614624,0.8447930216789246,-0.1312418282032013,-0.4972549080848694,-0.7412636280059814,0.008191721513867378,0.7227886915206909,-0.18352940678596497,-0.7064052224159241,-1.4558606147766113,-0.41010892391204834,-1.2118518352508545,-0.7586928009986877,-1.0375598669052124,-0.23581700026988983,0.5659258961677551,0.11276688426733017,-0.4972549080848694,-0.21838779747486115,-0.3229629695415497,0.3916339874267578,0.6879302859306335,-0.340392142534256,0.09533768892288208,0.13019607961177826,0.2347712367773056,0.2173420488834381,0.2522004246711731,0.8970806002616882,1.053943395614624,1.4722440242767334,2.047407388687134,1.524531602859497,2.0996949672698975,1.977690577507019,1.8731154203414917,1.4548147916793823,0.6182135343551636,-0.5495424866676331,-1.6998692750930786,-1.5604357719421387,-0.37525054812431335,-0.5146840810775757,-0.427538126707077,-0.4972549080848694,-0.6541176438331604,0.8622221946716309,-1.246710181236267,-1.508148193359375,-1.6998692750930786,-0.6018300652503967,-0.6889760494232178,-1.2989978790283203,-1.0027015209197998,-1.7521568536758423,-1.4210021495819092,-1.5430065393447876,1.193376898765564,1.4199564456939697,1.5419608354568481,1.7511111497879028,1.7685402631759644,1.5942484140396118,1.175947666168213,1.175947666168213,0.6182135343551636,0.6705011129379272,0.2173420488834381,0.47877994179725647,0.7402178645133972,0.33934640884399414,0.5833551287651062,0.09533768892288208,0.49620914459228516,0.19991286098957062,0.5833551287651062,0.2173420488834381,0.5659258961677551,0.46135076880455017,0.8273638486862183,0.6530718803405762,0.6356427073478699,0.9842265844345093,0.9319390058517456,0.7402178645133972,1.4722440242767334,1.4199564456939697,1.5419608354568481,1.332810401916504,1.0888017416000366,1.5768191814422607,1.5419608354568481,1.2805228233337402,1.367668867111206,1.4373856782913208,1.5593899488449097,1.5419608354568481,1.350239634513855,0.6705011129379272,0.5136383175849915,0.6007843017578125,0.7402178645133972,1.1410893201828003,1.2805228233337402,1.5942484140396118,1.3153812885284424,1.1410893201828003,1.2979520559310913,1.2282352447509766,0.9319390058517456,1.5768191814422607,1.524531602859497,1.4548147916793823,1.8905446529388428,-0.1138126328587532,-0.1138126328587532,1.332810401916504,0.47877994179725647,-0.9852723479270935,-0.18352940678596497,-0.5495424866676331,-0.9852723479270935,-0.9155555367469788,-0.4972549080848694,-1.647581696510315,-0.8284096121788025,-0.270675390958786,-0.14867103099822998,-1.5255773067474365,-1.1421350240707397,-0.23581700026988983,-0.6018300652503967,0.18248365819454193,-0.4449673295021057,0.3916339874267578,-0.2881045639514923,-0.18352940678596497,-0.02666666731238365,-0.1138126328587532,0.49620914459228516,0.30448800325393677,-0.23581700026988983,-1.3687145709991455,0.5484967231750488,0.3567756116390228,-1.176993489265442,-1.089847445487976,-0.39267975091934204,0.19991286098957062,-0.305533766746521,-0.18352940678596497,-0.1138126328587532,-0.340392142534256,-0.21838779747486115,-0.21838779747486115,-0.16610021889209747,-0.7586928009986877,-0.20095860958099365,-0.427538126707077,-0.20095860958099365,-0.09638344496488571,-0.619259238243103,-0.39267975091934204,-0.8632679581642151,-0.5146840810775757,1.332810401916504,1.838257074356079,1.8033987283706665,1.6116775274276733,1.5768191814422607,1.9602614641189575,1.7336819171905518,1.838257074356079,1.7511111497879028,0.966797411441803,0.7750762701034546,1.4373856782913208,0.6705011129379272,-0.41010892391204834,-0.41010892391204834,-0.5321133136749268,-0.6541176438331604,0.4439215660095215,0.7925054430961609,0.6879302859306335,0.7750762701034546,0.7576470375061035,0.6705011129379272,0.2522004246711731,-0.06152505427598953,-0.2532461881637573,-0.1138126328587532,0.5136383175849915,0.7925054430961609,0.8273638486862183,1.1236600875854492,1.2979520559310913,0.9842265844345093,1.4548147916793823,1.350239634513855,1.175947666168213,1.5593899488449097,1.350239634513855,1.1236600875854492,1.0888017416000366,0.8970806002616882,0.8099346160888672,0.6705011129379272,0.8447930216789246,1.0713725090026855,0.9493681788444519],[1.838257074356079,1.9079738855361938,1.4722440242767334,1.6116775274276733,1.332810401916504,0.3567756116390228,0.5484967231750488,0.11276688426733017,0.5659258961677551,1.332810401916504,1.1585185527801514,1.3153812885284424,1.1410893201828003,1.681394338607788,1.6291067600250244,1.2630937099456787,-0.5495424866676331,-0.8806971907615662,-1.4035730361938477,-1.5430065393447876,-1.1944226026535034,-1.804444432258606,-1.3164269924163818,-1.4035730361938477,-1.3687145709991455,-0.5495424866676331,-0.427538126707077,0.6530718803405762,0.8970806002616882,0.4439215660095215,-0.16610021889209747,-0.009237472899258137,-0.4972549080848694,-0.1138126328587532,-0.009237472899258137,0.19991286098957062,-0.20095860958099365,-0.6889760494232178,0.18248365819454193,0.6705011129379272,0.5136383175849915,0.8796514272689819,1.4025272130966187,1.663965106010437,1.838257074356079,1.7685402631759644,1.8556863069534302,1.7859694957733154,2.1868410110473633,1.9951198101043701,2.117124080657959,1.1236600875854492,-0.6366884708404541,-1.4384313821792603,-0.305533766746521,-0.9852723479270935,0.11276688426733017,0.0604793019592762,0.7402178645133972,-0.7412636280059814,-1.2292810678482056,-1.5778648853302002,-0.04409585893154144,-1.4035730361938477,-1.4035730361938477,-0.9329847693443298,-1.6301524639129639,-1.6998692750930786,-0.4449673295021057,1.8033987283706665,1.175947666168213,1.4199564456939697,1.4199564456939697,1.4548147916793823,1.2630937099456787,1.1236600875854492,1.3153812885284424,0.7227886915206909,0.5833551287651062,0.18248365819454193,0.47877994179725647,0.5659258961677551,0.32191720604896545,0.32191720604896545,0.32191720604896545,0.3742047846317291,0.6530718803405762,0.2522004246711731,0.6530718803405762,0.8796514272689819,0.6356427073478699,0.8447930216789246,0.8273638486862183,1.0888017416000366,1.036514163017273,1.1062309741973877,0.7750762701034546,1.2630937099456787,1.1585185527801514,1.1410893201828003,1.1585185527801514,1.5419608354568481,1.5768191814422607,1.6291067600250244,1.6116775274276733,1.4722440242767334,1.2805228233337402,1.4548147916793823,1.2456644773483276,1.5419608354568481,0.8099346160888672,1.1236600875854492,1.3153812885284424,1.1236600875854492,1.1062309741973877,1.4199564456939697,1.2456644773483276,1.1410893201828003,1.5419608354568481,1.0713725090026855,1.367668867111206,1.053943395614624,1.4548147916793823,1.0190849304199219,1.0888017416000366,0.9842265844345093,1.4722440242767334,-0.462396502494812,-0.5495424866676331,0.5659258961677551,0.7227886915206909,-0.16610021889209747,-0.39267975091934204,-0.5495424866676331,-0.6889760494232178,-1.4384313821792603,-1.3687145709991455,-0.8806971907615662,-0.7761220335960388,-0.619259238243103,0.0604793019592762,-0.02666666731238365,-0.427538126707077,-1.0549890995025635,-0.7064052224159241,-0.41010892391204834,0.4439215660095215,-0.02666666731238365,-1.0549890995025635,0.02562091499567032,-0.6366884708404541,-0.427538126707077,-0.8806971907615662,-0.07895424962043762,0.18248365819454193,-1.351285457611084,-0.9329847693443298,0.6007843017578125,-1.0027015209197998,-1.333856225013733,-0.9678431153297424,0.9493681788444519,-0.23581700026988983,-0.09638344496488571,-0.305533766746521,-0.09638344496488571,0.0604793019592762,-0.09638344496488571,-0.427538126707077,0.2347712367773056,-0.35782134532928467,-0.23581700026988983,-0.02666666731238365,-0.23581700026988983,-0.04409585893154144,-0.619259238243103,-0.4449673295021057,-0.7935512065887451,-0.7238343954086304,1.4722440242767334,1.820827841758728,1.8731154203414917,1.7685402631759644,1.9951198101043701,1.9254029989242554,1.7685402631759644,1.8905446529388428,1.4199564456939697,1.2282352447509766,1.8905446529388428,1.2630937099456787,-0.305533766746521,-0.37525054812431335,-0.305533766746521,0.04305011034011841,0.18248365819454193,0.7402178645133972,0.5484967231750488,0.8273638486862183,0.46135076880455017,0.2173420488834381,-0.04409585893154144,-0.7761220335960388,-0.270675390958786,0.19991286098957062,0.2522004246711731,0.8447930216789246,1.1585185527801514,1.175947666168213,1.1236600875854492,1.332810401916504,1.6465359926223755,1.5419608354568481,1.2805228233337402,1.524531602859497,0.9319390058517456,0.8273638486862183,1.193376898765564,0.7227886915206909,1.1585185527801514,0.7576470375061035,1.1410893201828003,1.0190849304199219,0.8273638486862183],[1.6988235712051392,1.5768191814422607,1.8033987283706665,1.4548147916793823,1.2282352447509766,0.9493681788444519,0.8796514272689819,0.2347712367773056,0.966797411441803,1.2456644773483276,1.1410893201828003,1.4199564456939697,1.8556863069534302,1.7336819171905518,1.8556863069534302,1.4548147916793823,0.966797411441803,0.6530718803405762,-0.5669716596603394,-0.5669716596603394,-1.2815686464309692,-1.089847445487976,-1.0549890995025635,-1.5430065393447876,-1.4035730361938477,-0.6541176438331604,0.9319390058517456,0.9493681788444519,1.2630937099456787,1.0713725090026855,-0.20095860958099365,0.33934640884399414,-0.7586928009986877,-0.7761220335960388,0.3567756116390228,-0.5495424866676331,-1.1072766780853271,-0.07895424962043762,0.11276688426733017,-0.462396502494812,0.07790849357843399,0.8099346160888672,1.193376898765564,1.8905446529388428,1.7511111497879028,1.9254029989242554,2.204270124435425,2.2216992378234863,2.0996949672698975,2.117124080657959,1.9079738855361938,2.047407388687134,0.49620914459228516,-0.39267975091934204,-1.3861438035964966,-1.2292810678482056,-0.5669716596603394,-0.5669716596603394,-0.270675390958786,-1.4210021495819092,-1.804444432258606,-0.8284096121788025,-0.8284096121788025,-0.8981263637542725,-1.1944226026535034,-1.7347276210784912,-1.490718960762024,1.053943395614624,1.4199564456939697,1.4199564456939697,1.820827841758728,1.524531602859497,2.082265853881836,1.663965106010437,1.332810401916504,0.9493681788444519,0.5833551287651062,0.8099346160888672,0.7925054430961609,0.5659258961677551,0.8970806002616882,0.8796514272689819,0.3742047846317291,0.5484967231750488,0.8796514272689819,0.49620914459228516,0.6705011129379272,0.8447930216789246,0.7402178645133972,0.6879302859306335,1.1585185527801514,0.8970806002616882,0.6356427073478699,1.1585185527801514,1.5419608354568481,1.3153812885284424,1.0713725090026855,1.2630937099456787,1.4548147916793823,1.3153812885284424,1.9254029989242554,1.507102370262146,1.2282352447509766,1.7859694957733154,1.4548147916793823,1.332810401916504,0.8796514272689819,0.8796514272689819,0.8099346160888672,1.053943395614624,0.7576470375061035,1.3850979804992676,1.210806131362915,1.1236600875854492,1.4548147916793823,1.1585185527801514,1.6465359926223755,1.2630937099456787,1.332810401916504,1.332810401916504,1.2282352447509766,1.663965106010437,1.524531602859497,1.524531602859497,1.0713725090026855,0.6182135343551636,1.4373856782913208,0.11276688426733017,-0.4449673295021057,-0.4449673295021057,0.2173420488834381,0.30448800325393677,-0.5495424866676331,-0.5844008922576904,-0.5146840810775757,-0.8284096121788025,-1.246710181236267,-0.8806971907615662,-0.9329847693443298,-1.665010929107666,-1.351285457611084,-0.5669716596603394,0.6879302859306335,0.6007843017578125,-0.270675390958786,-0.7586928009986877,-1.5778648853302002,1.0190849304199219,1.663965106010437,0.4090631902217865,-0.20095860958099365,-0.4798257052898407,0.5484967231750488,-0.1312418282032013,-0.37525054812431335,-0.6889760494232178,0.008191721513867378,1.7685402631759644,-1.490718960762024,-1.4732897281646729,-0.35782134532928467,1.7859694957733154,-0.06152505427598953,-0.16610021889209747,0.16505447030067444,-0.04409585893154144,-0.37525054812431335,0.09533768892288208,-0.20095860958099365,-0.07895424962043762,-0.16610021889209747,-0.305533766746521,-0.07895424962043762,-0.09638344496488571,-0.1312418282032013,-0.340392142534256,-0.14867103099822998,-0.7064052224159241,-0.21838779747486115,0.09533768892288208,1.9951198101043701,1.9254029989242554,1.0888017416000366,1.8905446529388428,1.9602614641189575,2.151982545852661,2.2216992378234863,2.2565577030181885,1.7685402631759644,1.4373856782913208,1.6291067600250244,0.46135076880455017,-0.39267975091934204,0.14762526750564575,0.33934640884399414,0.7227886915206909,0.5659258961677551,0.33934640884399414,0.7750762701034546,0.008191721513867378,-0.23581700026988983,-1.0375598669052124,-0.305533766746521,0.18248365819454193,0.19991286098957062,0.966797411441803,0.9145098328590393,1.2630937099456787,1.4025272130966187,1.2805228233337402,1.3850979804992676,1.507102370262146,1.6291067600250244,1.3850979804992676,0.966797411441803,0.8796514272689819,0.5136383175849915,0.8622221946716309,1.5942484140396118,0.8447930216789246,0.8796514272689819,1.036514163017273,0.7576470375061035,0.8970806002616882],[1.7336819171905518,1.7336819171905518,1.8033987283706665,1.2805228233337402,1.524531602859497,1.2805228233337402,1.2630937099456787,0.8970806002616882,0.4264923632144928,1.0016558170318604,1.210806131362915,1.1585185527801514,1.838257074356079,1.9079738855361938,2.082265853881836,0.9145098328590393,1.5768191814422607,1.0016558170318604,1.2979520559310913,0.4439215660095215,0.6705011129379272,0.5136383175849915,0.13019607961177826,-0.7064052224159241,-0.5844008922576904,1.175947666168213,1.210806131362915,0.8273638486862183,1.4025272130966187,0.4264923632144928,-0.340392142534256,-0.1138126328587532,-0.20095860958099365,-0.7935512065887451,-0.009237472899258137,-0.7935512065887451,-0.7761220335960388,-1.1595642566680908,-0.35782134532928467,-0.4449673295021057,0.13019607961177826,0.11276688426733017,0.8099346160888672,1.2282352447509766,1.7685402631759644,1.7336819171905518,2.239128589630127,2.0648365020751953,2.204270124435425,2.3785619735717773,2.1345534324645996,1.7162526845932007,1.1410893201828003,0.8970806002616882,-1.5778648853302002,-1.7695860862731934,-1.4035730361938477,-0.7935512065887451,-1.246710181236267,-1.0549890995025635,-0.8981263637542725,-0.39267975091934204,-1.246710181236267,-1.3164269924163818,-1.2989978790283203,-1.089847445487976,1.7859694957733154,1.5942484140396118,1.6116775274276733,1.4199564456939697,1.681394338607788,1.5593899488449097,1.2456644773483276,1.193376898765564,1.0713725090026855,1.0888017416000366,0.5136383175849915,0.2522004246711731,0.47877994179725647,0.30448800325393677,0.3916339874267578,0.33934640884399414,0.8970806002616882,0.6007843017578125,0.49620914459228516,0.7576470375061035,0.966797411441803,0.5136383175849915,0.5833551287651062,0.3916339874267578,0.8796514272689819,0.9319390058517456,0.9319390058517456,1.0016558170318604,1.0713725090026855,0.8622221946716309,1.0888017416000366,1.193376898765564,1.7859694957733154,1.6291067600250244,1.838257074356079,1.4373856782913208,1.663965106010437,1.7511111497879028,1.5768191814422607,1.367668867111206,1.2979520559310913,0.9319390058517456,1.193376898765564,1.2282352447509766,1.2805228233337402,1.0713725090026855,1.0190849304199219,1.6291067600250244,1.4025272130966187,1.332810401916504,1.2979520559310913,1.3850979804992676,1.5419608354568481,1.210806131362915,0.9842265844345093,1.2805228233337402,1.3850979804992676,1.5942484140396118,0.8273638486862183,1.507102370262146,0.6705011129379272,-0.16610021889209747,-0.305533766746521,-0.7935512065887451,-0.2881045639514923,0.02562091499567032,-0.20095860958099365,-0.9504139423370361,-0.06152505427598953,-0.5146840810775757,-0.9155555367469788,-0.6889760494232178,-0.7586928009986877,-1.3687145709991455,-0.9155555367469788,-0.427538126707077,0.07790849357843399,0.6182135343551636,0.33934640884399414,1.210806131362915,0.6530718803405762,-0.8458387851715088,-1.4210021495819092,1.3153812885284424,-0.8109803795814514,0.6356427073478699,0.16505447030067444,0.07790849357843399,-0.06152505427598953,0.2347712367773056,0.7750762701034546,1.036514163017273,0.008191721513867378,-1.2292810678482056,0.3916339874267578,2.0648365020751953,-0.04409585893154144,-0.09638344496488571,-0.16610021889209747,-0.16610021889209747,0.16505447030067444,-0.06152505427598953,-0.009237472899258137,-0.305533766746521,-0.07895424962043762,-0.16610021889209747,-0.02666666731238365,-0.20095860958099365,-0.3229629695415497,0.008191721513867378,-0.2532461881637573,0.2173420488834381,0.19991286098957062,-0.20095860958099365,1.8905446529388428,1.8731154203414917,1.8731154203414917,1.6116775274276733,1.9428322315216064,2.117124080657959,2.047407388687134,1.0713725090026855,1.3153812885284424,1.6116775274276733,1.2456644773483276,1.3850979804992676,0.18248365819454193,0.5310675501823425,0.47877994179725647,0.47877994179725647,0.49620914459228516,0.47877994179725647,-0.35782134532928467,-0.6018300652503967,-0.9329847693443298,-0.4449673295021057,-0.1312418282032013,0.4264923632144928,0.6705011129379272,0.9145098328590393,1.210806131362915,1.4896732568740845,1.2979520559310913,1.1585185527801514,1.2456644773483276,1.3850979804992676,1.3153812885284424,1.0713725090026855,1.1585185527801514,0.46135076880455017,1.0190849304199219,1.053943395614624,1.2456644773483276,1.1410893201828003,1.2456644773483276,1.036514163017273,1.036514163017273,1.053943395614624],[2.0648365020751953,1.7162526845932007,1.7336819171905518,1.7162526845932007,1.7162526845932007,1.838257074356079,1.5942484140396118,1.367668867111206,0.6007843017578125,0.8622221946716309,1.4025272130966187,1.5942484140396118,1.524531602859497,1.2282352447509766,0.5310675501823425,0.2173420488834381,-0.09638344496488571,0.4439215660095215,2.0125489234924316,1.6116775274276733,1.681394338607788,1.6116775274276733,1.6988235712051392,1.210806131362915,1.977690577507019,1.7336819171905518,1.524531602859497,1.175947666168213,1.0190849304199219,0.2347712367773056,-0.8284096121788025,-0.1138126328587532,0.02562091499567032,-0.5146840810775757,-0.4798257052898407,-1.2292810678482056,-0.6889760494232178,-0.6889760494232178,-0.6541176438331604,-0.7412636280059814,-0.7935512065887451,-0.5669716596603394,0.7053594589233398,1.9079738855361938,1.5768191814422607,2.0125489234924316,1.9951198101043701,1.9951198101043701,1.7162526845932007,1.6291067600250244,1.332810401916504,1.8556863069534302,1.1410893201828003,0.6530718803405762,0.32191720604896545,-1.804444432258606,-1.3687145709991455,-1.0201307535171509,-1.1072766780853271,-0.37525054812431335,-0.5844008922576904,-0.6715468168258667,-1.665010929107666,-1.5778648853302002,1.0888017416000366,1.0190849304199219,1.507102370262146,1.507102370262146,1.5419608354568481,1.3153812885284424,0.966797411441803,1.0888017416000366,0.8970806002616882,0.6530718803405762,0.6356427073478699,0.5659258961677551,0.3567756116390228,0.30448800325393677,0.6007843017578125,0.49620914459228516,0.6182135343551636,0.30448800325393677,0.6356427073478699,0.6007843017578125,0.5310675501823425,0.5310675501823425,0.8099346160888672,0.8447930216789246,0.6356427073478699,0.7402178645133972,0.966797411441803,1.0190849304199219,1.3153812885284424,1.0190849304199219,1.1236600875854492,1.350239634513855,1.3850979804992676,1.524531602859497,1.7336819171905518,1.838257074356079,1.838257074356079,1.6291067600250244,1.7685402631759644,1.4199564456939697,1.5768191814422607,1.350239634513855,1.2805228233337402,1.3850979804992676,1.0713725090026855,1.2805228233337402,1.2282352447509766,1.3153812885284424,1.5419608354568481,1.663965106010437,1.175947666168213,1.4548147916793823,1.5942484140396118,1.2805228233337402,1.210806131362915,1.2805228233337402,1.3850979804992676,1.175947666168213,1.5593899488449097,1.524531602859497,1.2282352447509766,0.9842265844345093,-0.5669716596603394,0.13019607961177826,-0.39267975091934204,-0.4798257052898407,-0.07895424962043762,-0.4449673295021057,-0.1138126328587532,-0.7761220335960388,-0.427538126707077,-0.41010892391204834,-0.305533766746521,-0.5321133136749268,-0.3229629695415497,-0.9329847693443298,-1.508148193359375,-0.6366884708404541,-1.4558606147766113,-0.8806971907615662,-0.1312418282032013,1.5942484140396118,0.8447930216789246,0.19991286098957062,-1.0375598669052124,-0.09638344496488571,0.9319390058517456,0.19991286098957062,0.4439215660095215,-0.09638344496488571,-0.8806971907615662,-0.6541176438331604,0.9493681788444519,1.4373856782913208,-1.2292810678482056,-0.8981263637542725,-1.2118518352508545,-0.009237472899258137,-0.305533766746521,-0.04409585893154144,0.14762526750564575,-0.1138126328587532,0.09533768892288208,0.18248365819454193,-0.2881045639514923,-0.270675390958786,0.3916339874267578,0.2696296274662018,0.2173420488834381,0.14762526750564575,0.09533768892288208,-0.1312418282032013,0.09533768892288208,0.19991286098957062,-0.39267975091934204,0.2173420488834381,0.0604793019592762,2.0996949672698975,2.117124080657959,1.7336819171905518,1.175947666168213,1.6465359926223755,1.820827841758728,2.3785619735717773,1.820827841758728,0.8099346160888672,1.507102370262146,1.5419608354568481,1.053943395614624,0.4439215660095215,0.7053594589233398,0.2347712367773056,-0.1138126328587532,-0.7064052224159241,-0.9155555367469788,-0.4972549080848694,-0.35782134532928467,-0.7761220335960388,-0.02666666731238365,0.8273638486862183,1.036514163017273,1.4896732568740845,1.2630937099456787,1.8556863069534302,1.5942484140396118,1.4548147916793823,1.0190849304199219,1.4025272130966187,1.0888017416000366,1.053943395614624,1.175947666168213,0.5659258961677551,0.8622221946716309,0.966797411441803,0.9145098328590393,1.1062309741973877,0.8622221946716309,0.9319390058517456,1.0713725090026855,1.367668867111206],[1.820827841758728,1.9079738855361938,1.7685402631759644,1.681394338607788,1.5593899488449097,1.7685402631759644,1.663965106010437,1.5593899488449097,1.210806131362915,1.6465359926223755,0.9319390058517456,1.7336819171905518,1.1410893201828003,0.8970806002616882,-0.427538126707077,-0.21838779747486115,-0.09638344496488571,-0.20095860958099365,1.1236600875854492,1.1585185527801514,1.977690577507019,1.524531602859497,1.5768191814422607,1.053943395614624,2.204270124435425,1.507102370262146,0.9493681788444519,0.9145098328590393,0.2696296274662018,-0.41010892391204834,-0.305533766746521,0.33934640884399414,0.16505447030067444,-0.41010892391204834,-0.5669716596603394,-0.7412636280059814,-0.7935512065887451,-0.4449673295021057,-0.4798257052898407,-0.4972549080848694,-0.619259238243103,-0.5146840810775757,1.053943395614624,1.175947666168213,1.6291067600250244,1.7162526845932007,1.9428322315216064,1.7511111497879028,2.0125489234924316,1.7685402631759644,0.9493681788444519,1.4548147916793823,1.367668867111206,1.3850979804992676,0.33934640884399414,-1.2641394138336182,-1.7521568536758423,-1.4558606147766113,-1.2118518352508545,-1.2989978790283203,-1.2989978790283203,-1.804444432258606,-1.0027015209197998,1.2456644773483276,1.2282352447509766,2.204270124435425,1.838257074356079,1.524531602859497,1.175947666168213,1.036514163017273,1.0888017416000366,0.8447930216789246,0.8273638486862183,0.6705011129379272,0.7576470375061035,0.2522004246711731,0.46135076880455017,0.5833551287651062,0.7227886915206909,1.0713725090026855,0.5136383175849915,0.7576470375061035,0.6182135343551636,0.4090631902217865,0.6007843017578125,0.7227886915206909,0.9319390058517456,1.1585185527801514,1.1062309741973877,1.1410893201828003,1.1062309741973877,1.2282352447509766,1.0713725090026855,0.9842265844345093,1.0888017416000366,1.4199564456939697,1.2805228233337402,1.4199564456939697,1.2282352447509766,1.7336819171905518,1.7336819171905518,2.047407388687134,1.7511111497879028,1.6465359926223755,1.3850979804992676,1.0888017416000366,1.4025272130966187,1.053943395614624,1.4548147916793823,1.524531602859497,1.1410893201828003,1.5419608354568481,1.3153812885284424,1.193376898765564,1.210806131362915,1.4722440242767334,1.332810401916504,1.210806131362915,1.3153812885284424,1.0713725090026855,1.350239634513855,1.2979520559310913,1.3850979804992676,1.053943395614624,1.2630937099456787,1.0713725090026855,0.47877994179725647,0.13019607961177826,0.32191720604896545,-0.5146840810775757,-1.1247059106826782,-0.35782134532928467,-0.18352940678596497,-0.16610021889209747,-0.16610021889209747,-0.4972549080848694,-0.35782134532928467,-0.20095860958099365,0.09533768892288208,-1.0724183320999146,-0.270675390958786,-1.6998692750930786,-1.7521568536758423,-0.8981263637542725,-0.5669716596603394,-0.18352940678596497,1.175947666168213,0.28705883026123047,-0.3229629695415497,-0.5844008922576904,0.04305011034011841,-0.6889760494232178,-0.14867103099822998,-0.6541176438331604,-0.23581700026988983,0.8273638486862183,1.6465359926223755,-0.7238343954086304,-0.09638344496488571,-1.2641394138336182,-0.8109803795814514,-0.1138126328587532,-0.1312418282032013,0.14762526750564575,0.14762526750564575,0.2173420488834381,0.008191721513867378,-0.009237472899258137,0.3567756116390228,0.28705883026123047,-0.1138126328587532,0.008191721513867378,0.0604793019592762,0.02562091499567032,-0.06152505427598953,0.14762526750564575,0.47877994179725647,0.16505447030067444,0.19991286098957062,0.5659258961677551,0.2522004246711731,1.8033987283706665,1.9254029989242554,1.9079738855361938,1.8033987283706665,1.7859694957733154,2.5354249477386475,2.239128589630127,2.0648365020751953,1.4548147916793823,1.2805228233337402,2.082265853881836,1.524531602859497,1.1410893201828003,0.11276688426733017,0.18248365819454193,-0.462396502494812,-1.0027015209197998,-0.8458387851715088,-0.37525054812431335,-0.270675390958786,-0.462396502494812,0.6356427073478699,0.9145098328590393,1.6291067600250244,1.332810401916504,1.2282352447509766,1.1236600875854492,1.332810401916504,1.036514163017273,0.8970806002616882,0.8970806002616882,1.0713725090026855,1.1236600875854492,1.0190849304199219,0.9842265844345093,1.0713725090026855,1.210806131362915,0.966797411441803,0.9145098328590393,1.5419608354568481,1.2456644773483276,1.193376898765564,1.0190849304199219],[1.8731154203414917,1.8556863069534302,1.663965106010437,1.9602614641189575,1.8556863069534302,1.8033987283706665,1.9951198101043701,1.3850979804992676,1.1410893201828003,1.036514163017273,0.9842265844345093,0.9493681788444519,0.9319390058517456,0.5659258961677551,0.3742047846317291,-0.6018300652503967,-0.7238343954086304,-0.6715468168258667,-0.8632679581642151,1.2630937099456787,1.175947666168213,1.332810401916504,1.2630937099456787,1.838257074356079,1.4373856782913208,0.8273638486862183,0.7576470375061035,-0.21838779747486115,0.32191720604896545,0.4264923632144928,-0.23581700026988983,-0.41010892391204834,-0.2532461881637573,-0.07895424962043762,0.0604793019592762,-0.37525054812431335,-1.0201307535171509,-0.7064052224159241,-0.7238343954086304,-0.2881045639514923,-0.8632679581642151,-0.1312418282032013,0.6705011129379272,1.2805228233337402,1.4025272130966187,1.1236600875854492,1.5768191814422607,1.7162526845932007,1.6988235712051392,1.350239634513855,0.9319390058517456,0.7576470375061035,1.036514163017273,1.5942484140396118,0.6879302859306335,-0.41010892391204834,-1.7695860862731934,-1.804444432258606,-1.490718960762024,-1.7521568536758423,-1.6127233505249023,-1.5604357719421387,1.053943395614624,1.8033987283706665,1.7511111497879028,1.4373856782913208,1.6291067600250244,1.7511111497879028,1.4373856782913208,0.9145098328590393,0.7227886915206909,0.8447930216789246,0.4439215660095215,0.5659258961677551,0.5310675501823425,0.33934640884399414,0.7925054430961609,0.8447930216789246,0.5136383175849915,0.5136383175849915,0.6356427073478699,0.5833551287651062,0.6530718803405762,0.6182135343551636,0.8970806002616882,1.036514163017273,1.210806131362915,1.332810401916504,1.2805228233337402,1.1236600875854492,1.210806131362915,1.0016558170318604,1.1062309741973877,0.9319390058517456,0.966797411441803,1.4373856782913208,1.1410893201828003,1.2979520559310913,1.6988235712051392,1.4373856782913208,1.838257074356079,1.838257074356079,1.5768191814422607,1.524531602859497,1.2630937099456787,1.210806131362915,1.1062309741973877,1.036514163017273,1.4373856782913208,1.036514163017273,1.3850979804992676,1.5942484140396118,1.7162526845932007,1.4896732568740845,1.4199564456939697,1.2282352447509766,1.507102370262146,1.820827841758728,1.1236600875854492,1.7685402631759644,1.5419608354568481,1.175947666168213,1.332810401916504,1.4199564456939697,1.4722440242767334,1.0713725090026855,0.7227886915206909,0.3916339874267578,0.11276688426733017,-0.4449673295021057,-0.9504139423370361,-0.6889760494232178,-0.8284096121788025,-0.7064052224159241,-1.4210021495819092,0.4439215660095215,0.19991286098957062,-0.6889760494232178,0.09533768892288208,-0.2532461881637573,-0.20095860958099365,-1.2989978790283203,-0.9329847693443298,-0.35782134532928467,-0.09638344496488571,-0.5321133136749268,-1.089847445487976,-0.9329847693443298,0.47877994179725647,0.2522004246711731,0.4264923632144928,0.9493681788444519,0.18248365819454193,-0.5669716596603394,-0.16610021889209747,0.8622221946716309,-1.1072766780853271,-0.09638344496488571,0.46135076880455017,0.0604793019592762,-0.21838779747486115,-0.5669716596603394,-0.340392142534256,-0.04409585893154144,-0.09638344496488571,-0.02666666731238365,-0.270675390958786,0.46135076880455017,-0.06152505427598953,0.32191720604896545,0.07790849357843399,0.33934640884399414,0.19991286098957062,0.16505447030067444,0.28705883026123047,-0.04409585893154144,0.0604793019592762,0.18248365819454193,0.18248365819454193,0.7925054430961609,0.8273638486862183,1.838257074356079,2.151982545852661,2.0299782752990723,2.117124080657959,2.1868410110473633,2.3437037467956543,2.395991325378418,1.820827841758728,-0.009237472899258137,1.8033987283706665,1.9428322315216064,1.4025272130966187,1.4722440242767334,0.07790849357843399,-0.6889760494232178,-0.8109803795814514,-0.7238343954086304,-0.6889760494232178,-0.4449673295021057,-0.2532461881637573,0.5310675501823425,1.2630937099456787,0.9493681788444519,1.332810401916504,1.6988235712051392,1.1062309741973877,1.193376898765564,0.8970806002616882,1.036514163017273,0.9842265844345093,1.1410893201828003,0.8622221946716309,1.036514163017273,1.1062309741973877,1.0016558170318604,1.2805228233337402,1.4025272130966187,1.1585185527801514,1.1410893201828003,1.0713725090026855,0.9145098328590393,0.8273638486862183,1.036514163017273],[2.082265853881836,1.9079738855361938,1.663965106010437,1.524531602859497,1.7336819171905518,1.663965106010437,1.6465359926223755,1.524531602859497,1.7336819171905518,1.0888017416000366,1.036514163017273,1.1236600875854492,0.30448800325393677,0.9493681788444519,0.49620914459228516,1.036514163017273,0.07790849357843399,-0.009237472899258137,0.5833551287651062,1.2630937099456787,1.977690577507019,1.2282352447509766,2.640000104904175,1.0016558170318604,0.16505447030067444,-0.8458387851715088,-0.6366884708404541,-0.41010892391204834,-0.21838779747486115,0.5310675501823425,-0.16610021889209747,0.3742047846317291,-0.009237472899258137,-0.6715468168258667,-0.2532461881637573,-0.06152505427598953,0.28705883026123047,0.3742047846317291,-0.21838779747486115,-0.6366884708404541,-0.462396502494812,-0.5321133136749268,0.008191721513867378,0.8622221946716309,1.2805228233337402,0.008191721513867378,0.9493681788444519,0.9319390058517456,1.8731154203414917,1.7859694957733154,1.9428322315216064,0.966797411441803,0.6356427073478699,1.4025272130966187,0.8447930216789246,0.7053594589233398,-1.647581696510315,-1.3861438035964966,-1.0027015209197998,-0.8981263637542725,-1.1072766780853271,0.6705011129379272,1.4199564456939697,1.5419608354568481,1.663965106010437,1.4722440242767334,1.0016558170318604,1.6116775274276733,0.8099346160888672,0.7750762701034546,0.46135076880455017,0.32191720604896545,0.28705883026123047,0.2347712367773056,0.7053594589233398,0.6879302859306335,1.0016558170318604,0.7402178645133972,0.8273638486862183,0.6879302859306335,0.4264923632144928,0.8447930216789246,0.9319390058517456,0.8447930216789246,0.8099346160888672,1.036514163017273,0.6530718803405762,0.9842265844345093,1.2456644773483276,0.9145098328590393,1.367668867111206,1.0190849304199219,1.2282352447509766,1.1062309741973877,1.175947666168213,1.193376898765564,1.1062309741973877,1.4548147916793823,1.5593899488449097,1.9079738855361938,1.7162526845932007,1.7685402631759644,1.5942484140396118,1.663965106010437,1.524531602859497,1.332810401916504,1.175947666168213,1.0888017416000366,1.332810401916504,1.5768191814422607,1.3153812885284424,1.4896732568740845,1.7685402631759644,1.4199564456939697,1.193376898765564,1.507102370262146,1.1410893201828003,1.0888017416000366,1.0713725090026855,1.5768191814422607,1.6291067600250244,1.2805228233337402,1.193376898765564,1.0713725090026855,1.350239634513855,0.9842265844345093,0.13019607961177826,0.7053594589233398,0.30448800325393677,-0.4798257052898407,-0.14867103099822998,-1.2815686464309692,-1.2118518352508545,-0.9852723479270935,-1.4732897281646729,-1.5604357719421387,-0.6018300652503967,-0.16610021889209747,-0.9329847693443298,-0.39267975091934204,0.11276688426733017,-0.5844008922576904,-1.804444432258606,-0.4798257052898407,0.008191721513867378,-0.5669716596603394,-0.07895424962043762,-0.06152505427598953,0.7053594589233398,0.8622221946716309,0.9145098328590393,1.036514163017273,1.0888017416000366,1.2456644773483276,-1.0724183320999146,-0.02666666731238365,-0.5321133136749268,0.5659258961677551,0.9145098328590393,-0.35782134532928467,-0.427538126707077,0.02562091499567032,-0.07895424962043762,0.2696296274662018,-0.06152505427598953,-0.04409585893154144,0.7402178645133972,0.0604793019592762,0.32191720604896545,0.32191720604896545,-0.06152505427598953,0.7750762701034546,0.3742047846317291,0.0604793019592762,0.2696296274662018,-0.009237472899258137,0.3567756116390228,0.28705883026123047,0.7053594589233398,0.4439215660095215,0.16505447030067444,0.46135076880455017,2.0648365020751953,2.1694116592407227,2.204270124435425,2.3437037467956543,2.4134204387664795,2.204270124435425,2.082265853881836,0.16505447030067444,1.663965106010437,1.7685402631759644,1.0190849304199219,1.4548147916793823,1.5768191814422607,-0.7935512065887451,-1.0201307535171509,-1.089847445487976,-0.35782134532928467,0.32191720604896545,0.04305011034011841,0.5136383175849915,1.175947666168213,1.1062309741973877,0.9319390058517456,1.2456644773483276,1.0016558170318604,0.6879302859306335,0.9842265844345093,1.1585185527801514,0.8273638486862183,0.6879302859306335,1.1062309741973877,1.1585185527801514,1.210806131362915,1.2630937099456787,1.4896732568740845,1.2282352447509766,0.8622221946716309,1.332810401916504,1.7511111497879028,1.4722440242767334,1.0888017416000366,0.9842265844345093],[2.239128589630127,1.8731154203414917,1.7162526845932007,1.5419608354568481,1.7336819171905518,1.524531602859497,1.6465359926223755,1.5942484140396118,1.5419608354568481,0.9842265844345093,1.0713725090026855,1.0713725090026855,1.0190849304199219,1.2979520559310913,1.367668867111206,1.9428322315216064,1.175947666168213,0.7227886915206909,1.4373856782913208,1.367668867111206,0.9319390058517456,0.3567756116390228,1.1062309741973877,1.6988235712051392,0.3567756116390228,-0.7238343954086304,-0.619259238243103,-0.9329847693443298,-0.18352940678596497,0.2522004246711731,0.46135076880455017,0.16505447030067444,-0.09638344496488571,-0.16610021889209747,0.7053594589233398,0.8622221946716309,0.4264923632144928,-0.009237472899258137,-0.07895424962043762,0.0604793019592762,-0.02666666731238365,-0.39267975091934204,0.09533768892288208,0.09533768892288208,0.8447930216789246,0.09533768892288208,-0.6715468168258667,1.0190849304199219,0.9493681788444519,1.7162526845932007,1.367668867111206,0.6879302859306335,0.02562091499567032,0.6530718803405762,0.8970806002616882,0.46135076880455017,-1.089847445487976,-1.647581696510315,-0.9155555367469788,-1.7521568536758423,-0.5321133136749268,1.4548147916793823,1.5768191814422607,1.663965106010437,1.332810401916504,1.193376898765564,1.210806131362915,1.2282352447509766,0.7576470375061035,0.8447930216789246,0.6879302859306335,0.6530718803405762,0.7750762701034546,0.5310675501823425,0.6530718803405762,0.46135076880455017,0.5310675501823425,0.47877994179725647,0.966797411441803,0.9145098328590393,0.8796514272689819,0.7227886915206909,0.6705011129379272,1.1236600875854492,1.1236600875854492,1.0016558170318604,1.1585185527801514,0.9319390058517456,1.0713725090026855,1.2456644773483276,1.2630937099456787,1.350239634513855,1.2630937099456787,1.2979520559310913,1.193376898765564,1.367668867111206,1.2456644773483276,1.2979520559310913,1.367668867111206,1.4373856782913208,1.7859694957733154,1.3850979804992676,1.681394338607788,1.3850979804992676,1.507102370262146,1.4199564456939697,0.9842265844345093,1.1585185527801514,1.2630937099456787,1.350239634513855,1.2282352447509766,1.5419608354568481,1.4025272130966187,1.193376898765564,1.193376898765564,1.4199564456939697,1.332810401916504,1.1410893201828003,1.2456644773483276,1.3850979804992676,0.966797411441803,1.2805228233337402,1.4373856782913208,1.8556863069534302,1.4373856782913208,0.9493681788444519,0.0604793019592762,-0.427538126707077,0.04305011034011841,-0.20095860958099365,-0.20095860958099365,-0.8109803795814514,-1.0549890995025635,-1.3687145709991455,-1.490718960762024,-0.20095860958099365,-0.9504139423370361,-0.4972549080848694,-1.1595642566680908,-0.5146840810775757,-0.6541176438331604,0.6530718803405762,-0.5669716596603394,-0.7586928009986877,-0.9155555367469788,-1.2292810678482056,-0.21838779747486115,-0.4972549080848694,-1.0724183320999146,-0.02666666731238365,0.30448800325393677,-0.1312418282032013,1.3153812885284424,1.1062309741973877,0.33934640884399414,0.7053594589233398,-0.1312418282032013,-0.427538126707077,0.13019607961177826,0.07790849357843399,1.0888017416000366,-0.20095860958099365,-0.1312418282032013,-0.1312418282032013,-0.02666666731238365,0.3567756116390228,0.2347712367773056,0.2347712367773056,0.2173420488834381,0.19991286098957062,0.49620914459228516,0.2173420488834381,0.13019607961177826,1.036514163017273,0.5484967231750488,0.13019607961177826,0.8447930216789246,0.6879302859306335,0.4264923632144928,1.0190849304199219,0.6530718803405762,0.3916339874267578,1.5768191814422607,2.239128589630127,2.2565577030181885,2.0648365020751953,1.663965106010437,1.820827841758728,1.8905446529388428,0.7227886915206909,1.7859694957733154,1.5768191814422607,1.2456644773483276,1.9079738855361938,1.6291067600250244,1.210806131362915,-0.6366884708404541,-0.5844008922576904,0.02562091499567032,0.2696296274662018,0.49620914459228516,0.7925054430961609,0.6356427073478699,1.4025272130966187,1.1236600875854492,1.4025272130966187,1.2456644773483276,1.1062309741973877,1.0190849304199219,0.9319390058517456,1.0190849304199219,0.5833551287651062,0.5484967231750488,1.1585185527801514,1.1585185527801514,1.3153812885284424,1.2282352447509766,1.6465359926223755,1.4373856782913208,1.350239634513855,1.193376898765564,1.367668867111206,0.8447930216789246,1.332810401916504],[2.047407388687134,1.8556863069534302,1.6465359926223755,1.4896732568740845,1.2456644773483276,1.6988235712051392,1.7685402631759644,1.5942484140396118,1.4373856782913208,1.4025272130966187,0.966797411441803,0.8273638486862183,0.5833551287651062,1.175947666168213,1.7336819171905518,1.820827841758728,1.9079738855361938,0.9493681788444519,1.2979520559310913,-0.305533766746521,-0.9852723479270935,1.1410893201828003,-1.1072766780853271,-0.9504139423370361,-0.619259238243103,-0.9852723479270935,-1.2989978790283203,-1.0375598669052124,-0.4798257052898407,0.07790849357843399,0.4439215660095215,0.6530718803405762,0.4090631902217865,-0.1138126328587532,0.5659258961677551,1.053943395614624,0.16505447030067444,-0.5669716596603394,-0.35782134532928467,0.0604793019592762,-0.1138126328587532,0.13019607961177826,0.3742047846317291,-0.009237472899258137,0.09533768892288208,-1.5778648853302002,-1.246710181236267,-0.7412636280059814,0.04305011034011841,0.8622221946716309,1.332810401916504,1.4199564456939697,-0.23581700026988983,-0.009237472899258137,0.8622221946716309,0.7053594589233398,-0.1312418282032013,-1.1944226026535034,-1.4384313821792603,-0.5844008922576904,0.966797411441803,1.7162526845932007,1.8033987283706665,1.4025272130966187,1.3153812885284424,1.2282352447509766,0.9145098328590393,0.6007843017578125,0.9493681788444519,0.11276688426733017,0.4439215660095215,0.966797411441803,0.6705011129379272,0.6007843017578125,0.5484967231750488,0.5659258961677551,1.0190849304199219,0.7227886915206909,0.6356427073478699,0.7402178645133972,0.5484967231750488,1.3850979804992676,1.1236600875854492,0.8447930216789246,1.1585185527801514,1.210806131362915,1.1585185527801514,1.3153812885284424,1.036514163017273,1.367668867111206,1.4896732568740845,1.3153812885284424,1.1062309741973877,1.1410893201828003,1.0713725090026855,1.6116775274276733,1.2805228233337402,1.2979520559310913,1.4548147916793823,1.5768191814422607,1.7859694957733154,1.7511111497879028,1.5768191814422607,1.8033987283706665,1.524531602859497,1.4025272130966187,1.3850979804992676,1.3850979804992676,1.4722440242767334,1.332810401916504,1.5942484140396118,1.4548147916793823,1.681394338607788,1.2282352447509766,1.1585185527801514,1.2630937099456787,1.3850979804992676,1.3850979804992676,1.4199564456939697,0.9842265844345093,1.0713725090026855,1.4199564456939697,1.4548147916793823,1.053943395614624,0.6182135343551636,-0.6889760494232178,0.4264923632144928,0.5310675501823425,-0.21838779747486115,-1.0375598669052124,-0.427538126707077,-1.3687145709991455,-0.9155555367469788,-1.2989978790283203,-1.2292810678482056,-0.8458387851715088,-1.0027015209197998,-0.37525054812431335,-0.7761220335960388,-0.1138126328587532,-0.20095860958099365,-0.06152505427598953,-0.06152505427598953,-0.340392142534256,-1.1072766780853271,-0.23581700026988983,-0.5146840810775757,-0.7935512065887451,-0.8806971907615662,0.4439215660095215,-0.009237472899258137,0.28705883026123047,0.7576470375061035,-1.3687145709991455,-0.07895424962043762,-0.23581700026988983,-0.6715468168258667,-0.41010892391204834,-0.09638344496488571,0.13019607961177826,-0.20095860958099365,-0.21838779747486115,-0.07895424962043762,-0.23581700026988983,-0.09638344496488571,-0.02666666731238365,-0.07895424962043762,0.2173420488834381,0.2522004246711731,0.33934640884399414,0.5310675501823425,0.32191720604896545,0.2696296274662018,-0.009237472899258137,0.7402178645133972,0.13019607961177826,0.8273638486862183,0.8099346160888672,0.9842265844345093,0.5484967231750488,0.9319390058517456,0.7227886915206909,0.5484967231750488,2.204270124435425,2.3785619735717773,2.1694116592407227,2.239128589630127,2.0996949672698975,1.7685402631759644,1.6291067600250244,1.9951198101043701,1.367668867111206,1.663965106010437,1.6116775274276733,1.2282352447509766,1.5593899488449097,1.0016558170318604,0.07790849357843399,0.2522004246711731,0.4090631902217865,0.14762526750564575,0.5136383175849915,0.7925054430961609,0.8447930216789246,0.3742047846317291,1.1410893201828003,0.7925054430961609,1.0888017416000366,1.1410893201828003,1.2805228233337402,1.0713725090026855,0.8970806002616882,1.2630937099456787,1.175947666168213,1.2805228233337402,1.2456644773483276,1.1236600875854492,1.367668867111206,1.524531602859497,1.5942484140396118,1.367668867111206,1.1410893201828003,1.2456644773483276,1.193376898765564],[2.1345534324645996,1.7511111497879028,1.3850979804992676,0.9145098328590393,1.2630937099456787,1.2805228233337402,1.8731154203414917,1.838257074356079,1.5768191814422607,1.4373856782913208,1.2805228233337402,1.0190849304199219,1.2630937099456787,0.966797411441803,1.8905446529388428,1.8033987283706665,0.3742047846317291,-0.6715468168258667,-0.21838779747486115,-0.619259238243103,-1.4384313821792603,-0.7586928009986877,-1.4384313821792603,-1.647581696510315,-1.5952941179275513,-0.8109803795814514,-0.7935512065887451,-0.6889760494232178,-0.8632679581642151,-0.39267975091934204,1.367668867111206,0.8796514272689819,0.7402178645133972,-0.04409585893154144,0.3742047846317291,1.2630937099456787,-0.02666666731238365,-0.4972549080848694,-0.23581700026988983,-0.39267975091934204,0.13019607961177826,0.49620914459228516,-0.2881045639514923,-0.9678431153297424,-0.6366884708404541,-0.8632679581642151,-1.0201307535171509,-0.9155555367469788,-0.9155555367469788,0.8099346160888672,1.332810401916504,0.3742047846317291,-0.305533766746521,-0.3229629695415497,0.7750762701034546,0.5136383175849915,0.6879302859306335,-1.4732897281646729,-0.8632679581642151,0.966797411441803,1.2456644773483276,1.7685402631759644,1.5419608354568481,1.820827841758728,1.4896732568740845,1.0713725090026855,0.7227886915206909,0.8447930216789246,1.210806131362915,0.5484967231750488,0.6530718803405762,0.7925054430961609,0.7402178645133972,1.1585185527801514,0.5659258961677551,0.6356427073478699,0.4264923632144928,0.7227886915206909,0.6530718803405762,0.8796514272689819,0.966797411441803,0.9493681788444519,1.3850979804992676,0.8273638486862183,0.7402178645133972,1.1585185527801514,1.332810401916504,1.0016558170318604,1.175947666168213,1.350239634513855,1.5768191814422607,1.2630937099456787,1.1236600875854492,0.8970806002616882,1.1062309741973877,1.2282352447509766,1.1236600875854492,1.193376898765564,1.2282352447509766,1.6291067600250244,1.4373856782913208,1.507102370262146,1.6465359926223755,1.6116775274276733,1.5593899488449097,1.2805228233337402,1.4722440242767334,1.524531602859497,1.4896732568740845,1.4373856782913208,1.5419608354568481,1.4548147916793823,1.7685402631759644,1.3153812885284424,1.7336819171905518,1.2805228233337402,1.4896732568740845,1.5419608354568481,1.332810401916504,1.193376898765564,1.193376898765564,1.4896732568740845,1.193376898765564,1.7336819171905518,0.11276688426733017,-0.4798257052898407,-1.0027015209197998,0.008191721513867378,-0.462396502494812,-1.0027015209197998,-1.0724183320999146,-1.4384313821792603,-1.176993489265442,-1.4210021495819092,-0.8806971907615662,-1.333856225013733,-1.2815686464309692,-0.1312418282032013,-0.7238343954086304,-0.462396502494812,-1.2989978790283203,0.6705011129379272,-0.23581700026988983,-0.619259238243103,0.33934640884399414,0.33934640884399414,-0.462396502494812,-0.4798257052898407,-0.5495424866676331,0.16505447030067444,-0.462396502494812,-0.2881045639514923,-0.427538126707077,-0.9155555367469788,-0.6366884708404541,-1.2815686464309692,-0.9329847693443298,-0.5844008922576904,-0.5321133136749268,-0.23581700026988983,-0.06152505427598953,0.04305011034011841,-0.009237472899258137,0.13019607961177826,0.16505447030067444,0.16505447030067444,0.30448800325393677,0.7053594589233398,0.8622221946716309,0.6530718803405762,0.7053594589233398,0.3567756116390228,0.5833551287651062,0.6356427073478699,0.8099346160888672,0.2347712367773056,0.3567756116390228,0.7576470375061035,0.7402178645133972,1.0016558170318604,0.9319390058517456,0.8970806002616882,0.18248365819454193,1.5593899488449097,2.2565577030181885,1.9951198101043701,2.1868410110473633,2.1868410110473633,1.838257074356079,2.0996949672698975,2.361132860183716,1.3153812885284424,1.9951198101043701,0.9145098328590393,1.524531602859497,1.4025272130966187,1.7859694957733154,0.5833551287651062,0.28705883026123047,-0.009237472899258137,0.2173420488834381,0.32191720604896545,0.7925054430961609,0.5136383175849915,1.053943395614624,0.8099346160888672,1.210806131362915,1.2282352447509766,1.2630937099456787,1.0016558170318604,1.367668867111206,1.2979520559310913,1.3850979804992676,1.1410893201828003,1.2979520559310913,1.3153812885284424,1.332810401916504,1.0713725090026855,1.210806131362915,1.1410893201828003,1.036514163017273,1.3850979804992676,1.193376898765564,1.193376898765564],[1.9428322315216064,1.9951198101043701,1.4722440242767334,1.1410893201828003,1.193376898765564,0.7053594589233398,1.4896732568740845,1.5593899488449097,1.838257074356079,1.6465359926223755,1.332810401916504,1.9254029989242554,1.6988235712051392,2.2565577030181885,1.9951198101043701,1.8731154203414917,1.1585185527801514,0.2522004246711731,-0.1312418282032013,-0.39267975091934204,-1.4035730361938477,-1.1595642566680908,-1.1595642566680908,-0.6541176438331604,0.4090631902217865,0.30448800325393677,-0.16610021889209747,-0.7761220335960388,-1.1595642566680908,-0.20095860958099365,0.7227886915206909,0.8622221946716309,0.7576470375061035,0.18248365819454193,-0.35782134532928467,0.11276688426733017,1.4548147916793823,-0.2881045639514923,0.5484967231750488,0.4264923632144928,0.14762526750564575,0.7053594589233398,-0.1312418282032013,-0.5669716596603394,-0.9504139423370361,-1.2292810678482056,-1.4558606147766113,-0.5495424866676331,-0.6366884708404541,-0.4449673295021057,0.2696296274662018,1.4025272130966187,1.175947666168213,0.2696296274662018,0.14762526750564575,0.8796514272689819,1.2282352447509766,-1.333856225013733,-0.16610021889209747,0.9493681788444519,1.6465359926223755,1.0888017416000366,1.2282352447509766,0.7925054430961609,1.0190849304199219,0.5136383175849915,0.47877994179725647,0.2347712367773056,0.6007843017578125,0.5310675501823425,0.8796514272689819,0.7402178645133972,0.30448800325393677,0.3742047846317291,0.7053594589233398,0.3916339874267578,0.9842265844345093,0.9493681788444519,0.9493681788444519,0.8796514272689819,1.0190849304199219,1.210806131362915,1.524531602859497,1.0888017416000366,1.210806131362915,1.193376898765564,1.4025272130966187,1.4025272130966187,1.4896732568740845,1.4025272130966187,1.4373856782913208,1.4025272130966187,1.1236600875854492,1.053943395614624,0.6530718803405762,1.0888017416000366,1.3850979804992676,1.2979520559310913,1.210806131362915,1.4896732568740845,1.5942484140396118,1.6988235712051392,1.6291067600250244,1.7162526845932007,1.9602614641189575,1.6988235712051392,1.6291067600250244,1.4548147916793823,0.966797411441803,1.1236600875854492,1.332810401916504,1.4199564456939697,1.524531602859497,1.175947666168213,1.2630937099456787,1.5768191814422607,1.367668867111206,1.036514163017273,1.3153812885284424,1.5768191814422607,1.6291067600250244,1.350239634513855,1.2282352447509766,1.0713725090026855,-0.6018300652503967,-0.39267975091934204,-0.9852723479270935,-0.21838779747486115,-0.9852723479270935,-1.1421350240707397,-0.427538126707077,-0.7761220335960388,0.18248365819454193,0.13019607961177826,0.04305011034011841,1.0190849304199219,1.036514163017273,0.49620914459228516,0.2696296274662018,-0.14867103099822998,0.11276688426733017,-0.14867103099822998,-0.6366884708404541,-0.8632679581642151,-0.37525054812431335,-0.5844008922576904,-0.37525054812431335,0.6879302859306335,1.350239634513855,0.8970806002616882,0.5136383175849915,0.7750762701034546,-0.6889760494232178,-0.1138126328587532,-1.1595642566680908,-1.2118518352508545,-0.7064052224159241,-0.09638344496488571,-0.35782134532928467,-0.1312418282032013,-0.37525054812431335,0.32191720604896545,0.33934640884399414,0.49620914459228516,0.2696296274662018,0.33934640884399414,0.30448800325393677,0.7925054430961609,0.8970806002616882,0.7402178645133972,0.8273638486862183,0.4264923632144928,1.0190849304199219,0.9145098328590393,0.8796514272689819,0.6879302859306335,0.7576470375061035,0.8970806002616882,0.9842265844345093,0.6182135343551636,0.7576470375061035,0.8099346160888672,0.0604793019592762,-0.6541176438331604,2.117124080657959,2.082265853881836,2.151982545852661,1.8731154203414917,2.082265853881836,2.308845281600952,1.4548147916793823,1.350239634513855,1.6291067600250244,1.0016558170318604,1.5768191814422607,1.193376898765564,1.663965106010437,2.0996949672698975,0.4090631902217865,0.19991286098957062,-0.1138126328587532,0.09533768892288208,0.4439215660095215,0.6705011129379272,1.0713725090026855,0.8099346160888672,0.5659258961677551,1.0888017416000366,0.5659258961677551,1.1236600875854492,0.8970806002616882,0.8273638486862183,1.4025272130966187,1.0713725090026855,1.1410893201828003,1.367668867111206,1.036514163017273,1.2630937099456787,1.4548147916793823,1.2282352447509766,1.350239634513855,1.2630937099456787,1.1062309741973877,1.175947666168213],[2.0125489234924316,2.0125489234924316,1.7336819171905518,1.2456644773483276,0.8796514272689819,-0.07895424962043762,0.7053594589233398,1.5419608354568481,1.9254029989242554,1.681394338607788,1.524531602859497,1.5768191814422607,2.082265853881836,2.3262743949890137,1.8905446529388428,1.8905446529388428,1.9428322315216064,1.6116775274276733,1.1236600875854492,0.9145098328590393,0.2522004246711731,-0.8284096121788025,-0.7064052224159241,0.5136383175849915,1.2282352447509766,0.9145098328590393,0.9145098328590393,-0.462396502494812,-0.6889760494232178,-0.41010892391204834,1.210806131362915,1.2456644773483276,1.0190849304199219,1.1410893201828003,0.47877994179725647,0.3742047846317291,1.4199564456939697,0.16505447030067444,0.9493681788444519,1.3850979804992676,1.6291067600250244,0.46135076880455017,1.0713725090026855,0.5484967231750488,0.33934640884399414,-0.270675390958786,-0.7064052224159241,-1.4035730361938477,-0.39267975091934204,-0.06152505427598953,-0.16610021889209747,0.9145098328590393,1.367668867111206,0.11276688426733017,0.6356427073478699,0.7053594589233398,0.6007843017578125,-0.23581700026988983,0.8796514272689819,1.5942484140396118,1.4722440242767334,1.2805228233337402,1.2979520559310913,1.036514163017273,0.14762526750564575,0.19991286098957062,0.6705011129379272,0.47877994179725647,0.2696296274662018,0.5310675501823425,0.5833551287651062,0.6530718803405762,0.11276688426733017,0.9145098328590393,0.7402178645133972,0.8970806002616882,1.0016558170318604,0.9493681788444519,1.1410893201828003,1.1062309741973877,0.966797411441803,1.1585185527801514,0.9493681788444519,1.4548147916793823,1.0888017416000366,1.210806131362915,1.838257074356079,1.4896732568740845,1.5419608354568481,1.7162526845932007,1.6116775274276733,1.193376898765564,1.1585185527801514,1.367668867111206,1.1236600875854492,1.1410893201828003,1.4025272130966187,1.210806131362915,1.3850979804992676,1.3153812885284424,1.838257074356079,1.820827841758728,1.5768191814422607,1.6465359926223755,1.681394338607788,1.681394338607788,1.367668867111206,1.5419608354568481,1.0713725090026855,1.210806131362915,1.367668867111206,1.4548147916793823,1.5419608354568481,1.2630937099456787,1.6988235712051392,1.4025272130966187,1.2805228233337402,1.681394338607788,1.367668867111206,1.4025272130966187,1.210806131362915,1.1236600875854492,1.4025272130966187,0.4264923632144928,-0.9504139423370361,-0.9329847693443298,-0.8284096121788025,-0.7935512065887451,-0.8806971907615662,-0.5321133136749268,-0.8458387851715088,0.7925054430961609,0.8970806002616882,1.2456644773483276,1.053943395614624,1.3153812885284424,1.2805228233337402,1.3850979804992676,-0.270675390958786,0.7576470375061035,0.9842265844345093,-0.1138126328587532,0.0604793019592762,0.4090631902217865,0.0604793019592762,0.3916339874267578,-0.37525054812431335,0.9319390058517456,-0.2532461881637573,0.9493681788444519,0.8273638486862183,-0.6889760494232178,0.8622221946716309,-1.176993489265442,-1.0549890995025635,-0.7761220335960388,-0.4972549080848694,-0.16610021889209747,0.33934640884399414,0.2522004246711731,0.5833551287651062,0.14762526750564575,0.49620914459228516,0.8273638486862183,0.6530718803405762,0.9493681788444519,0.7053594589233398,0.9319390058517456,0.9842265844345093,0.9145098328590393,0.6356427073478699,1.0888017416000366,0.8273638486862183,0.9319390058517456,1.0016558170318604,0.8796514272689819,1.1062309741973877,1.1585185527801514,1.0713725090026855,1.053943395614624,0.8796514272689819,1.0190849304199219,0.3742047846317291,-0.1312418282032013,1.6988235712051392,1.9254029989242554,2.151982545852661,1.663965106010437,1.820827841758728,2.1345534324645996,2.2216992378234863,1.838257074356079,1.7162526845932007,1.663965106010437,1.6291067600250244,1.6291067600250244,0.9842265844345093,1.5768191814422607,-0.02666666731238365,-0.07895424962043762,0.11276688426733017,0.30448800325393677,0.46135076880455017,0.4439215660095215,0.6356427073478699,1.036514163017273,1.5593899488449097,0.7576470375061035,1.332810401916504,0.966797411441803,0.966797411441803,1.4896732568740845,0.9319390058517456,1.3153812885284424,1.6988235712051392,1.4199564456939697,1.4722440242767334,1.663965106010437,1.036514163017273,1.1410893201828003,1.3153812885284424,1.1062309741973877,1.2979520559310913,1.0713725090026855],[2.047407388687134,1.9951198101043701,1.820827841758728,1.2979520559310913,1.210806131362915,0.19991286098957062,1.3153812885284424,1.175947666168213,2.0299782752990723,1.7336819171905518,1.1585185527801514,1.350239634513855,2.1868410110473633,2.0996949672698975,1.9254029989242554,1.4722440242767334,1.9428322315216064,1.838257074356079,1.6116775274276733,2.0299782752990723,0.5484967231750488,0.6007843017578125,0.4264923632144928,0.9319390058517456,1.5593899488449097,1.0190849304199219,0.32191720604896545,-1.1421350240707397,-0.7064052224159241,-0.1138126328587532,0.7576470375061035,1.175947666168213,1.5942484140396118,1.0713725090026855,-0.009237472899258137,1.332810401916504,0.07790849357843399,0.7227886915206909,1.193376898765564,0.8970806002616882,0.9145098328590393,0.8970806002616882,1.3153812885284424,0.9493681788444519,0.966797411441803,0.7750762701034546,-0.41010892391204834,-0.6366884708404541,0.07790849357843399,0.49620914459228516,-0.6366884708404541,0.4439215660095215,1.5593899488449097,-0.7064052224159241,-0.009237472899258137,0.7053594589233398,-0.462396502494812,-0.009237472899258137,1.4896732568740845,1.5942484140396118,1.1062309741973877,1.036514163017273,0.6879302859306335,0.6007843017578125,0.3742047846317291,0.46135076880455017,0.9319390058517456,0.32191720604896545,0.8970806002616882,0.7576470375061035,0.8622221946716309,0.6705011129379272,0.6007843017578125,0.8447930216789246,0.8622221946716309,0.8970806002616882,1.036514163017273,1.1062309741973877,0.9493681788444519,1.2456644773483276,1.210806131362915,1.5768191814422607,1.507102370262146,1.4896732568740845,1.4722440242767334,1.507102370262146,1.4199564456939697,1.5942484140396118,1.4025272130966187,1.5942484140396118,1.2456644773483276,1.210806131362915,1.2805228233337402,1.332810401916504,1.0713725090026855,1.367668867111206,1.2805228233337402,1.1236600875854492,1.3153812885284424,1.350239634513855,1.681394338607788,1.6291067600250244,1.8905446529388428,1.7511111497879028,1.6291067600250244,1.6116775274276733,1.332810401916504,1.4548147916793823,1.175947666168213,1.036514163017273,0.8622221946716309,1.3850979804992676,1.5593899488449097,1.7511111497879028,1.7336819171905518,1.5942484140396118,1.2979520559310913,1.4199564456939697,1.2630937099456787,1.4373856782913208,0.9145098328590393,1.4373856782913208,1.210806131362915,-0.009237472899258137,-0.6715468168258667,-0.8632679581642151,-0.7761220335960388,-0.8632679581642151,-0.8284096121788025,0.6705011129379272,1.507102370262146,1.6291067600250244,1.4896732568740845,1.1410893201828003,1.1236600875854492,0.6530718803405762,1.3850979804992676,1.6116775274276733,1.5768191814422607,0.8796514272689819,1.3153812885284424,1.210806131362915,1.7685402631759644,0.16505447030067444,0.6705011129379272,0.2696296274662018,0.2522004246711731,0.6182135343551636,0.7053594589233398,0.3742047846317291,0.5136383175849915,0.5310675501823425,-1.0027015209197998,-1.1247059106826782,-0.8806971907615662,-0.20095860958099365,0.07790849357843399,-0.1138126328587532,-0.07895424962043762,0.32191720604896545,0.32191720604896545,0.4264923632144928,0.2347712367773056,1.1062309741973877,1.175947666168213,0.8099346160888672,0.6879302859306335,0.8099346160888672,1.053943395614624,0.6705011129379272,0.9493681788444519,0.5310675501823425,1.2630937099456787,1.1410893201828003,0.9319390058517456,1.1062309741973877,1.1585185527801514,1.1236600875854492,1.053943395614624,1.210806131362915,0.7227886915206909,0.5310675501823425,0.30448800325393677,-0.7586928009986877,-0.02666666731238365,2.0996949672698975,2.117124080657959,1.8556863069534302,1.4896732568740845,1.663965106010437,1.8556863069534302,1.9079738855361938,2.0125489234924316,1.7336819171905518,1.4199564456939697,1.5768191814422607,1.820827841758728,1.8905446529388428,0.7576470375061035,-0.1312418282032013,0.16505447030067444,0.28705883026123047,0.5659258961677551,-0.06152505427598953,0.4264923632144928,0.5833551287651062,0.6705011129379272,0.9319390058517456,0.9493681788444519,1.3850979804992676,0.7925054430961609,1.2282352447509766,1.193376898765564,1.1236600875854492,1.0888017416000366,1.367668867111206,1.6465359926223755,1.175947666168213,1.5593899488449097,1.0713725090026855,1.2282352447509766,1.175947666168213,1.2630937099456787,1.1236600875854492],[2.0299782752990723,2.0125489234924316,1.8731154203414917,1.524531602859497,1.036514163017273,0.49620914459228516,0.6182135343551636,0.8622221946716309,1.350239634513855,1.3850979804992676,1.4896732568740845,1.8731154203414917,1.2805228233337402,2.0299782752990723,1.4373856782913208,1.6988235712051392,1.9951198101043701,2.1345534324645996,2.047407388687134,1.2805228233337402,1.350239634513855,1.1410893201828003,1.524531602859497,0.9493681788444519,0.9145098328590393,0.6007843017578125,0.2696296274662018,-1.0375598669052124,-0.09638344496488571,-0.18352940678596497,1.4373856782913208,0.9319390058517456,1.2805228233337402,1.2979520559310913,0.6705011129379272,-1.0027015209197998,0.7750762701034546,1.4373856782913208,1.053943395614624,0.8447930216789246,1.193376898765564,1.0016558170318604,1.6116775274276733,1.193376898765564,1.332810401916504,0.5659258961677551,1.0888017416000366,0.2173420488834381,-0.7412636280059814,0.18248365819454193,0.9493681788444519,1.1236600875854492,0.6879302859306335,-1.1421350240707397,-0.1138126328587532,0.5659258961677551,-0.8981263637542725,0.9145098328590393,1.4025272130966187,0.9842265844345093,1.3153812885284424,0.6356427073478699,0.6182135343551636,0.3567756116390228,0.7925054430961609,1.1585185527801514,0.2522004246711731,0.16505447030067444,0.8970806002616882,0.6530718803405762,0.7402178645133972,0.5484967231750488,1.036514163017273,1.1062309741973877,1.0016558170318604,1.2805228233337402,0.7576470375061035,1.3850979804992676,1.175947666168213,1.1585185527801514,1.6116775274276733,1.1585185527801514,1.2282352447509766,1.7685402631759644,1.4896732568740845,1.4199564456939697,1.681394338607788,1.6116775274276733,1.2456644773483276,1.5593899488449097,1.5942484140396118,1.3153812885284424,1.1236600875854492,1.4199564456939697,1.0888017416000366,1.2456644773483276,1.210806131362915,0.7925054430961609,1.193376898765564,1.3850979804992676,1.350239634513855,1.4548147916793823,1.4548147916793823,1.7336819171905518,1.5419608354568481,1.6291067600250244,1.210806131362915,1.0016558170318604,1.1236600875854492,1.0016558170318604,1.036514163017273,1.3850979804992676,1.5593899488449097,1.2805228233337402,1.350239634513855,1.350239634513855,1.4722440242767334,1.4373856782913208,1.175947666168213,1.0713725090026855,1.1062309741973877,1.0016558170318604,1.2282352447509766,-0.06152505427598953,-0.7935512065887451,-0.8458387851715088,-0.6018300652503967,1.0016558170318604,1.4199564456939697,1.4199564456939697,1.7511111497879028,1.2979520559310913,0.966797411441803,0.6356427073478699,1.053943395614624,0.46135076880455017,0.966797411441803,1.350239634513855,1.4025272130966187,1.350239634513855,-0.04409585893154144,0.18248365819454193,-0.2532461881637573,0.7925054430961609,0.47877994179725647,0.9493681788444519,1.5942484140396118,0.7402178645133972,0.8970806002616882,1.1236600875854492,2.1694116592407227,0.7402178645133972,-0.5321133136749268,-0.20095860958099365,-0.35782134532928467,-0.2532461881637573,0.5659258961677551,0.4439215660095215,0.9842265844345093,0.04305011034011841,1.1062309741973877,0.8273638486862183,0.7925054430961609,0.6879302859306335,0.9842265844345093,0.6530718803405762,1.0016558170318604,0.7925054430961609,0.8447930216789246,0.7576470375061035,1.0713725090026855,1.2282352447509766,1.1062309741973877,0.6705011129379272,1.1236600875854492,1.2282352447509766,1.0190849304199219,1.367668867111206,0.9493681788444519,1.6988235712051392,1.0190849304199219,0.07790849357843399,-0.07895424962043762,-0.4972549080848694,-0.35782134532928467,2.0648365020751953,2.1345534324645996,2.0125489234924316,1.0016558170318604,1.6116775274276733,1.9602614641189575,2.0299782752990723,2.0648365020751953,2.0125489234924316,1.838257074356079,1.3850979804992676,1.7162526845932007,1.8905446529388428,1.977690577507019,-0.6018300652503967,-0.4449673295021057,0.6356427073478699,0.0604793019592762,0.2522004246711731,0.7227886915206909,0.9842265844345093,0.9319390058517456,0.8099346160888672,1.193376898765564,0.7576470375061035,1.2630937099456787,1.332810401916504,0.8970806002616882,1.332810401916504,1.175947666168213,1.4199564456939697,1.3153812885284424,0.9493681788444519,1.3850979804992676,1.210806131362915,1.4025272130966187,1.1236600875854492,0.9145098328590393,1.4722440242767334],[2.047407388687134,1.9951198101043701,1.9602614641189575,1.350239634513855,1.4373856782913208,0.49620914459228516,0.19991286098957062,0.28705883026123047,1.0888017416000366,1.0888017416000366,1.1585185527801514,0.7925054430961609,0.7402178645133972,0.5136383175849915,0.5310675501823425,1.8556863069534302,1.4548147916793823,2.0299782752990723,1.3153812885284424,2.0648365020751953,2.1694116592407227,1.0016558170318604,0.8796514272689819,1.0190849304199219,1.4025272130966187,1.2979520559310913,-0.009237472899258137,-0.9678431153297424,-0.270675390958786,-0.23581700026988983,1.8556863069534302,0.49620914459228516,1.3153812885284424,1.4373856782913208,0.8447930216789246,-1.333856225013733,-0.09638344496488571,2.0125489234924316,1.3850979804992676,1.4199564456939697,1.6291067600250244,0.8796514272689819,0.6705011129379272,0.6705011129379272,1.1062309741973877,0.6879302859306335,0.7750762701034546,-0.1138126328587532,0.19991286098957062,0.2173420488834381,0.2696296274662018,-0.23581700026988983,0.8273638486862183,-0.2881045639514923,0.47877994179725647,-0.462396502494812,1.0190849304199219,1.175947666168213,1.2282352447509766,0.7227886915206909,1.193376898765564,0.46135076880455017,0.7227886915206909,0.49620914459228516,0.3916339874267578,0.4264923632144928,0.9319390058517456,0.28705883026123047,1.0016558170318604,0.6705011129379272,1.1236600875854492,0.8447930216789246,0.7925054430961609,0.8622221946716309,0.7402178645133972,0.8622221946716309,1.2979520559310913,1.367668867111206,1.350239634513855,1.507102370262146,1.4896732568740845,1.5942484140396118,1.507102370262146,1.1585185527801514,1.5419608354568481,1.3850979804992676,1.6465359926223755,1.6988235712051392,1.5942484140396118,1.4896732568740845,1.681394338607788,1.6116775274276733,1.7336819171905518,1.175947666168213,1.3850979804992676,1.2805228233337402,1.053943395614624,1.2282352447509766,1.350239634513855,1.332810401916504,1.367668867111206,1.6116775274276733,1.7162526845932007,1.8556863069534302,1.9428322315216064,1.838257074356079,1.663965106010437,1.367668867111206,1.1410893201828003,0.966797411441803,1.2456644773483276,1.2630937099456787,1.3850979804992676,1.2282352447509766,1.6116775274276733,1.507102370262146,1.332810401916504,1.4025272130966187,1.5419608354568481,1.350239634513855,1.2979520559310913,0.49620914459228516,1.3153812885284424,0.9842265844345093,1.1062309741973877,1.6291067600250244,1.6116775274276733,1.4199564456939697,1.3850979804992676,1.4896732568740845,0.9319390058517456,1.367668867111206,1.2630937099456787,1.1585185527801514,1.367668867111206,1.2282352447509766,0.8796514272689819,0.5833551287651062,0.5659258961677551,0.09533768892288208,-0.09638344496488571,-0.5146840810775757,0.2173420488834381,-0.305533766746521,0.7576470375061035,-0.18352940678596497,1.2805228233337402,1.6988235712051392,1.524531602859497,1.681394338607788,-0.2532461881637573,-0.39267975091934204,0.2347712367773056,0.4264923632144928,0.2696296274662018,0.6879302859306335,-0.21838779747486115,0.4439215660095215,1.0888017416000366,0.3916339874267578,0.6705011129379272,0.9842265844345093,0.6530718803405762,0.8970806002616882,0.966797411441803,0.966797411441803,0.9493681788444519,0.9842265844345093,1.2282352447509766,1.1062309741973877,1.0713725090026855,0.9319390058517456,0.7750762701034546,0.7227886915206909,0.8796514272689819,0.9842265844345093,1.0888017416000366,1.367668867111206,1.1410893201828003,1.0190849304199219,0.9493681788444519,0.2173420488834381,0.2347712367773056,-0.270675390958786,0.32191720604896545,1.507102370262146,2.204270124435425,2.0648365020751953,0.9493681788444519,1.8731154203414917,2.0648365020751953,1.9254029989242554,2.0125489234924316,2.204270124435425,1.9079738855361938,1.4548147916793823,1.7162526845932007,1.7162526845932007,1.8033987283706665,-0.18352940678596497,0.04305011034011841,0.2347712367773056,0.49620914459228516,0.28705883026123047,0.5833551287651062,0.7925054430961609,0.966797411441803,0.8099346160888672,0.8447930216789246,0.9842265844345093,1.210806131362915,1.0016558170318604,0.6007843017578125,1.3153812885284424,1.193376898765564,1.4548147916793823,0.8796514272689819,1.2979520559310913,1.2456644773483276,1.332810401916504,0.9493681788444519,1.2456644773483276,1.367668867111206,1.0016558170318604],[2.082265853881836,2.0648365020751953,1.977690577507019,1.9951198101043701,1.175947666168213,0.966797411441803,0.7053594589233398,-0.305533766746521,1.0888017416000366,1.507102370262146,1.1062309741973877,0.966797411441803,-0.35782134532928467,-0.1138126328587532,0.5659258961677551,1.053943395614624,0.9145098328590393,0.11276688426733017,0.7576470375061035,0.8622221946716309,1.4373856782913208,1.4373856782913208,0.7925054430961609,0.4264923632144928,0.6182135343551636,1.0888017416000366,0.19991286098957062,-0.7064052224159241,-0.39267975091934204,0.07790849357843399,1.6291067600250244,0.6530718803405762,0.4439215660095215,1.350239634513855,-0.20095860958099365,-0.9852723479270935,-0.8458387851715088,0.3742047846317291,1.4722440242767334,1.4373856782913208,1.7859694957733154,1.350239634513855,0.9842265844345093,0.28705883026123047,0.32191720604896545,0.2173420488834381,0.2347712367773056,0.8796514272689819,0.5310675501823425,0.7925054430961609,0.8970806002616882,0.46135076880455017,0.11276688426733017,0.2696296274662018,0.3742047846317291,1.5942484140396118,1.4548147916793823,1.2630937099456787,0.9319390058517456,0.8273638486862183,0.6705011129379272,0.5310675501823425,0.28705883026123047,0.4264923632144928,0.8099346160888672,0.8273638486862183,0.5659258961677551,0.7227886915206909,0.6530718803405762,1.036514163017273,0.8622221946716309,1.036514163017273,1.0190849304199219,1.1410893201828003,0.8447930216789246,0.6879302859306335,1.210806131362915,1.6465359926223755,1.2805228233337402,1.5768191814422607,1.7511111497879028,1.5593899488449097,1.350239634513855,1.5593899488449097,1.6116775274276733,1.7685402631759644,1.681394338607788,1.6988235712051392,1.6116775274276733,1.4025272130966187,1.5593899488449097,1.5419608354568481,1.681394338607788,1.350239634513855,1.4025272130966187,1.3850979804992676,1.2979520559310913,1.350239634513855,1.3850979804992676,1.332810401916504,1.7859694957733154,1.5419608354568481,1.6465359926223755,1.4896732568740845,1.6465359926223755,1.524531602859497,1.4025272130966187,1.3850979804992676,1.1585185527801514,1.332810401916504,1.507102370262146,1.2979520559310913,1.4199564456939697,1.5768191814422607,1.6465359926223755,1.3153812885284424,1.4025272130966187,1.175947666168213,1.0888017416000366,1.3153812885284424,0.9145098328590393,1.1236600875854492,1.0190849304199219,1.0888017416000366,1.053943395614624,0.966797411441803,1.7162526845932007,1.4722440242767334,1.4199564456939697,1.193376898765564,1.210806131362915,1.2805228233337402,1.3153812885284424,1.0016558170318604,1.2282352447509766,1.3153812885284424,1.036514163017273,0.46135076880455017,0.8099346160888672,0.7576470375061035,0.9319390058517456,0.33934640884399414,0.32191720604896545,0.5136383175849915,-0.270675390958786,-0.009237472899258137,-0.9155555367469788,0.9842265844345093,0.33934640884399414,1.1236600875854492,0.8447930216789246,0.07790849357843399,0.6182135343551636,0.5833551287651062,0.7576470375061035,0.6182135343551636,0.9319390058517456,0.9145098328590393,0.6879302859306335,1.0016558170318604,0.9842265844345093,0.7925054430961609,1.036514163017273,0.9493681788444519,0.9319390058517456,1.1236600875854492,0.8447930216789246,0.8970806002616882,1.175947666168213,1.0016558170318604,1.1410893201828003,0.6705011129379272,0.6705011129379272,1.4373856782913208,1.2630937099456787,1.2630937099456787,1.5593899488449097,1.193376898765564,1.0713725090026855,1.0016558170318604,0.7053594589233398,0.7750762701034546,0.32191720604896545,0.09533768892288208,1.5419608354568481,1.7685402631759644,1.332810401916504,1.7162526845932007,2.082265853881836,1.977690577507019,2.239128589630127,1.8556863069534302,2.27398681640625,2.151982545852661,1.8905446529388428,1.367668867111206,1.7511111497879028,2.082265853881836,2.0299782752990723,-0.20095860958099365,-0.14867103099822998,-0.2881045639514923,0.3916339874267578,0.2696296274662018,0.6879302859306335,0.7925054430961609,1.0016558170318604,1.0016558170318604,1.0190849304199219,1.0888017416000366,1.210806131362915,1.193376898765564,1.0888017416000366,1.3153812885284424,1.2282352447509766,1.0016558170318604,1.3153812885284424,1.2282352447509766,1.2282352447509766,0.9493681788444519,1.193376898765564,1.1236600875854492,1.2979520559310913,1.4722440242767334],[2.0125489234924316,2.082265853881836,1.9079738855361938,1.8731154203414917,1.6291067600250244,1.2979520559310913,0.2347712367773056,0.0604793019592762,0.7576470375061035,1.0016558170318604,0.9145098328590393,0.46135076880455017,0.32191720604896545,0.19991286098957062,1.332810401916504,0.09533768892288208,-0.305533766746521,0.5659258961677551,0.2347712367773056,0.966797411441803,-0.619259238243103,1.0713725090026855,1.1236600875854492,-0.35782134532928467,-0.14867103099822998,0.3567756116390228,-0.270675390958786,-1.0027015209197998,-0.5669716596603394,1.2282352447509766,2.0648365020751953,0.6356427073478699,0.6356427073478699,0.9842265844345093,-0.41010892391204834,-0.8284096121788025,-1.333856225013733,-0.41010892391204834,0.9842265844345093,1.2805228233337402,1.2282352447509766,1.4548147916793823,1.0016558170318604,0.6879302859306335,0.5484967231750488,0.8099346160888672,1.036514163017273,0.8099346160888672,1.2456644773483276,1.2282352447509766,1.5593899488449097,1.367668867111206,1.5768191814422607,1.820827841758728,1.332810401916504,1.4548147916793823,0.9319390058517456,0.5659258961677551,0.8099346160888672,0.9319390058517456,0.28705883026123047,0.09533768892288208,0.6356427073478699,0.6879302859306335,0.5833551287651062,0.8099346160888672,0.5833551287651062,0.6182135343551636,0.9493681788444519,1.0016558170318604,1.193376898765564,1.1585185527801514,0.6530718803405762,1.2630937099456787,1.1585185527801514,1.2805228233337402,1.507102370262146,1.4896732568740845,1.524531602859497,1.2282352447509766,1.4025272130966187,1.4373856782913208,1.7511111497879028,1.5942484140396118,1.7685402631759644,1.6988235712051392,1.5942484140396118,1.4722440242767334,1.4896732568740845,1.5419608354568481,1.3850979804992676,1.507102370262146,1.6116775274276733,1.2805228233337402,1.4199564456939697,1.2282352447509766,1.3153812885284424,1.1062309741973877,1.4548147916793823,1.4199564456939697,1.5768191814422607,1.6988235712051392,1.7336819171905518,1.3850979804992676,1.6116775274276733,1.6465359926223755,1.507102370262146,1.350239634513855,1.175947666168213,1.4025272130966187,1.5768191814422607,1.350239634513855,1.036514163017273,1.0190849304199219,1.193376898765564,1.4896732568740845,1.332810401916504,1.193376898765564,1.053943395614624,1.3153812885284424,0.9319390058517456,1.1410893201828003,1.1410893201828003,1.3153812885284424,1.2630937099456787,1.1410893201828003,0.8970806002616882,1.1585185527801514,1.2979520559310913,1.2282352447509766,1.036514163017273,1.2456644773483276,0.9842265844345093,1.3153812885284424,1.3153812885284424,1.1236600875854492,1.175947666168213,0.7576470375061035,0.9145098328590393,1.2630937099456787,0.9842265844345093,0.46135076880455017,0.8970806002616882,1.1585185527801514,0.09533768892288208,0.30448800325393677,1.332810401916504,0.09533768892288208,1.1410893201828003,1.2630937099456787,0.8970806002616882,0.6007843017578125,0.46135076880455017,0.8099346160888672,0.6356427073478699,0.9493681788444519,1.3850979804992676,0.6879302859306335,0.7750762701034546,1.4373856782913208,0.6182135343551636,1.053943395614624,1.4025272130966187,1.053943395614624,0.9842265844345093,1.053943395614624,1.175947666168213,1.036514163017273,1.350239634513855,0.9493681788444519,0.9493681788444519,1.193376898765564,1.036514163017273,0.7750762701034546,1.053943395614624,1.2456644773483276,1.350239634513855,0.8796514272689819,0.8970806002616882,0.8622221946716309,0.7750762701034546,0.6705011129379272,0.6530718803405762,0.5310675501823425,1.507102370262146,1.5419608354568481,1.7511111497879028,0.7750762701034546,2.0299782752990723,2.1694116592407227,1.820827841758728,1.350239634513855,1.663965106010437,2.0996949672698975,2.2216992378234863,1.6291067600250244,1.350239634513855,2.117124080657959,2.361132860183716,0.5136383175849915,0.9319390058517456,0.14762526750564575,0.6007843017578125,0.49620914459228516,0.9145098328590393,1.053943395614624,1.1236600875854492,1.0713725090026855,0.8622221946716309,0.7576470375061035,0.9319390058517456,0.9842265844345093,1.0016558170318604,0.8099346160888672,0.966797411441803,0.9842265844345093,1.036514163017273,1.0016558170318604,1.1410893201828003,1.0016558170318604,1.2282352447509766,1.1410893201828003,1.350239634513855,1.0190849304199219],[2.047407388687134,2.0648365020751953,1.8905446529388428,1.8905446529388428,1.5942484140396118,1.2979520559310913,0.2347712367773056,0.4090631902217865,0.18248365819454193,0.7576470375061035,1.2979520559310913,1.2456644773483276,1.4722440242767334,1.9079738855361938,1.2979520559310913,1.4896732568740845,1.2630937099456787,-0.35782134532928467,0.09533768892288208,-0.8458387851715088,-0.427538126707077,-1.4732897281646729,-0.37525054812431335,0.3567756116390228,-0.9329847693443298,-1.089847445487976,-0.7761220335960388,-1.176993489265442,-1.089847445487976,0.2173420488834381,1.3153812885284424,0.4090631902217865,0.5310675501823425,0.13019607961177826,0.5484967231750488,-1.089847445487976,-0.9678431153297424,-0.7935512065887451,0.2522004246711731,0.46135076880455017,1.175947666168213,1.4373856782913208,1.2979520559310913,1.350239634513855,1.2979520559310913,0.8273638486862183,1.053943395614624,1.507102370262146,1.193376898765564,1.332810401916504,1.3850979804992676,1.5419608354568481,1.5419608354568481,1.2805228233337402,1.2805228233337402,1.0888017416000366,0.9842265844345093,0.7576470375061035,0.8099346160888672,0.2696296274662018,0.7053594589233398,0.49620914459228516,0.49620914459228516,0.7402178645133972,0.8447930216789246,0.6356427073478699,1.0190849304199219,0.8447930216789246,1.0888017416000366,1.193376898765564,1.193376898765564,1.193376898765564,1.3850979804992676,1.5593899488449097,1.0888017416000366,1.367668867111206,1.210806131362915,1.5942484140396118,1.4199564456939697,1.6291067600250244,1.2979520559310913,1.6988235712051392,1.5419608354568481,1.7685402631759644,1.332810401916504,1.5419608354568481,1.6988235712051392,1.6116775274276733,1.1585185527801514,1.4896732568740845,1.4722440242767334,1.681394338607788,1.3850979804992676,1.350239634513855,1.4199564456939697,1.5768191814422607,1.5419608354568481,1.663965106010437,1.4199564456939697,1.6465359926223755,1.6116775274276733,1.663965106010437,1.5419608354568481,1.5593899488449097,1.6291067600250244,1.7162526845932007,1.2282352447509766,1.4373856782913208,1.2282352447509766,1.0888017416000366,1.2456644773483276,1.5768191814422607,1.350239634513855,1.5768191814422607,1.332810401916504,1.4722440242767334,1.367668867111206,1.4199564456939697,1.4025272130966187,1.1410893201828003,1.1062309741973877,0.8447930216789246,1.2456644773483276,2.0125489234924316,1.4896732568740845,1.7511111497879028,1.1236600875854492,1.2282352447509766,1.036514163017273,1.5942484140396118,1.1410893201828003,1.367668867111206,1.3850979804992676,0.7925054430961609,1.193376898765564,1.0713725090026855,1.193376898765564,1.332810401916504,1.053943395614624,0.7402178645133972,0.9145098328590393,0.8099346160888672,0.7576470375061035,0.6879302859306335,0.5310675501823425,1.0190849304199219,1.350239634513855,1.1062309741973877,1.9602614641189575,1.507102370262146,0.8622221946716309,1.0190849304199219,1.4199564456939697,1.193376898765564,1.0016558170318604,1.0016558170318604,0.9842265844345093,1.193376898765564,1.036514163017273,0.7053594589233398,1.193376898765564,1.036514163017273,1.2979520559310913,1.2282352447509766,1.2282352447509766,1.2456644773483276,1.0888017416000366,1.2979520559310913,1.2282352447509766,1.1062309741973877,1.0888017416000366,1.2456644773483276,1.350239634513855,1.1585185527801514,0.8447930216789246,1.193376898765564,1.0888017416000366,0.7750762701034546,0.9493681788444519,1.053943395614624,0.46135076880455017,0.5833551287651062,0.966797411441803,1.4025272130966187,1.4722440242767334,1.6116775274276733,1.6116775274276733,1.4025272130966187,-0.09638344496488571,1.8556863069534302,1.7336819171905518,2.082265853881836,2.151982545852661,1.3850979804992676,2.047407388687134,1.7859694957733154,2.2914161682128906,2.082265853881836,0.9842265844345093,-0.5844008922576904,-0.4972549080848694,-0.1312418282032013,1.2456644773483276,1.4373856782913208,1.3153812885284424,0.966797411441803,0.9319390058517456,1.0713725090026855,0.9145098328590393,1.0190849304199219,0.9493681788444519,1.524531602859497,1.1585185527801514,1.036514163017273,1.1236600875854492,1.3153812885284424,1.4896732568740845,1.2456644773483276,0.9842265844345093,1.4025272130966187,1.1062309741973877,1.6291067600250244,1.1585185527801514,1.3850979804992676],[1.9079738855361938,2.0299782752990723,1.9428322315216064,2.0125489234924316,1.8731154203414917,1.2456644773483276,0.18248365819454193,0.07790849357843399,0.4090631902217865,1.3153812885284424,1.7859694957733154,1.524531602859497,1.5942484140396118,1.838257074356079,1.6465359926223755,1.8731154203414917,1.7685402631759644,0.3916339874267578,0.2173420488834381,0.18248365819454193,0.14762526750564575,0.8622221946716309,0.14762526750564575,0.33934640884399414,0.47877994179725647,-0.2881045639514923,-1.089847445487976,-0.6366884708404541,-0.8632679581642151,0.4090631902217865,1.5768191814422607,0.8099346160888672,0.8796514272689819,1.0713725090026855,0.8970806002616882,-0.2532461881637573,-0.6715468168258667,-0.8109803795814514,0.4264923632144928,-0.2532461881637573,0.49620914459228516,1.5768191814422607,1.7511111497879028,1.663965106010437,1.193376898765564,1.0190849304199219,1.2630937099456787,1.193376898765564,1.524531602859497,1.5768191814422607,1.4373856782913208,1.1062309741973877,1.332810401916504,1.6291067600250244,0.8099346160888672,0.7925054430961609,0.6705011129379272,-0.1138126328587532,0.3742047846317291,0.3567756116390228,0.47877994179725647,0.2173420488834381,0.46135076880455017,0.8796514272689819,1.1236600875854492,1.0016558170318604,1.175947666168213,0.9319390058517456,0.9319390058517456,1.175947666168213,1.0016558170318604,1.367668867111206,1.4896732568740845,1.175947666168213,1.350239634513855,1.7336819171905518,1.5419608354568481,1.5593899488449097,1.5593899488449097,1.4896732568740845,1.6116775274276733,1.681394338607788,1.4199564456939697,1.524531602859497,1.6116775274276733,1.820827841758728,1.663965106010437,1.7162526845932007,1.5942484140396118,1.5419608354568481,1.7685402631759644,1.5593899488449097,1.4199564456939697,1.681394338607788,1.2805228233337402,1.210806131362915,1.6116775274276733,1.4373856782913208,1.2805228233337402,1.4548147916793823,1.8905446529388428,1.6988235712051392,1.524531602859497,1.7336819171905518,1.663965106010437,1.663965106010437,1.7859694957733154,1.524531602859497,1.5768191814422607,1.1410893201828003,1.1585185527801514,1.2630937099456787,1.1585185527801514,1.5942484140396118,0.9145098328590393,1.2979520559310913,1.2630937099456787,1.4025272130966187,1.4548147916793823,1.1236600875854492,1.6291067600250244,1.0016558170318604,1.036514163017273,1.367668867111206,1.0016558170318604,1.5768191814422607,1.0888017416000366,1.053943395614624,1.5768191814422607,1.3153812885284424,1.0888017416000366,1.0713725090026855,1.3850979804992676,1.4373856782913208,1.3153812885284424,1.5593899488449097,1.193376898765564,0.7925054430961609,1.1585185527801514,1.367668867111206,1.4722440242767334,1.210806131362915,0.8447930216789246,1.0190849304199219,1.193376898765564,0.9493681788444519,1.175947666168213,1.2282352447509766,2.3262743949890137,1.5768191814422607,1.332810401916504,1.1410893201828003,1.0888017416000366,1.1062309741973877,1.4025272130966187,1.4896732568740845,1.2282352447509766,1.2979520559310913,1.3850979804992676,1.2805228233337402,1.3153812885284424,1.2979520559310913,1.1236600875854492,1.193376898765564,1.2805228233337402,1.210806131362915,1.1410893201828003,1.1062309741973877,1.350239634513855,1.0190849304199219,1.4199564456939697,1.3153812885284424,1.1236600875854492,1.1585185527801514,1.053943395614624,1.210806131362915,0.7576470375061035,0.7925054430961609,1.175947666168213,0.966797411441803,1.1062309741973877,1.0713725090026855,1.2456644773483276,1.663965106010437,1.6291067600250244,1.6465359926223755,1.5593899488449097,0.9145098328590393,-1.3861438035964966,1.5419608354568481,1.7336819171905518,2.2216992378234863,2.0299782752990723,1.9254029989242554,1.9079738855361938,1.8556863069534302,1.9254029989242554,1.7336819171905518,0.9319390058517456,-0.7586928009986877,-0.6366884708404541,0.30448800325393677,1.2456644773483276,1.524531602859497,1.524531602859497,1.4548147916793823,1.053943395614624,1.2630937099456787,1.2630937099456787,1.036514163017273,1.2805228233337402,1.053943395614624,1.2456644773483276,1.5942484140396118,1.1236600875854492,1.2805228233337402,1.4722440242767334,1.0713725090026855,0.9319390058517456,1.2630937099456787,1.0016558170318604,1.3850979804992676,1.2456644773483276,1.053943395614624],[1.9428322315216064,2.0125489234924316,1.9602614641189575,2.0125489234924316,1.9079738855361938,1.4722440242767334,1.175947666168213,0.3916339874267578,1.175947666168213,1.193376898765564,1.1062309741973877,1.367668867111206,1.2456644773483276,1.838257074356079,2.0648365020751953,2.4134204387664795,1.4722440242767334,1.7859694957733154,1.4548147916793823,1.9602614641189575,1.2456644773483276,1.524531602859497,0.8099346160888672,0.5659258961677551,-0.23581700026988983,-0.06152505427598953,-0.6366884708404541,-0.1312418282032013,-0.14867103099822998,0.47877994179725647,1.4722440242767334,0.7925054430961609,0.6182135343551636,0.5833551287651062,0.8970806002616882,0.30448800325393677,-0.35782134532928467,-0.6018300652503967,0.5484967231750488,0.8622221946716309,1.0713725090026855,1.7336819171905518,1.838257074356079,1.977690577507019,1.5593899488449097,1.0190849304199219,1.4199564456939697,1.2979520559310913,0.8447930216789246,1.5768191814422607,1.332810401916504,1.3153812885284424,0.5659258961677551,0.5659258961677551,1.0713725090026855,0.6356427073478699,0.7402178645133972,0.16505447030067444,0.2696296274662018,0.5310675501823425,0.7053594589233398,0.7750762701034546,0.966797411441803,1.0016558170318604,1.053943395614624,1.193376898765564,1.036514163017273,0.9319390058517456,1.175947666168213,1.2456644773483276,1.4722440242767334,1.524531602859497,1.5942484140396118,1.5419608354568481,1.350239634513855,1.350239634513855,1.6291067600250244,1.524531602859497,1.4896732568740845,1.2630937099456787,1.2630937099456787,1.7336819171905518,1.5419608354568481,1.2805228233337402,1.524531602859497,1.5593899488449097,1.663965106010437,1.4548147916793823,1.507102370262146,1.507102370262146,1.5768191814422607,1.524531602859497,1.5593899488449097,1.4722440242767334,1.332810401916504,1.7162526845932007,1.9254029989242554,1.5419608354568481,1.2630937099456787,1.6291067600250244,1.507102370262146,1.6116775274276733,1.4896732568740845,1.9079738855361938,1.6465359926223755,1.663965106010437,1.4722440242767334,1.507102370262146,1.175947666168213,0.966797411441803,1.332810401916504,1.332810401916504,1.1062309741973877,1.4373856782913208,1.2282352447509766,1.2979520559310913,1.2805228233337402,0.966797411441803,1.193376898765564,1.2456644773483276,1.036514163017273,1.332810401916504,1.0888017416000366,1.053943395614624,1.2630937099456787,1.332810401916504,1.681394338607788,1.4025272130966187,1.332810401916504,1.053943395614624,1.1236600875854492,0.9842265844345093,1.3850979804992676,1.5942484140396118,1.193376898765564,1.036514163017273,0.8970806002616882,1.1410893201828003,1.2979520559310913,1.3850979804992676,1.210806131362915,1.1236600875854492,1.2456644773483276,1.0713725090026855,1.4722440242767334,1.2282352447509766,1.6291067600250244,0.9842265844345093,1.350239634513855,1.2630937099456787,1.0016558170318604,1.4199564456939697,1.3850979804992676,1.332810401916504,1.1585185527801514,1.3850979804992676,1.5419608354568481,1.507102370262146,0.9493681788444519,0.9145098328590393,1.3850979804992676,1.210806131362915,1.4373856782913208,1.2805228233337402,1.350239634513855,1.367668867111206,1.210806131362915,1.5942484140396118,1.332810401916504,1.4896732568740845,1.2282352447509766,1.2630937099456787,1.1410893201828003,0.9319390058517456,1.4548147916793823,1.507102370262146,1.1236600875854492,1.193376898765564,1.1585185527801514,1.4199564456939697,0.8796514272689819,1.2282352447509766,1.350239634513855,1.7162526845932007,1.7162526845932007,1.4896732568740845,1.1410893201828003,1.053943395614624,-1.4035730361938477,0.14762526750564575,2.0996949672698975,2.1694116592407227,2.4482789039611816,2.395991325378418,1.6291067600250244,2.2565577030181885,2.1345534324645996,0.8099346160888672,-0.23581700026988983,-0.7761220335960388,-0.9155555367469788,0.32191720604896545,1.5768191814422607,1.7162526845932007,1.332810401916504,1.2630937099456787,1.332810401916504,1.210806131362915,1.332810401916504,1.210806131362915,1.2979520559310913,0.966797411441803,0.9319390058517456,1.6988235712051392,1.2456644773483276,1.5593899488449097,1.2456644773483276,1.3153812885284424,1.1236600875854492,1.332810401916504,1.3153812885284424,0.8099346160888672,0.9319390058517456,0.8796514272689819],[1.8905446529388428,2.0996949672698975,1.9602614641189575,1.9079738855361938,2.0299782752990723,1.7685402631759644,1.367668867111206,0.16505447030067444,-0.20095860958099365,0.8796514272689819,1.6291067600250244,0.5136383175849915,1.4722440242767334,1.7162526845932007,2.0648365020751953,2.0125489234924316,2.0125489234924316,1.8905446529388428,1.977690577507019,2.204270124435425,1.8033987283706665,1.8556863069534302,1.0016558170318604,-0.20095860958099365,0.49620914459228516,0.28705883026123047,-0.39267975091934204,-0.427538126707077,0.5659258961677551,1.053943395614624,1.7685402631759644,0.8796514272689819,0.9145098328590393,0.6879302859306335,0.7227886915206909,0.3916339874267578,0.9145098328590393,0.9319390058517456,1.4199564456939697,0.9319390058517456,1.4199564456939697,1.2805228233337402,1.4896732568740845,1.6465359926223755,1.663965106010437,1.210806131362915,1.3850979804992676,1.1585185527801514,1.0888017416000366,0.8099346160888672,1.1236600875854492,1.0190849304199219,0.6007843017578125,0.4264923632144928,0.6007843017578125,0.16505447030067444,0.30448800325393677,0.7576470375061035,0.5659258961677551,0.9319390058517456,1.0888017416000366,0.7576470375061035,1.0888017416000366,1.036514163017273,1.053943395614624,1.1585185527801514,1.1585185527801514,1.4199564456939697,1.5419608354568481,1.4548147916793823,1.3153812885284424,1.524531602859497,1.367668867111206,1.3850979804992676,1.4548147916793823,1.6291067600250244,1.4025272130966187,1.3153812885284424,1.663965106010437,1.4722440242767334,1.4896732568740845,1.350239634513855,1.5593899488449097,1.507102370262146,1.4025272130966187,1.6291067600250244,1.6116775274276733,1.681394338607788,1.7511111497879028,1.9602614641189575,1.7336819171905518,1.5942484140396118,1.6465359926223755,1.4896732568740845,1.663965106010437,1.4025272130966187,1.7511111497879028,1.7859694957733154,1.4373856782913208,1.6988235712051392,1.507102370262146,1.6988235712051392,1.7685402631759644,1.5768191814422607,1.4373856782913208,1.2805228233337402,1.4548147916793823,0.8970806002616882,1.4199564456939697,1.175947666168213,1.193376898765564,1.2979520559310913,1.524531602859497,1.4548147916793823,1.0888017416000366,1.4025272130966187,1.1062309741973877,1.367668867111206,1.507102370262146,1.367668867111206,1.8556863069534302,1.507102370262146,1.2979520559310913,1.367668867111206,1.4199564456939697,1.4025272130966187,1.350239634513855,0.9145098328590393,1.2282352447509766,1.5593899488449097,1.3153812885284424,1.053943395614624,1.0190849304199219,1.4025272130966187,1.3850979804992676,1.2979520559310913,1.524531602859497,0.9842265844345093,1.2630937099456787,1.0888017416000366,0.8447930216789246,1.2456644773483276,1.210806131362915,0.7053594589233398,1.3153812885284424,1.5942484140396118,1.7162526845932007,1.5593899488449097,1.367668867111206,1.2979520559310913,1.2456644773483276,1.4896732568740845,1.2805228233337402,1.4025272130966187,1.1585185527801514,1.2456644773483276,1.2805228233337402,1.4548147916793823,1.4548147916793823,0.8273638486862183,1.350239634513855,1.3850979804992676,1.4722440242767334,1.5419608354568481,1.4548147916793823,1.350239634513855,1.5419608354568481,1.332810401916504,1.0713725090026855,1.5768191814422607,1.6116775274276733,1.0016558170318604,0.9842265844345093,1.1585185527801514,1.193376898765564,1.0713725090026855,0.966797411441803,1.524531602859497,1.2456644773483276,0.9145098328590393,1.5419608354568481,1.193376898765564,1.4373856782913208,1.524531602859497,1.681394338607788,1.5419608354568481,1.175947666168213,0.966797411441803,-0.7761220335960388,-1.2118518352508545,1.6988235712051392,2.3785619735717773,1.524531602859497,2.552854061126709,1.1410893201828003,2.1868410110473633,2.5702831745147705,0.3567756116390228,-0.6366884708404541,-0.6366884708404541,-0.02666666731238365,0.8796514272689819,1.6116775274276733,1.7162526845932007,1.6291067600250244,1.4722440242767334,1.175947666168213,1.036514163017273,0.8622221946716309,1.2456644773483276,1.2805228233337402,1.4896732568740845,1.1062309741973877,1.4025272130966187,1.4373856782913208,1.5942484140396118,1.350239634513855,1.4025272130966187,1.2630937099456787,1.2282352447509766,1.332810401916504,1.4896732568740845,1.332810401916504,1.4373856782913208],[1.9951198101043701,1.9951198101043701,2.1694116592407227,1.9428322315216064,1.8731154203414917,1.5942484140396118,1.332810401916504,1.0713725090026855,0.33934640884399414,0.30448800325393677,0.5833551287651062,1.4199564456939697,0.9493681788444519,1.2456644773483276,2.0299782752990723,1.9079738855361938,1.9602614641189575,1.8556863069534302,2.1694116592407227,2.047407388687134,1.350239634513855,1.6291067600250244,1.193376898765564,0.47877994179725647,0.8447930216789246,-0.4798257052898407,0.02562091499567032,0.19991286098957062,0.7227886915206909,1.1410893201828003,1.4373856782913208,1.3850979804992676,0.8796514272689819,1.2979520559310913,1.2630937099456787,1.0713725090026855,1.2456644773483276,1.1236600875854492,1.7162526845932007,1.663965106010437,1.367668867111206,1.1062309741973877,1.350239634513855,1.4373856782913208,1.2282352447509766,1.7511111497879028,1.0016558170318604,0.7402178645133972,0.966797411441803,0.5659258961677551,0.8796514272689819,0.5136383175849915,0.6007843017578125,0.6356427073478699,0.33934640884399414,0.3742047846317291,0.966797411441803,0.8796514272689819,0.8622221946716309,1.2979520559310913,0.7925054430961609,1.1410893201828003,1.1585185527801514,1.036514163017273,1.367668867111206,1.6291067600250244,1.2979520559310913,1.1236600875854492,1.4896732568740845,1.4199564456939697,1.6116775274276733,1.5419608354568481,1.5419608354568481,1.367668867111206,1.524531602859497,1.6988235712051392,1.4722440242767334,1.4548147916793823,1.3850979804992676,1.2630937099456787,1.5419608354568481,1.6291067600250244,1.681394338607788,1.7685402631759644,1.4373856782913208,1.4896732568740845,1.367668867111206,1.7685402631759644,1.5419608354568481,1.663965106010437,1.7685402631759644,1.5768191814422607,1.7859694957733154,1.524531602859497,1.6465359926223755,1.3153812885284424,1.663965106010437,1.5419608354568481,1.6988235712051392,1.332810401916504,1.7859694957733154,1.681394338607788,1.5593899488449097,1.350239634513855,1.4373856782913208,1.1410893201828003,1.2282352447509766,1.2979520559310913,0.966797411441803,0.8796514272689819,1.1585185527801514,1.350239634513855,1.2630937099456787,1.4548147916793823,1.367668867111206,1.2456644773483276,1.2282352447509766,1.175947666168213,1.367668867111206,1.524531602859497,1.2979520559310913,1.2630937099456787,1.4722440242767334,1.1410893201828003,1.2456644773483276,1.2805228233337402,1.193376898765564,1.1410893201828003,1.3153812885284424,0.9145098328590393,1.6988235712051392,1.350239634513855,1.4896732568740845,1.6116775274276733,1.4199564456939697,1.2979520559310913,1.5768191814422607,1.4025272130966187,1.4722440242767334,1.2282352447509766,1.0888017416000366,1.2805228233337402,1.036514163017273,1.0190849304199219,1.6465359926223755,1.1585185527801514,1.7685402631759644,1.7511111497879028,1.350239634513855,1.210806131362915,1.3850979804992676,1.4373856782913208,1.350239634513855,1.210806131362915,1.4025272130966187,1.6988235712051392,1.4025272130966187,1.2805228233337402,1.210806131362915,1.5419608354568481,1.4722440242767334,1.367668867111206,1.4025272130966187,1.4548147916793823,1.3850979804992676,1.193376898765564,1.5768191814422607,1.2979520559310913,1.4199564456939697,1.2456644773483276,1.0190849304199219,1.210806131362915,1.2805228233337402,1.1410893201828003,1.0190849304199219,1.036514163017273,1.3153812885284424,0.966797411441803,1.1585185527801514,1.1585185527801514,1.4373856782913208,1.6116775274276733,1.6291067600250244,1.9079738855361938,1.6116775274276733,1.6465359926223755,1.5419608354568481,0.9842265844345093,-0.5669716596603394,-0.6366884708404541,0.33934640884399414,2.5702831745147705,2.5005664825439453,1.4896732568740845,0.8622221946716309,2.2914161682128906,0.11276688426733017,0.16505447030067444,-0.21838779747486115,0.07790849357843399,0.5484967231750488,1.1062309741973877,1.663965106010437,1.7511111497879028,1.6116775274276733,1.367668867111206,1.1062309741973877,1.2805228233337402,1.0016558170318604,0.9145098328590393,1.4722440242767334,1.367668867111206,1.2456644773483276,1.1410893201828003,1.4025272130966187,1.3153812885284424,1.4373856782913208,1.175947666168213,1.2282352447509766,1.367668867111206,1.193376898765564,1.4025272130966187,1.2979520559310913,1.1236600875854492],[1.9428322315216064,1.7162526845932007,1.9254029989242554,1.8905446529388428,1.7859694957733154,1.8033987283706665,1.6465359926223755,1.036514163017273,0.30448800325393677,0.8622221946716309,0.7750762701034546,0.6356427073478699,1.210806131362915,1.5593899488449097,1.6988235712051392,2.395991325378418,2.1868410110473633,2.465708017349243,2.0648365020751953,1.7162526845932007,1.7511111497879028,1.3153812885284424,1.4025272130966187,1.1062309741973877,1.1585185527801514,0.47877994179725647,0.4090631902217865,1.210806131362915,0.9493681788444519,1.0016558170318604,1.2282352447509766,1.2979520559310913,1.193376898765564,1.820827841758728,1.2630937099456787,1.367668867111206,1.367668867111206,1.5419608354568481,1.507102370262146,1.6291067600250244,1.4025272130966187,1.210806131362915,0.7925054430961609,1.053943395614624,0.8447930216789246,0.6879302859306335,1.1236600875854492,0.8622221946716309,0.7925054430961609,0.7576470375061035,0.49620914459228516,0.7750762701034546,1.036514163017273,0.8796514272689819,0.8970806002616882,0.7402178645133972,1.0016558170318604,1.0190849304199219,1.2805228233337402,0.8622221946716309,1.2456644773483276,1.175947666168213,1.1585185527801514,1.2979520559310913,1.663965106010437,1.2979520559310913,1.3153812885284424,1.2282352447509766,1.4373856782913208,1.6465359926223755,1.6988235712051392,1.4199564456939697,1.6291067600250244,1.5768191814422607,1.2805228233337402,1.4722440242767334,1.4722440242767334,1.681394338607788,1.5593899488449097,1.524531602859497,1.7162526845932007,1.4896732568740845,1.4373856782913208,1.4373856782913208,1.663965106010437,1.4548147916793823,1.663965106010437,1.3153812885284424,1.5593899488449097,1.7685402631759644,1.7162526845932007,1.507102370262146,1.663965106010437,1.4025272130966187,1.681394338607788,1.7336819171905518,1.7685402631759644,1.663965106010437,1.4548147916793823,1.4373856782913208,1.663965106010437,1.507102370262146,1.7336819171905518,1.6116775274276733,1.1236600875854492,1.350239634513855,1.210806131362915,0.9493681788444519,1.4896732568740845,1.175947666168213,1.6116775274276733,1.6291067600250244,1.4373856782913208,1.4199564456939697,1.367668867111206,1.3850979804992676,1.4199564456939697,1.332810401916504,0.9319390058517456,1.4896732568740845,1.524531602859497,1.2456644773483276,1.210806131362915,1.4548147916793823,1.4373856782913208,1.6116775274276733,1.350239634513855,1.4722440242767334,1.350239634513855,1.5419608354568481,1.1062309741973877,1.175947666168213,1.2979520559310913,1.350239634513855,1.524531602859497,1.193376898765564,1.4896732568740845,1.2630937099456787,0.9842265844345093,1.5419608354568481,1.2630937099456787,1.350239634513855,1.4373856782913208,1.2456644773483276,1.2282352447509766,1.4199564456939697,1.5768191814422607,1.0713725090026855,1.1410893201828003,1.1410893201828003,1.4025272130966187,1.2456644773483276,1.2456644773483276,1.367668867111206,1.1062309741973877,1.350239634513855,0.9493681788444519,1.0713725090026855,1.4896732568740845,1.0713725090026855,1.0888017416000366,1.367668867111206,1.4199564456939697,1.4896732568740845,1.5593899488449097,1.0888017416000366,1.2282352447509766,1.3850979804992676,1.175947666168213,1.2805228233337402,1.0713725090026855,1.2630937099456787,1.1236600875854492,1.350239634513855,1.1585185527801514,1.0888017416000366,1.367668867111206,1.210806131362915,1.175947666168213,1.524531602859497,1.6465359926223755,1.6116775274276733,1.663965106010437,1.7685402631759644,1.7336819171905518,1.838257074356079,0.8622221946716309,0.9493681788444519,-0.14867103099822998,-0.35782134532928467,-1.0027015209197998,0.09533768892288208,1.4722440242767334,1.2456644773483276,-0.8981263637542725,-0.340392142534256,0.07790849357843399,-0.009237472899258137,0.04305011034011841,0.49620914459228516,0.6705011129379272,1.2456644773483276,1.6291067600250244,1.7511111497879028,1.7685402631759644,1.663965106010437,1.4722440242767334,0.8273638486862183,0.8622221946716309,0.8970806002616882,1.4199564456939697,1.2805228233337402,1.4722440242767334,1.6465359926223755,1.1062309741973877,1.6291067600250244,1.2979520559310913,1.2630937099456787,1.4199564456939697,1.524531602859497,1.6116775274276733,1.5593899488449097,1.1062309741973877,1.350239634513855],[1.7162526845932007,1.820827841758728,1.7685402631759644,1.9602614641189575,1.9602614641189575,1.8556863069534302,1.6116775274276733,1.210806131362915,0.9493681788444519,0.7576470375061035,0.7576470375061035,1.332810401916504,1.175947666168213,1.332810401916504,1.524531602859497,1.2805228233337402,2.047407388687134,1.3153812885284424,1.9602614641189575,1.9254029989242554,2.395991325378418,0.7750762701034546,0.9319390058517456,1.3153812885284424,0.9319390058517456,1.0016558170318604,0.4090631902217865,0.5833551287651062,0.6007843017578125,0.7053594589233398,1.663965106010437,1.1585185527801514,1.2456644773483276,1.2630937099456787,1.4373856782913208,1.332810401916504,0.9145098328590393,1.193376898765564,1.0016558170318604,0.9319390058517456,1.2282352447509766,0.7227886915206909,1.053943395614624,0.7925054430961609,0.8622221946716309,0.5659258961677551,0.8447930216789246,0.7227886915206909,0.7227886915206909,0.18248365819454193,0.7925054430961609,0.8622221946716309,1.4025272130966187,1.0713725090026855,0.8622221946716309,1.2630937099456787,1.332810401916504,1.1236600875854492,1.053943395614624,1.193376898765564,1.1236600875854492,1.3850979804992676,1.3153812885284424,1.6116775274276733,1.0190849304199219,1.4548147916793823,1.6988235712051392,1.4548147916793823,1.7162526845932007,1.4896732568740845,1.5942484140396118,1.663965106010437,1.7859694957733154,1.6988235712051392,1.5593899488449097,1.4896732568740845,1.5942484140396118,1.4896732568740845,1.2630937099456787,1.2805228233337402,1.4722440242767334,1.6116775274276733,1.5942484140396118,1.4896732568740845,1.367668867111206,1.507102370262146,1.681394338607788,1.6465359926223755,1.507102370262146,1.4548147916793823,1.681394338607788,1.7162526845932007,1.7511111497879028,1.6465359926223755,1.4722440242767334,1.6988235712051392,1.8556863069534302,1.7685402631759644,1.3850979804992676,1.6291067600250244,1.6988235712051392,1.3153812885284424,1.4896732568740845,1.2979520559310913,1.332810401916504,0.8099346160888672,1.1236600875854492,1.1236600875854492,1.0190849304199219,1.1062309741973877,1.2282352447509766,1.3850979804992676,1.4373856782913208,1.6116775274276733,1.2456644773483276,1.0713725090026855,1.524531602859497,1.2456644773483276,1.210806131362915,1.4025272130966187,1.350239634513855,1.193376898765564,1.4548147916793823,1.4896732568740845,1.7859694957733154,1.7685402631759644,1.4025272130966187,1.1236600875854492,1.5942484140396118,1.193376898765564,1.4896732568740845,1.5942484140396118,1.3850979804992676,1.4548147916793823,1.3153812885284424,1.2456644773483276,1.4373856782913208,1.2456644773483276,1.2456644773483276,1.4548147916793823,1.175947666168213,1.1410893201828003,1.367668867111206,0.9842265844345093,1.367668867111206,1.350239634513855,1.5593899488449097,1.3850979804992676,1.6116775274276733,1.4199564456939697,1.2282352447509766,1.3850979804992676,1.367668867111206,1.507102370262146,1.193376898765564,1.5419608354568481,1.2456644773483276,1.2805228233337402,1.193376898765564,1.2979520559310913,1.350239634513855,1.3850979804992676,1.6988235712051392,1.507102370262146,1.3153812885284424,1.4373856782913208,1.507102370262146,1.2456644773483276,1.4548147916793823,1.1410893201828003,1.0016558170318604,1.2282352447509766,1.1585185527801514,0.9145098328590393,1.2979520559310913,1.5942484140396118,1.332810401916504,1.4199564456939697,1.3850979804992676,1.507102370262146,1.6988235712051392,1.7336819171905518,1.8556863069534302,1.681394338607788,1.4722440242767334,1.4896732568740845,1.1062309741973877,0.7576470375061035,-0.04409585893154144,-0.39267975091934204,0.09533768892288208,0.5136383175849915,1.6291067600250244,1.193376898765564,-0.4972549080848694,-0.6018300652503967,0.33934640884399414,-0.16610021889209747,-0.009237472899258137,0.8796514272689819,0.8273638486862183,1.2282352447509766,1.5593899488449097,1.681394338607788,1.9079738855361938,1.9602614641189575,1.2805228233337402,1.3850979804992676,1.210806131362915,0.966797411441803,1.036514163017273,1.4548147916793823,1.681394338607788,1.0713725090026855,1.7162526845932007,1.4548147916793823,1.332810401916504,1.193376898765564,1.4025272130966187,1.8033987283706665,1.3153812885284424,1.367668867111206,1.210806131362915,1.4548147916793823],[1.8556863069534302,1.838257074356079,2.047407388687134,1.820827841758728,1.8905446529388428,1.7685402631759644,1.5768191814422607,1.350239634513855,1.1236600875854492,1.0713725090026855,1.0713725090026855,0.9842265844345093,0.7402178645133972,1.663965106010437,1.7162526845932007,1.524531602859497,-0.1312418282032013,0.8622221946716309,0.9145098328590393,1.6465359926223755,1.5419608354568481,0.47877994179725647,0.9493681788444519,1.1410893201828003,0.16505447030067444,-0.1138126328587532,0.04305011034011841,0.4439215660095215,0.6182135343551636,0.8622221946716309,0.7925054430961609,0.5659258961677551,1.1236600875854492,1.175947666168213,1.507102370262146,1.0888017416000366,1.036514163017273,1.0190849304199219,0.7576470375061035,0.8273638486862183,0.9319390058517456,0.49620914459228516,0.6705011129379272,0.7750762701034546,0.47877994179725647,0.8970806002616882,1.053943395614624,1.0888017416000366,0.32191720604896545,1.367668867111206,1.210806131362915,1.2456644773483276,1.1236600875854492,1.350239634513855,1.332810401916504,1.2630937099456787,1.2805228233337402,1.193376898765564,1.053943395614624,1.350239634513855,1.3153812885284424,1.4199564456939697,1.210806131362915,1.4722440242767334,1.524531602859497,1.524531602859497,1.5942484140396118,1.4373856782913208,1.4199564456939697,1.7162526845932007,1.6465359926223755,1.3850979804992676,1.7162526845932007,1.3850979804992676,1.7162526845932007,1.2979520559310913,1.332810401916504,1.5593899488449097,1.6988235712051392,1.7511111497879028,1.3153812885284424,1.6988235712051392,1.5593899488449097,1.1410893201828003,1.367668867111206,1.8033987283706665,1.524531602859497,1.4896732568740845,1.7336819171905518,1.3850979804992676,1.663965106010437,1.5942484140396118,1.5942484140396118,1.5419608354568481,1.5593899488449097,1.5419608354568481,1.4199564456939697,1.5419608354568481,1.5419608354568481,1.4722440242767334,1.6116775274276733,1.5942484140396118,1.663965106010437,1.1062309741973877,1.0016558170318604,0.8970806002616882,1.2805228233337402,0.966797411441803,1.350239634513855,1.053943395614624,1.4896732568740845,1.350239634513855,1.5768191814422607,1.367668867111206,1.193376898765564,1.5593899488449097,1.4722440242767334,1.2979520559310913,1.5593899488449097,1.507102370262146,1.3153812885284424,1.2805228233337402,1.3850979804992676,1.681394338607788,1.5593899488449097,1.5942484140396118,1.350239634513855,1.1062309741973877,1.175947666168213,1.193376898765564,1.2456644773483276,1.193376898765564,1.332810401916504,1.0016558170318604,0.9145098328590393,1.367668867111206,1.350239634513855,1.210806131362915,1.2979520559310913,1.2805228233337402,1.332810401916504,1.2282352447509766,1.6988235712051392,1.681394338607788,1.4025272130966187,1.3153812885284424,1.5419608354568481,1.524531602859497,0.966797411441803,1.5419608354568481,1.4722440242767334,1.2282352447509766,1.4896732568740845,1.3153812885284424,1.2456644773483276,1.4722440242767334,1.2805228233337402,1.2805228233337402,1.2805228233337402,1.7685402631759644,1.210806131362915,1.036514163017273,1.175947666168213,1.2630937099456787,1.507102370262146,1.5593899488449097,1.524531602859497,1.4722440242767334,1.0888017416000366,1.053943395614624,1.0190849304199219,1.4548147916793823,1.053943395614624,1.210806131362915,1.5419608354568481,0.9842265844345093,1.524531602859497,1.6291067600250244,1.5593899488449097,1.5419608354568481,1.524531602859497,1.6988235712051392,1.6291067600250244,1.5593899488449097,1.4896732568740845,1.0016558170318604,1.210806131362915,0.18248365819454193,0.09533768892288208,-0.18352940678596497,-0.04409585893154144,1.2282352447509766,1.681394338607788,1.210806131362915,-0.1312418282032013,0.04305011034011841,0.14762526750564575,0.4439215660095215,0.7750762701034546,0.13019607961177826,0.8273638486862183,1.2456644773483276,1.6988235712051392,1.5593899488449097,1.681394338607788,1.7511111497879028,1.5768191814422607,1.350239634513855,1.2979520559310913,0.6007843017578125,0.9842265844345093,0.9842265844345093,1.036514163017273,1.1585185527801514,1.820827841758728,1.4025272130966187,1.5768191814422607,1.0888017416000366,1.2282352447509766,1.4722440242767334,1.5768191814422607,1.053943395614624,1.3850979804992676,1.367668867111206],[1.7336819171905518,1.681394338607788,1.977690577507019,1.7685402631759644,1.8033987283706665,1.9254029989242554,2.0299782752990723,1.4722440242767334,1.0888017416000366,1.036514163017273,0.5310675501823425,1.2630937099456787,1.2630937099456787,1.4025272130966187,1.4896732568740845,1.5593899488449097,1.4548147916793823,1.6988235712051392,1.5942484140396118,1.8731154203414917,1.681394338607788,1.175947666168213,1.5593899488449097,1.2630937099456787,0.008191721513867378,-0.5844008922576904,0.09533768892288208,-0.2532461881637573,0.0604793019592762,0.5310675501823425,1.2979520559310913,0.6879302859306335,1.0888017416000366,0.7576470375061035,0.7750762701034546,0.6879302859306335,0.8099346160888672,0.8447930216789246,1.0016558170318604,0.8622221946716309,0.8622221946716309,1.0713725090026855,1.053943395614624,1.175947666168213,1.2630937099456787,0.7925054430961609,1.0888017416000366,1.2630937099456787,1.2805228233337402,1.193376898765564,1.0713725090026855,1.053943395614624,1.2979520559310913,0.966797411441803,1.1236600875854492,1.1236600875854492,1.3850979804992676,1.8033987283706665,1.7162526845932007,1.6465359926223755,1.2282352447509766,1.6116775274276733,1.5593899488449097,1.5942484140396118,1.6465359926223755,1.175947666168213,1.4722440242767334,1.4722440242767334,1.6291067600250244,1.524531602859497,1.663965106010437,1.4722440242767334,1.6291067600250244,1.7336819171905518,1.6291067600250244,1.524531602859497,1.4373856782913208,1.6465359926223755,1.5942484140396118,1.820827841758728,1.4025272130966187,1.6116775274276733,1.5942484140396118,1.4373856782913208,1.524531602859497,1.507102370262146,1.4199564456939697,1.6291067600250244,1.7162526845932007,1.7336819171905518,1.8033987283706665,1.5942484140396118,1.7511111497879028,1.838257074356079,1.6988235712051392,1.5419608354568481,1.6988235712051392,1.6988235712051392,1.5942484140396118,1.4722440242767334,1.6988235712051392,1.332810401916504,1.1236600875854492,1.332810401916504,0.9145098328590393,1.0713725090026855,0.9319390058517456,1.4025272130966187,1.5593899488449097,1.4199564456939697,1.4025272130966187,1.8033987283706665,1.507102370262146,1.4025272130966187,1.1236600875854492,1.3850979804992676,1.6291067600250244,1.524531602859497,1.1585185527801514,1.2630937099456787,1.367668867111206,1.6465359926223755,1.175947666168213,1.6465359926223755,1.3850979804992676,1.5768191814422607,1.4199564456939697,1.193376898765564,1.2979520559310913,1.4722440242767334,1.5419608354568481,1.3850979804992676,1.7685402631759644,1.350239634513855,1.0713725090026855,1.4373856782913208,1.175947666168213,1.053943395614624,1.193376898765564,1.4025272130966187,1.367668867111206,1.4199564456939697,1.6988235712051392,1.4199564456939697,1.5768191814422607,1.350239634513855,1.2456644773483276,1.332810401916504,1.4896732568740845,1.4548147916793823,1.663965106010437,1.5419608354568481,1.332810401916504,1.7162526845932007,1.175947666168213,1.367668867111206,1.4722440242767334,1.5768191814422607,1.210806131362915,1.367668867111206,1.2805228233337402,1.1585185527801514,1.4548147916793823,1.2979520559310913,1.332810401916504,1.3850979804992676,1.4199564456939697,1.3850979804992676,1.2805228233337402,1.5593899488449097,1.2979520559310913,1.5419608354568481,1.2630937099456787,1.350239634513855,1.2630937099456787,1.2456644773483276,1.350239634513855,1.507102370262146,1.9079738855361938,1.7511111497879028,1.838257074356079,1.7511111497879028,1.7162526845932007,1.2805228233337402,0.9493681788444519,0.8447930216789246,0.9145098328590393,0.02562091499567032,-0.2532461881637573,-0.270675390958786,0.30448800325393677,0.8796514272689819,1.3850979804992676,1.350239634513855,-0.09638344496488571,-0.07895424962043762,0.32191720604896545,0.02562091499567032,0.5659258961677551,0.28705883026123047,0.5310675501823425,1.0888017416000366,1.8905446529388428,1.4199564456939697,1.6291067600250244,1.838257074356079,1.7336819171905518,1.4199564456939697,1.210806131362915,0.6356427073478699,0.7402178645133972,0.6356427073478699,1.0016558170318604,1.4199564456939697,1.2979520559310913,1.1410893201828003,1.524531602859497,1.193376898765564,1.5768191814422607,1.6988235712051392,1.7336819171905518,1.4199564456939697,1.6116775274276733,1.3850979804992676],[1.8556863069534302,1.681394338607788,1.838257074356079,1.838257074356079,1.7685402631759644,1.4199564456939697,1.6291067600250244,1.367668867111206,1.5419608354568481,1.507102370262146,1.4722440242767334,1.977690577507019,1.8731154203414917,1.838257074356079,1.4722440242767334,1.4199564456939697,1.8033987283706665,2.0648365020751953,1.9254029989242554,1.8731154203414917,1.5419608354568481,1.1236600875854492,0.9319390058517456,1.3153812885284424,-0.06152505427598953,-0.3229629695415497,-0.14867103099822998,0.2173420488834381,0.5659258961677551,0.28705883026123047,0.008191721513867378,0.7053594589233398,0.7750762701034546,0.8622221946716309,0.4264923632144928,1.1236600875854492,1.053943395614624,0.7402178645133972,0.9319390058517456,1.1062309741973877,0.7053594589233398,0.8970806002616882,1.0888017416000366,1.367668867111206,1.2282352447509766,1.0016558170318604,1.524531602859497,1.4548147916793823,1.175947666168213,1.1410893201828003,1.350239634513855,1.5942484140396118,1.4199564456939697,1.2630937099456787,1.2630937099456787,1.1236600875854492,1.507102370262146,1.5419608354568481,1.5942484140396118,1.6465359926223755,1.5942484140396118,1.5593899488449097,1.507102370262146,1.6116775274276733,1.4896732568740845,1.5942484140396118,1.7859694957733154,1.350239634513855,1.5593899488449097,1.524531602859497,1.4548147916793823,1.4896732568740845,1.7685402631759644,1.8556863069534302,1.4722440242767334,1.4722440242767334,1.4722440242767334,1.5419608354568481,1.7511111497879028,1.6116775274276733,1.367668867111206,1.3850979804992676,1.663965106010437,1.210806131362915,1.4373856782913208,1.210806131362915,1.6988235712051392,1.6465359926223755,1.350239634513855,1.7511111497879028,1.7511111497879028,1.6291067600250244,1.6116775274276733,1.4722440242767334,1.8033987283706665,1.6465359926223755,1.7511111497879028,1.6465359926223755,1.7511111497879028,1.2630937099456787,1.3153812885284424,1.524531602859497,1.036514163017273,1.6116775274276733,1.210806131362915,0.966797411441803,1.0190849304199219,1.036514163017273,1.193376898765564,1.053943395614624,1.2805228233337402,1.3850979804992676,1.3850979804992676,1.5593899488449097,1.6116775274276733,1.036514163017273,1.2979520559310913,1.2456644773483276,1.7336819171905518,1.4548147916793823,1.6116775274276733,1.2456644773483276,1.2805228233337402,1.6465359926223755,1.4199564456939697,1.5419608354568481,1.524531602859497,1.5419608354568481,1.3153812885284424,1.193376898765564,1.367668867111206,1.2282352447509766,1.4373856782913208,1.350239634513855,1.175947666168213,1.1236600875854492,1.2979520559310913,0.8970806002616882,1.5419608354568481,0.9842265844345093,1.2282352447509766,1.1410893201828003,1.524531602859497,1.367668867111206,1.4722440242767334,1.4373856782913208,1.367668867111206,1.4722440242767334,1.332810401916504,1.4548147916793823,1.3850979804992676,1.3850979804992676,1.4896732568740845,1.2456644773483276,1.175947666168213,1.3850979804992676,1.2282352447509766,1.2805228233337402,1.367668867111206,1.1236600875854492,1.5942484140396118,1.4199564456939697,1.5942484140396118,1.6291067600250244,1.2456644773483276,1.1236600875854492,1.6116775274276733,1.1062309741973877,1.1062309741973877,1.350239634513855,1.0713725090026855,1.332810401916504,1.4548147916793823,1.4548147916793823,1.332810401916504,1.4896732568740845,1.524531602859497,1.6988235712051392,1.4722440242767334,1.820827841758728,1.7685402631759644,1.6116775274276733,1.5419608354568481,1.663965106010437,1.332810401916504,0.8273638486862183,1.1236600875854492,0.09533768892288208,-0.1312418282032013,0.14762526750564575,0.7053594589233398,1.4722440242767334,1.4199564456939697,1.7511111497879028,-0.20095860958099365,-0.21838779747486115,0.16505447030067444,0.9493681788444519,0.5310675501823425,0.4264923632144928,-0.09638344496488571,0.7227886915206909,1.193376898765564,1.6291067600250244,1.507102370262146,1.9079738855361938,1.9079738855361938,1.8905446529388428,1.2282352447509766,1.524531602859497,0.9842265844345093,0.7750762701034546,0.8447930216789246,1.0190849304199219,1.507102370262146,1.4896732568740845,1.1236600875854492,1.5593899488449097,1.4199564456939697,1.3153812885284424,1.5768191814422607,1.7162526845932007,1.6465359926223755,1.8033987283706665],[1.9602614641189575,1.5593899488449097,1.7685402631759644,1.5768191814422607,1.9428322315216064,1.7511111497879028,1.8556863069534302,1.7511111497879028,1.4373856782913208,1.6465359926223755,1.7162526845932007,1.6988235712051392,1.8905446529388428,2.0125489234924316,1.6291067600250244,1.9951198101043701,2.27398681640625,0.5659258961677551,1.4199564456939697,1.0190849304199219,1.350239634513855,0.9493681788444519,1.0016558170318604,0.5310675501823425,-0.5669716596603394,-0.23581700026988983,-0.2881045639514923,0.19991286098957062,0.30448800325393677,0.8447930216789246,1.1062309741973877,0.5310675501823425,0.8970806002616882,0.5833551287651062,0.7053594589233398,0.46135076880455017,0.7402178645133972,0.8796514272689819,0.6530718803405762,0.32191720604896545,1.036514163017273,0.8622221946716309,0.8796514272689819,1.4373856782913208,1.5768191814422607,1.1062309741973877,1.6291067600250244,1.4722440242767334,1.5768191814422607,1.7162526845932007,1.4199564456939697,1.5942484140396118,1.3850979804992676,1.332810401916504,1.193376898765564,1.4373856782913208,1.4896732568740845,1.2979520559310913,1.350239634513855,1.663965106010437,1.5942484140396118,1.332810401916504,1.7162526845932007,1.1585185527801514,1.507102370262146,1.7511111497879028,1.4896732568740845,1.5768191814422607,1.350239634513855,1.6116775274276733,1.7685402631759644,1.6465359926223755,1.8033987283706665,1.8731154203414917,1.524531602859497,1.5593899488449097,1.4199564456939697,1.5593899488449097,1.6988235712051392,1.507102370262146,1.4548147916793823,1.5419608354568481,1.5419608354568481,1.4896732568740845,1.2979520559310913,1.5593899488449097,1.3153812885284424,1.7859694957733154,1.7336819171905518,1.9602614641189575,1.5419608354568481,1.820827841758728,1.820827841758728,1.820827841758728,1.681394338607788,1.8033987283706665,1.7685402631759644,1.6291067600250244,1.524531602859497,1.175947666168213,1.2630937099456787,1.6465359926223755,1.681394338607788,1.332810401916504,1.0713725090026855,1.193376898765564,1.2456644773483276,1.1585185527801514,0.8447930216789246,1.4199564456939697,1.2630937099456787,1.524531602859497,1.4896732568740845,1.3850979804992676,1.350239634513855,1.7859694957733154,1.7162526845932007,1.681394338607788,1.367668867111206,1.350239634513855,1.2456644773483276,1.4722440242767334,1.4722440242767334,1.4025272130966187,1.5942484140396118,1.681394338607788,1.5942484140396118,1.6291067600250244,1.367668867111206,1.4025272130966187,1.3153812885284424,1.5942484140396118,1.367668867111206,1.175947666168213,1.1410893201828003,0.6879302859306335,0.8970806002616882,1.210806131362915,1.350239634513855,1.4548147916793823,1.2456644773483276,1.6116775274276733,1.2456644773483276,1.2282352447509766,1.8556863069534302,1.5419608354568481,1.4373856782913208,1.4722440242767334,1.4548147916793823,1.1236600875854492,1.175947666168213,1.7162526845932007,1.175947666168213,1.3153812885284424,1.1585185527801514,1.0713725090026855,1.2630937099456787,1.350239634513855,1.4722440242767334,1.4722440242767334,1.6116775274276733,1.332810401916504,1.367668867111206,1.3850979804992676,1.350239634513855,1.5942484140396118,1.507102370262146,1.3153812885284424,1.1236600875854492,1.175947666168213,1.1585185527801514,1.4025272130966187,1.5593899488449097,1.2979520559310913,1.193376898765564,1.820827841758728,1.6465359926223755,1.7859694957733154,1.4548147916793823,1.7162526845932007,1.663965106010437,1.5942484140396118,1.681394338607788,1.367668867111206,1.210806131362915,0.6705011129379272,0.6356427073478699,0.33934640884399414,0.04305011034011841,-0.21838779747486115,0.9493681788444519,1.507102370262146,1.4896732568740845,1.2979520559310913,0.2347712367773056,0.33934640884399414,0.2347712367773056,0.3916339874267578,1.036514163017273,0.6879302859306335,-0.2881045639514923,0.8622221946716309,1.210806131362915,1.681394338607788,1.5768191814422607,1.7162526845932007,1.8556863069534302,1.6291067600250244,2.1345534324645996,1.7685402631759644,1.0713725090026855,1.053943395614624,0.7227886915206909,0.8099346160888672,0.6879302859306335,1.4025272130966187,1.332810401916504,1.6465359926223755,1.1410893201828003,1.5768191814422607,1.524531602859497,1.332810401916504,1.3850979804992676,1.2979520559310913],[1.820827841758728,1.7511111497879028,2.047407388687134,1.8556863069534302,1.7336819171905518,1.8731154203414917,1.820827841758728,1.4548147916793823,1.6116775274276733,1.524531602859497,1.6291067600250244,1.367668867111206,2.151982545852661,1.9428322315216064,1.524531602859497,1.367668867111206,1.2282352447509766,-0.09638344496488571,0.2347712367773056,0.4264923632144928,0.7925054430961609,0.5833551287651062,0.6705011129379272,0.11276688426733017,-0.5495424866676331,-0.39267975091934204,-0.14867103099822998,-0.04409585893154144,0.2696296274662018,0.2347712367773056,0.6530718803405762,0.6530718803405762,0.5833551287651062,0.7053594589233398,0.4264923632144928,0.9145098328590393,0.9319390058517456,1.0713725090026855,1.0888017416000366,1.053943395614624,1.0190849304199219,1.0713725090026855,1.053943395614624,1.0713725090026855,1.4548147916793823,1.175947666168213,1.4722440242767334,1.1585185527801514,1.6116775274276733,1.4548147916793823,1.5593899488449097,1.3153812885284424,1.4896732568740845,1.6291067600250244,1.6116775274276733,1.6291067600250244,1.6988235712051392,1.5768191814422607,1.6116775274276733,1.7511111497879028,1.6988235712051392,1.663965106010437,1.4025272130966187,1.3153812885284424,1.507102370262146,1.5593899488449097,1.663965106010437,1.524531602859497,1.4548147916793823,1.6116775274276733,1.7511111497879028,1.7336819171905518,1.9428322315216064,1.7859694957733154,1.9428322315216064,1.4548147916793823,1.7859694957733154,1.5419608354568481,1.2805228233337402,1.4548147916793823,1.6116775274276733,1.3850979804992676,1.6465359926223755,1.5419608354568481,1.6291067600250244,1.4373856782913208,1.6291067600250244,1.3850979804992676,1.7511111497879028,1.820827841758728,2.0125489234924316,1.663965106010437,1.7859694957733154,1.6116775274276733,1.5942484140396118,1.5768191814422607,1.5593899488449097,1.4896732568740845,1.3153812885284424,1.1410893201828003,1.3850979804992676,1.5419608354568481,1.6116775274276733,1.367668867111206,1.0888017416000366,1.193376898765564,1.1585185527801514,1.193376898765564,1.2630937099456787,1.2979520559310913,1.2979520559310913,1.0888017416000366,1.2805228233337402,1.663965106010437,1.3850979804992676,1.2630937099456787,1.7511111497879028,1.663965106010437,1.6988235712051392,1.524531602859497,1.3850979804992676,1.4025272130966187,1.507102370262146,1.2979520559310913,1.524531602859497,1.507102370262146,1.7162526845932007,1.3850979804992676,1.4373856782913208,0.9145098328590393,1.210806131362915,1.210806131362915,1.6291067600250244,1.0190849304199219,1.350239634513855,1.524531602859497,1.2979520559310913,0.9842265844345093,1.1062309741973877,1.0713725090026855,1.053943395614624,1.4025272130966187,1.6116775274276733,1.4199564456939697,1.4373856782913208,1.6116775274276733,1.3850979804992676,1.2282352447509766,1.507102370262146,1.1585185527801514,1.0713725090026855,1.4896732568740845,1.2979520559310913,0.9145098328590393,1.2805228233337402,1.2630937099456787,1.6988235712051392,1.507102370262146,1.4722440242767334,1.3153812885284424,1.3850979804992676,1.7336819171905518,1.036514163017273,1.4548147916793823,1.4896732568740845,1.5593899488449097,1.5942484140396118,1.1062309741973877,1.2456644773483276,1.524531602859497,1.1410893201828003,1.524531602859497,1.6465359926223755,1.663965106010437,1.507102370262146,1.507102370262146,1.7336819171905518,1.6988235712051392,1.9079738855361938,1.8033987283706665,1.332810401916504,1.8731154203414917,1.367668867111206,1.332810401916504,0.9842265844345093,1.175947666168213,0.47877994179725647,-0.1138126328587532,0.008191721513867378,0.02562091499567032,1.1236600875854492,1.2630937099456787,1.6465359926223755,1.2805228233337402,0.47877994179725647,-0.06152505427598953,0.14762526750564575,0.5484967231750488,0.6356427073478699,0.8796514272689819,0.6182135343551636,0.0604793019592762,0.8447930216789246,1.663965106010437,1.9079738855361938,1.5768191814422607,1.838257074356079,1.7336819171905518,1.5942484140396118,1.6291067600250244,1.2456644773483276,0.966797411441803,0.5310675501823425,0.966797411441803,1.2979520559310913,1.2282352447509766,1.3850979804992676,1.4896732568740845,1.5942484140396118,1.507102370262146,1.332810401916504,1.350239634513855,1.1410893201828003,1.7162526845932007],[1.977690577507019,1.9428322315216064,1.6465359926223755,1.6465359926223755,1.9951198101043701,1.9428322315216064,1.7859694957733154,1.5942484140396118,1.6291067600250244,1.5768191814422607,1.4373856782913208,1.5768191814422607,1.7685402631759644,2.151982545852661,1.5768191814422607,1.1410893201828003,0.9493681788444519,0.6007843017578125,0.7750762701034546,0.0604793019592762,0.18248365819454193,1.0190849304199219,1.053943395614624,-0.5844008922576904,-0.6889760494232178,-0.14867103099822998,-0.04409585893154144,-0.07895424962043762,0.4439215660095215,0.7750762701034546,0.49620914459228516,0.5136383175849915,0.8796514272689819,0.4439215660095215,0.5484967231750488,0.6705011129379272,0.5484967231750488,0.6879302859306335,1.0190849304199219,1.0190849304199219,1.1062309741973877,1.193376898765564,1.036514163017273,1.4199564456939697,1.5942484140396118,1.681394338607788,1.210806131362915,1.4373856782913208,1.7162526845932007,1.6465359926223755,1.6988235712051392,1.7162526845932007,1.3850979804992676,1.4896732568740845,1.5593899488449097,1.5419608354568481,1.5419608354568481,1.6465359926223755,1.6291067600250244,1.5942484140396118,1.4548147916793823,1.681394338607788,1.7162526845932007,1.507102370262146,1.4373856782913208,1.4199564456939697,1.6116775274276733,1.7511111497879028,1.5942484140396118,1.6465359926223755,1.4548147916793823,1.6465359926223755,1.524531602859497,1.524531602859497,1.7162526845932007,1.6291067600250244,1.7511111497879028,1.663965106010437,1.507102370262146,1.663965106010437,1.7859694957733154,1.2630937099456787,1.4373856782913208,1.6291067600250244,1.2630937099456787,1.6116775274276733,1.681394338607788,1.5593899488449097,1.663965106010437,1.7511111497879028,1.4896732568740845,1.6116775274276733,1.9079738855361938,1.4373856782913208,1.5593899488449097,1.6988235712051392,1.507102370262146,1.053943395614624,1.4373856782913208,1.2979520559310913,1.332810401916504,1.6291067600250244,1.6465359926223755,1.2282352447509766,1.4722440242767334,1.2805228233337402,1.175947666168213,1.350239634513855,1.3850979804992676,1.6291067600250244,1.663965106010437,1.4548147916793823,1.350239634513855,1.5768191814422607,1.350239634513855,1.350239634513855,1.2630937099456787,1.4548147916793823,1.4199564456939697,1.507102370262146,1.4025272130966187,1.6988235712051392,1.4722440242767334,1.663965106010437,1.6988235712051392,1.5419608354568481,1.507102370262146,1.2979520559310913,0.9493681788444519,1.350239634513855,1.2456644773483276,1.1585185527801514,1.4025272130966187,0.9842265844345093,1.0016558170318604,1.350239634513855,1.4548147916793823,1.3153812885284424,1.0888017416000366,1.4896732568740845,1.7162526845932007,1.6291067600250244,1.5593899488449097,1.4373856782913208,1.6116775274276733,1.4199564456939697,1.193376898765564,1.4548147916793823,1.4373856782913208,1.507102370262146,1.4722440242767334,1.2805228233337402,1.2456644773483276,1.4548147916793823,1.4199564456939697,1.2979520559310913,1.6988235712051392,1.524531602859497,1.4025272130966187,1.2805228233337402,1.332810401916504,1.332810401916504,1.175947666168213,0.9319390058517456,1.367668867111206,1.1585185527801514,0.8970806002616882,1.175947666168213,1.210806131362915,1.2282352447509766,1.5942484140396118,1.367668867111206,1.3850979804992676,1.4025272130966187,1.7511111497879028,1.524531602859497,1.6116775274276733,1.6291067600250244,1.5942484140396118,1.7859694957733154,1.5768191814422607,1.4548147916793823,1.5593899488449097,1.036514163017273,0.8099346160888672,1.0016558170318604,0.5484967231750488,0.09533768892288208,-0.270675390958786,0.6530718803405762,1.507102370262146,1.6291067600250244,1.3153812885284424,1.4548147916793823,0.9493681788444519,0.30448800325393677,-0.18352940678596497,1.053943395614624,1.053943395614624,0.9145098328590393,0.6705011129379272,0.4090631902217865,1.210806131362915,1.4548147916793823,1.6465359926223755,1.6988235712051392,1.7162526845932007,1.820827841758728,1.838257074356079,1.4896732568740845,1.2979520559310913,0.966797411441803,0.8796514272689819,0.4439215660095215,0.9842265844345093,0.6530718803405762,1.3850979804992676,0.966797411441803,1.681394338607788,1.2805228233337402,1.5942484140396118,1.2630937099456787,1.5419608354568481,1.4548147916793823],[1.8556863069534302,1.7336819171905518,1.524531602859497,1.6465359926223755,1.7162526845932007,1.7511111497879028,1.820827841758728,1.9951198101043701,1.3153812885284424,1.524531602859497,1.5942484140396118,1.5942484140396118,1.9079738855361938,1.9254029989242554,1.524531602859497,1.507102370262146,1.8033987283706665,1.193376898765564,0.19991286098957062,-1.0375598669052124,-0.06152505427598953,0.6356427073478699,0.6879302859306335,-0.2881045639514923,-0.09638344496488571,-0.09638344496488571,0.02562091499567032,-0.1138126328587532,0.4264923632144928,0.46135076880455017,0.6705011129379272,0.5310675501823425,0.4439215660095215,0.6356427073478699,0.8970806002616882,0.8447930216789246,1.053943395614624,0.8970806002616882,1.1410893201828003,1.1062309741973877,0.9145098328590393,1.2979520559310913,0.966797411441803,1.193376898765564,1.5419608354568481,1.681394338607788,1.2979520559310913,1.5593899488449097,1.4373856782913208,1.4373856782913208,1.8905446529388428,1.8033987283706665,1.681394338607788,1.4373856782913208,1.4896732568740845,1.7859694957733154,1.4722440242767334,1.5419608354568481,1.524531602859497,1.6116775274276733,1.5942484140396118,1.6465359926223755,1.367668867111206,1.507102370262146,1.6116775274276733,1.8731154203414917,1.663965106010437,1.4025272130966187,1.4199564456939697,1.7162526845932007,1.5942484140396118,1.4373856782913208,1.4548147916793823,1.4025272130966187,1.7336819171905518,1.7162526845932007,1.6988235712051392,1.7162526845932007,1.4025272130966187,1.4548147916793823,1.6291067600250244,1.6988235712051392,1.6465359926223755,1.507102370262146,1.7162526845932007,1.6465359926223755,1.507102370262146,1.8033987283706665,1.8905446529388428,1.7511111497879028,1.8905446529388428,1.9254029989242554,1.5942484140396118,1.350239634513855,1.2282352447509766,1.036514163017273,1.1062309741973877,1.4896732568740845,1.4025272130966187,1.5593899488449097,1.820827841758728,1.5593899488449097,1.6116775274276733,1.507102370262146,1.193376898765564,1.0888017416000366,1.1062309741973877,1.193376898765564,1.3153812885284424,1.036514163017273,1.2282352447509766,1.5593899488449097,1.3850979804992676,1.6116775274276733,1.2630937099456787,1.2979520559310913,1.4548147916793823,1.350239634513855,1.6116775274276733,1.6465359926223755,1.4199564456939697,1.367668867111206,1.7336819171905518,1.4025272130966187,1.6291067600250244,1.6465359926223755,1.4373856782913208,1.1585185527801514,1.3153812885284424,1.5419608354568481,1.1062309741973877,1.053943395614624,1.0888017416000366,1.1410893201828003,1.524531602859497,1.1236600875854492,1.5419608354568481,1.5419608354568481,1.3850979804992676,1.507102370262146,1.3850979804992676,1.367668867111206,1.2979520559310913,1.4548147916793823,1.4199564456939697,1.5593899488449097,1.7685402631759644,1.5419608354568481,1.4373856782913208,1.4199564456939697,1.6465359926223755,1.4199564456939697,1.210806131362915,1.5768191814422607,1.1062309741973877,1.5419608354568481,1.1062309741973877,1.4896732568740845,1.4025272130966187,1.4373856782913208,1.5419608354568481,1.175947666168213,1.2282352447509766,1.332810401916504,1.2282352447509766,1.175947666168213,1.507102370262146,1.1062309741973877,1.1410893201828003,1.053943395614624,1.332810401916504,1.681394338607788,1.4199564456939697,1.9079738855361938,1.524531602859497,1.7511111497879028,1.8731154203414917,1.7162526845932007,1.5419608354568481,1.6465359926223755,1.507102370262146,1.1236600875854492,1.332810401916504,1.1062309741973877,0.6007843017578125,0.5659258961677551,0.5659258961677551,-0.23581700026988983,0.16505447030067444,0.7053594589233398,1.4199564456939697,1.7511111497879028,1.2630937099456787,0.9842265844345093,0.7576470375061035,0.4264923632144928,1.0190849304199219,0.8796514272689819,1.1585185527801514,0.9842265844345093,0.8099346160888672,-0.3229629695415497,0.5659258961677551,1.332810401916504,1.5942484140396118,1.681394338607788,1.838257074356079,1.7336819171905518,1.663965106010437,1.4373856782913208,1.6116775274276733,1.350239634513855,0.8796514272689819,0.7576470375061035,0.8796514272689819,1.053943395614624,1.053943395614624,1.367668867111206,1.2805228233337402,1.1062309741973877,1.4199564456939697,1.4722440242767334,1.6291067600250244,1.3153812885284424],[1.977690577507019,1.524531602859497,1.681394338607788,1.6988235712051392,1.838257074356079,1.4199564456939697,1.7162526845932007,1.8731154203414917,1.663965106010437,1.6116775274276733,1.6291067600250244,1.5419608354568481,1.5593899488449097,2.2914161682128906,2.1345534324645996,1.8556863069534302,2.047407388687134,1.3850979804992676,0.6356427073478699,-0.06152505427598953,0.0604793019592762,0.8970806002616882,1.1410893201828003,-0.16610021889209747,-0.4798257052898407,-0.1312418282032013,-0.04409585893154144,0.32191720604896545,0.6530718803405762,0.2696296274662018,0.5310675501823425,0.8099346160888672,0.3916339874267578,0.8622221946716309,0.9145098328590393,0.3567756116390228,1.0190849304199219,1.0016558170318604,0.8099346160888672,1.3153812885284424,0.8447930216789246,1.367668867111206,1.2805228233337402,1.507102370262146,1.4896732568740845,1.681394338607788,1.3153812885284424,1.820827841758728,1.5942484140396118,1.8731154203414917,1.367668867111206,1.524531602859497,1.7162526845932007,1.6988235712051392,1.6116775274276733,1.681394338607788,1.7162526845932007,1.7859694957733154,1.681394338607788,1.4548147916793823,1.7162526845932007,1.5768191814422607,1.5419608354568481,1.1236600875854492,1.7336819171905518,1.8556863069534302,1.7511111497879028,1.5419608354568481,1.7859694957733154,1.681394338607788,1.524531602859497,1.6988235712051392,1.524531602859497,1.4722440242767334,1.367668867111206,1.4548147916793823,1.681394338607788,1.820827841758728,1.367668867111206,1.2805228233337402,1.663965106010437,1.524531602859497,1.6116775274276733,1.3850979804992676,1.0190849304199219,1.507102370262146,1.5942484140396118,1.5593899488449097,1.5942484140396118,1.5768191814422607,1.681394338607788,1.6291067600250244,1.7162526845932007,1.350239634513855,1.0190849304199219,1.350239634513855,1.2630937099456787,0.7925054430961609,1.4373856782913208,1.5942484140396118,1.9428322315216064,1.367668867111206,1.7859694957733154,1.524531602859497,1.2979520559310913,1.350239634513855,1.2456644773483276,1.350239634513855,1.2282352447509766,1.5593899488449097,1.3153812885284424,1.7162526845932007,1.7162526845932007,1.5593899488449097,1.4373856782913208,1.681394338607788,1.2979520559310913,1.524531602859497,1.524531602859497,1.4722440242767334,1.5419608354568481,1.4722440242767334,1.4025272130966187,1.2979520559310913,1.4373856782913208,1.6291067600250244,1.6465359926223755,1.4199564456939697,1.4722440242767334,1.507102370262146,1.210806131362915,1.6116775274276733,1.053943395614624,1.1236600875854492,1.0713725090026855,1.2456644773483276,1.193376898765564,1.1236600875854492,1.2805228233337402,1.2456644773483276,1.3153812885284424,1.2805228233337402,1.332810401916504,1.350239634513855,1.367668867111206,1.350239634513855,1.5768191814422607,1.4025272130966187,1.4896732568740845,1.2282352447509766,1.4199564456939697,1.5419608354568481,1.3153812885284424,0.966797411441803,1.1410893201828003,1.1062309741973877,1.175947666168213,1.5942484140396118,1.4896732568740845,1.332810401916504,1.4199564456939697,1.2805228233337402,1.524531602859497,1.1585185527801514,1.3153812885284424,1.507102370262146,1.3153812885284424,1.2805228233337402,1.193376898765564,1.4896732568740845,1.367668867111206,1.524531602859497,1.5768191814422607,1.7511111497879028,1.663965106010437,1.7162526845932007,1.681394338607788,1.5942484140396118,1.7336819171905518,1.4373856782913208,1.5419608354568481,1.4896732568740845,0.8273638486862183,0.8970806002616882,0.8970806002616882,0.7227886915206909,0.3567756116390228,-0.4798257052898407,0.16505447030067444,0.8273638486862183,1.5768191814422607,1.663965106010437,1.4199564456939697,1.2805228233337402,0.8273638486862183,0.13019607961177826,0.5833551287651062,0.49620914459228516,1.0888017416000366,0.6530718803405762,0.8273638486862183,-0.09638344496488571,0.18248365819454193,0.7227886915206909,1.2456644773483276,1.9254029989242554,1.6988235712051392,1.9602614641189575,2.0125489234924316,1.9079738855361938,1.6988235712051392,1.4373856782913208,0.8970806002616882,1.0713725090026855,0.5833551287651062,0.8273638486862183,1.193376898765564,1.2805228233337402,1.3153812885284424,1.2282352447509766,1.2456644773483276,1.4025272130966187,1.4896732568740845,1.2282352447509766],[1.977690577507019,1.6116775274276733,1.7511111497879028,1.5768191814422607,1.4722440242767334,1.7511111497879028,1.524531602859497,1.9079738855361938,1.350239634513855,1.9602614641189575,1.7859694957733154,1.5768191814422607,1.681394338607788,2.2914161682128906,1.5768191814422607,1.9254029989242554,1.977690577507019,1.4722440242767334,0.8970806002616882,1.1236600875854492,0.966797411441803,0.4090631902217865,0.16505447030067444,-0.8109803795814514,-0.02666666731238365,-0.07895424962043762,-0.07895424962043762,0.7576470375061035,0.5136383175849915,1.0016558170318604,0.9493681788444519,0.5833551287651062,0.7227886915206909,0.3742047846317291,0.7053594589233398,0.6182135343551636,0.7227886915206909,1.1062309741973877,1.053943395614624,1.2456644773483276,1.2456644773483276,1.332810401916504,1.4373856782913208,1.2456644773483276,1.6291067600250244,1.5942484140396118,1.5768191814422607,1.7162526845932007,1.4548147916793823,1.367668867111206,1.2805228233337402,1.6291067600250244,1.4373856782913208,1.5942484140396118,1.5419608354568481,1.3850979804992676,1.6988235712051392,1.838257074356079,1.9428322315216064,1.7511111497879028,1.5942484140396118,1.7685402631759644,1.681394338607788,1.7685402631759644,1.7511111497879028,1.681394338607788,1.4199564456939697,1.8033987283706665,1.5768191814422607,1.367668867111206,1.9428322315216064,1.4199564456939697,1.4896732568740845,1.663965106010437,1.507102370262146,1.524531602859497,1.4722440242767334,1.681394338607788,1.507102370262146,1.0888017416000366,1.4896732568740845,1.524531602859497,1.4025272130966187,1.7162526845932007,1.524531602859497,1.6291067600250244,1.663965106010437,1.663965106010437,1.5768191814422607,1.663965106010437,1.9428322315216064,1.524531602859497,1.4373856782913208,1.3153812885284424,1.2630937099456787,1.0888017416000366,0.9842265844345093,1.0713725090026855,1.524531602859497,1.681394338607788,1.977690577507019,1.7859694957733154,1.7336819171905518,1.5942484140396118,1.4896732568740845,1.0190849304199219,1.0190849304199219,1.332810401916504,1.2630937099456787,1.3850979804992676,1.3153812885284424,1.507102370262146,1.663965106010437,1.4199564456939697,1.4025272130966187,1.5419608354568481,1.5419608354568481,1.4548147916793823,1.8905446529388428,1.6465359926223755,1.6465359926223755,1.332810401916504,1.3850979804992676,1.367668867111206,1.4548147916793823,1.367668867111206,1.7685402631759644,1.5419608354568481,1.210806131362915,1.367668867111206,1.524531602859497,1.4548147916793823,1.4373856782913208,1.2282352447509766,1.507102370262146,1.1585185527801514,1.4722440242767334,0.7402178645133972,1.2630937099456787,1.2805228233337402,1.681394338607788,1.332810401916504,1.6291067600250244,1.332810401916504,1.5768191814422607,1.6465359926223755,1.7336819171905518,1.4722440242767334,1.681394338607788,1.524531602859497,1.3850979804992676,1.4548147916793823,0.8622221946716309,1.5419608354568481,1.4373856782913208,1.524531602859497,1.0888017416000366,1.6116775274276733,1.4373856782913208,1.4025272130966187,1.2456644773483276,1.4722440242767334,1.524531602859497,1.350239634513855,1.4896732568740845,1.210806131362915,1.5419608354568481,1.1410893201828003,1.367668867111206,1.6291067600250244,1.350239634513855,1.4025272130966187,1.6465359926223755,1.5942484140396118,1.820827841758728,1.7685402631759644,1.4548147916793823,1.663965106010437,1.4722440242767334,1.0888017416000366,1.193376898765564,0.9842265844345093,1.1236600875854492,0.8447930216789246,0.6705011129379272,0.2173420488834381,0.3567756116390228,0.2522004246711731,0.5310675501823425,0.8796514272689819,1.681394338607788,1.6291067600250244,1.193376898765564,0.8796514272689819,1.175947666168213,0.2347712367773056,-0.06152505427598953,0.7227886915206909,0.7750762701034546,1.0016558170318604,0.7227886915206909,0.5659258961677551,0.30448800325393677,1.053943395614624,1.3850979804992676,1.6465359926223755,1.6465359926223755,1.7511111497879028,1.663965106010437,1.9254029989242554,1.6988235712051392,1.507102370262146,1.1410893201828003,0.9493681788444519,1.2630937099456787,0.6530718803405762,0.33934640884399414,0.8447930216789246,1.0888017416000366,0.966797411441803,1.3153812885284424,1.1585185527801514,1.4199564456939697,1.507102370262146],[1.9428322315216064,1.8731154203414917,1.6291067600250244,1.7685402631759644,1.8033987283706665,1.681394338607788,1.7162526845932007,1.8033987283706665,1.8556863069534302,1.3850979804992676,1.8905446529388428,1.4896732568740845,1.8905446529388428,2.361132860183716,1.838257074356079,2.27398681640625,1.5768191814422607,1.4722440242767334,1.0190849304199219,0.7227886915206909,0.9145098328590393,1.2456644773483276,1.2456644773483276,-0.09638344496488571,0.4090631902217865,0.04305011034011841,0.5484967231750488,0.5833551287651062,0.8099346160888672,0.2696296274662018,1.0190849304199219,0.28705883026123047,0.8970806002616882,1.2979520559310913,0.7925054430961609,0.47877994179725647,1.1410893201828003,1.175947666168213,0.8273638486862183,0.8099346160888672,0.9493681788444519,1.1410893201828003,1.524531602859497,1.2979520559310913,1.4199564456939697,1.2979520559310913,1.350239634513855,1.4373856782913208,1.5768191814422607,1.7336819171905518,1.6291067600250244,1.5768191814422607,1.8556863069534302,1.6465359926223755,1.7162526845932007,1.9428322315216064,1.524531602859497,1.4896732568740845,1.5942484140396118,1.7162526845932007,1.507102370262146,1.9428322315216064,1.663965106010437,1.6988235712051392,1.7336819171905518,1.681394338607788,1.5419608354568481,1.6116775274276733,1.4025272130966187,1.8033987283706665,1.7336819171905518,1.6465359926223755,1.6291067600250244,1.2456644773483276,1.6465359926223755,1.350239634513855,1.4199564456939697,1.6116775274276733,1.2979520559310913,1.4548147916793823,1.5419608354568481,1.350239634513855,1.332810401916504,1.6116775274276733,1.5942484140396118,1.5419608354568481,1.681394338607788,1.7336819171905518,1.5593899488449097,1.5419608354568481,1.5942484140396118,1.6116775274276733,1.4548147916793823,1.193376898765564,1.0016558170318604,1.1585185527801514,1.0016558170318604,1.193376898765564,1.4548147916793823,1.681394338607788,1.838257074356079,1.7511111497879028,1.7336819171905518,1.7162526845932007,1.4373856782913208,1.2979520559310913,1.4722440242767334,1.507102370262146,1.6988235712051392,1.6291067600250244,1.6116775274276733,1.6465359926223755,1.681394338607788,1.5768191814422607,1.5942484140396118,1.2979520559310913,1.6465359926223755,1.2456644773483276,1.367668867111206,1.4548147916793823,1.4199564456939697,1.7685402631759644,1.524531602859497,1.1585185527801514,1.4373856782913208,1.367668867111206,1.0190849304199219,1.332810401916504,1.6465359926223755,1.507102370262146,1.210806131362915,1.2805228233337402,1.0713725090026855,1.2979520559310913,1.4025272130966187,0.7750762701034546,1.193376898765564,1.2630937099456787,1.350239634513855,1.4548147916793823,1.524531602859497,1.3850979804992676,1.9428322315216064,1.6116775274276733,1.2805228233337402,1.5419608354568481,1.4722440242767334,1.663965106010437,1.5419608354568481,1.4548147916793823,1.193376898765564,0.9493681788444519,1.367668867111206,1.3153812885284424,0.9493681788444519,1.4025272130966187,1.3850979804992676,1.332810401916504,1.367668867111206,1.4373856782913208,1.3850979804992676,1.5942484140396118,1.5419608354568481,1.5419608354568481,1.193376898765564,1.4025272130966187,1.367668867111206,1.524531602859497,1.4896732568740845,1.332810401916504,1.4896732568740845,1.4722440242767334,1.7162526845932007,1.6465359926223755,1.6291067600250244,1.5593899488449097,1.7511111497879028,1.6291067600250244,1.6988235712051392,1.367668867111206,1.2456644773483276,1.1410893201828003,0.47877994179725647,0.7925054430961609,0.9493681788444519,0.19991286098957062,0.28705883026123047,0.28705883026123047,0.8622221946716309,1.6291067600250244,1.6116775274276733,1.681394338607788,1.2979520559310913,0.9842265844345093,0.6007843017578125,0.5833551287651062,0.2173420488834381,0.6879302859306335,1.193376898765564,1.036514163017273,0.9493681788444519,0.5484967231750488,0.5484967231750488,0.2347712367773056,1.175947666168213,1.6116775274276733,1.7859694957733154,1.7336819171905518,1.7511111497879028,1.838257074356079,2.0996949672698975,1.4199564456939697,1.350239634513855,1.1410893201828003,1.0016558170318604,0.5484967231750488,0.5136383175849915,0.6007843017578125,0.8447930216789246,1.0190849304199219,1.3153812885284424,1.053943395614624,1.5419608354568481,1.367668867111206],[1.820827841758728,1.7685402631759644,1.5942484140396118,1.820827841758728,1.6988235712051392,1.7859694957733154,1.838257074356079,1.8905446529388428,1.9079738855361938,1.7336819171905518,1.681394338607788,1.524531602859497,2.0125489234924316,2.1868410110473633,1.8033987283706665,1.9602614641189575,2.0648365020751953,1.663965106010437,0.5484967231750488,1.2630937099456787,0.6007843017578125,0.28705883026123047,0.9493681788444519,-0.270675390958786,0.008191721513867378,0.04305011034011841,0.46135076880455017,0.6530718803405762,0.30448800325393677,0.7227886915206909,0.2522004246711731,0.8273638486862183,0.9842265844345093,1.0713725090026855,1.3153812885284424,0.49620914459228516,1.1410893201828003,1.193376898765564,0.7925054430961609,1.2979520559310913,1.2282352447509766,1.6291067600250244,1.350239634513855,1.5768191814422607,1.3153812885284424,1.5768191814422607,1.507102370262146,1.4025272130966187,1.6988235712051392,1.6988235712051392,1.5768191814422607,1.6465359926223755,1.6465359926223755,1.7336819171905518,1.7511111497879028,1.8033987283706665,1.4025272130966187,1.4025272130966187,1.5942484140396118,1.7685402631759644,1.7336819171905518,1.9079738855361938,1.9254029989242554,1.9951198101043701,1.5942484140396118,1.5768191814422607,1.838257074356079,1.367668867111206,1.367668867111206,1.5942484140396118,1.507102370262146,1.838257074356079,1.4722440242767334,1.4373856782913208,1.2979520559310913,1.4199564456939697,1.4722440242767334,1.5419608354568481,1.4025272130966187,1.4199564456939697,1.8033987283706665,1.5942484140396118,1.2805228233337402,1.4199564456939697,1.9079738855361938,1.5768191814422607,1.350239634513855,1.681394338607788,1.8731154203414917,1.6465359926223755,1.367668867111206,1.3850979804992676,1.350239634513855,1.0888017416000366,1.350239634513855,1.1062309741973877,1.2979520559310913,1.2979520559310913,1.4722440242767334,1.4548147916793823,1.7685402631759644,1.9254029989242554,1.9428322315216064,1.6116775274276733,1.7162526845932007,1.4199564456939697,1.2805228233337402,1.4896732568740845,1.7859694957733154,1.4722440242767334,1.332810401916504,1.524531602859497,1.663965106010437,1.6465359926223755,1.367668867111206,1.5593899488449097,1.3153812885284424,1.4548147916793823,1.210806131362915,1.2456644773483276,1.5419608354568481,1.210806131362915,1.4025272130966187,1.8556863069534302,1.2456644773483276,1.3850979804992676,1.3850979804992676,1.4722440242767334,1.2979520559310913,1.4025272130966187,1.4199564456939697,1.3850979804992676,1.2805228233337402,1.507102370262146,1.0713725090026855,1.5419608354568481,1.0713725090026855,0.9493681788444519,1.4373856782913208,1.2456644773483276,1.350239634513855,1.4199564456939697,1.507102370262146,1.7685402631759644,1.4722440242767334,1.6116775274276733,1.367668867111206,1.5419608354568481,1.4373856782913208,1.3153812885284424,1.3153812885284424,1.2805228233337402,1.210806131362915,1.332810401916504,1.350239634513855,1.681394338607788,1.7162526845932007,1.4548147916793823,1.4722440242767334,1.4025272130966187,1.5593899488449097,1.5419608354568481,1.5419608354568481,1.3153812885284424,1.2630937099456787,1.4722440242767334,1.4199564456939697,1.4199564456939697,1.5768191814422607,1.4025272130966187,1.4722440242767334,1.663965106010437,1.7162526845932007,1.7336819171905518,1.5419608354568481,1.6988235712051392,1.5942484140396118,1.507102370262146,1.332810401916504,1.053943395614624,1.3850979804992676,0.7227886915206909,1.0190849304199219,0.8273638486862183,0.5136383175849915,0.5659258961677551,0.07790849357843399,-0.06152505427598953,1.193376898765564,1.5593899488449097,1.5593899488449097,1.681394338607788,1.2630937099456787,1.3153812885284424,0.8099346160888672,0.33934640884399414,0.5659258961677551,0.5310675501823425,1.4025272130966187,1.4025272130966187,0.9145098328590393,0.7750762701034546,0.33934640884399414,0.07790849357843399,0.8622221946716309,1.507102370262146,1.7162526845932007,1.7162526845932007,1.7162526845932007,1.6465359926223755,1.838257074356079,1.4896732568740845,1.524531602859497,1.1410893201828003,1.0888017416000366,0.8099346160888672,1.053943395614624,0.7053594589233398,0.7227886915206909,0.966797411441803,1.175947666168213,1.4722440242767334,0.9842265844345093,1.332810401916504],[1.9254029989242554,1.820827841758728,1.838257074356079,1.5419608354568481,1.4199564456939697,1.2805228233337402,1.4722440242767334,1.6116775274276733,1.6291067600250244,1.681394338607788,1.8556863069534302,1.838257074356079,2.0299782752990723,2.117124080657959,2.4482789039611816,1.8905446529388428,1.7685402631759644,1.367668867111206,1.350239634513855,0.9145098328590393,0.5136383175849915,0.8447930216789246,1.0016558170318604,-0.5146840810775757,-0.14867103099822998,0.28705883026123047,0.3742047846317291,0.14762526750564575,0.7925054430961609,0.8622221946716309,0.6007843017578125,0.8622221946716309,0.3567756116390228,0.5136383175849915,0.9145098328590393,1.0190849304199219,1.5419608354568481,1.4199564456939697,1.2630937099456787,0.8796514272689819,1.193376898765564,1.0713725090026855,1.4025272130966187,1.681394338607788,1.1585185527801514,0.9493681788444519,1.524531602859497,1.2979520559310913,1.2979520559310913,1.507102370262146,1.4199564456939697,1.2456644773483276,1.8556863069534302,1.4896732568740845,1.663965106010437,1.681394338607788,1.4199564456939697,1.2630937099456787,1.820827841758728,1.977690577507019,1.7162526845932007,1.2630937099456787,1.838257074356079,1.4896732568740845,1.681394338607788,1.8556863069534302,1.7859694957733154,1.7162526845932007,1.4199564456939697,1.6116775274276733,1.7162526845932007,1.7511111497879028,1.6291067600250244,1.4199564456939697,1.8556863069534302,1.5942484140396118,1.8033987283706665,1.2282352447509766,1.838257074356079,1.367668867111206,1.507102370262146,1.8033987283706665,1.3850979804992676,1.4722440242767334,1.7511111497879028,1.4896732568740845,1.6465359926223755,1.6116775274276733,1.7685402631759644,1.367668867111206,1.7336819171905518,1.1585185527801514,1.193376898765564,0.8273638486862183,1.193376898765564,0.9842265844345093,0.9319390058517456,0.8970806002616882,1.507102370262146,1.7511111497879028,1.820827841758728,1.367668867111206,1.8556863069534302,1.8905446529388428,1.6291067600250244,1.4025272130966187,1.210806131362915,1.367668867111206,1.6465359926223755,1.4896732568740845,1.5942484140396118,1.7859694957733154,1.4548147916793823,1.4025272130966187,1.5768191814422607,1.4722440242767334,1.838257074356079,1.6116775274276733,1.2805228233337402,1.4722440242767334,1.350239634513855,1.524531602859497,1.4548147916793823,1.036514163017273,1.210806131362915,1.4896732568740845,1.3850979804992676,1.2282352447509766,1.332810401916504,1.4199564456939697,1.4548147916793823,1.193376898765564,1.1236600875854492,1.2805228233337402,1.1236600875854492,1.2805228233337402,1.4373856782913208,1.0016558170318604,1.5593899488449097,1.367668867111206,1.524531602859497,1.1410893201828003,1.6988235712051392,1.5768191814422607,1.838257074356079,1.681394338607788,1.4025272130966187,1.6116775274276733,1.4199564456939697,1.4373856782913208,1.4199564456939697,1.681394338607788,1.210806131362915,1.4896732568740845,1.2456644773483276,0.8447930216789246,1.2805228233337402,1.4373856782913208,1.4199564456939697,1.4548147916793823,1.1236600875854492,1.507102370262146,1.524531602859497,1.2805228233337402,1.507102370262146,1.175947666168213,1.5419608354568481,1.507102370262146,1.2805228233337402,1.3153812885284424,1.5768191814422607,1.6465359926223755,1.4722440242767334,1.6116775274276733,1.681394338607788,1.367668867111206,1.6291067600250244,1.6116775274276733,1.2456644773483276,1.4025272130966187,0.9319390058517456,1.0016558170318604,1.053943395614624,0.7750762701034546,0.6705011129379272,0.7925054430961609,0.49620914459228516,0.6356427073478699,0.8273638486862183,1.4199564456939697,1.663965106010437,1.5593899488449097,1.2979520559310913,1.0713725090026855,0.8099346160888672,0.3567756116390228,0.18248365819454193,0.4264923632144928,1.0713725090026855,1.3153812885284424,1.350239634513855,0.8796514272689819,0.14762526750564575,0.4264923632144928,0.16505447030067444,1.4025272130966187,1.8556863069534302,1.6291067600250244,1.838257074356079,1.7511111497879028,1.838257074356079,1.9254029989242554,1.6988235712051392,1.4373856782913208,1.3153812885284424,1.175947666168213,0.5310675501823425,0.6879302859306335,0.6879302859306335,0.7402178645133972,0.9493681788444519,1.210806131362915,1.2456644773483276,1.1236600875854492],[2.1345534324645996,1.9254029989242554,1.7859694957733154,1.8556863069534302,1.6465359926223755,1.7162526845932007,1.5942484140396118,0.9842265844345093,1.5942484140396118,1.7511111497879028,1.4548147916793823,1.524531602859497,2.0125489234924316,2.27398681640625,1.7859694957733154,1.7336819171905518,2.2216992378234863,1.4373856782913208,1.1236600875854492,-0.06152505427598953,-0.1138126328587532,1.0190849304199219,1.1062309741973877,0.18248365819454193,0.32191720604896545,0.02562091499567032,0.2696296274662018,0.6182135343551636,0.7053594589233398,0.8796514272689819,0.5659258961677551,1.0713725090026855,0.9145098328590393,0.8970806002616882,0.9493681788444519,0.7925054430961609,1.0713725090026855,1.3850979804992676,1.2456644773483276,1.5942484140396118,1.4025272130966187,1.4722440242767334,1.8033987283706665,1.4373856782913208,1.0888017416000366,1.367668867111206,1.820827841758728,1.6465359926223755,1.2630937099456787,1.210806131362915,1.0713725090026855,1.5942484140396118,1.4896732568740845,1.663965106010437,1.5942484140396118,1.4722440242767334,1.7859694957733154,1.8556863069534302,1.9079738855361938,1.2630937099456787,1.4025272130966187,1.5768191814422607,1.5768191814422607,1.7859694957733154,1.8731154203414917,1.7511111497879028,1.8556863069534302,1.7859694957733154,1.6116775274276733,1.9428322315216064,1.8033987283706665,1.5593899488449097,1.8033987283706665,1.367668867111206,1.6291067600250244,1.2456644773483276,1.350239634513855,1.663965106010437,1.3850979804992676,1.4722440242767334,1.5942484140396118,1.4896732568740845,1.6291067600250244,1.5419608354568481,1.8033987283706665,1.524531602859497,1.4722440242767334,1.6465359926223755,1.507102370262146,1.4373856782913208,1.036514163017273,1.4896732568740845,1.0190849304199219,1.1410893201828003,1.1236600875854492,1.350239634513855,1.7336819171905518,1.3153812885284424,1.7859694957733154,1.6291067600250244,1.8731154203414917,1.6291067600250244,1.8731154203414917,1.7336819171905518,1.5942484140396118,1.4373856782913208,1.6116775274276733,1.4025272130966187,1.6116775274276733,1.681394338607788,1.350239634513855,1.663965106010437,1.6291067600250244,1.663965106010437,1.6116775274276733,1.367668867111206,1.4722440242767334,1.663965106010437,1.350239634513855,1.2979520559310913,1.2805228233337402,1.5593899488449097,1.6988235712051392,1.175947666168213,1.4548147916793823,1.4896732568740845,1.4025272130966187,1.2282352447509766,1.1410893201828003,1.1585185527801514,1.6465359926223755,1.4199564456939697,1.4025272130966187,1.3153812885284424,1.1236600875854492,1.1410893201828003,1.4199564456939697,1.210806131362915,1.210806131362915,1.4548147916793823,1.7859694957733154,1.6988235712051392,1.7336819171905518,1.5942484140396118,1.524531602859497,1.7511111497879028,1.820827841758728,1.2282352447509766,1.332810401916504,1.193376898765564,1.350239634513855,1.4025272130966187,1.0888017416000366,1.7685402631759644,1.2979520559310913,1.210806131362915,1.2805228233337402,1.3850979804992676,1.0888017416000366,1.507102370262146,1.5768191814422607,1.663965106010437,1.5593899488449097,1.4896732568740845,1.3153812885284424,1.4548147916793823,1.367668867111206,1.507102370262146,1.6465359926223755,1.5768191814422607,1.6988235712051392,1.681394338607788,1.663965106010437,1.663965106010437,1.5593899488449097,1.663965106010437,1.6291067600250244,1.507102370262146,1.210806131362915,1.1062309741973877,1.210806131362915,0.7053594589233398,0.8970806002616882,0.7750762701034546,0.5833551287651062,0.2696296274662018,0.4439215660095215,0.5136383175849915,1.1585185527801514,1.6291067600250244,1.5768191814422607,1.524531602859497,1.036514163017273,0.7402178645133972,0.7402178645133972,0.5136383175849915,0.3742047846317291,0.30448800325393677,1.053943395614624,1.0190849304199219,0.9493681788444519,1.0016558170318604,0.6879302859306335,0.09533768892288208,0.8099346160888672,1.210806131362915,1.507102370262146,1.7162526845932007,1.663965106010437,1.6988235712051392,1.838257074356079,1.9254029989242554,1.5942484140396118,1.5419608354568481,1.4896732568740845,1.4199564456939697,0.32191720604896545,0.6007843017578125,0.4264923632144928,0.6356427073478699,0.8273638486862183,1.2282352447509766,1.0888017416000366,1.0713725090026855],[1.8731154203414917,1.9428322315216064,2.151982545852661,1.9602614641189575,1.6465359926223755,1.7162526845932007,1.4722440242767334,1.2282352447509766,1.7859694957733154,1.5942484140396118,1.4896732568740845,1.5942484140396118,2.151982545852661,2.082265853881836,1.7859694957733154,1.8033987283706665,1.820827841758728,1.7162526845932007,1.1236600875854492,0.6356427073478699,0.11276688426733017,1.036514163017273,0.9145098328590393,-0.270675390958786,0.18248365819454193,0.5659258961677551,1.1410893201828003,1.0190849304199219,0.7053594589233398,0.966797411441803,0.9319390058517456,0.5833551287651062,0.8447930216789246,0.8796514272689819,1.1410893201828003,1.3153812885284424,1.193376898765564,1.2456644773483276,1.2630937099456787,1.524531602859497,1.6988235712051392,1.4896732568740845,1.5942484140396118,1.1585185527801514,1.681394338607788,1.6465359926223755,1.5419608354568481,1.5419608354568481,1.6988235712051392,1.663965106010437,2.117124080657959,1.663965106010437,1.507102370262146,1.820827841758728,1.5593899488449097,1.7162526845932007,1.4722440242767334,1.367668867111206,1.3153812885284424,1.8556863069534302,1.8905446529388428,1.9079738855361938,1.4373856782913208,1.4722440242767334,1.4025272130966187,1.7859694957733154,1.507102370262146,1.7162526845932007,1.6116775274276733,1.6988235712051392,1.5942484140396118,1.4373856782913208,1.663965106010437,1.5768191814422607,1.5419608354568481,1.8033987283706665,1.6465359926223755,1.7511111497879028,1.332810401916504,1.367668867111206,1.2630937099456787,1.6465359926223755,1.4548147916793823,1.4722440242767334,1.6465359926223755,1.8033987283706665,1.6116775274276733,1.5419608354568481,1.332810401916504,1.1410893201828003,0.8099346160888672,1.036514163017273,0.966797411441803,1.0016558170318604,1.2805228233337402,1.1410893201828003,1.5942484140396118,1.4722440242767334,1.7162526845932007,1.663965106010437,1.8731154203414917,1.9079738855361938,1.7511111497879028,1.663965106010437,1.4199564456939697,1.350239634513855,1.4896732568740845,1.663965106010437,1.5419608354568481,1.3153812885284424,1.524531602859497,1.7685402631759644,1.6465359926223755,1.4199564456939697,1.2630937099456787,1.367668867111206,1.6465359926223755,1.5768191814422607,1.0888017416000366,1.332810401916504,1.4722440242767334,1.4722440242767334,1.6988235712051392,1.4896732568740845,1.350239634513855,1.4548147916793823,1.524531602859497,1.4722440242767334,1.2456644773483276,0.7402178645133972,1.1062309741973877,1.524531602859497,1.2456644773483276,1.6291067600250244,1.4373856782913208,1.2282352447509766,1.2282352447509766,1.1585185527801514,1.350239634513855,1.2630937099456787,1.3850979804992676,1.4722440242767334,1.3850979804992676,1.7162526845932007,1.6291067600250244,1.350239634513855,1.5768191814422607,1.2630937099456787,1.4896732568740845,1.2805228233337402,0.966797411441803,1.1236600875854492,1.5942484140396118,0.7925054430961609,1.2979520559310913,1.4722440242767334,1.2456644773483276,1.332810401916504,1.2630937099456787,1.1236600875854492,1.3850979804992676,1.4373856782913208,1.4548147916793823,1.4025272130966187,1.4199564456939697,1.4548147916793823,1.350239634513855,1.7511111497879028,1.681394338607788,1.7162526845932007,1.6116775274276733,1.681394338607788,1.524531602859497,1.7336819171905518,1.663965106010437,1.5593899488449097,1.332810401916504,1.5768191814422607,1.1410893201828003,1.0016558170318604,1.1410893201828003,0.5310675501823425,1.175947666168213,0.7925054430961609,0.4264923632144928,0.3742047846317291,0.6007843017578125,1.0888017416000366,1.4896732568740845,1.7511111497879028,1.7859694957733154,1.5942484140396118,1.350239634513855,0.8796514272689819,0.7750762701034546,0.9319390058517456,0.4264923632144928,0.8099346160888672,1.1236600875854492,1.1410893201828003,1.2805228233337402,1.0190849304199219,0.14762526750564575,0.8796514272689819,0.7227886915206909,0.7576470375061035,1.210806131362915,1.820827841758728,1.6465359926223755,1.6988235712051392,1.8033987283706665,1.7859694957733154,1.7511111497879028,1.4373856782913208,1.5593899488449097,1.053943395614624,0.9493681788444519,1.2805228233337402,0.9493681788444519,0.30448800325393677,0.32191720604896545,0.8099346160888672,0.9493681788444519,1.0190849304199219],[1.8905446529388428,1.9428322315216064,1.8556863069534302,1.977690577507019,1.8731154203414917,1.663965106010437,1.5593899488449097,1.4722440242767334,1.2805228233337402,1.193376898765564,1.193376898765564,1.663965106010437,2.151982545852661,1.8905446529388428,2.117124080657959,1.9079738855361938,2.0299782752990723,1.8556863069534302,1.367668867111206,0.8970806002616882,0.4090631902217865,0.7576470375061035,1.2805228233337402,-0.07895424962043762,0.02562091499567032,0.46135076880455017,1.036514163017273,0.7053594589233398,1.036514163017273,0.8622221946716309,0.5484967231750488,0.8099346160888672,0.9842265844345093,1.0190849304199219,1.210806131362915,1.3153812885284424,0.8970806002616882,1.6465359926223755,1.5768191814422607,1.9428322315216064,1.6988235712051392,1.7511111497879028,1.4722440242767334,1.663965106010437,1.2630937099456787,1.524531602859497,1.7511111497879028,1.7336819171905518,1.7511111497879028,1.4548147916793823,1.4722440242767334,1.332810401916504,0.966797411441803,1.4199564456939697,1.3153812885284424,1.8556863069534302,1.507102370262146,1.5768191814422607,1.663965106010437,1.8905446529388428,1.9428322315216064,1.6116775274276733,1.681394338607788,1.507102370262146,1.7336819171905518,1.820827841758728,1.507102370262146,1.7336819171905518,1.5942484140396118,1.4548147916793823,1.5419608354568481,1.4548147916793823,1.6291067600250244,1.5768191814422607,1.681394338607788,1.5419608354568481,1.6465359926223755,1.4722440242767334,1.8556863069534302,1.5593899488449097,1.367668867111206,1.4896732568740845,1.2456644773483276,1.2805228233337402,1.8556863069534302,1.6465359926223755,1.5419608354568481,1.507102370262146,1.681394338607788,1.0016558170318604,1.193376898765564,1.210806131362915,0.9493681788444519,1.036514163017273,1.4722440242767334,1.1236600875854492,1.7336819171905518,1.350239634513855,1.350239634513855,1.6988235712051392,1.7336819171905518,2.0996949672698975,1.838257074356079,1.9254029989242554,1.6988235712051392,1.663965106010437,1.5768191814422607,1.838257074356079,1.4373856782913208,1.4548147916793823,1.5768191814422607,1.5942484140396118,1.7162526845932007,1.663965106010437,1.4025272130966187,1.2805228233337402,1.4373856782913208,1.5942484140396118,1.2456644773483276,1.2282352447509766,1.053943395614624,1.4373856782913208,1.5768191814422607,1.332810401916504,1.1585185527801514,1.2456644773483276,1.5942484140396118,1.4199564456939697,1.4199564456939697,1.3850979804992676,1.5942484140396118,1.4025272130966187,1.4025272130966187,1.367668867111206,1.5593899488449097,1.2630937099456787,1.6988235712051392,1.3850979804992676,1.5942484140396118,1.5768191814422607,1.4373856782913208,1.5942484140396118,1.4548147916793823,1.6116775274276733,1.7859694957733154,1.367668867111206,1.5419608354568481,1.2630937099456787,1.4025272130966187,1.0016558170318604,1.3153812885284424,1.4025272130966187,1.2805228233337402,1.507102370262146,1.2805228233337402,1.3153812885284424,1.5768191814422607,1.3153812885284424,1.3153812885284424,1.4896732568740845,1.2456644773483276,1.4199564456939697,1.663965106010437,1.332810401916504,1.6291067600250244,1.367668867111206,1.663965106010437,1.5419608354568481,1.4722440242767334,1.8905446529388428,1.5419608354568481,1.8033987283706665,1.6116775274276733,1.6291067600250244,1.7336819171905518,1.4025272130966187,1.367668867111206,1.1236600875854492,1.2282352447509766,1.053943395614624,0.9842265844345093,0.47877994179725647,0.7402178645133972,0.7750762701034546,0.6007843017578125,0.5136383175849915,0.7750762701034546,1.2282352447509766,1.663965106010437,1.6116775274276733,2.0648365020751953,1.6291067600250244,1.2630937099456787,1.1410893201828003,0.7925054430961609,0.8796514272689819,0.2522004246711731,0.6705011129379272,1.2456644773483276,1.3153812885284424,1.0888017416000366,1.0016558170318604,0.4264923632144928,0.18248365819454193,0.3742047846317291,0.6705011129379272,0.9493681788444519,1.6465359926223755,1.6291067600250244,1.820827841758728,1.8033987283706665,1.7162526845932007,1.820827841758728,1.4199564456939697,1.7859694957733154,1.2456644773483276,1.175947666168213,0.5136383175849915,0.8099346160888672,1.053943395614624,0.7402178645133972,0.966797411441803,0.9319390058517456,0.6879302859306335],[1.9602614641189575,2.0299782752990723,2.047407388687134,2.1868410110473633,1.7859694957733154,1.9951198101043701,1.7511111497879028,1.7336819171905518,1.4025272130966187,1.2282352447509766,1.2805228233337402,1.4373856782913208,1.8731154203414917,1.7511111497879028,1.977690577507019,1.977690577507019,2.082265853881836,1.7336819171905518,1.4199564456939697,1.0713725090026855,0.6879302859306335,1.036514163017273,1.4722440242767334,-0.18352940678596497,0.02562091499567032,0.18248365819454193,0.9842265844345093,1.036514163017273,0.9145098328590393,1.0888017416000366,0.7750762701034546,0.7402178645133972,0.8970806002616882,1.2630937099456787,1.4548147916793823,1.4722440242767334,1.6291067600250244,1.2805228233337402,1.4025272130966187,1.507102370262146,1.681394338607788,1.4373856782913208,1.663965106010437,1.524531602859497,1.8731154203414917,1.4896732568740845,1.9951198101043701,2.0125489234924316,1.6116775274276733,1.4548147916793823,1.6988235712051392,1.681394338607788,1.5419608354568481,1.7859694957733154,1.5942484140396118,1.2456644773483276,1.4896732568740845,1.6465359926223755,1.3850979804992676,1.7685402631759644,1.7859694957733154,1.9254029989242554,1.5593899488449097,1.507102370262146,1.524531602859497,1.6465359926223755,1.8033987283706665,1.663965106010437,1.507102370262146,1.7336819171905518,1.4722440242767334,1.681394338607788,1.820827841758728,1.681394338607788,1.367668867111206,1.367668867111206,1.5942484140396118,1.6116775274276733,1.8033987283706665,1.507102370262146,1.5593899488449097,1.7162526845932007,1.4896732568740845,1.6988235712051392,1.5419608354568481,1.7685402631759644,1.838257074356079,1.507102370262146,1.4373856782913208,0.9145098328590393,0.8970806002616882,0.8796514272689819,1.2456644773483276,0.9493681788444519,1.4199564456939697,1.6291067600250244,1.3850979804992676,1.367668867111206,1.6988235712051392,1.8731154203414917,1.8731154203414917,1.7685402631759644,1.5419608354568481,1.8731154203414917,1.4896732568740845,1.4548147916793823,1.2979520559310913,1.4373856782913208,1.4373856782913208,1.681394338607788,1.4025272130966187,1.663965106010437,1.6116775274276733,1.5419608354568481,1.2805228233337402,1.175947666168213,1.367668867111206,1.2456644773483276,1.1062309741973877,0.7227886915206909,1.2282352447509766,1.175947666168213,1.350239634513855,1.4199564456939697,1.6116775274276733,1.4025272130966187,1.2979520559310913,1.507102370262146,1.4896732568740845,1.507102370262146,1.4896732568740845,1.332810401916504,1.4548147916793823,1.681394338607788,1.6988235712051392,1.524531602859497,1.193376898765564,1.367668867111206,1.350239634513855,1.036514163017273,1.5942484140396118,1.8556863069534302,1.6988235712051392,1.4896732568740845,1.3850979804992676,1.5419608354568481,1.2282352447509766,1.367668867111206,1.4025272130966187,1.5942484140396118,0.9145098328590393,1.7162526845932007,1.193376898765564,1.6291067600250244,1.332810401916504,1.332810401916504,1.210806131362915,1.367668867111206,1.5419608354568481,1.3153812885284424,1.4025272130966187,1.3153812885284424,1.4548147916793823,1.3850979804992676,1.7162526845932007,1.350239634513855,1.6291067600250244,1.4373856782913208,1.5593899488449097,1.524531602859497,1.7336819171905518,1.367668867111206,1.5942484140396118,1.524531602859497,1.2805228233337402,1.663965106010437,1.7162526845932007,1.3850979804992676,1.175947666168213,1.1062309741973877,0.8970806002616882,0.9319390058517456,0.8970806002616882,1.0713725090026855,0.5136383175849915,1.036514163017273,0.8622221946716309,1.5942484140396118,1.6291067600250244,1.6988235712051392,1.7511111497879028,1.6465359926223755,1.175947666168213,1.0713725090026855,0.6705011129379272,0.46135076880455017,0.46135076880455017,0.3567756116390228,1.2456644773483276,1.1410893201828003,1.4199564456939697,1.0190849304199219,0.30448800325393677,0.19991286098957062,0.28705883026123047,0.6356427073478699,1.3153812885284424,1.524531602859497,1.7162526845932007,1.7162526845932007,1.7162526845932007,1.9079738855361938,1.7859694957733154,1.7162526845932007,1.5419608354568481,1.5593899488449097,1.2630937099456787,1.4025272130966187,1.1236600875854492,0.4090631902217865,0.7227886915206909,1.350239634513855,0.7053594589233398,0.8099346160888672],[1.681394338607788,2.0299782752990723,1.9428322315216064,1.8556863069534302,2.0648365020751953,1.8731154203414917,1.524531602859497,1.4373856782913208,1.367668867111206,1.1062309741973877,1.210806131362915,1.1236600875854492,1.8905446529388428,1.7685402631759644,1.7685402631759644,2.0125489234924316,1.8556863069534302,1.820827841758728,0.9493681788444519,0.6182135343551636,0.8273638486862183,1.0190849304199219,1.3850979804992676,-0.1138126328587532,-0.4449673295021057,0.7750762701034546,0.5484967231750488,0.9319390058517456,0.7227886915206909,0.9319390058517456,0.7227886915206909,0.9319390058517456,1.0888017416000366,0.9842265844345093,1.4548147916793823,1.7336819171905518,1.367668867111206,1.4199564456939697,1.8905446529388428,1.7859694957733154,1.681394338607788,1.663965106010437,1.8905446529388428,1.663965106010437,1.7859694957733154,1.5942484140396118,1.9254029989242554,1.681394338607788,1.8033987283706665,1.332810401916504,1.524531602859497,1.7511111497879028,1.6116775274276733,1.7685402631759644,1.4548147916793823,1.367668867111206,1.4722440242767334,1.367668867111206,1.820827841758728,1.838257074356079,1.4373856782913208,1.7859694957733154,1.681394338607788,1.7336819171905518,1.820827841758728,1.6116775274276733,1.4373856782913208,1.9079738855361938,1.8731154203414917,1.8731154203414917,1.4896732568740845,1.6465359926223755,1.6116775274276733,1.4896732568740845,1.4548147916793823,1.6988235712051392,1.4199564456939697,1.5768191814422607,1.5593899488449097,1.681394338607788,1.7336819171905518,1.6116775274276733,1.8033987283706665,1.7511111497879028,1.507102370262146,1.507102370262146,1.7336819171905518,1.4896732568740845,1.3850979804992676,1.1410893201828003,0.966797411441803,1.193376898765564,1.2456644773483276,1.1410893201828003,1.4548147916793823,1.507102370262146,1.524531602859497,1.6116775274276733,1.7859694957733154,1.7162526845932007,1.7511111497879028,1.7859694957733154,1.6465359926223755,1.6116775274276733,1.5942484140396118,1.4199564456939697,1.350239634513855,1.7336819171905518,1.4548147916793823,1.4896732568740845,1.5593899488449097,1.663965106010437,1.5593899488449097,1.7336819171905518,1.7162526845932007,1.5942484140396118,1.210806131362915,1.210806131362915,1.175947666168213,0.8447930216789246,1.2979520559310913,1.2282352447509766,1.663965106010437,1.2805228233337402,1.2979520559310913,1.5593899488449097,1.7859694957733154,1.4199564456939697,1.4896732568740845,1.3850979804992676,1.6465359926223755,1.5768191814422607,1.367668867111206,1.5593899488449097,1.210806131362915,1.2630937099456787,1.3850979804992676,1.3153812885284424,1.0888017416000366,1.820827841758728,1.6116775274276733,1.507102370262146,1.4548147916793823,1.2979520559310913,1.350239634513855,1.2282352447509766,1.3850979804992676,1.367668867111206,1.2456644773483276,1.332810401916504,0.9145098328590393,1.4199564456939697,1.3850979804992676,1.4896732568740845,1.2456644773483276,1.2979520559310913,1.350239634513855,1.5768191814422607,1.2979520559310913,1.350239634513855,1.4199564456939697,1.4548147916793823,1.350239634513855,1.5419608354568481,1.524531602859497,1.5942484140396118,1.5942484140396118,1.5593899488449097,1.5768191814422607,1.6988235712051392,1.663965106010437,1.5942484140396118,1.9602614641189575,1.524531602859497,1.350239634513855,1.524531602859497,0.966797411441803,1.332810401916504,1.193376898765564,0.6182135343551636,1.1062309741973877,0.8447930216789246,1.2456644773483276,0.6007843017578125,0.2347712367773056,0.8796514272689819,0.8796514272689819,1.3850979804992676,1.6465359926223755,1.7162526845932007,1.7685402631759644,1.7162526845932007,1.3850979804992676,0.8447930216789246,1.0016558170318604,0.5136383175849915,0.4090631902217865,0.7227886915206909,1.0888017416000366,0.966797411441803,1.4722440242767334,1.053943395614624,0.8273638486862183,0.2173420488834381,-0.07895424962043762,0.49620914459228516,0.3567756116390228,1.053943395614624,1.7511111497879028,1.8033987283706665,1.663965106010437,1.7511111497879028,1.7162526845932007,1.838257074356079,1.6988235712051392,1.6291067600250244,1.8556863069534302,0.8447930216789246,1.1062309741973877,0.966797411441803,0.7576470375061035,0.5484967231750488,0.5833551287651062,0.7227886915206909],[1.8556863069534302,1.820827841758728,1.9602614641189575,1.977690577507019,1.977690577507019,1.9079738855361938,1.8556863069534302,1.5419608354568481,1.2282352447509766,1.2979520559310913,1.2979520559310913,1.175947666168213,1.7859694957733154,1.820827841758728,1.9254029989242554,2.1694116592407227,2.1694116592407227,1.5593899488449097,0.46135076880455017,0.13019607961177826,0.8796514272689819,0.966797411441803,1.4025272130966187,-0.6018300652503967,-0.009237472899258137,0.11276688426733017,0.8099346160888672,0.3567756116390228,0.46135076880455017,0.6705011129379272,0.8796514272689819,1.036514163017273,1.0888017416000366,1.4025272130966187,1.2456644773483276,1.1585185527801514,1.5419608354568481,1.4722440242767334,1.210806131362915,1.5768191814422607,1.5768191814422607,1.4373856782913208,1.6291067600250244,2.1345534324645996,1.4722440242767334,1.6116775274276733,1.6988235712051392,1.681394338607788,1.7511111497879028,1.9428322315216064,1.838257074356079,1.8556863069534302,1.507102370262146,1.663965106010437,1.8033987283706665,1.838257074356079,1.5768191814422607,1.4025272130966187,1.5942484140396118,1.5419608354568481,2.047407388687134,2.0648365020751953,1.507102370262146,1.4373856782913208,1.6988235712051392,1.6988235712051392,1.6116775274276733,1.6291067600250244,1.681394338607788,1.6291067600250244,1.7511111497879028,1.8556863069534302,1.8033987283706665,1.7685402631759644,1.7162526845932007,1.7511111497879028,1.3850979804992676,1.663965106010437,1.4722440242767334,1.681394338607788,1.5419608354568481,1.663965106010437,1.5593899488449097,1.5593899488449097,1.6465359926223755,1.663965106010437,1.3153812885284424,1.2630937099456787,0.8970806002616882,1.2282352447509766,0.8970806002616882,0.966797411441803,1.367668867111206,1.193376898765564,1.367668867111206,1.8556863069534302,1.3850979804992676,1.2805228233337402,1.7859694957733154,1.6988235712051392,1.7511111497879028,1.838257074356079,1.9079738855361938,1.6291067600250244,1.5942484140396118,1.4373856782913208,1.5593899488449097,1.193376898765564,1.4025272130966187,1.5593899488449097,1.6465359926223755,1.5419608354568481,1.5419608354568481,1.5942484140396118,1.4025272130966187,1.210806131362915,1.4896732568740845,1.210806131362915,1.0888017416000366,0.8970806002616882,1.0016558170318604,1.1410893201828003,1.6465359926223755,1.5593899488449097,1.507102370262146,1.1236600875854492,1.663965106010437,1.507102370262146,1.2630937099456787,1.820827841758728,1.367668867111206,1.332810401916504,1.507102370262146,1.350239634513855,1.367668867111206,1.2979520559310913,1.332810401916504,1.4373856782913208,1.7336819171905518,1.6465359926223755,1.5768191814422607,1.7685402631759644,1.3850979804992676,1.7511111497879028,1.5593899488449097,1.5419608354568481,1.1585185527801514,1.4199564456939697,1.4722440242767334,1.6291067600250244,1.4548147916793823,1.193376898765564,1.3850979804992676,1.350239634513855,1.4199564456939697,1.681394338607788,1.210806131362915,1.5593899488449097,1.4548147916793823,1.332810401916504,1.350239634513855,1.4722440242767334,1.2456644773483276,1.3850979804992676,1.7162526845932007,1.5768191814422607,1.5419608354568481,1.6988235712051392,1.6291067600250244,1.5768191814422607,1.5593899488449097,1.8033987283706665,1.5593899488449097,1.210806131362915,1.4025272130966187,1.2630937099456787,1.350239634513855,0.8622221946716309,0.9493681788444519,0.9842265844345093,0.9842265844345093,0.8099346160888672,0.5136383175849915,0.6530718803405762,1.0190849304199219,0.6705011129379272,1.507102370262146,1.2979520559310913,1.7511111497879028,1.5942484140396118,1.663965106010437,1.0016558170318604,1.1410893201828003,0.8622221946716309,0.6007843017578125,0.6705011129379272,0.28705883026123047,0.5833551287651062,1.4373856782913208,1.4025272130966187,1.2805228233337402,0.9145098328590393,0.9319390058517456,0.11276688426733017,0.13019607961177826,-0.009237472899258137,0.6182135343551636,0.8099346160888672,1.5419608354568481,1.663965106010437,1.5593899488449097,1.7162526845932007,1.6465359926223755,1.7859694957733154,1.681394338607788,1.6465359926223755,1.2456644773483276,1.4025272130966187,0.8447930216789246,1.036514163017273,0.7925054430961609,0.7925054430961609,0.3916339874267578,0.5136383175849915],[1.9951198101043701,1.8556863069534302,1.7859694957733154,1.8556863069534302,1.977690577507019,1.9951198101043701,1.977690577507019,1.6465359926223755,1.9602614641189575,1.332810401916504,1.6116775274276733,1.2456644773483276,1.6465359926223755,1.2805228233337402,1.8033987283706665,2.117124080657959,2.3437037467956543,1.367668867111206,0.8273638486862183,0.7750762701034546,1.053943395614624,1.036514163017273,1.0713725090026855,-0.7412636280059814,0.13019607961177826,0.4439215660095215,0.47877994179725647,0.8622221946716309,0.6007843017578125,0.7925054430961609,0.5659258961677551,0.966797411441803,1.0016558170318604,1.1410893201828003,1.036514163017273,1.5768191814422607,1.5593899488449097,1.2979520559310913,1.5593899488449097,1.5942484140396118,1.6465359926223755,1.838257074356079,1.8905446529388428,1.507102370262146,1.7162526845932007,1.7511111497879028,1.6291067600250244,1.9079738855361938,1.8033987283706665,1.7511111497879028,1.7685402631759644,1.820827841758728,1.6465359926223755,1.681394338607788,1.6988235712051392,1.6988235712051392,1.681394338607788,1.7859694957733154,1.9079738855361938,1.4896732568740845,1.4548147916793823,1.7859694957733154,1.4548147916793823,1.7685402631759644,1.8033987283706665,1.7162526845932007,1.4896732568740845,1.6465359926223755,1.838257074356079,1.8556863069534302,1.5942484140396118,1.7162526845932007,1.5419608354568481,1.4896732568740845,1.6465359926223755,1.524531602859497,1.3850979804992676,1.4722440242767334,1.6465359926223755,1.507102370262146,1.524531602859497,1.7336819171905518,1.663965106010437,1.4896732568740845,1.3153812885284424,1.524531602859497,1.4548147916793823,1.2979520559310913,1.1585185527801514,0.5833551287651062,0.9493681788444519,0.9145098328590393,1.0713725090026855,1.367668867111206,1.4548147916793823,1.5942484140396118,1.5593899488449097,1.4722440242767334,1.663965106010437,1.8033987283706665,1.4896732568740845,1.7685402631759644,1.6116775274276733,1.7511111497879028,1.0888017416000366,1.4722440242767334,1.524531602859497,1.3153812885284424,1.332810401916504,1.681394338607788,1.7336819171905518,1.8033987283706665,1.1410893201828003,1.332810401916504,1.350239634513855,1.0190849304199219,1.332810401916504,1.2456644773483276,0.9842265844345093,1.0713725090026855,0.8970806002616882,0.9145098328590393,1.175947666168213,1.4722440242767334,1.2979520559310913,1.210806131362915,1.6291067600250244,1.6116775274276733,1.4722440242767334,1.4373856782913208,1.3153812885284424,1.367668867111206,1.367668867111206,1.507102370262146,1.3850979804992676,1.507102370262146,1.175947666168213,1.350239634513855,1.4025272130966187,1.4373856782913208,1.4373856782913208,1.6465359926223755,1.6116775274276733,1.3153812885284424,1.4025272130966187,1.2282352447509766,1.4373856782913208,1.3153812885284424,1.2979520559310913,1.193376898765564,1.350239634513855,1.4199564456939697,1.2282352447509766,1.193376898765564,1.4896732568740845,1.4896732568740845,1.2805228233337402,1.367668867111206,1.5768191814422607,1.507102370262146,1.7162526845932007,1.2456644773483276,1.4548147916793823,1.681394338607788,1.7859694957733154,1.663965106010437,1.7162526845932007,1.7511111497879028,1.5768191814422607,1.5942484140396118,1.6465359926223755,1.6465359926223755,1.4548147916793823,1.350239634513855,1.367668867111206,1.332810401916504,0.8447930216789246,0.9145098328590393,1.1062309741973877,0.966797411441803,0.4439215660095215,0.9145098328590393,0.5659258961677551,1.053943395614624,0.6530718803405762,1.2805228233337402,1.7162526845932007,1.8731154203414917,1.4548147916793823,1.663965106010437,1.053943395614624,1.4025272130966187,0.8273638486862183,1.053943395614624,0.7750762701034546,0.5833551287651062,0.6705011129379272,0.5310675501823425,1.175947666168213,0.9145098328590393,1.4548147916793823,1.2979520559310913,1.0888017416000366,0.6530718803405762,-0.1312418282032013,0.47877994179725647,0.7053594589233398,0.9493681788444519,1.3153812885284424,1.6116775274276733,1.6291067600250244,1.681394338607788,1.6116775274276733,1.8556863069534302,1.7859694957733154,1.6988235712051392,1.2805228233337402,1.2282352447509766,1.2979520559310913,0.9145098328590393,1.036514163017273,1.1410893201828003,1.0190849304199219,0.6879302859306335],[1.7511111497879028,1.8556863069534302,2.1345534324645996,1.6988235712051392,1.7162526845932007,1.820827841758728,1.9079738855361938,1.9602614641189575,1.7511111497879028,1.5419608354568481,1.2805228233337402,1.2630937099456787,1.4199564456939697,1.524531602859497,2.2914161682128906,1.7859694957733154,2.082265853881836,1.8731154203414917,0.9493681788444519,0.8447930216789246,0.6356427073478699,1.053943395614624,1.8905446529388428,-0.6018300652503967,-0.427538126707077,0.2347712367773056,0.32191720604896545,0.966797411441803,0.7402178645133972,0.5659258961677551,1.053943395614624,0.8796514272689819,1.2630937099456787,1.6291067600250244,1.5942484140396118,1.367668867111206,1.2456644773483276,1.1585185527801514,1.5419608354568481,1.3850979804992676,1.5593899488449097,1.6291067600250244,1.3850979804992676,1.9428322315216064,1.8556863069534302,1.6465359926223755,1.9079738855361938,1.663965106010437,2.0299782752990723,1.838257074356079,1.7336819171905518,1.4025272130966187,1.5942484140396118,1.5768191814422607,2.0648365020751953,2.0125489234924316,1.6465359926223755,1.9951198101043701,1.7162526845932007,1.7685402631759644,1.5593899488449097,1.4896732568740845,1.5419608354568481,1.2282352447509766,1.6988235712051392,1.7859694957733154,1.6116775274276733,1.663965106010437,1.7162526845932007,1.8033987283706665,1.7162526845932007,1.5593899488449097,1.8905446529388428,1.5593899488449097,1.7511111497879028,1.2805228233337402,1.1062309741973877,1.5768191814422607,1.8033987283706665,1.7511111497879028,1.5419608354568481,1.7336819171905518,1.681394338607788,1.332810401916504,1.5768191814422607,1.507102370262146,1.4373856782913208,1.2979520559310913,1.2456644773483276,1.036514163017273,1.0016558170318604,1.4722440242767334,1.5419608354568481,1.5593899488449097,1.5593899488449097,1.350239634513855,1.367668867111206,1.2630937099456787,1.4896732568740845,1.7685402631759644,1.663965106010437,1.5768191814422607,1.4896732568740845,1.6291067600250244,1.367668867111206,1.193376898765564,1.4025272130966187,1.4722440242767334,1.3850979804992676,1.7336819171905518,1.681394338607788,1.332810401916504,1.1062309741973877,1.036514163017273,1.4896732568740845,1.0016558170318604,1.2282352447509766,1.1585185527801514,1.2630937099456787,0.8622221946716309,0.8796514272689819,1.3153812885284424,1.6291067600250244,1.6291067600250244,1.2979520559310913,1.681394338607788,1.332810401916504,1.681394338607788,1.524531602859497,1.4722440242767334,1.820827841758728,1.6465359926223755,1.4373856782913208,1.4548147916793823,1.5768191814422607,1.5768191814422607,1.5419608354568481,1.6116775274276733,1.663965106010437,1.3850979804992676,1.4373856782913208,1.5768191814422607,1.5768191814422607,1.210806131362915,1.350239634513855,1.5768191814422607,1.2456644773483276,1.3153812885284424,1.5419608354568481,1.3153812885284424,1.2805228233337402,1.5768191814422607,1.332810401916504,1.053943395614624,1.4025272130966187,1.1585185527801514,1.3153812885284424,1.3153812885284424,1.4025272130966187,1.3850979804992676,1.3850979804992676,1.6988235712051392,1.5419608354568481,1.4025272130966187,1.5768191814422607,1.663965106010437,1.5419608354568481,1.7685402631759644,1.4373856782913208,1.681394338607788,1.7685402631759644,1.6988235712051392,1.4373856782913208,1.4548147916793823,1.1236600875854492,0.5310675501823425,1.367668867111206,1.036514163017273,0.8970806002616882,0.8796514272689819,0.966797411441803,0.7227886915206909,0.8447930216789246,0.6007843017578125,0.8447930216789246,1.524531602859497,1.5419608354568481,1.7162526845932007,1.7336819171905518,1.7336819171905518,1.7336819171905518,1.332810401916504,1.0888017416000366,1.0016558170318604,0.5659258961677551,0.7053594589233398,0.47877994179725647,0.8622221946716309,1.0888017416000366,1.2805228233337402,1.524531602859497,1.1410893201828003,1.2630937099456787,0.14762526750564575,0.02562091499567032,0.3567756116390228,0.28705883026123047,0.8970806002616882,1.210806131362915,1.4896732568740845,1.4896732568740845,1.7685402631759644,1.7162526845932007,1.7511111497879028,1.9951198101043701,1.4896732568740845,1.4025272130966187,1.5768191814422607,1.2456644773483276,1.193376898765564,0.7925054430961609,0.9842265844345093,0.7576470375061035,0.32191720604896545],[1.681394338607788,1.5419608354568481,1.5593899488449097,2.0648365020751953,1.7162526845932007,1.5942484140396118,1.8556863069534302,1.6988235712051392,1.7511111497879028,1.7859694957733154,1.6116775274276733,0.9493681788444519,1.6116775274276733,1.4025272130966187,1.8905446529388428,2.483137369155884,1.9602614641189575,1.4025272130966187,0.8447930216789246,0.28705883026123047,0.6182135343551636,0.8099346160888672,1.6465359926223755,-1.0375598669052124,0.19991286098957062,0.6705011129379272,0.8622221946716309,0.9493681788444519,0.7053594589233398,0.7750762701034546,1.036514163017273,0.8099346160888672,0.9842265844345093,1.2979520559310913,1.4722440242767334,1.4722440242767334,1.4548147916793823,1.5593899488449097,1.663965106010437,1.6988235712051392,1.4548147916793823,1.9254029989242554,1.820827841758728,1.5593899488449097,1.4025272130966187,1.7511111497879028,1.8731154203414917,1.9428322315216064,1.3153812885284424,1.2282352447509766,1.507102370262146,1.6465359926223755,1.6465359926223755,1.838257074356079,2.0125489234924316,1.8556863069534302,1.6116775274276733,1.9602614641189575,1.9079738855361938,1.7859694957733154,1.8556863069534302,1.7685402631759644,1.6465359926223755,1.4896732568740845,1.5768191814422607,1.6988235712051392,1.367668867111206,1.7685402631759644,1.7511111497879028,1.820827841758728,1.7336819171905518,1.524531602859497,1.5419608354568481,1.5419608354568481,1.8905446529388428,1.4548147916793823,1.524531602859497,1.9428322315216064,1.4025272130966187,1.7685402631759644,1.6988235712051392,1.350239634513855,1.4025272130966187,1.4896732568740845,1.1585185527801514,1.1585185527801514,1.3153812885284424,1.2805228233337402,1.1236600875854492,1.4373856782913208,1.4896732568740845,0.966797411441803,1.367668867111206,1.524531602859497,1.5768191814422607,1.2805228233337402,1.4896732568740845,1.5419608354568481,1.8556863069534302,1.681394338607788,1.681394338607788,1.7685402631759644,1.6465359926223755,1.4373856782913208,1.4373856782913208,1.5942484140396118,1.5419608354568481,1.5942484140396118,1.4199564456939697,1.7162526845932007,1.5593899488449097,1.681394338607788,1.0888017416000366,1.0016558170318604,0.8796514272689819,1.332810401916504,1.6116775274276733,1.1410893201828003,0.8447930216789246,1.0016558170318604,0.7750762701034546,1.350239634513855,1.6116775274276733,1.2979520559310913,1.4025272130966187,1.2805228233337402,1.8033987283706665,1.3850979804992676,1.4722440242767334,1.5768191814422607,1.838257074356079,1.4722440242767334,1.3850979804992676,1.507102370262146,1.1585185527801514,1.4722440242767334,1.5593899488449097,1.6465359926223755,1.4025272130966187,1.5942484140396118,1.9079738855361938,1.5768191814422607,1.3153812885284424,1.4722440242767334,1.350239634513855,1.210806131362915,1.350239634513855,1.6291067600250244,1.036514163017273,1.2630937099456787,1.2805228233337402,1.2456644773483276,1.367668867111206,1.4896732568740845,1.0888017416000366,1.2805228233337402,1.1585185527801514,1.350239634513855,1.3850979804992676,1.8033987283706665,1.4896732568740845,1.663965106010437,1.4722440242767334,1.5593899488449097,1.7162526845932007,1.524531602859497,1.663965106010437,1.4722440242767334,1.7511111497879028,1.7511111497879028,1.8033987283706665,1.7859694957733154,1.524531602859497,1.4025272130966187,0.8099346160888672,0.9145098328590393,0.9842265844345093,0.9493681788444519,0.8970806002616882,0.8622221946716309,0.8099346160888672,0.6879302859306335,0.6879302859306335,0.9319390058517456,1.1585185527801514,1.4025272130966187,1.4025272130966187,1.507102370262146,1.7859694957733154,1.6465359926223755,1.5942484140396118,1.332810401916504,0.8796514272689819,0.7925054430961609,0.6356427073478699,0.8447930216789246,0.32191720604896545,0.8447930216789246,0.8099346160888672,1.2630937099456787,1.4025272130966187,1.193376898765564,1.0016558170318604,0.8796514272689819,0.2173420488834381,0.008191721513867378,0.2173420488834381,-0.2881045639514923,1.193376898765564,1.2805228233337402,1.6291067600250244,1.4896732568740845,1.4896732568740845,1.8556863069534302,2.0125489234924316,1.9254029989242554,1.5419608354568481,1.5593899488449097,1.5593899488449097,1.5419608354568481,0.8970806002616882,1.0713725090026855,0.7053594589233398,0.7750762701034546],[1.8033987283706665,1.6291067600250244,1.8731154203414917,1.7511111497879028,1.5942484140396118,1.6465359926223755,1.681394338607788,2.1345534324645996,1.9951198101043701,1.7859694957733154,1.5593899488449097,1.2805228233337402,0.8796514272689819,1.5419608354568481,1.6465359926223755,1.838257074356079,1.4548147916793823,1.4896732568740845,1.175947666168213,1.0190849304199219,0.6182135343551636,1.0888017416000366,1.681394338607788,-0.427538126707077,0.09533768892288208,0.3916339874267578,0.11276688426733017,0.4264923632144928,0.46135076880455017,0.8447930216789246,0.9493681788444519,0.8970806002616882,0.9842265844345093,1.210806131362915,1.2282352447509766,1.3850979804992676,1.681394338607788,1.663965106010437,1.5419608354568481,1.681394338607788,1.663965106010437,1.838257074356079,1.7511111497879028,1.6116775274276733,1.5419608354568481,1.9428322315216064,1.6291067600250244,1.7511111497879028,1.6988235712051392,1.6465359926223755,1.7685402631759644,1.663965106010437,1.663965106010437,1.838257074356079,1.5593899488449097,1.6988235712051392,1.9254029989242554,1.5768191814422607,1.5419608354568481,1.8905446529388428,1.8556863069534302,1.5593899488449097,1.350239634513855,2.27398681640625,1.6988235712051392,1.8731154203414917,1.6465359926223755,1.367668867111206,1.5593899488449097,1.4373856782913208,1.4896732568740845,1.7336819171905518,1.663965106010437,1.4548147916793823,1.5768191814422607,1.2456644773483276,1.6291067600250244,1.4548147916793823,1.5942484140396118,1.820827841758728,1.332810401916504,1.8556863069534302,1.3153812885284424,1.4199564456939697,1.2630937099456787,1.0888017416000366,1.332810401916504,1.6116775274276733,1.2282352447509766,1.1585185527801514,1.4722440242767334,1.663965106010437,1.507102370262146,1.6116775274276733,1.507102370262146,1.4199564456939697,1.5593899488449097,1.681394338607788,1.507102370262146,1.6988235712051392,1.5942484140396118,1.367668867111206,1.5942484140396118,1.820827841758728,1.332810401916504,1.4373856782913208,1.6291067600250244,1.5768191814422607,1.838257074356079,1.6465359926223755,1.8731154203414917,1.3850979804992676,1.4199564456939697,1.3850979804992676,1.193376898765564,1.053943395614624,1.350239634513855,0.9319390058517456,1.2282352447509766,1.0190849304199219,1.350239634513855,1.210806131362915,1.4548147916793823,1.4896732568740845,1.332810401916504,1.1410893201828003,1.350239634513855,1.4199564456939697,1.524531602859497,1.6291067600250244,1.6291067600250244,1.5768191814422607,1.7685402631759644,1.6465359926223755,1.2805228233337402,1.4373856782913208,1.5593899488449097,1.5419608354568481,1.6116775274276733,1.663965106010437,1.3153812885284424,1.367668867111206,1.4373856782913208,1.5593899488449097,0.9319390058517456,1.332810401916504,1.4025272130966187,1.210806131362915,1.193376898765564,1.524531602859497,1.5768191814422607,1.2456644773483276,1.6291067600250244,1.4722440242767334,1.4025272130966187,1.5419608354568481,1.4373856782913208,1.5593899488449097,1.4896732568740845,1.5419608354568481,1.6291067600250244,1.5593899488449097,1.663965106010437,1.4896732568740845,1.5419608354568481,1.524531602859497,1.681394338607788,1.524531602859497,1.7162526845932007,1.6116775274276733,1.507102370262146,1.4373856782913208,1.4025272130966187,1.193376898765564,1.5593899488449097,1.1062309741973877,0.8447930216789246,0.7227886915206909,1.0190849304199219,0.8099346160888672,0.8099346160888672,0.8447930216789246,0.8447930216789246,1.036514163017273,1.1062309741973877,1.4199564456939697,1.507102370262146,1.6988235712051392,1.6116775274276733,1.6291067600250244,1.4373856782913208,1.1062309741973877,1.0016558170318604,1.0713725090026855,0.6879302859306335,0.7925054430961609,0.47877994179725647,1.2630937099456787,0.9319390058517456,1.6116775274276733,1.3850979804992676,1.0016558170318604,1.036514163017273,0.5310675501823425,0.6182135343551636,-0.23581700026988983,0.32191720604896545,-0.09638344496488571,0.3916339874267578,1.4199564456939697,1.6116775274276733,1.4373856782913208,1.5419608354568481,1.8033987283706665,1.6988235712051392,1.7859694957733154,1.5593899488449097,1.663965106010437,1.5593899488449097,1.4199564456939697,1.4373856782913208,1.175947666168213,1.2979520559310913,0.8447930216789246],[1.7162526845932007,1.681394338607788,1.332810401916504,1.6116775274276733,1.4896732568740845,1.2979520559310913,1.2805228233337402,1.838257074356079,1.820827841758728,1.5419608354568481,1.5942484140396118,1.4548147916793823,0.2347712367773056,1.175947666168213,1.8556863069534302,1.8905446529388428,1.681394338607788,1.4025272130966187,1.681394338607788,0.49620914459228516,1.053943395614624,1.2282352447509766,1.210806131362915,-0.41010892391204834,0.008191721513867378,0.16505447030067444,0.4264923632144928,0.7227886915206909,0.7925054430961609,0.7227886915206909,1.175947666168213,0.6182135343551636,0.8273638486862183,1.1410893201828003,1.332810401916504,1.2979520559310913,1.5593899488449097,1.9254029989242554,1.6291067600250244,1.524531602859497,1.9079738855361938,1.9254029989242554,1.9602614641189575,1.6988235712051392,1.8033987283706665,1.4199564456939697,1.8731154203414917,1.9602614641189575,1.838257074356079,1.7511111497879028,1.820827841758728,1.9602614641189575,1.6988235712051392,1.663965106010437,1.820827841758728,1.5942484140396118,1.9254029989242554,1.6988235712051392,1.7336819171905518,1.3850979804992676,1.838257074356079,1.4025272130966187,1.7336819171905518,1.4722440242767334,1.4548147916793823,1.7859694957733154,1.4896732568740845,1.7162526845932007,1.5593899488449097,1.5419608354568481,1.3850979804992676,1.6291067600250244,1.2630937099456787,1.5942484140396118,1.4896732568740845,1.4722440242767334,1.2979520559310913,1.5942484140396118,1.5942484140396118,1.6291067600250244,1.210806131362915,1.7336819171905518,1.332810401916504,1.4548147916793823,1.4025272130966187,1.4373856782913208,1.5419608354568481,1.332810401916504,1.507102370262146,1.350239634513855,1.6291067600250244,1.7685402631759644,1.6291067600250244,1.4548147916793823,1.4722440242767334,1.4548147916793823,1.7859694957733154,1.5419608354568481,1.8731154203414917,1.4896732568740845,1.663965106010437,1.6988235712051392,1.6291067600250244,1.507102370262146,1.2456644773483276,1.4373856782913208,1.5419608354568481,1.5768191814422607,1.6291067600250244,1.7336819171905518,1.5768191814422607,1.2630937099456787,1.2630937099456787,1.053943395614624,1.350239634513855,1.3153812885284424,1.0888017416000366,1.193376898765564,0.9493681788444519,1.524531602859497,1.1062309741973877,1.2805228233337402,1.5942484140396118,1.4722440242767334,0.9842265844345093,1.0888017416000366,1.2282352447509766,1.663965106010437,1.4025272130966187,1.5768191814422607,1.5768191814422607,1.6988235712051392,1.4373856782913208,1.507102370262146,1.2630937099456787,1.4025272130966187,1.7511111497879028,1.4722440242767334,1.8033987283706665,1.4896732568740845,1.6465359926223755,1.4373856782913208,1.524531602859497,1.0016558170318604,1.5942484140396118,1.2805228233337402,1.4025272130966187,1.2282352447509766,1.2630937099456787,1.332810401916504,1.5593899488449097,1.2630937099456787,1.5419608354568481,1.4199564456939697,1.524531602859497,1.5768191814422607,1.4722440242767334,1.4548147916793823,1.7859694957733154,1.524531602859497,1.4199564456939697,1.6116775274276733,1.5593899488449097,1.6465359926223755,1.5942484140396118,1.7511111497879028,1.4548147916793823,1.8033987283706665,1.5942484140396118,1.4896732568740845,1.367668867111206,1.3850979804992676,1.663965106010437,1.193376898765564,1.193376898765564,1.332810401916504,1.0016558170318604,0.7750762701034546,1.0888017416000366,0.7925054430961609,0.5833551287651062,0.7576470375061035,0.9145098328590393,0.9493681788444519,0.8273638486862183,1.524531602859497,1.7859694957733154,1.663965106010437,1.7162526845932007,1.7162526845932007,1.4199564456939697,1.193376898765564,1.0190849304199219,1.0713725090026855,0.5310675501823425,0.9145098328590393,0.6705011129379272,0.7750762701034546,1.4896732568740845,1.3850979804992676,1.4199564456939697,0.8796514272689819,1.2282352447509766,0.7227886915206909,0.5659258961677551,0.11276688426733017,-0.009237472899258137,0.49620914459228516,0.3742047846317291,1.4373856782913208,1.3850979804992676,1.6465359926223755,1.820827841758728,1.5593899488449097,1.8731154203414917,1.4896732568740845,1.5942484140396118,1.4025272130966187,1.663965106010437,1.4722440242767334,1.0016558170318604,1.3850979804992676,1.2630937099456787,1.0888017416000366],[1.8556863069534302,1.8033987283706665,1.681394338607788,1.681394338607788,1.9428322315216064,1.1236600875854492,1.6116775274276733,1.6291067600250244,1.8033987283706665,1.838257074356079,1.9254029989242554,1.332810401916504,-0.35782134532928467,1.5942484140396118,1.838257074356079,2.117124080657959,2.0299782752990723,1.2979520559310913,1.2979520559310913,1.2456644773483276,1.7511111497879028,1.4199564456939697,1.2456644773483276,-0.41010892391204834,-0.16610021889209747,0.16505447030067444,0.6705011129379272,0.6182135343551636,0.7750762701034546,0.7576470375061035,0.5136383175849915,0.9493681788444519,0.7925054430961609,1.1410893201828003,1.1062309741973877,1.2282352447509766,1.7162526845932007,1.820827841758728,1.6465359926223755,1.4722440242767334,1.7685402631759644,1.7162526845932007,2.0299782752990723,1.7336819171905518,1.5942484140396118,1.820827841758728,1.6988235712051392,1.5942484140396118,1.3850979804992676,1.8033987283706665,1.7511111497879028,1.838257074356079,1.7336819171905518,1.681394338607788,2.082265853881836,1.4722440242767334,1.2282352447509766,1.6291067600250244,1.6988235712051392,1.6465359926223755,1.6116775274276733,1.3850979804992676,1.6116775274276733,1.9079738855361938,1.663965106010437,1.4373856782913208,1.4199564456939697,1.9254029989242554,1.5942484140396118,1.6116775274276733,1.681394338607788,1.524531602859497,1.6116775274276733,1.4722440242767334,1.681394338607788,1.9079738855361938,1.8033987283706665,1.6291067600250244,2.2565577030181885,1.1236600875854492,1.4548147916793823,1.2282352447509766,1.2282352447509766,1.2805228233337402,1.1410893201828003,0.9842265844345093,1.0190849304199219,1.6116775274276733,1.7685402631759644,1.7685402631759644,1.6465359926223755,1.6116775274276733,1.4373856782913208,1.5942484140396118,1.6465359926223755,1.6291067600250244,1.681394338607788,1.5768191814422607,1.9602614641189575,1.507102370262146,1.7859694957733154,1.7511111497879028,1.350239634513855,1.4548147916793823,1.5593899488449097,1.2805228233337402,1.838257074356079,1.4025272130966187,1.7511111497879028,1.4025272130966187,1.4025272130966187,1.2805228233337402,1.2979520559310913,1.2979520559310913,1.0713725090026855,1.175947666168213,1.2630937099456787,1.6291067600250244,0.9842265844345093,1.4373856782913208,1.2456644773483276,1.2456644773483276,1.5942484140396118,1.2630937099456787,1.5593899488449097,1.2630937099456787,1.367668867111206,1.507102370262146,1.524531602859497,1.5419608354568481,1.350239634513855,1.367668867111206,1.4199564456939697,1.5419608354568481,1.367668867111206,1.7685402631759644,1.507102370262146,1.3850979804992676,1.5593899488449097,1.6988235712051392,1.210806131362915,1.507102370262146,1.4373856782913208,1.6291067600250244,1.524531602859497,1.367668867111206,1.3153812885284424,1.4025272130966187,1.4025272130966187,1.2282352447509766,1.5593899488449097,1.524531602859497,1.4548147916793823,1.332810401916504,1.3153812885284424,1.1236600875854492,1.5593899488449097,1.507102370262146,1.5942484140396118,1.5419608354568481,1.7336819171905518,1.6291067600250244,1.5419608354568481,1.977690577507019,1.7336819171905518,1.6988235712051392,1.5593899488449097,1.6116775274276733,1.5942484140396118,1.3850979804992676,1.3153812885284424,1.4548147916793823,1.7859694957733154,1.2630937099456787,1.4896732568740845,1.053943395614624,1.524531602859497,0.7925054430961609,0.8273638486862183,0.9145098328590393,1.0190849304199219,0.7227886915206909,1.1410893201828003,1.2630937099456787,1.4373856782913208,1.367668867111206,1.663965106010437,1.5768191814422607,1.7685402631759644,1.820827841758728,1.3153812885284424,1.175947666168213,1.2805228233337402,1.036514163017273,0.8970806002616882,0.3742047846317291,0.5136383175849915,0.7925054430961609,0.7750762701034546,1.193376898765564,1.3850979804992676,0.7750762701034546,0.966797411441803,0.47877994179725647,0.4264923632144928,0.6182135343551636,0.7750762701034546,0.2696296274662018,0.14762526750564575,1.193376898765564,1.5768191814422607,1.4548147916793823,1.681394338607788,1.663965106010437,1.6291067600250244,1.681394338607788,1.7859694957733154,1.663965106010437,1.0190849304199219,1.8033987283706665,1.210806131362915,1.2979520559310913,1.210806131362915,0.9319390058517456],[2.204270124435425,2.0299782752990723,1.9428322315216064,1.524531602859497,1.6465359926223755,1.036514163017273,1.367668867111206,1.0713725090026855,1.507102370262146,1.5593899488449097,1.820827841758728,1.6465359926223755,-0.9504139423370361,1.175947666168213,1.9254029989242554,1.8556863069534302,2.1345534324645996,1.2805228233337402,1.1236600875854492,1.2282352447509766,1.0888017416000366,1.1236600875854492,1.2805228233337402,-0.21838779747486115,0.07790849357843399,0.11276688426733017,0.5484967231750488,0.6705011129379272,0.5659258961677551,0.7227886915206909,0.8099346160888672,0.8273638486862183,0.7576470375061035,1.193376898765564,1.2456644773483276,0.7402178645133972,1.350239634513855,1.5593899488449097,1.524531602859497,1.4548147916793823,1.7685402631759644,1.4373856782913208,1.3153812885284424,1.681394338607788,1.663965106010437,1.7685402631759644,1.4896732568740845,1.5768191814422607,1.838257074356079,1.9428322315216064,1.6465359926223755,1.7859694957733154,1.6291067600250244,1.6291067600250244,1.4199564456939697,1.7336819171905518,1.8731154203414917,1.6988235712051392,1.6291067600250244,1.681394338607788,1.6465359926223755,1.6465359926223755,1.5768191814422607,1.6291067600250244,1.681394338607788,1.663965106010437,1.6291067600250244,1.2979520559310913,1.5768191814422607,1.4722440242767334,1.7162526845932007,1.6116775274276733,1.6291067600250244,1.4548147916793823,1.7859694957733154,1.681394338607788,1.663965106010437,1.5768191814422607,1.3850979804992676,1.350239634513855,1.4199564456939697,1.2456644773483276,1.332810401916504,1.2282352447509766,1.4199564456939697,1.507102370262146,1.332810401916504,1.5419608354568481,1.5419608354568481,1.5593899488449097,1.977690577507019,1.820827841758728,1.5768191814422607,1.367668867111206,1.663965106010437,1.6116775274276733,1.7511111497879028,1.7162526845932007,1.4548147916793823,1.0016558170318604,1.507102370262146,1.8556863069534302,1.6988235712051392,1.210806131362915,1.3850979804992676,1.5419608354568481,1.4896732568740845,1.4025272130966187,1.838257074356079,1.6291067600250244,1.2805228233337402,1.0888017416000366,1.210806131362915,1.2456644773483276,1.5942484140396118,1.4373856782913208,1.2630937099456787,1.2979520559310913,1.2456644773483276,1.1585185527801514,1.1062309741973877,1.2282352447509766,1.524531602859497,1.5593899488449097,1.4722440242767334,1.5942484140396118,1.367668867111206,1.4896732568740845,1.6291067600250244,1.6988235712051392,1.681394338607788,1.663965106010437,1.2979520559310913,1.5419608354568481,1.4199564456939697,1.5942484140396118,1.5942484140396118,1.6465359926223755,1.7859694957733154,1.4548147916793823,1.4373856782913208,1.3153812885284424,1.210806131362915,1.2456644773483276,1.2805228233337402,1.0190849304199219,1.2630937099456787,1.1410893201828003,1.507102370262146,1.332810401916504,1.4548147916793823,1.2979520559310913,1.1585185527801514,1.350239634513855,1.6116775274276733,1.367668867111206,1.5768191814422607,1.6291067600250244,1.6465359926223755,1.4025272130966187,1.5768191814422607,1.5942484140396118,1.4722440242767334,1.9079738855361938,1.4025272130966187,1.5593899488449097,1.7336819171905518,1.6116775274276733,1.5942484140396118,1.2630937099456787,1.6116775274276733,1.350239634513855,1.2979520559310913,0.9493681788444519,1.0713725090026855,0.7053594589233398,1.053943395614624,0.6530718803405762,0.7053594589233398,1.1410893201828003,0.966797411441803,0.9493681788444519,1.2282352447509766,1.1585185527801514,1.4199564456939697,1.7511111497879028,1.6465359926223755,1.5768191814422607,1.524531602859497,1.8731154203414917,1.332810401916504,1.1236600875854492,1.1410893201828003,0.7053594589233398,0.7227886915206909,0.6356427073478699,0.6356427073478699,1.210806131362915,1.367668867111206,1.332810401916504,1.4373856782913208,1.0190849304199219,0.7053594589233398,0.8273638486862183,0.3916339874267578,0.18248365819454193,0.33934640884399414,-0.07895424962043762,0.4439215660095215,0.9842265844345093,1.350239634513855,1.7685402631759644,1.7162526845932007,1.5593899488449097,1.663965106010437,1.7859694957733154,1.6988235712051392,1.5593899488449097,1.5419608354568481,1.4548147916793823,1.524531602859497,1.524531602859497,1.1585185527801514,1.332810401916504],[1.9602614641189575,1.9254029989242554,1.7336819171905518,1.9602614641189575,1.210806131362915,1.5419608354568481,1.0888017416000366,1.0713725090026855,0.8796514272689819,1.5419608354568481,1.681394338607788,1.036514163017273,-0.9155555367469788,0.5659258961677551,1.6291067600250244,2.2914161682128906,1.9602614641189575,1.7336819171905518,0.8970806002616882,1.1585185527801514,1.2456644773483276,1.0713725090026855,1.036514163017273,-0.8632679581642151,-0.14867103099822998,-0.16610021889209747,-0.02666666731238365,0.4264923632144928,0.46135076880455017,0.4439215660095215,0.8970806002616882,0.5833551287651062,0.8796514272689819,0.8099346160888672,1.193376898765564,1.1062309741973877,1.3153812885284424,1.2456644773483276,1.524531602859497,1.6465359926223755,1.507102370262146,1.6465359926223755,1.7336819171905518,1.7162526845932007,1.5593899488449097,1.820827841758728,1.6116775274276733,1.7859694957733154,2.0125489234924316,1.5593899488449097,1.9254029989242554,1.9951198101043701,1.6465359926223755,1.663965106010437,1.8033987283706665,1.7859694957733154,1.7859694957733154,1.6116775274276733,1.8905446529388428,1.681394338607788,1.4896732568740845,1.7336819171905518,1.6116775274276733,1.7511111497879028,1.681394338607788,1.9428322315216064,1.4025272130966187,1.7162526845932007,1.2805228233337402,1.681394338607788,1.7685402631759644,1.6291067600250244,1.7859694957733154,1.8556863069534302,1.4025272130966187,1.7859694957733154,1.367668867111206,1.9428322315216064,1.524531602859497,1.4199564456939697,1.7685402631759644,1.0888017416000366,1.6291067600250244,0.9842265844345093,1.5942484140396118,1.6465359926223755,1.367668867111206,1.6291067600250244,1.7162526845932007,1.7162526845932007,1.524531602859497,1.7162526845932007,1.7336819171905518,1.6291067600250244,1.6116775274276733,1.681394338607788,1.681394338607788,1.7162526845932007,1.8731154203414917,1.6291067600250244,1.4722440242767334,1.6291067600250244,1.6988235712051392,1.4025272130966187,1.5942484140396118,1.4896732568740845,1.7162526845932007,1.681394338607788,1.4548147916793823,1.332810401916504,1.367668867111206,1.193376898765564,1.332810401916504,1.2805228233337402,1.6116775274276733,1.5593899488449097,1.2979520559310913,1.4025272130966187,1.4025272130966187,1.210806131362915,1.1585185527801514,1.2282352447509766,1.663965106010437,1.4548147916793823,1.3850979804992676,1.524531602859497,1.681394338607788,1.3850979804992676,1.6291067600250244,1.332810401916504,1.524531602859497,1.507102370262146,1.7162526845932007,1.3153812885284424,1.5593899488449097,1.4722440242767334,1.4896732568740845,1.524531602859497,1.4199564456939697,1.524531602859497,1.4722440242767334,1.193376898765564,1.367668867111206,1.4548147916793823,1.350239634513855,1.053943395614624,1.2805228233337402,1.2805228233337402,1.2979520559310913,1.2456644773483276,1.367668867111206,1.4373856782913208,1.193376898765564,1.4722440242767334,1.4548147916793823,1.681394338607788,1.6116775274276733,1.4722440242767334,1.5419608354568481,1.507102370262146,1.6116775274276733,1.7162526845932007,1.507102370262146,1.6116775274276733,1.663965106010437,1.6116775274276733,1.6116775274276733,1.7336819171905518,1.5419608354568481,1.2979520559310913,1.3153812885284424,1.0713725090026855,1.1236600875854492,1.350239634513855,0.49620914459228516,0.9493681788444519,0.7576470375061035,1.0190849304199219,0.7925054430961609,1.5419608354568481,0.8622221946716309,1.0016558170318604,1.2630937099456787,1.4722440242767334,1.4199564456939697,1.7685402631759644,1.4373856782913208,1.4722440242767334,1.7511111497879028,1.524531602859497,1.507102370262146,1.0190849304199219,0.9493681788444519,0.6879302859306335,0.6007843017578125,0.5484967231750488,0.9145098328590393,0.6879302859306335,1.2456644773483276,1.1236600875854492,1.1585185527801514,1.036514163017273,1.2456644773483276,0.8970806002616882,0.6530718803405762,0.4264923632144928,0.14762526750564575,-0.1312418282032013,0.0604793019592762,0.6705011129379272,1.4199564456939697,1.7511111497879028,1.663965106010437,1.7859694957733154,1.6988235712051392,1.7336819171905518,1.6116775274276733,1.4896732568740845,1.2979520559310913,1.5942484140396118,1.332810401916504,1.4199564456939697,1.193376898765564,1.2979520559310913],[2.0125489234924316,2.1694116592407227,1.8731154203414917,1.9428322315216064,1.5593899488449097,1.4896732568740845,1.1410893201828003,1.175947666168213,1.053943395614624,0.8970806002616882,1.350239634513855,1.6988235712051392,-0.7935512065887451,0.8796514272689819,2.0996949672698975,1.9428322315216064,2.0125489234924316,1.7162526845932007,1.0016558170318604,1.0713725090026855,0.6182135343551636,1.0190849304199219,1.1236600875854492,-0.9155555367469788,0.008191721513867378,0.30448800325393677,0.07790849357843399,-0.20095860958099365,0.46135076880455017,0.47877994179725647,0.9493681788444519,1.0016558170318604,0.7576470375061035,0.8099346160888672,1.2979520559310913,1.4199564456939697,1.507102370262146,1.6116775274276733,1.681394338607788,1.175947666168213,1.681394338607788,1.8033987283706665,1.8033987283706665,1.8731154203414917,1.9079738855361938,1.507102370262146,1.6116775274276733,1.4896732568740845,1.7859694957733154,1.9602614641189575,1.681394338607788,1.6116775274276733,1.5768191814422607,1.5768191814422607,1.5593899488449097,1.6116775274276733,1.6116775274276733,1.6988235712051392,1.6116775274276733,2.204270124435425,1.8556863069534302,1.7859694957733154,1.6465359926223755,1.4373856782913208,1.6465359926223755,1.820827841758728,1.7685402631759644,1.838257074356079,1.5942484140396118,1.7511111497879028,1.4548147916793823,1.8731154203414917,1.3153812885284424,1.9254029989242554,1.2456644773483276,1.5942484140396118,1.7162526845932007,1.1585185527801514,1.6465359926223755,1.5419608354568481,1.367668867111206,1.2805228233337402,1.5419608354568481,1.367668867111206,1.3153812885284424,1.1585185527801514,1.6988235712051392,1.5419608354568481,1.6465359926223755,1.5593899488449097,1.7685402631759644,1.8556863069534302,1.9254029989242554,1.7511111497879028,1.8033987283706665,1.5768191814422607,1.4025272130966187,1.4896732568740845,1.2805228233337402,1.2805228233337402,0.8273638486862183,1.1236600875854492,1.4025272130966187,1.7162526845932007,1.507102370262146,1.5942484140396118,1.2282352447509766,1.6116775274276733,1.6291067600250244,1.5942484140396118,1.1236600875854492,1.193376898765564,1.4373856782913208,1.1585185527801514,1.4373856782913208,1.5942484140396118,1.2805228233337402,1.4548147916793823,1.350239634513855,1.2979520559310913,1.2979520559310913,1.350239634513855,1.507102370262146,1.6465359926223755,1.4896732568740845,1.367668867111206,1.193376898765564,1.3153812885284424,1.681394338607788,1.2979520559310913,1.5593899488449097,1.5942484140396118,1.6116775274276733,1.367668867111206,1.5768191814422607,1.350239634513855,1.6291067600250244,1.3850979804992676,1.3153812885284424,1.7511111497879028,1.524531602859497,1.2805228233337402,1.1062309741973877,1.1585185527801514,1.036514163017273,1.210806131362915,1.3153812885284424,1.4199564456939697,1.2456644773483276,1.4896732568740845,1.4025272130966187,1.4722440242767334,1.6116775274276733,1.663965106010437,1.4896732568740845,1.367668867111206,1.5419608354568481,1.5768191814422607,1.2805228233337402,1.8556863069534302,1.6988235712051392,1.8731154203414917,1.7336819171905518,1.7162526845932007,1.663965106010437,1.8033987283706665,1.5593899488449097,1.5593899488449097,1.6465359926223755,1.524531602859497,1.350239634513855,1.1236600875854492,0.8447930216789246,1.0888017416000366,0.7576470375061035,1.036514163017273,0.5310675501823425,1.175947666168213,0.7402178645133972,1.1410893201828003,0.9842265844345093,1.332810401916504,1.5419608354568481,1.4896732568740845,1.6465359926223755,1.7859694957733154,1.4548147916793823,1.6291067600250244,1.5419608354568481,1.8556863069534302,1.4722440242767334,0.966797411441803,0.8099346160888672,0.7227886915206909,0.8099346160888672,0.8447930216789246,1.0190849304199219,0.9319390058517456,1.5419608354568481,1.036514163017273,1.3153812885284424,1.1062309741973877,0.9493681788444519,1.0713725090026855,0.4090631902217865,0.4264923632144928,0.18248365819454193,0.3916339874267578,0.0604793019592762,0.2173420488834381,1.4025272130966187,1.7162526845932007,1.9079738855361938,1.681394338607788,1.681394338607788,1.7511111497879028,1.5942484140396118,1.6465359926223755,1.9079738855361938,1.3850979804992676,1.7685402631759644,1.4199564456939697,1.3153812885284424,1.0713725090026855],[1.9602614641189575,1.9951198101043701,1.977690577507019,2.0996949672698975,1.8731154203414917,1.5768191814422607,1.175947666168213,1.036514163017273,0.6705011129379272,0.11276688426733017,0.3742047846317291,1.0713725090026855,-0.8632679581642151,1.1062309741973877,2.0125489234924316,2.151982545852661,1.9951198101043701,1.663965106010437,1.367668867111206,1.053943395614624,0.5484967231750488,1.367668867111206,0.9319390058517456,-0.9155555367469788,-0.2532461881637573,0.6007843017578125,0.13019607961177826,0.47877994179725647,1.036514163017273,0.6530718803405762,0.6182135343551636,0.7925054430961609,1.0016558170318604,0.8622221946716309,0.8796514272689819,1.193376898765564,1.5593899488449097,1.507102370262146,1.4199564456939697,1.507102370262146,1.5768191814422607,1.367668867111206,1.6988235712051392,1.4896732568740845,1.7336819171905518,1.681394338607788,1.524531602859497,1.350239634513855,1.524531602859497,2.0299782752990723,1.681394338607788,1.6116775274276733,1.507102370262146,1.6116775274276733,1.4373856782913208,1.4548147916793823,1.4722440242767334,1.6988235712051392,1.7162526845932007,1.4896732568740845,1.2456644773483276,1.663965106010437,1.4025272130966187,1.6465359926223755,1.4896732568740845,1.8033987283706665,1.838257074356079,1.6116775274276733,1.6116775274276733,1.681394338607788,1.8033987283706665,1.7162526845932007,1.663965106010437,1.663965106010437,1.524531602859497,1.1585185527801514,1.332810401916504,1.7859694957733154,1.1410893201828003,1.2630937099456787,1.4548147916793823,1.3153812885284424,1.0190849304199219,1.9254029989242554,1.4025272130966187,1.4548147916793823,1.8731154203414917,1.663965106010437,1.8556863069534302,1.6988235712051392,1.6465359926223755,1.7685402631759644,1.663965106010437,1.663965106010437,1.4373856782913208,2.0125489234924316,1.5942484140396118,1.4373856782913208,1.2456644773483276,1.1062309741973877,1.1062309741973877,1.4548147916793823,0.966797411441803,1.210806131362915,1.350239634513855,1.4896732568740845,1.524531602859497,1.7162526845932007,1.681394338607788,1.1585185527801514,1.193376898765564,1.2282352447509766,1.1410893201828003,1.2282352447509766,1.350239634513855,1.4373856782913208,1.4548147916793823,1.4025272130966187,1.6465359926223755,1.2630937099456787,1.4896732568740845,1.4373856782913208,1.2282352447509766,1.3850979804992676,1.367668867111206,1.507102370262146,1.3153812885284424,1.5419608354568481,1.5593899488449097,1.4722440242767334,1.2282352447509766,1.507102370262146,1.4722440242767334,1.7336819171905518,1.2282352447509766,1.524531602859497,1.4199564456939697,1.4896732568740845,1.4199564456939697,1.2630937099456787,1.5419608354568481,1.210806131362915,1.0713725090026855,0.9145098328590393,1.2456644773483276,1.5419608354568481,1.4199564456939697,1.3850979804992676,1.2456644773483276,1.663965106010437,1.4025272130966187,1.367668867111206,1.5593899488449097,1.5768191814422607,1.5942484140396118,1.4373856782913208,1.2979520559310913,1.663965106010437,1.6116775274276733,1.663965106010437,1.7859694957733154,1.5942484140396118,1.681394338607788,1.681394338607788,1.4896732568740845,1.7685402631759644,1.681394338607788,1.3153812885284424,1.2282352447509766,1.2282352447509766,1.0190849304199219,0.966797411441803,0.9145098328590393,1.053943395614624,1.036514163017273,0.7925054430961609,0.6007843017578125,1.2630937099456787,1.0190849304199219,0.9493681788444519,1.1585185527801514,1.367668867111206,1.2282352447509766,1.4199564456939697,1.367668867111206,1.663965106010437,1.367668867111206,1.4025272130966187,1.5768191814422607,1.175947666168213,1.2979520559310913,1.1410893201828003,0.7402178645133972,0.6879302859306335,0.4090631902217865,0.7925054430961609,1.193376898765564,1.2456644773483276,1.3153812885284424,1.5942484140396118,1.175947666168213,0.9493681788444519,0.7402178645133972,0.8622221946716309,0.8970806002616882,0.04305011034011841,-0.09638344496488571,-0.1312418282032013,-0.009237472899258137,0.6879302859306335,0.8796514272689819,1.663965106010437,1.1410893201828003,1.7162526845932007,1.5942484140396118,1.6465359926223755,1.8905446529388428,1.6465359926223755,1.524531602859497,1.3153812885284424,1.6465359926223755,1.5593899488449097,1.507102370262146,1.4025272130966187],[2.0299782752990723,1.9428322315216064,1.9951198101043701,1.8731154203414917,1.9602614641189575,1.820827841758728,1.7336819171905518,1.6116775274276733,1.1410893201828003,0.5310675501823425,0.2347712367773056,0.5136383175849915,-0.06152505427598953,1.4722440242767334,1.8033987283706665,1.7511111497879028,1.9951198101043701,1.3153812885284424,1.210806131362915,0.8273638486862183,1.0190849304199219,1.350239634513855,0.8970806002616882,-0.4798257052898407,-0.23581700026988983,-0.06152505427598953,0.2173420488834381,0.3916339874267578,0.9319390058517456,0.5310675501823425,0.07790849357843399,0.7227886915206909,0.966797411441803,0.9145098328590393,0.8970806002616882,1.5419608354568481,1.2282352447509766,1.2805228233337402,1.5768191814422607,1.4548147916793823,1.4722440242767334,1.5942484140396118,1.6291067600250244,1.9079738855361938,1.977690577507019,1.2282352447509766,1.663965106010437,1.7162526845932007,1.5942484140396118,1.838257074356079,1.8556863069534302,1.820827841758728,1.5419608354568481,1.7511111497879028,1.6465359926223755,1.6116775274276733,1.507102370262146,1.7859694957733154,1.8033987283706665,1.663965106010437,1.6988235712051392,1.332810401916504,1.5419608354568481,1.5593899488449097,1.524531602859497,1.4722440242767334,1.663965106010437,1.507102370262146,1.681394338607788,1.6116775274276733,1.6465359926223755,1.6291067600250244,1.6116775274276733,1.6988235712051392,1.3850979804992676,1.2979520559310913,1.9079738855361938,1.681394338607788,1.332810401916504,1.8731154203414917,1.5942484140396118,1.7336819171905518,1.7685402631759644,1.524531602859497,1.663965106010437,1.8905446529388428,1.5768191814422607,1.4896732568740845,1.820827841758728,1.7859694957733154,1.6465359926223755,1.6988235712051392,1.9079738855361938,1.5593899488449097,1.3850979804992676,1.681394338607788,1.507102370262146,1.0190849304199219,1.1410893201828003,1.4025272130966187,1.2282352447509766,1.0016558170318604,0.8099346160888672,0.9842265844345093,1.3850979804992676,1.6988235712051392,1.5942484140396118,1.7511111497879028,1.7162526845932007,1.2282352447509766,1.175947666168213,1.2282352447509766,1.6291067600250244,1.5942484140396118,1.6291067600250244,1.3153812885284424,1.6988235712051392,1.5942484140396118,1.7336819171905518,1.367668867111206,1.1585185527801514,1.5942484140396118,1.6116775274276733,1.2630937099456787,1.4199564456939697,1.3850979804992676,1.210806131362915,1.350239634513855,1.5768191814422607,1.3153812885284424,1.5942484140396118,1.4896732568740845,1.4373856782913208,1.507102370262146,1.507102370262146,1.507102370262146,1.4548147916793823,1.4722440242767334,1.507102370262146,1.5593899488449097,1.3153812885284424,1.2805228233337402,1.3850979804992676,1.3153812885284424,1.350239634513855,1.6988235712051392,1.210806131362915,1.4373856782913208,1.524531602859497,1.350239634513855,1.175947666168213,1.4373856782913208,1.4548147916793823,1.7685402631759644,1.367668867111206,1.7511111497879028,1.9428322315216064,1.681394338607788,1.5419608354568481,1.5768191814422607,1.6988235712051392,1.7859694957733154,1.7859694957733154,1.5593899488449097,1.507102370262146,1.524531602859497,1.7162526845932007,1.1410893201828003,1.5593899488449097,1.0888017416000366,1.2805228233337402,0.9493681788444519,0.8796514272689819,0.6530718803405762,0.9319390058517456,0.8970806002616882,0.7227886915206909,1.193376898765564,1.1062309741973877,0.7227886915206909,1.3153812885284424,1.193376898765564,1.4373856782913208,1.4373856782913208,1.5593899488449097,1.5768191814422607,1.5419608354568481,1.5419608354568481,1.332810401916504,1.4025272130966187,1.2805228233337402,0.7053594589233398,0.966797411441803,1.0713725090026855,0.8796514272689819,0.4264923632144928,0.7402178645133972,0.9493681788444519,1.2456644773483276,1.4548147916793823,0.9319390058517456,1.7511111497879028,1.175947666168213,0.9493681788444519,0.6356427073478699,0.6007843017578125,0.49620914459228516,0.02562091499567032,0.2173420488834381,-0.009237472899258137,0.8447930216789246,1.7336819171905518,1.7336819171905518,1.6465359926223755,1.5942484140396118,1.6988235712051392,1.7336819171905518,1.7859694957733154,1.7162526845932007,1.5768191814422607,1.7685402631759644,1.350239634513855,1.2456644773483276,1.053943395614624],[1.663965106010437,1.7859694957733154,1.9079738855361938,1.8905446529388428,2.0125489234924316,1.9951198101043701,1.9602614641189575,1.6291067600250244,1.4548147916793823,1.1410893201828003,-0.3229629695415497,-0.009237472899258137,-0.23581700026988983,1.0713725090026855,2.0125489234924316,1.5942484140396118,1.5768191814422607,1.820827841758728,0.6705011129379272,0.8970806002616882,0.9842265844345093,0.9145098328590393,1.1585185527801514,-0.6541176438331604,-0.2532461881637573,-0.6018300652503967,0.09533768892288208,0.07790849357843399,0.47877994179725647,0.6356427073478699,0.5833551287651062,0.7576470375061035,0.7750762701034546,1.210806131362915,1.175947666168213,0.7750762701034546,1.1410893201828003,1.2979520559310913,1.1062309741973877,1.507102370262146,1.5942484140396118,1.4722440242767334,1.2805228233337402,1.2979520559310913,1.663965106010437,1.5768191814422607,1.6988235712051392,1.6988235712051392,1.4025272130966187,1.663965106010437,1.7859694957733154,1.4548147916793823,1.6116775274276733,1.367668867111206,1.681394338607788,1.5593899488449097,1.6116775274276733,1.6291067600250244,1.8033987283706665,1.7859694957733154,1.6116775274276733,1.7859694957733154,1.7859694957733154,1.6116775274276733,1.6116775274276733,1.5768191814422607,1.6291067600250244,1.7685402631759644,1.5942484140396118,1.3850979804992676,1.5942484140396118,1.4025272130966187,1.8033987283706665,2.0299782752990723,1.524531602859497,1.7685402631759644,1.820827841758728,1.7162526845932007,1.6988235712051392,1.9254029989242554,1.6465359926223755,1.3153812885284424,1.6291067600250244,1.6465359926223755,1.6116775274276733,1.8033987283706665,1.4722440242767334,1.7162526845932007,1.524531602859497,1.663965106010437,1.5942484140396118,1.8556863069534302,1.7859694957733154,1.820827841758728,1.5768191814422607,1.4722440242767334,1.4199564456939697,1.1410893201828003,1.332810401916504,0.8622221946716309,0.8273638486862183,0.9493681788444519,1.7162526845932007,1.1236600875854492,1.7685402631759644,1.8033987283706665,1.6988235712051392,1.5593899488449097,1.5419608354568481,1.2630937099456787,1.0016558170318604,1.2282352447509766,1.3153812885284424,1.8033987283706665,1.5419608354568481,1.4896732568740845,1.6116775274276733,1.5593899488449097,1.4199564456939697,1.2282352447509766,1.1585185527801514,1.507102370262146,1.350239634513855,1.5593899488449097,1.4722440242767334,1.1410893201828003,1.1585185527801514,1.367668867111206,1.367668867111206,1.4373856782913208,1.4722440242767334,1.8556863069534302,1.1062309741973877,1.5419608354568481,1.5593899488449097,1.4373856782913208,1.367668867111206,1.2456644773483276,1.2979520559310913,1.350239634513855,1.0888017416000366,1.4025272130966187,1.2456644773483276,1.2979520559310913,0.8447930216789246,1.367668867111206,1.1236600875854492,1.2805228233337402,1.4199564456939697,1.4025272130966187,1.507102370262146,1.2979520559310913,1.4722440242767334,1.7859694957733154,1.6116775274276733,1.4722440242767334,1.507102370262146,1.681394338607788,1.5593899488449097,1.5942484140396118,1.6988235712051392,1.7685402631759644,1.5419608354568481,1.6465359926223755,1.6291067600250244,1.507102370262146,1.4896732568740845,1.1585185527801514,1.4373856782913208,0.9319390058517456,1.2456644773483276,1.2282352447509766,1.1585185527801514,1.036514163017273,1.053943395614624,0.8099346160888672,0.966797411441803,0.9319390058517456,1.193376898765564,1.4025272130966187,1.3153812885284424,1.7511111497879028,1.6116775274276733,1.507102370262146,1.820827841758728,1.5593899488449097,1.524531602859497,1.4722440242767334,1.4722440242767334,1.193376898765564,1.2805228233337402,0.9493681788444519,1.0190849304199219,0.8099346160888672,0.6530718803405762,0.7402178645133972,0.8796514272689819,1.2630937099456787,1.2805228233337402,1.1410893201828003,1.2282352447509766,1.0190849304199219,0.9145098328590393,0.9493681788444519,0.49620914459228516,0.008191721513867378,0.6182135343551636,-0.02666666731238365,0.14762526750564575,0.16505447030067444,0.6705011129379272,0.8970806002616882,1.7685402631759644,1.820827841758728,1.663965106010437,1.820827841758728,1.8033987283706665,1.681394338607788,1.4025272130966187,1.9428322315216064,1.4896732568740845,1.350239634513855,1.2456644773483276,1.5942484140396118],[1.4722440242767334,1.8033987283706665,1.9428322315216064,1.8905446529388428,1.9079738855361938,2.151982545852661,2.0299782752990723,1.9254029989242554,1.6465359926223755,1.2979520559310913,0.7402178645133972,-0.06152505427598953,-0.23581700026988983,2.0648365020751953,1.7859694957733154,1.5768191814422607,1.4896732568740845,1.0190849304199219,0.7750762701034546,0.04305011034011841,0.09533768892288208,0.8970806002616882,0.966797411441803,-0.270675390958786,-0.2881045639514923,-0.340392142534256,0.47877994179725647,0.6182135343551636,0.5833551287651062,0.3916339874267578,0.2347712367773056,0.8273638486862183,0.8099346160888672,0.9842265844345093,1.3153812885284424,1.1410893201828003,1.350239634513855,1.350239634513855,1.4722440242767334,1.7162526845932007,1.4199564456939697,1.9602614641189575,1.507102370262146,1.8905446529388428,1.681394338607788,1.3153812885284424,1.3850979804992676,1.332810401916504,1.4373856782913208,1.1236600875854492,1.7162526845932007,1.6988235712051392,1.3153812885284424,1.7336819171905518,1.6988235712051392,1.681394338607788,1.7162526845932007,1.9428322315216064,1.367668867111206,1.4722440242767334,1.7162526845932007,1.3850979804992676,1.6291067600250244,1.5593899488449097,1.6116775274276733,1.3850979804992676,1.4722440242767334,1.4025272130966187,1.524531602859497,1.7511111497879028,1.663965106010437,1.6291067600250244,1.4025272130966187,1.6988235712051392,1.7162526845932007,1.681394338607788,1.7336819171905518,1.2456644773483276,1.507102370262146,1.4373856782913208,1.8556863069534302,1.4896732568740845,1.6116775274276733,1.524531602859497,1.5768191814422607,1.7336819171905518,1.4025272130966187,1.9079738855361938,2.0125489234924316,1.9254029989242554,1.820827841758728,1.7859694957733154,1.6465359926223755,1.6116775274276733,1.4722440242767334,1.2282352447509766,1.1585185527801514,1.193376898765564,1.2979520559310913,1.036514163017273,1.1585185527801514,0.8796514272689819,1.175947666168213,1.3850979804992676,1.6988235712051392,1.8556863069534302,1.5942484140396118,1.4025272130966187,1.332810401916504,1.3153812885284424,1.2805228233337402,1.838257074356079,1.4896732568740845,1.7511111497879028,1.507102370262146,1.8731154203414917,1.4548147916793823,1.5419608354568481,1.7859694957733154,1.6116775274276733,1.4025272130966187,1.5593899488449097,1.8033987283706665,1.4373856782913208,1.4025272130966187,1.2456644773483276,0.8796514272689819,1.2630937099456787,1.4199564456939697,1.3850979804992676,1.524531602859497,1.5593899488449097,1.5419608354568481,1.524531602859497,1.4896732568740845,1.350239634513855,1.4548147916793823,1.5942484140396118,1.2630937099456787,1.4896732568740845,0.9145098328590393,1.2979520559310913,1.1410893201828003,1.4373856782913208,1.2456644773483276,1.036514163017273,1.1410893201828003,1.5942484140396118,1.4896732568740845,1.2979520559310913,1.210806131362915,1.4025272130966187,1.2630937099456787,1.4373856782913208,1.681394338607788,1.367668867111206,1.6988235712051392,1.6291067600250244,1.5942484140396118,1.4373856782913208,1.524531602859497,1.6465359926223755,1.8033987283706665,1.7336819171905518,1.6116775274276733,1.7336819171905518,1.5942484140396118,1.3850979804992676,1.1585185527801514,0.9319390058517456,0.8622221946716309,1.210806131362915,1.0888017416000366,1.1236600875854492,1.0713725090026855,1.210806131362915,0.8622221946716309,1.3153812885284424,1.0190849304199219,1.2282352447509766,1.4025272130966187,1.4373856782913208,1.367668867111206,1.2456644773483276,1.4199564456939697,1.5768191814422607,1.6116775274276733,1.8556863069534302,1.507102370262146,1.2630937099456787,1.1410893201828003,0.7227886915206909,1.036514163017273,0.3916339874267578,0.4090631902217865,0.4264923632144928,0.8099346160888672,1.036514163017273,1.1062309741973877,0.9842265844345093,1.2979520559310913,1.1236600875854492,0.9493681788444519,1.0016558170318604,0.6530718803405762,0.47877994179725647,0.13019607961177826,0.2696296274662018,0.11276688426733017,-0.1138126328587532,0.18248365819454193,1.210806131362915,1.6291067600250244,1.524531602859497,1.6291067600250244,1.524531602859497,1.7511111497879028,1.6291067600250244,1.5593899488449097,1.9428322315216064,1.3153812885284424,1.6988235712051392,1.350239634513855,1.5419608354568481],[1.2456644773483276,1.4025272130966187,1.5593899488449097,1.5419608354568481,1.7859694957733154,1.8556863069534302,2.0996949672698975,1.838257074356079,1.7336819171905518,1.350239634513855,1.0888017416000366,-0.18352940678596497,0.49620914459228516,2.0125489234924316,1.4025272130966187,1.053943395614624,1.332810401916504,0.8622221946716309,1.193376898765564,0.6182135343551636,0.3742047846317291,0.4264923632144928,0.11276688426733017,-0.18352940678596497,-0.5669716596603394,-0.09638344496488571,0.18248365819454193,0.2522004246711731,0.46135076880455017,0.7227886915206909,0.14762526750564575,0.6356427073478699,0.9842265844345093,1.1236600875854492,1.0016558170318604,1.1062309741973877,1.367668867111206,1.2979520559310913,1.1585185527801514,1.7162526845932007,1.5942484140396118,1.4896732568740845,1.4548147916793823,1.5419608354568481,1.4373856782913208,1.7859694957733154,1.4722440242767334,1.524531602859497,1.681394338607788,1.6465359926223755,1.332810401916504,1.7336819171905518,1.681394338607788,1.5768191814422607,1.7685402631759644,1.524531602859497,1.6116775274276733,1.5419608354568481,1.2282352447509766,1.7511111497879028,1.8556863069534302,1.175947666168213,1.4722440242767334,1.7162526845932007,1.8033987283706665,1.5593899488449097,1.681394338607788,1.367668867111206,1.4199564456939697,1.210806131362915,1.663965106010437,1.332810401916504,1.6988235712051392,1.663965106010437,1.0713725090026855,1.2805228233337402,1.6291067600250244,1.332810401916504,1.210806131362915,1.4025272130966187,1.4373856782913208,1.6116775274276733,1.681394338607788,1.7511111497879028,1.350239634513855,1.681394338607788,1.7162526845932007,1.6988235712051392,1.9951198101043701,1.8905446529388428,1.7859694957733154,1.9428322315216064,1.6988235712051392,1.7336819171905518,1.4373856782913208,1.2979520559310913,1.3153812885284424,1.1062309741973877,1.0190849304199219,1.036514163017273,1.0190849304199219,1.210806131362915,1.332810401916504,1.4025272130966187,1.507102370262146,1.332810401916504,1.6116775274276733,1.332810401916504,1.507102370262146,1.3850979804992676,1.4199564456939697,1.4548147916793823,1.3850979804992676,1.6988235712051392,1.5942484140396118,1.524531602859497,1.6465359926223755,1.507102370262146,1.4199564456939697,1.6291067600250244,1.4373856782913208,1.507102370262146,1.681394338607788,1.6988235712051392,1.350239634513855,1.2805228233337402,1.3153812885284424,1.4548147916793823,1.2630937099456787,1.5768191814422607,1.5768191814422607,1.6988235712051392,1.7511111497879028,1.332810401916504,1.4373856782913208,1.3850979804992676,1.5593899488449097,1.4373856782913208,1.1236600875854492,1.4896732568740845,1.210806131362915,1.1585185527801514,1.1585185527801514,1.193376898765564,1.1585185527801514,1.3153812885284424,1.3850979804992676,1.3153812885284424,1.2282352447509766,1.4896732568740845,1.5419608354568481,1.507102370262146,1.4896732568740845,1.5942484140396118,1.7859694957733154,1.2805228233337402,1.7685402631759644,1.7859694957733154,1.6988235712051392,1.5593899488449097,1.507102370262146,1.4896732568740845,1.4025272130966187,1.3850979804992676,1.663965106010437,1.2979520559310913,1.175947666168213,1.4722440242767334,1.2282352447509766,1.524531602859497,0.8447930216789246,1.1236600875854492,0.8796514272689819,1.053943395614624,1.0190849304199219,0.9842265844345093,1.332810401916504,1.053943395614624,1.1410893201828003,1.1062309741973877,1.4548147916793823,1.2456644773483276,1.4722440242767334,1.5942484140396118,1.9602614641189575,1.4896732568740845,1.4722440242767334,1.4025272130966187,1.3153812885284424,1.0190849304199219,1.3153812885284424,1.1062309741973877,0.5136383175849915,1.0190849304199219,0.7750762701034546,1.0888017416000366,0.8622221946716309,0.8622221946716309,1.2805228233337402,1.1236600875854492,1.2456644773483276,1.2282352447509766,1.210806131362915,0.6182135343551636,1.1236600875854492,0.4264923632144928,0.5484967231750488,0.2696296274662018,0.02562091499567032,-0.009237472899258137,-0.1138126328587532,1.4025272130966187,1.2979520559310913,1.7859694957733154,1.7511111497879028,1.4025272130966187,1.5942484140396118,1.8556863069534302,1.332810401916504,1.3850979804992676,1.6465359926223755,1.8033987283706665,1.210806131362915,1.6291067600250244],[1.4548147916793823,1.332810401916504,1.3153812885284424,1.6291067600250244,1.5593899488449097,1.977690577507019,1.9254029989242554,2.117124080657959,2.151982545852661,1.5419608354568481,1.524531602859497,1.1236600875854492,1.0888017416000366,1.6116775274276733,1.1062309741973877,0.7402178645133972,1.4199564456939697,1.2282352447509766,0.8796514272689819,0.7053594589233398,0.0604793019592762,0.18248365819454193,-0.619259238243103,0.30448800325393677,-0.9155555367469788,-0.5669716596603394,-0.009237472899258137,0.6182135343551636,0.47877994179725647,0.2173420488834381,0.5136383175849915,0.7053594589233398,0.4264923632144928,1.036514163017273,1.0016558170318604,0.8273638486862183,1.1410893201828003,1.2979520559310913,1.6465359926223755,1.2456644773483276,1.8905446529388428,1.507102370262146,0.9493681788444519,1.8905446529388428,1.507102370262146,1.5768191814422607,1.0888017416000366,1.4025272130966187,1.9254029989242554,1.3850979804992676,1.5419608354568481,1.6116775274276733,1.838257074356079,1.6291067600250244,1.507102370262146,1.5419608354568481,1.4373856782913208,1.5419608354568481,1.663965106010437,1.8556863069534302,1.5419608354568481,1.5942484140396118,1.7162526845932007,1.6291067600250244,1.5942484140396118,1.332810401916504,1.0888017416000366,1.332810401916504,1.1062309741973877,1.350239634513855,1.507102370262146,1.0888017416000366,1.4199564456939697,1.4199564456939697,1.4722440242767334,1.350239634513855,1.3850979804992676,1.7859694957733154,1.8905446529388428,1.6116775274276733,1.6116775274276733,1.6465359926223755,1.5419608354568481,1.4548147916793823,1.4896732568740845,1.681394338607788,1.524531602859497,1.7511111497879028,1.4199564456939697,1.7859694957733154,1.9951198101043701,1.681394338607788,1.6291067600250244,1.5942484140396118,1.5593899488449097,1.4722440242767334,1.1585185527801514,1.0190849304199219,1.332810401916504,1.0016558170318604,1.2456644773483276,1.332810401916504,1.1585185527801514,0.8970806002616882,1.524531602859497,1.524531602859497,1.977690577507019,1.5593899488449097,0.7925054430961609,1.7162526845932007,1.4025272130966187,1.210806131362915,1.7685402631759644,1.663965106010437,1.350239634513855,1.4722440242767334,1.507102370262146,1.7511111497879028,1.193376898765564,1.350239634513855,1.507102370262146,1.6291067600250244,1.507102370262146,1.524531602859497,1.1062309741973877,1.5419608354568481,1.4896732568740845,1.6988235712051392,1.4199564456939697,1.7162526845932007,1.210806131362915,1.3850979804992676,1.507102370262146,1.6116775274276733,1.6465359926223755,1.8556863069534302,1.6465359926223755,1.332810401916504,1.2456644773483276,1.1585185527801514,1.524531602859497,1.3850979804992676,1.3153812885284424,1.3850979804992676,0.9319390058517456,1.175947666168213,1.2630937099456787,1.4199564456939697,1.350239634513855,1.3153812885284424,1.0888017416000366,1.4548147916793823,1.6465359926223755,1.2805228233337402,1.507102370262146,1.507102370262146,1.2979520559310913,1.6291067600250244,1.6116775274276733,1.5593899488449097,1.7162526845932007,1.4548147916793823,1.5768191814422607,1.4722440242767334,1.524531602859497,1.3153812885284424,1.367668867111206,1.0888017416000366,0.9493681788444519,1.1236600875854492,0.9493681788444519,1.036514163017273,1.0713725090026855,1.210806131362915,1.3153812885284424,1.2630937099456787,1.210806131362915,1.4548147916793823,0.9319390058517456,1.4025272130966187,1.2979520559310913,1.7511111497879028,1.6988235712051392,1.4025272130966187,1.5593899488449097,1.524531602859497,1.4025272130966187,1.332810401916504,1.2282352447509766,1.507102370262146,1.175947666168213,0.966797411441803,0.7227886915206909,0.966797411441803,0.8970806002616882,0.7402178645133972,1.1585185527801514,1.1062309741973877,1.2456644773483276,1.1062309741973877,0.966797411441803,0.7402178645133972,1.1410893201828003,0.6007843017578125,0.5136383175849915,0.2173420488834381,-0.1312418282032013,0.2347712367773056,0.04305011034011841,-0.37525054812431335,-0.04409585893154144,0.6007843017578125,1.820827841758728,1.7336819171905518,1.6116775274276733,1.350239634513855,1.8033987283706665,1.7685402631759644,1.367668867111206,1.820827841758728,1.0713725090026855,1.350239634513855,1.5419608354568481,1.6465359926223755],[1.350239634513855,1.4896732568740845,1.175947666168213,1.2805228233337402,1.4548147916793823,1.4025272130966187,1.7336819171905518,1.8905446529388428,2.082265853881836,2.0299782752990723,1.5768191814422607,1.350239634513855,0.6879302859306335,1.8731154203414917,1.0888017416000366,-0.21838779747486115,1.3850979804992676,1.175947666168213,1.210806131362915,0.4439215660095215,-0.2881045639514923,0.2522004246711731,-0.41010892391204834,-0.06152505427598953,-0.41010892391204834,-0.4449673295021057,0.11276688426733017,0.04305011034011841,0.14762526750564575,0.2173420488834381,0.7402178645133972,1.332810401916504,1.0016558170318604,1.1410893201828003,1.1062309741973877,1.1585185527801514,1.3153812885284424,1.4025272130966187,1.2630937099456787,1.367668867111206,1.1062309741973877,1.4896732568740845,1.6465359926223755,1.6988235712051392,1.4199564456939697,1.4722440242767334,1.7162526845932007,1.350239634513855,1.0888017416000366,1.6116775274276733,1.9254029989242554,1.5768191814422607,1.4025272130966187,1.4548147916793823,1.4548147916793823,1.681394338607788,1.5942484140396118,1.5593899488449097,1.2805228233337402,1.367668867111206,1.7511111497879028,1.367668867111206,1.036514163017273,1.6291067600250244,1.3850979804992676,1.6988235712051392,1.524531602859497,1.3153812885284424,1.5419608354568481,1.210806131362915,1.5593899488449097,1.350239634513855,1.332810401916504,1.2456644773483276,1.663965106010437,1.4896732568740845,1.7685402631759644,1.507102370262146,1.6291067600250244,1.5419608354568481,1.7511111497879028,1.5768191814422607,1.5942484140396118,1.4373856782913208,1.681394338607788,1.663965106010437,1.5942484140396118,1.6465359926223755,1.4548147916793823,1.5768191814422607,2.047407388687134,1.9079738855361938,1.5768191814422607,1.6465359926223755,1.2805228233337402,1.367668867111206,1.4025272130966187,1.1236600875854492,1.2630937099456787,1.0888017416000366,1.2630937099456787,1.332810401916504,0.9493681788444519,0.8970806002616882,1.5419608354568481,1.4548147916793823,1.507102370262146,1.3153812885284424,1.2282352447509766,1.0016558170318604,0.9493681788444519,1.4896732568740845,1.1410893201828003,1.507102370262146,1.663965106010437,1.681394338607788,1.7511111497879028,1.4722440242767334,1.4025272130966187,1.4722440242767334,1.3850979804992676,1.6465359926223755,1.5768191814422607,1.4199564456939697,1.367668867111206,1.210806131362915,1.2630937099456787,1.7162526845932007,1.4722440242767334,1.7162526845932007,1.5419608354568481,1.4199564456939697,1.210806131362915,1.5419608354568481,1.5768191814422607,1.5768191814422607,1.4722440242767334,1.2805228233337402,1.2805228233337402,1.2282352447509766,1.1062309741973877,1.3153812885284424,1.4199564456939697,1.0888017416000366,1.6291067600250244,1.193376898765564,1.2979520559310913,1.332810401916504,1.4373856782913208,1.1585185527801514,1.2630937099456787,1.2630937099456787,1.663965106010437,1.6465359926223755,1.6116775274276733,1.507102370262146,1.663965106010437,1.6465359926223755,1.6988235712051392,1.5942484140396118,1.6465359926223755,1.6988235712051392,1.4548147916793823,1.5593899488449097,1.6116775274276733,1.1062309741973877,1.5593899488449097,1.2456644773483276,1.1236600875854492,1.175947666168213,0.9319390058517456,0.6879302859306335,0.9145098328590393,0.9145098328590393,1.193376898765564,1.0713725090026855,0.8447930216789246,1.367668867111206,1.350239634513855,1.332810401916504,1.524531602859497,1.6465359926223755,1.6465359926223755,1.4548147916793823,1.5942484140396118,1.332810401916504,1.5593899488449097,1.3850979804992676,0.8796514272689819,1.2282352447509766,1.1062309741973877,1.0016558170318604,1.2805228233337402,0.5659258961677551,0.8970806002616882,1.053943395614624,0.7576470375061035,1.6465359926223755,1.2456644773483276,0.8622221946716309,0.8447930216789246,0.8622221946716309,1.1410893201828003,0.6356427073478699,0.8273638486862183,0.19991286098957062,0.32191720604896545,0.3567756116390228,0.0604793019592762,-0.1138126328587532,0.5833551287651062,0.3916339874267578,1.4199564456939697,1.5768191814422607,1.5942484140396118,1.4025272130966187,1.7511111497879028,1.6988235712051392,1.5419608354568481,1.7336819171905518,1.524531602859497,1.4199564456939697,1.6465359926223755,1.507102370262146],[1.0888017416000366,1.2805228233337402,0.8273638486862183,1.175947666168213,1.332810401916504,1.2630937099456787,1.6291067600250244,1.681394338607788,2.0648365020751953,1.838257074356079,1.663965106010437,1.838257074356079,1.332810401916504,1.838257074356079,1.4373856782913208,-0.37525054812431335,0.8273638486862183,1.2456644773483276,1.0190849304199219,1.053943395614624,0.16505447030067444,-0.37525054812431335,-0.5495424866676331,0.18248365819454193,-0.39267975091934204,-0.41010892391204834,0.008191721513867378,0.32191720604896545,0.19991286098957062,0.7402178645133972,0.7227886915206909,1.193376898765564,0.8099346160888672,1.1585185527801514,1.2805228233337402,1.4373856782913208,1.175947666168213,1.210806131362915,1.3153812885284424,1.4373856782913208,1.210806131362915,1.4373856782913208,1.193376898765564,1.7162526845932007,1.5768191814422607,1.5593899488449097,1.3153812885284424,1.5942484140396118,1.524531602859497,1.524531602859497,1.7336819171905518,1.663965106010437,1.7511111497879028,1.4199564456939697,1.7511111497879028,1.7336819171905518,1.681394338607788,1.5419608354568481,1.367668867111206,1.820827841758728,1.4548147916793823,1.4722440242767334,1.4373856782913208,1.7511111497879028,1.524531602859497,1.1585185527801514,1.5593899488449097,1.4373856782913208,0.966797411441803,1.5593899488449097,1.350239634513855,1.4896732568740845,1.3153812885284424,1.332810401916504,1.3850979804992676,1.7511111497879028,1.4548147916793823,1.5593899488449097,1.5942484140396118,1.7162526845932007,1.350239634513855,1.681394338607788,1.4199564456939697,1.4199564456939697,1.7162526845932007,1.5768191814422607,1.838257074356079,1.4548147916793823,1.524531602859497,1.663965106010437,1.6465359926223755,1.4722440242767334,1.8556863069534302,1.4548147916793823,1.2805228233337402,1.1585185527801514,1.210806131362915,1.0190849304199219,1.367668867111206,1.210806131362915,0.9842265844345093,1.175947666168213,1.3850979804992676,1.2630937099456787,1.3153812885284424,1.681394338607788,1.0713725090026855,1.4025272130966187,1.332810401916504,1.0190849304199219,1.332810401916504,1.4199564456939697,1.524531602859497,1.5593899488449097,1.6988235712051392,1.2805228233337402,1.6465359926223755,1.507102370262146,1.4199564456939697,1.0888017416000366,1.4896732568740845,1.5942484140396118,1.5419608354568481,1.4722440242767334,1.5768191814422607,1.210806131362915,1.4199564456939697,1.2805228233337402,1.7336819171905518,1.8033987283706665,1.3153812885284424,1.4199564456939697,1.6465359926223755,1.2456644773483276,1.3850979804992676,1.4025272130966187,1.332810401916504,1.1062309741973877,0.966797411441803,1.2456644773483276,1.1585185527801514,1.1410893201828003,1.1236600875854492,1.2282352447509766,1.2979520559310913,1.0888017416000366,1.193376898765564,1.4896732568740845,1.4373856782913208,1.5768191814422607,1.5768191814422607,1.5942484140396118,1.332810401916504,1.4199564456939697,1.5419608354568481,1.5942484140396118,1.507102370262146,1.663965106010437,1.7336819171905518,1.7859694957733154,1.663965106010437,1.8905446529388428,1.681394338607788,1.6291067600250244,1.9079738855361938,1.350239634513855,1.210806131362915,1.036514163017273,1.0888017416000366,1.0713725090026855,0.8796514272689819,0.8622221946716309,0.7227886915206909,1.1585185527801514,1.1585185527801514,0.9493681788444519,1.210806131362915,1.1585185527801514,1.4722440242767334,1.350239634513855,1.7511111497879028,1.838257074356079,1.663965106010437,1.6988235712051392,1.4896732568740845,1.4722440242767334,1.2805228233337402,1.350239634513855,0.8622221946716309,1.210806131362915,1.2630937099456787,0.8099346160888672,0.8622221946716309,0.966797411441803,1.175947666168213,1.036514163017273,1.036514163017273,1.6116775274276733,1.0190849304199219,0.966797411441803,1.3153812885284424,1.175947666168213,1.2630937099456787,0.8970806002616882,1.2456644773483276,0.5310675501823425,-0.07895424962043762,0.47877994179725647,-0.21838779747486115,-0.23581700026988983,-0.270675390958786,-0.009237472899258137,1.2456644773483276,1.8731154203414917,1.5768191814422607,1.5593899488449097,1.4896732568740845,1.6291067600250244,1.8731154203414917,1.7162526845932007,1.7336819171905518,1.4548147916793823,1.524531602859497,0.8099346160888672],[1.5768191814422607,1.4548147916793823,1.4373856782913208,1.193376898765564,1.4896732568740845,1.3850979804992676,1.4373856782913208,1.7336819171905518,1.6465359926223755,1.7336819171905518,1.9428322315216064,1.9951198101043701,1.681394338607788,1.1062309741973877,1.3850979804992676,-0.23581700026988983,1.0888017416000366,0.2522004246711731,0.2347712367773056,1.367668867111206,0.3567756116390228,-0.340392142534256,-0.4798257052898407,0.7227886915206909,-0.3229629695415497,-0.37525054812431335,0.2696296274662018,0.2347712367773056,0.49620914459228516,0.8273638486862183,1.332810401916504,1.350239634513855,0.8622221946716309,1.0888017416000366,1.507102370262146,1.193376898765564,1.4548147916793823,1.6116775274276733,1.9602614641189575,1.6116775274276733,1.350239634513855,1.210806131362915,1.4548147916793823,1.210806131362915,1.4373856782913208,1.7162526845932007,1.6291067600250244,1.2282352447509766,1.193376898765564,1.2456644773483276,1.5593899488449097,1.5593899488449097,1.4199564456939697,1.5419608354568481,1.6988235712051392,1.507102370262146,1.7336819171905518,1.193376898765564,1.053943395614624,1.820827841758728,1.2630937099456787,1.3153812885284424,1.5593899488449097,1.6465359926223755,1.350239634513855,1.2456644773483276,1.524531602859497,1.6116775274276733,1.0713725090026855,1.4373856782913208,1.4896732568740845,1.2805228233337402,1.0190849304199219,1.6291067600250244,1.367668867111206,1.2805228233337402,1.2979520559310913,1.8556863069534302,1.5768191814422607,1.507102370262146,1.6465359926223755,1.5768191814422607,1.5942484140396118,1.681394338607788,1.507102370262146,1.8556863069534302,1.6291067600250244,1.5593899488449097,1.6465359926223755,1.507102370262146,1.5768191814422607,1.6291067600250244,1.5419608354568481,1.036514163017273,1.2979520559310913,1.175947666168213,1.2805228233337402,1.1062309741973877,1.0713725090026855,1.036514163017273,1.1410893201828003,1.2805228233337402,1.4199564456939697,1.2456644773483276,1.5593899488449097,1.524531602859497,1.332810401916504,1.3850979804992676,1.4199564456939697,1.2805228233337402,1.5593899488449097,1.524531602859497,1.7336819171905518,1.4199564456939697,1.3153812885284424,1.4373856782913208,1.4025272130966187,1.2282352447509766,1.175947666168213,1.210806131362915,1.9428322315216064,1.7685402631759644,1.681394338607788,1.5942484140396118,1.4199564456939697,1.3850979804992676,1.1062309741973877,1.2630937099456787,1.5942484140396118,1.6116775274276733,1.681394338607788,1.4722440242767334,1.4373856782913208,1.332810401916504,1.1236600875854492,1.1410893201828003,1.3850979804992676,1.1062309741973877,1.053943395614624,1.6116775274276733,1.350239634513855,1.193376898765564,1.524531602859497,1.524531602859497,1.053943395614624,1.4548147916793823,1.2630937099456787,1.4373856782913208,1.4722440242767334,1.2630937099456787,1.3153812885284424,1.5942484140396118,1.6465359926223755,1.5419608354568481,1.350239634513855,1.663965106010437,1.7685402631759644,1.5942484140396118,1.6988235712051392,1.9602614641189575,1.507102370262146,1.524531602859497,1.7511111497879028,1.4373856782913208,1.6465359926223755,1.1585185527801514,1.175947666168213,1.0016558170318604,1.0016558170318604,1.1236600875854492,0.8970806002616882,1.1236600875854492,1.210806131362915,0.9319390058517456,1.2630937099456787,1.1236600875854492,1.3850979804992676,1.210806131362915,1.2630937099456787,1.1236600875854492,1.5768191814422607,1.3153812885284424,1.6291067600250244,1.681394338607788,1.3850979804992676,1.350239634513855,1.5593899488449097,1.5593899488449097,0.9493681788444519,1.1585185527801514,0.8622221946716309,1.1062309741973877,0.8273638486862183,0.9319390058517456,0.8099346160888672,1.2630937099456787,0.9319390058517456,0.966797411441803,1.1585185527801514,0.8099346160888672,0.9145098328590393,0.9145098328590393,0.7750762701034546,0.7925054430961609,0.5833551287651062,-0.09638344496488571,0.11276688426733017,0.7053594589233398,0.2347712367773056,-0.35782134532928467,-0.06152505427598953,0.13019607961177826,1.3850979804992676,1.6465359926223755,1.4722440242767334,1.524531602859497,1.5768191814422607,1.7336819171905518,1.681394338607788,1.7685402631759644,1.5768191814422607,1.367668867111206,1.350239634513855,1.1585185527801514],[2.0648365020751953,1.507102370262146,1.4199564456939697,1.2456644773483276,1.175947666168213,1.3153812885284424,1.2979520559310913,1.1585185527801514,1.4199564456939697,1.681394338607788,1.8033987283706665,1.681394338607788,1.6988235712051392,1.2979520559310913,1.3153812885284424,-0.270675390958786,1.2805228233337402,0.8273638486862183,-0.04409585893154144,0.9145098328590393,-0.4798257052898407,-0.39267975091934204,-0.9155555367469788,0.4439215660095215,-0.41010892391204834,0.07790849357843399,0.28705883026123047,0.0604793019592762,0.5833551287651062,0.7576470375061035,1.2456644773483276,1.4199564456939697,0.8273638486862183,1.524531602859497,1.3153812885284424,1.6291067600250244,1.524531602859497,1.5593899488449097,1.4722440242767334,1.507102370262146,1.5593899488449097,1.2979520559310913,1.7336819171905518,1.4722440242767334,1.5593899488449097,1.2630937099456787,1.3153812885284424,1.7859694957733154,1.5768191814422607,1.9254029989242554,1.8556863069534302,1.838257074356079,1.4896732568740845,1.4722440242767334,1.2456644773483276,1.367668867111206,1.1410893201828003,1.681394338607788,1.332810401916504,0.9493681788444519,1.3850979804992676,1.1062309741973877,1.3153812885284424,1.5419608354568481,1.332810401916504,1.1236600875854492,1.1236600875854492,1.4025272130966187,1.1585185527801514,1.2456644773483276,1.332810401916504,1.367668867111206,1.1062309741973877,1.524531602859497,1.2456644773483276,1.5942484140396118,1.4548147916793823,1.5419608354568481,1.350239634513855,1.6291067600250244,1.5419608354568481,1.6116775274276733,1.5419608354568481,1.4548147916793823,1.507102370262146,1.5593899488449097,1.7859694957733154,1.681394338607788,1.6291067600250244,1.367668867111206,1.8731154203414917,1.3850979804992676,1.4199564456939697,1.1062309741973877,0.9842265844345093,1.2282352447509766,0.6530718803405762,1.2282352447509766,1.2630937099456787,1.1062309741973877,1.2456644773483276,1.210806131362915,1.2805228233337402,1.1236600875854492,1.193376898765564,1.6291067600250244,1.4199564456939697,1.5419608354568481,1.3153812885284424,1.6291067600250244,1.0016558170318604,1.4722440242767334,1.6988235712051392,1.4896732568740845,0.966797411441803,1.4896732568740845,1.6291067600250244,1.681394338607788,1.332810401916504,1.3153812885284424,1.6116775274276733,1.8731154203414917,1.7685402631759644,1.3850979804992676,1.2282352447509766,0.9842265844345093,1.2456644773483276,1.367668867111206,1.2456644773483276,1.367668867111206,1.6465359926223755,1.5942484140396118,1.5768191814422607,1.210806131362915,1.0713725090026855,1.2805228233337402,1.4373856782913208,1.3850979804992676,1.4548147916793823,1.1410893201828003,1.350239634513855,1.1410893201828003,1.1236600875854492,1.1585185527801514,1.3153812885284424,1.1410893201828003,1.3153812885284424,1.2456644773483276,1.1410893201828003,1.507102370262146,1.4548147916793823,1.6291067600250244,1.5768191814422607,1.5419608354568481,1.663965106010437,1.6116775274276733,1.5942484140396118,1.7336819171905518,1.8731154203414917,1.3153812885284424,1.350239634513855,1.5593899488449097,1.524531602859497,0.8447930216789246,1.2282352447509766,1.0888017416000366,1.1236600875854492,1.1062309741973877,0.7227886915206909,1.210806131362915,1.2979520559310913,1.2282352447509766,1.175947666168213,0.8796514272689819,1.3850979804992676,1.524531602859497,1.2456644773483276,1.2805228233337402,1.2282352447509766,1.4722440242767334,1.6465359926223755,1.507102370262146,1.4548147916793823,1.5768191814422607,1.6291067600250244,1.2805228233337402,1.4722440242767334,1.1585185527801514,1.1585185527801514,1.1062309741973877,0.7227886915206909,0.7576470375061035,0.8970806002616882,0.7053594589233398,0.8970806002616882,0.9145098328590393,1.0190849304199219,1.4548147916793823,1.4199564456939697,1.1062309741973877,0.8622221946716309,1.053943395614624,1.0016558170318604,0.9145098328590393,0.9145098328590393,0.32191720604896545,0.7053594589233398,0.3916339874267578,0.5310675501823425,-0.23581700026988983,-0.340392142534256,0.008191721513867378,0.8970806002616882,1.7336819171905518,1.4025272130966187,1.663965106010437,1.5593899488449097,1.6291067600250244,2.0125489234924316,1.5768191814422607,1.524531602859497,1.7859694957733154,1.3850979804992676,1.2456644773483276],[1.7859694957733154,1.9951198101043701,1.820827841758728,1.6116775274276733,1.6116775274276733,1.6465359926223755,0.9493681788444519,1.053943395614624,1.1585185527801514,1.4199564456939697,1.681394338607788,1.9428322315216064,1.5593899488449097,1.2979520559310913,1.5419608354568481,-0.7761220335960388,1.350239634513855,0.7227886915206909,-0.5146840810775757,0.47877994179725647,0.04305011034011841,-0.02666666731238365,-1.490718960762024,0.13019607961177826,-0.1312418282032013,0.7750762701034546,0.28705883026123047,0.09533768892288208,1.036514163017273,0.7053594589233398,1.4373856782913208,0.966797411441803,1.524531602859497,1.3850979804992676,1.4373856782913208,1.1585185527801514,1.7336819171905518,1.4373856782913208,1.5419608354568481,1.6291067600250244,1.5593899488449097,1.4373856782913208,1.663965106010437,1.6988235712051392,1.8033987283706665,1.5419608354568481,1.4025272130966187,1.6291067600250244,1.4025272130966187,1.2979520559310913,1.4373856782913208,1.6988235712051392,1.4025272130966187,1.7859694957733154,1.507102370262146,1.8556863069534302,1.4199564456939697,1.6116775274276733,1.7336819171905518,1.4548147916793823,1.4025272130966187,1.5593899488449097,1.4722440242767334,1.175947666168213,1.4896732568740845,1.507102370262146,1.6465359926223755,1.3850979804992676,1.367668867111206,0.9842265844345093,1.681394338607788,1.6291067600250244,1.8556863069534302,1.5942484140396118,1.2630937099456787,1.4548147916793823,1.210806131362915,1.7685402631759644,1.2282352447509766,1.681394338607788,1.8731154203414917,1.7162526845932007,1.5593899488449097,1.9254029989242554,1.663965106010437,1.5942484140396118,1.7162526845932007,1.4896732568740845,1.3850979804992676,1.5593899488449097,1.6465359926223755,1.2979520559310913,1.053943395614624,1.053943395614624,1.350239634513855,0.8970806002616882,1.507102370262146,1.1585185527801514,1.053943395614624,1.350239634513855,1.3850979804992676,1.4373856782913208,1.4025272130966187,1.4025272130966187,1.0888017416000366,1.1410893201828003,1.053943395614624,1.367668867111206,1.5593899488449097,1.507102370262146,1.3850979804992676,1.681394338607788,1.8033987283706665,1.6465359926223755,1.5419608354568481,1.6988235712051392,1.4199564456939697,1.4722440242767334,1.175947666168213,1.0888017416000366,1.7162526845932007,1.7859694957733154,1.4199564456939697,1.4722440242767334,1.193376898765564,1.3850979804992676,1.4548147916793823,1.5768191814422607,1.6291067600250244,1.5593899488449097,1.6465359926223755,1.350239634513855,1.3850979804992676,1.507102370262146,1.4199564456939697,1.2805228233337402,1.193376898765564,1.350239634513855,0.8622221946716309,1.1062309741973877,1.193376898765564,1.5593899488449097,1.3850979804992676,1.2805228233337402,1.1236600875854492,1.2630937099456787,1.2805228233337402,1.7336819171905518,1.663965106010437,1.2282352447509766,1.507102370262146,1.4199564456939697,1.4722440242767334,1.524531602859497,1.4373856782913208,1.8556863069534302,1.7685402631759644,1.2805228233337402,1.6988235712051392,1.3850979804992676,1.6465359926223755,1.332810401916504,1.681394338607788,1.977690577507019,1.175947666168213,1.350239634513855,1.193376898765564,1.0190849304199219,1.1062309741973877,1.053943395614624,1.4548147916793823,1.1062309741973877,1.2282352447509766,1.1585185527801514,1.2456644773483276,1.193376898765564,1.036514163017273,1.193376898765564,1.4896732568740845,1.524531602859497,1.6291067600250244,1.5942484140396118,1.507102370262146,1.4373856782913208,1.524531602859497,1.2456644773483276,1.0888017416000366,0.8622221946716309,1.1585185527801514,0.7227886915206909,1.0016558170318604,1.2282352447509766,1.3850979804992676,0.6182135343551636,1.0713725090026855,1.210806131362915,1.036514163017273,1.2805228233337402,1.1236600875854492,1.1410893201828003,1.1585185527801514,1.053943395614624,1.0888017416000366,0.9145098328590393,0.9493681788444519,0.9145098328590393,0.008191721513867378,0.19991286098957062,0.47877994179725647,0.14762526750564575,-0.21838779747486115,-0.6366884708404541,0.6356427073478699,1.4722440242767334,1.4722440242767334,1.7685402631759644,1.4722440242767334,1.681394338607788,1.6465359926223755,1.663965106010437,1.6116775274276733,1.2456644773483276,1.2282352447509766,1.3850979804992676],[1.350239634513855,1.5593899488449097,1.7162526845932007,1.9428322315216064,1.7685402631759644,1.6116775274276733,1.6291067600250244,1.1062309741973877,1.175947666168213,0.9319390058517456,1.0713725090026855,1.053943395614624,1.6988235712051392,1.681394338607788,1.5419608354568481,-0.8458387851715088,1.5419608354568481,1.0016558170318604,-0.39267975091934204,0.11276688426733017,0.49620914459228516,0.13019607961177826,-1.4558606147766113,-0.8632679581642151,-0.37525054812431335,0.02562091499567032,0.5310675501823425,0.7053594589233398,1.2282352447509766,1.1410893201828003,1.4373856782913208,1.2979520559310913,1.6116775274276733,1.4373856782913208,1.4199564456939697,1.4722440242767334,1.210806131362915,1.5593899488449097,1.4025272130966187,1.6291067600250244,1.5593899488449097,1.6465359926223755,1.2979520559310913,1.4025272130966187,1.507102370262146,1.7162526845932007,1.663965106010437,1.5942484140396118,1.2979520559310913,1.367668867111206,1.6291067600250244,1.681394338607788,1.6988235712051392,1.5419608354568481,1.524531602859497,1.6988235712051392,1.4025272130966187,1.193376898765564,1.4548147916793823,1.3850979804992676,1.4722440242767334,1.3850979804992676,1.5768191814422607,1.4722440242767334,1.2979520559310913,1.4025272130966187,1.524531602859497,1.3850979804992676,1.6291067600250244,1.2282352447509766,1.2630937099456787,1.332810401916504,1.524531602859497,1.1585185527801514,1.5768191814422607,1.193376898765564,1.7511111497879028,1.4199564456939697,1.7859694957733154,1.5768191814422607,1.524531602859497,1.7685402631759644,1.7511111497879028,1.7685402631759644,1.4722440242767334,1.7162526845932007,1.5593899488449097,1.6465359926223755,1.6988235712051392,1.9079738855361938,1.4896732568740845,1.524531602859497,1.1410893201828003,0.6879302859306335,1.4373856782913208,1.1585185527801514,1.0016558170318604,1.4373856782913208,1.2282352447509766,1.4199564456939697,1.2979520559310913,1.2282352447509766,1.367668867111206,1.053943395614624,1.0888017416000366,1.1585185527801514,1.2456644773483276,1.4373856782913208,1.507102370262146,1.2456644773483276,1.5593899488449097,1.4548147916793823,1.5593899488449097,1.4722440242767334,1.332810401916504,1.8033987283706665,1.5419608354568481,1.4025272130966187,1.6465359926223755,1.2282352447509766,1.6465359926223755,1.6291067600250244,1.7336819171905518,1.9079738855361938,1.2979520559310913,1.2282352447509766,1.4199564456939697,1.332810401916504,1.5419608354568481,1.4199564456939697,1.8556863069534302,1.681394338607788,1.507102370262146,1.507102370262146,1.4896732568740845,1.175947666168213,1.5942484140396118,1.4199564456939697,1.332810401916504,1.4722440242767334,1.1585185527801514,1.7685402631759644,1.2456644773483276,1.332810401916504,1.1585185527801514,1.1410893201828003,1.210806131362915,1.3153812885284424,1.2282352447509766,1.367668867111206,1.3850979804992676,1.5768191814422607,1.6465359926223755,1.4722440242767334,1.4373856782913208,1.5942484140396118,1.4548147916793823,1.5942484140396118,1.663965106010437,1.5942484140396118,1.4199564456939697,1.8731154203414917,1.2805228233337402,0.9319390058517456,1.0713725090026855,1.524531602859497,1.053943395614624,1.0713725090026855,1.2805228233337402,0.9319390058517456,0.7227886915206909,1.350239634513855,0.9842265844345093,1.1062309741973877,1.4199564456939697,1.1410893201828003,1.2630937099456787,1.3850979804992676,1.4025272130966187,1.332810401916504,1.7336819171905518,1.3850979804992676,1.193376898765564,1.6465359926223755,1.1062309741973877,1.507102370262146,1.2282352447509766,1.2456644773483276,0.966797411441803,0.9319390058517456,0.6879302859306335,1.210806131362915,1.1585185527801514,1.1585185527801514,1.332810401916504,1.0888017416000366,1.0190849304199219,1.193376898765564,1.4373856782913208,1.1585185527801514,1.210806131362915,1.175947666168213,0.966797411441803,0.8970806002616882,0.49620914459228516,0.6182135343551636,-0.14867103099822998,0.28705883026123047,0.16505447030067444,0.16505447030067444,-0.06152505427598953,-0.39267975091934204,0.5310675501823425,1.5593899488449097,1.507102370262146,1.7685402631759644,1.8556863069534302,1.6465359926223755,1.7685402631759644,1.6465359926223755,1.7511111497879028,1.2979520559310913,1.4025272130966187,1.367668867111206],[1.4199564456939697,1.4722440242767334,1.8556863069534302,1.7859694957733154,1.681394338607788,1.7511111497879028,1.4896732568740845,1.4548147916793823,1.4373856782913208,0.9319390058517456,1.0888017416000366,1.3153812885284424,1.6465359926223755,1.6291067600250244,1.1236600875854492,-0.09638344496488571,1.681394338607788,0.9842265844345093,0.8970806002616882,1.053943395614624,0.5833551287651062,-0.04409585893154144,-1.5778648853302002,-0.8981263637542725,0.2173420488834381,0.5659258961677551,0.8273638486862183,0.8099346160888672,1.507102370262146,1.367668867111206,1.5593899488449097,1.5593899488449097,1.6116775274276733,1.3850979804992676,1.524531602859497,1.524531602859497,1.5768191814422607,1.5768191814422607,1.6465359926223755,1.350239634513855,1.6988235712051392,1.663965106010437,1.663965106010437,1.4025272130966187,1.8731154203414917,1.5942484140396118,1.1585185527801514,1.4896732568740845,1.7336819171905518,1.5593899488449097,1.5593899488449097,1.2630937099456787,1.7685402631759644,1.5419608354568481,1.3850979804992676,1.9254029989242554,1.5942484140396118,2.047407388687134,1.5942484140396118,1.5419608354568481,1.367668867111206,1.2630937099456787,1.036514163017273,1.8556863069534302,1.5768191814422607,1.2979520559310913,1.2456644773483276,1.4896732568740845,1.4199564456939697,1.332810401916504,1.332810401916504,1.2456644773483276,1.3153812885284424,1.2282352447509766,1.1585185527801514,1.1236600875854492,1.5942484140396118,1.4373856782913208,1.2979520559310913,1.332810401916504,1.5419608354568481,1.6988235712051392,1.524531602859497,1.7685402631759644,1.7859694957733154,1.7685402631759644,1.5942484140396118,1.4373856782913208,1.5768191814422607,1.2282352447509766,1.3850979804992676,1.4722440242767334,1.0888017416000366,1.2456644773483276,1.0888017416000366,1.4199564456939697,1.2630937099456787,1.3153812885284424,1.4199564456939697,1.367668867111206,1.3850979804992676,1.7162526845932007,1.4025272130966187,1.5942484140396118,0.9145098328590393,1.036514163017273,1.210806131362915,1.4199564456939697,1.210806131362915,1.3153812885284424,1.2630937099456787,1.681394338607788,1.332810401916504,1.2979520559310913,1.175947666168213,1.6465359926223755,1.7859694957733154,1.6291067600250244,1.4548147916793823,1.175947666168213,1.7859694957733154,1.9254029989242554,1.6116775274276733,1.5942484140396118,1.350239634513855,1.2630937099456787,1.210806131362915,1.507102370262146,1.4548147916793823,1.4373856782913208,1.5942484140396118,1.3850979804992676,1.7685402631759644,1.524531602859497,1.4025272130966187,1.193376898765564,1.2805228233337402,1.1062309741973877,1.2456644773483276,1.332810401916504,1.4199564456939697,1.4896732568740845,1.1236600875854492,1.2282352447509766,1.367668867111206,1.663965106010437,1.1062309741973877,1.367668867111206,1.4025272130966187,1.3850979804992676,1.367668867111206,1.2805228233337402,1.367668867111206,1.5593899488449097,1.507102370262146,1.5593899488449097,1.5942484140396118,1.6988235712051392,1.6116775274276733,1.4373856782913208,1.5942484140396118,1.210806131362915,1.681394338607788,1.332810401916504,0.8970806002616882,1.0888017416000366,0.966797411441803,0.7402178645133972,0.966797411441803,1.053943395614624,1.053943395614624,1.367668867111206,1.367668867111206,1.4373856782913208,1.210806131362915,1.6465359926223755,1.5419608354568481,1.350239634513855,1.4548147916793823,1.507102370262146,1.5593899488449097,1.4548147916793823,1.332810401916504,1.210806131362915,1.7511111497879028,1.5593899488449097,1.4548147916793823,1.2282352447509766,1.036514163017273,1.193376898765564,0.8447930216789246,1.210806131362915,0.7925054430961609,0.966797411441803,1.4896732568740845,1.0190849304199219,0.8970806002616882,0.7576470375061035,1.1410893201828003,1.0016558170318604,1.2456644773483276,1.036514163017273,1.1585185527801514,0.8796514272689819,-0.35782134532928467,0.5310675501823425,0.2696296274662018,0.14762526750564575,-0.07895424962043762,0.49620914459228516,0.07790849357843399,-0.5495424866676331,0.5833551287651062,1.4025272130966187,1.5419608354568481,1.663965106010437,1.524531602859497,1.681394338607788,1.5942484140396118,1.5593899488449097,1.524531602859497,1.507102370262146,1.3850979804992676,1.1236600875854492],[1.7685402631759644,1.507102370262146,1.8556863069534302,1.8731154203414917,1.8731154203414917,1.6988235712051392,1.6988235712051392,1.7511111497879028,1.175947666168213,1.0016558170318604,1.524531602859497,1.2282352447509766,1.8905446529388428,1.681394338607788,1.1585185527801514,0.6182135343551636,2.0125489234924316,1.2979520559310913,1.4896732568740845,0.6705011129379272,0.4090631902217865,0.4264923632144928,-1.2989978790283203,0.02562091499567032,0.3567756116390228,0.5659258961677551,0.9493681788444519,1.0713725090026855,1.367668867111206,1.524531602859497,1.5593899488449097,1.4896732568740845,1.507102370262146,1.663965106010437,1.524531602859497,1.7859694957733154,1.663965106010437,1.8556863069534302,1.4896732568740845,1.9951198101043701,1.838257074356079,1.838257074356079,1.681394338607788,1.8033987283706665,1.9254029989242554,1.5419608354568481,1.7859694957733154,1.6465359926223755,1.5768191814422607,1.5593899488449097,1.7162526845932007,1.663965106010437,1.5419608354568481,1.5768191814422607,1.6465359926223755,1.663965106010437,1.5593899488449097,1.8556863069534302,1.524531602859497,1.5419608354568481,1.5942484140396118,1.5768191814422607,1.663965106010437,1.2282352447509766,1.6116775274276733,1.4199564456939697,1.3153812885284424,1.4025272130966187,1.4722440242767334,1.4373856782913208,1.175947666168213,1.332810401916504,1.4722440242767334,1.2979520559310913,1.5942484140396118,1.4548147916793823,1.332810401916504,1.820827841758728,1.5768191814422607,1.367668867111206,1.524531602859497,1.6465359926223755,1.6116775274276733,1.524531602859497,1.681394338607788,1.820827841758728,1.7336819171905518,1.6465359926223755,1.3153812885284424,1.5419608354568481,1.4373856782913208,1.4025272130966187,1.5419608354568481,1.350239634513855,1.2979520559310913,1.210806131362915,1.350239634513855,1.350239634513855,1.2979520559310913,1.4548147916793823,1.2979520559310913,1.4722440242767334,1.5593899488449097,1.1410893201828003,1.3153812885284424,0.9145098328590393,0.9493681788444519,1.036514163017273,1.7859694957733154,0.966797411441803,1.5942484140396118,1.4722440242767334,1.2805228233337402,1.5419608354568481,1.6291067600250244,1.5942484140396118,1.2805228233337402,1.4199564456939697,1.2456644773483276,1.7685402631759644,1.507102370262146,1.507102370262146,1.663965106010437,1.5942484140396118,1.5768191814422607,1.036514163017273,1.367668867111206,1.193376898765564,1.524531602859497,1.6465359926223755,1.507102370262146,1.367668867111206,1.5419608354568481,1.4548147916793823,1.3153812885284424,1.367668867111206,1.367668867111206,1.193376898765564,0.966797411441803,1.4548147916793823,1.5419608354568481,1.367668867111206,1.2282352447509766,1.507102370262146,1.332810401916504,1.2805228233337402,1.175947666168213,1.1062309741973877,1.4722440242767334,1.332810401916504,1.4896732568740845,1.4548147916793823,1.332810401916504,1.507102370262146,1.6988235712051392,1.820827841758728,1.4025272130966187,1.4896732568740845,1.6988235712051392,1.524531602859497,1.4548147916793823,1.4548147916793823,1.5942484140396118,1.681394338607788,1.332810401916504,1.0016558170318604,1.193376898765564,0.9145098328590393,0.9319390058517456,1.0888017416000366,1.053943395614624,0.9319390058517456,1.1585185527801514,1.332810401916504,1.2456644773483276,1.2630937099456787,1.4722440242767334,1.4373856782913208,1.367668867111206,1.681394338607788,1.367668867111206,1.4896732568740845,0.966797411441803,1.4025272130966187,0.8970806002616882,0.9493681788444519,1.2282352447509766,0.8099346160888672,1.4722440242767334,1.2805228233337402,0.5659258961677551,1.2630937099456787,1.053943395614624,0.47877994179725647,1.4896732568740845,1.2630937099456787,1.175947666168213,1.2456644773483276,1.524531602859497,1.1410893201828003,0.7925054430961609,0.9842265844345093,0.8273638486862183,0.8447930216789246,0.9319390058517456,0.8622221946716309,-0.09638344496488571,-0.270675390958786,0.11276688426733017,-0.270675390958786,-0.37525054812431335,-0.21838779747486115,-0.23581700026988983,1.3153812885284424,1.1062309741973877,1.6988235712051392,1.6465359926223755,1.4722440242767334,1.5942484140396118,1.5768191814422607,1.6291067600250244,1.7336819171905518,1.350239634513855,1.2979520559310913],[1.9079738855361938,1.332810401916504,1.4722440242767334,1.5593899488449097,1.681394338607788,1.9079738855361938,1.7859694957733154,1.524531602859497,1.5768191814422607,1.1062309741973877,1.210806131362915,0.9842265844345093,1.7685402631759644,1.9254029989242554,0.5484967231750488,1.4373856782913208,1.5942484140396118,0.8970806002616882,1.2456644773483276,0.04305011034011841,0.6879302859306335,0.7925054430961609,-0.5321133136749268,0.2522004246711731,0.8447930216789246,0.8970806002616882,1.210806131362915,1.350239634513855,1.5768191814422607,1.7511111497879028,1.7685402631759644,1.7511111497879028,1.524531602859497,1.8731154203414917,1.6988235712051392,1.9951198101043701,1.8033987283706665,1.7859694957733154,1.663965106010437,1.7162526845932007,1.5768191814422607,1.4722440242767334,1.7859694957733154,1.681394338607788,1.5419608354568481,1.7859694957733154,1.6116775274276733,2.0299782752990723,1.4199564456939697,1.4722440242767334,1.6291067600250244,1.6465359926223755,1.5768191814422607,1.8033987283706665,1.5942484140396118,1.524531602859497,1.524531602859497,1.6988235712051392,1.4722440242767334,1.2979520559310913,1.332810401916504,1.5942484140396118,1.193376898765564,1.2456644773483276,1.9602614641189575,1.5593899488449097,1.3153812885284424,1.4548147916793823,1.1410893201828003,1.524531602859497,1.332810401916504,1.3153812885284424,1.4025272130966187,1.350239634513855,1.6116775274276733,1.4548147916793823,1.332810401916504,1.5419608354568481,1.4722440242767334,1.367668867111206,1.6465359926223755,1.4896732568740845,1.507102370262146,1.663965106010437,1.7336819171905518,1.5593899488449097,1.4199564456939697,1.820827841758728,1.332810401916504,1.4722440242767334,1.175947666168213,1.4373856782913208,1.5593899488449097,1.4025272130966187,1.4548147916793823,1.2979520559310913,1.1410893201828003,1.2805228233337402,1.175947666168213,1.4373856782913208,1.2805228233337402,1.1410893201828003,1.5942484140396118,0.8447930216789246,1.053943395614624,0.6705011129379272,1.053943395614624,1.3850979804992676,1.5419608354568481,1.4199564456939697,1.5942484140396118,1.6116775274276733,1.4548147916793823,1.350239634513855,1.5768191814422607,1.8556863069534302,1.332810401916504,1.3850979804992676,1.0190849304199219,1.2282352447509766,1.663965106010437,1.681394338607788,1.5768191814422607,1.6988235712051392,1.6988235712051392,1.193376898765564,1.1585185527801514,1.4199564456939697,1.507102370262146,1.193376898765564,1.681394338607788,1.663965106010437,1.4025272130966187,1.210806131362915,1.6116775274276733,1.524531602859497,1.8033987283706665,1.3850979804992676,1.2630937099456787,1.2282352447509766,1.2456644773483276,1.4896732568740845,1.175947666168213,1.2805228233337402,1.5768191814422607,1.7685402631759644,1.193376898765564,1.0713725090026855,1.1585185527801514,1.3153812885284424,1.367668867111206,1.3850979804992676,1.4199564456939697,1.4896732568740845,1.6988235712051392,1.4025272130966187,1.6291067600250244,1.7162526845932007,1.4025272130966187,1.4373856782913208,1.4722440242767334,1.2805228233337402,1.4896732568740845,1.2282352447509766,0.9842265844345093,1.4373856782913208,0.8447930216789246,0.966797411441803,0.9842265844345093,1.3850979804992676,1.2979520559310913,1.5419608354568481,1.367668867111206,1.4199564456939697,1.4199564456939697,1.4896732568740845,1.524531602859497,1.5419608354568481,1.6116775274276733,1.4199564456939697,1.4025272130966187,1.367668867111206,1.3850979804992676,1.175947666168213,1.6116775274276733,1.0190849304199219,1.4373856782913208,1.1585185527801514,1.1585185527801514,1.1585185527801514,0.9842265844345093,1.0190849304199219,1.3850979804992676,1.1062309741973877,0.8622221946716309,1.1236600875854492,1.5942484140396118,1.2630937099456787,1.1236600875854492,0.8447930216789246,1.175947666168213,0.9842265844345093,1.1062309741973877,0.6705011129379272,0.5659258961677551,0.2173420488834381,0.6182135343551636,0.14762526750564575,-0.06152505427598953,-0.09638344496488571,-0.07895424962043762,-0.7064052224159241,0.04305011034011841,1.2282352447509766,1.5768191814422607,1.7685402631759644,1.4373856782913208,1.663965106010437,1.681394338607788,1.6465359926223755,1.5593899488449097,1.507102370262146,1.4548147916793823,1.332810401916504],[1.4548147916793823,1.5593899488449097,1.6988235712051392,1.5768191814422607,1.4373856782913208,1.524531602859497,1.6291067600250244,1.6465359926223755,1.7511111497879028,1.7859694957733154,1.0190849304199219,1.0888017416000366,1.2282352447509766,0.9145098328590393,-0.270675390958786,1.367668867111206,1.9254029989242554,1.524531602859497,-0.4449673295021057,-0.8109803795814514,0.11276688426733017,0.9145098328590393,0.2347712367773056,1.036514163017273,1.1585185527801514,1.5768191814422607,1.4722440242767334,1.6465359926223755,1.8033987283706665,1.820827841758728,1.6291067600250244,1.9079738855361938,1.4722440242767334,1.7685402631759644,1.820827841758728,1.4199564456939697,1.820827841758728,2.117124080657959,1.9079738855361938,1.8556863069534302,1.838257074356079,1.7859694957733154,1.6465359926223755,1.7685402631759644,1.5942484140396118,1.7685402631759644,1.524531602859497,1.7685402631759644,1.663965106010437,1.6988235712051392,1.7162526845932007,1.820827841758728,1.663965106010437,1.4722440242767334,1.6988235712051392,1.367668867111206,1.6465359926223755,1.663965106010437,1.4722440242767334,1.6116775274276733,1.5768191814422607,1.5942484140396118,1.7511111497879028,1.2979520559310913,1.4199564456939697,1.7162526845932007,1.7162526845932007,1.4025272130966187,1.663965106010437,1.6116775274276733,1.681394338607788,1.2282352447509766,1.2630937099456787,1.5942484140396118,1.5419608354568481,1.4896732568740845,1.6465359926223755,1.4722440242767334,1.4025272130966187,1.2630937099456787,1.7162526845932007,1.663965106010437,1.524531602859497,1.4548147916793823,1.6465359926223755,1.3153812885284424,1.1062309741973877,1.2630937099456787,1.4025272130966187,1.193376898765564,1.1585185527801514,1.4373856782913208,1.4373856782913208,1.3153812885284424,1.3850979804992676,1.507102370262146,1.2979520559310913,1.2979520559310913,1.524531602859497,1.4722440242767334,0.966797411441803,1.367668867111206,1.4199564456939697,1.1062309741973877,1.367668867111206,1.053943395614624,0.7576470375061035,1.210806131362915,1.350239634513855,1.524531602859497,1.507102370262146,1.6291067600250244,1.332810401916504,1.0888017416000366,1.4722440242767334,1.663965106010437,1.4025272130966187,1.1062309741973877,0.9493681788444519,1.2456644773483276,1.7511111497879028,1.5593899488449097,1.838257074356079,1.507102370262146,1.036514163017273,1.0713725090026855,1.3153812885284424,1.6291067600250244,1.6116775274276733,1.8033987283706665,1.5768191814422607,1.4025272130966187,1.4548147916793823,1.367668867111206,1.7511111497879028,1.5942484140396118,1.7336819171905518,1.2630937099456787,1.8033987283706665,1.4722440242767334,1.2282352447509766,1.2282352447509766,1.5593899488449097,1.524531602859497,1.6291067600250244,1.2282352447509766,1.332810401916504,1.1585185527801514,1.2805228233337402,1.332810401916504,1.524531602859497,1.367668867111206,1.367668867111206,1.6465359926223755,1.4896732568740845,1.7511111497879028,1.838257074356079,1.5768191814422607,1.7511111497879028,1.681394338607788,1.4199564456939697,1.6291067600250244,0.8622221946716309,0.9842265844345093,1.2282352447509766,1.2805228233337402,1.193376898765564,1.2979520559310913,1.0190849304199219,1.175947666168213,1.2805228233337402,1.2805228233337402,1.2630937099456787,1.2456644773483276,1.3850979804992676,1.507102370262146,1.350239634513855,1.4722440242767334,1.0016558170318604,1.6291067600250244,1.350239634513855,1.5768191814422607,1.2456644773483276,0.966797411441803,1.4548147916793823,1.053943395614624,0.7053594589233398,0.7227886915206909,1.4373856782913208,1.3153812885284424,1.1236600875854492,0.6356427073478699,0.9319390058517456,1.2805228233337402,1.053943395614624,0.9319390058517456,1.332810401916504,1.0016558170318604,1.0888017416000366,0.9319390058517456,1.0888017416000366,0.8970806002616882,0.8273638486862183,0.9842265844345093,0.6705011129379272,0.5833551287651062,0.5659258961677551,0.4264923632144928,-0.2532461881637573,-0.4972549080848694,-0.37525054812431335,-0.462396502494812,-0.4972549080848694,1.0713725090026855,1.1585185527801514,1.524531602859497,1.681394338607788,1.5593899488449097,1.4548147916793823,1.6291067600250244,1.4199564456939697,1.5593899488449097,1.193376898765564,1.367668867111206],[1.663965106010437,1.524531602859497,1.367668867111206,1.6988235712051392,2.0648365020751953,1.6116775274276733,1.7336819171905518,1.838257074356079,1.681394338607788,1.5768191814422607,1.7511111497879028,1.1410893201828003,1.210806131362915,0.7227886915206909,0.9319390058517456,1.5942484140396118,1.9951198101043701,1.193376898765564,0.14762526750564575,-0.7064052224159241,0.6182135343551636,1.0888017416000366,1.1062309741973877,1.193376898765564,1.4722440242767334,1.6116775274276733,1.6116775274276733,1.7336819171905518,1.8731154203414917,1.9254029989242554,1.9079738855361938,2.0125489234924316,1.7336819171905518,1.9254029989242554,1.820827841758728,1.7859694957733154,1.820827841758728,1.8731154203414917,1.8556863069534302,1.820827841758728,1.7511111497879028,1.838257074356079,1.9428322315216064,1.7859694957733154,1.681394338607788,1.5593899488449097,1.7685402631759644,1.524531602859497,1.7685402631759644,1.820827841758728,1.350239634513855,1.6291067600250244,1.7859694957733154,1.8731154203414917,1.4548147916793823,1.820827841758728,1.6465359926223755,1.5768191814422607,1.6465359926223755,1.4548147916793823,1.5419608354568481,1.3850979804992676,1.1236600875854492,1.6116775274276733,1.6116775274276733,1.367668867111206,1.4722440242767334,1.350239634513855,1.4896732568740845,1.5593899488449097,1.350239634513855,1.2282352447509766,1.507102370262146,1.5593899488449097,1.4199564456939697,1.5593899488449097,1.6291067600250244,1.6465359926223755,1.5419608354568481,1.2456644773483276,1.4025272130966187,1.524531602859497,1.4896732568740845,1.5593899488449097,1.6116775274276733,1.4896732568740845,1.6988235712051392,1.4025272130966187,1.367668867111206,1.350239634513855,1.1236600875854492,1.4199564456939697,1.193376898765564,1.2282352447509766,1.0713725090026855,1.4722440242767334,1.2282352447509766,1.2979520559310913,1.5593899488449097,1.4199564456939697,1.2979520559310913,0.8796514272689819,1.193376898765564,1.2805228233337402,1.2630937099456787,1.193376898765564,0.7750762701034546,0.7925054430961609,1.2805228233337402,1.175947666168213,1.4373856782913208,1.332810401916504,1.0713725090026855,1.2805228233337402,1.5768191814422607,1.5419608354568481,1.5593899488449097,1.2805228233337402,1.2282352447509766,1.367668867111206,1.524531602859497,1.6291067600250244,1.4722440242767334,1.507102370262146,0.9319390058517456,0.9145098328590393,1.5768191814422607,1.2979520559310913,1.4548147916793823,1.4722440242767334,1.3850979804992676,1.053943395614624,1.332810401916504,1.4548147916793823,1.175947666168213,1.524531602859497,1.2630937099456787,1.3153812885284424,1.1410893201828003,1.1585185527801514,1.2979520559310913,1.367668867111206,1.4548147916793823,1.4548147916793823,1.7162526845932007,1.350239634513855,1.3850979804992676,1.1410893201828003,1.4025272130966187,1.1236600875854492,1.2282352447509766,1.3153812885284424,1.507102370262146,1.7511111497879028,1.524531602859497,1.350239634513855,1.4199564456939697,1.7685402631759644,1.4373856782913208,1.4373856782913208,1.053943395614624,1.4025272130966187,1.3850979804992676,1.2979520559310913,1.0016558170318604,0.9842265844345093,0.8622221946716309,0.7750762701034546,0.8970806002616882,1.4373856782913208,1.1410893201828003,1.5942484140396118,0.966797411441803,1.2456644773483276,1.332810401916504,1.2630937099456787,1.193376898765564,1.3850979804992676,1.4722440242767334,1.2456644773483276,1.5768191814422607,1.1585185527801514,1.6291067600250244,1.524531602859497,1.4896732568740845,1.3153812885284424,1.0016558170318604,0.8099346160888672,1.2630937099456787,0.9145098328590393,1.0016558170318604,1.2456644773483276,1.0016558170318604,1.193376898765564,0.9493681788444519,1.0190849304199219,1.193376898765564,1.2630937099456787,1.3850979804992676,0.966797411441803,0.8447930216789246,0.9145098328590393,0.8447930216789246,1.2630937099456787,0.5310675501823425,0.8273638486862183,0.9145098328590393,0.7750762701034546,0.13019607961177826,-0.16610021889209747,-0.5669716596603394,-0.4972549080848694,-0.619259238243103,1.053943395614624,1.210806131362915,1.6116775274276733,1.6465359926223755,1.5942484140396118,1.663965106010437,1.820827841758728,1.6988235712051392,1.210806131362915,1.2979520559310913,1.0016558170318604],[1.5593899488449097,1.7685402631759644,1.5419608354568481,1.4896732568740845,1.4548147916793823,1.663965106010437,1.6116775274276733,1.8033987283706665,1.7162526845932007,1.9428322315216064,1.5419608354568481,1.6465359926223755,1.507102370262146,1.3850979804992676,1.5593899488449097,1.9079738855361938,1.7336819171905518,0.8970806002616882,-0.37525054812431335,-0.18352940678596497,0.7925054430961609,1.5768191814422607,1.7685402631759644,1.4896732568740845,1.681394338607788,1.9602614641189575,1.8731154203414917,1.838257074356079,1.9079738855361938,1.9951198101043701,2.117124080657959,1.838257074356079,2.0299782752990723,1.7859694957733154,1.7336819171905518,1.7162526845932007,1.4896732568740845,1.663965106010437,1.9079738855361938,1.8556863069534302,1.4896732568740845,1.6116775274276733,1.5768191814422607,1.7162526845932007,1.6988235712051392,1.7859694957733154,1.663965106010437,1.4896732568740845,1.6988235712051392,1.8905446529388428,1.5942484140396118,1.524531602859497,1.8033987283706665,1.7859694957733154,1.4025272130966187,1.6988235712051392,1.663965106010437,1.6291067600250244,1.6116775274276733,1.4722440242767334,1.6291067600250244,1.5419608354568481,1.7162526845932007,1.5419608354568481,1.350239634513855,1.332810401916504,1.7162526845932007,1.6116775274276733,1.6988235712051392,1.2456644773483276,1.5768191814422607,1.6465359926223755,1.5593899488449097,1.5419608354568481,1.9951198101043701,1.507102370262146,1.681394338607788,1.193376898765564,1.838257074356079,1.9254029989242554,1.4199564456939697,1.7336819171905518,1.6291067600250244,1.8033987283706665,1.4896732568740845,1.4896732568740845,1.6465359926223755,1.4722440242767334,1.6465359926223755,1.3850979804992676,1.2456644773483276,1.2979520559310913,1.210806131362915,1.2282352447509766,1.210806131362915,1.3153812885284424,1.2805228233337402,1.4896732568740845,1.4722440242767334,1.5593899488449097,1.0888017416000366,1.175947666168213,1.3850979804992676,1.2805228233337402,1.507102370262146,1.036514163017273,0.8447930216789246,1.1585185527801514,1.367668867111206,1.3850979804992676,1.4373856782913208,1.193376898765564,1.524531602859497,1.5942484140396118,1.175947666168213,1.6465359926223755,1.350239634513855,1.210806131362915,1.036514163017273,1.0888017416000366,1.7685402631759644,1.5768191814422607,1.4548147916793823,0.8447930216789246,0.966797411441803,1.0190849304199219,0.8622221946716309,1.507102370262146,1.507102370262146,1.507102370262146,1.2805228233337402,1.6465359926223755,1.1410893201828003,1.332810401916504,1.4548147916793823,1.175947666168213,1.524531602859497,1.2456644773483276,1.4548147916793823,1.0713725090026855,1.524531602859497,1.4548147916793823,1.3850979804992676,1.4722440242767334,1.524531602859497,1.2630937099456787,1.6116775274276733,1.210806131362915,0.9145098328590393,1.6116775274276733,1.3153812885284424,1.2979520559310913,1.210806131362915,1.5942484140396118,1.4025272130966187,1.4896732568740845,1.3153812885284424,1.7859694957733154,1.524531602859497,1.332810401916504,1.2630937099456787,1.5942484140396118,0.9493681788444519,0.5659258961677551,1.0713725090026855,1.4199564456939697,1.210806131362915,1.053943395614624,1.2979520559310913,0.8796514272689819,1.6988235712051392,0.9842265844345093,1.4025272130966187,1.681394338607788,1.4722440242767334,1.2456644773483276,1.2630937099456787,1.4199564456939697,1.6116775274276733,1.4722440242767334,1.0190849304199219,1.4548147916793823,1.0888017416000366,1.0190849304199219,1.1585185527801514,0.8970806002616882,0.8796514272689819,0.8447930216789246,0.7053594589233398,1.3153812885284424,0.9842265844345093,0.8796514272689819,0.8970806002616882,1.0888017416000366,1.1062309741973877,0.9842265844345093,1.1585185527801514,1.507102370262146,1.0713725090026855,0.8099346160888672,1.0713725090026855,1.3153812885284424,0.9145098328590393,0.7576470375061035,0.9493681788444519,0.7227886915206909,0.30448800325393677,0.6007843017578125,0.5659258961677551,-0.35782134532928467,-0.305533766746521,-0.6018300652503967,-0.5321133136749268,1.0713725090026855,1.8556863069534302,1.175947666168213,1.4025272130966187,1.6116775274276733,1.6291067600250244,1.6988235712051392,1.5419608354568481,1.8033987283706665,1.4896732568740845,1.1410893201828003],[1.681394338607788,1.7511111497879028,1.6465359926223755,1.5768191814422607,1.4199564456939697,1.7511111497879028,1.5419608354568481,1.7162526845932007,1.6291067600250244,1.5419608354568481,1.8905446529388428,1.5419608354568481,1.4373856782913208,1.524531602859497,1.8905446529388428,2.0125489234924316,1.838257074356079,1.0190849304199219,0.02562091499567032,0.9319390058517456,0.7576470375061035,1.036514163017273,1.5768191814422607,1.6291067600250244,1.6465359926223755,1.7685402631759644,2.082265853881836,1.977690577507019,1.9079738855361938,1.9602614641189575,1.9428322315216064,2.0648365020751953,1.820827841758728,1.8556863069534302,2.0125489234924316,1.9254029989242554,1.9428322315216064,1.7511111497879028,1.8556863069534302,1.5593899488449097,1.8731154203414917,1.7336819171905518,1.8731154203414917,1.8905446529388428,2.047407388687134,1.8556863069534302,1.7162526845932007,1.5942484140396118,1.663965106010437,1.6116775274276733,1.7859694957733154,1.681394338607788,1.2456644773483276,2.082265853881836,1.524531602859497,1.681394338607788,1.681394338607788,1.820827841758728,1.2979520559310913,1.6116775274276733,1.524531602859497,1.9428322315216064,1.8556863069534302,1.9428322315216064,1.210806131362915,1.7162526845932007,1.9602614641189575,1.8556863069534302,1.8905446529388428,1.9079738855361938,1.7162526845932007,1.5419608354568481,1.5942484140396118,1.6465359926223755,1.681394338607788,1.4548147916793823,1.4722440242767334,1.5419608354568481,1.4722440242767334,1.4025272130966187,1.4896732568740845,1.4548147916793823,1.6465359926223755,1.4548147916793823,1.663965106010437,1.5593899488449097,1.6116775274276733,1.524531602859497,1.524531602859497,1.3153812885284424,1.193376898765564,1.3850979804992676,1.524531602859497,1.175947666168213,1.2630937099456787,1.7685402631759644,1.820827841758728,1.524531602859497,1.681394338607788,1.1585185527801514,1.5593899488449097,1.5419608354568481,0.9493681788444519,1.1062309741973877,1.2282352447509766,1.4025272130966187,1.0713725090026855,0.7402178645133972,1.0713725090026855,1.367668867111206,1.5419608354568481,1.2456644773483276,1.0016558170318604,1.2805228233337402,1.2979520559310913,1.6465359926223755,1.4199564456939697,1.2805228233337402,1.0190849304199219,1.0190849304199219,1.7162526845932007,1.2979520559310913,1.4373856782913208,1.5942484140396118,1.0888017416000366,1.0190849304199219,1.1410893201828003,1.4199564456939697,1.7859694957733154,1.7162526845932007,1.2456644773483276,1.4896732568740845,1.681394338607788,1.2805228233337402,1.5768191814422607,1.7162526845932007,1.507102370262146,1.5942484140396118,1.2979520559310913,1.193376898765564,1.4199564456939697,1.6291067600250244,1.507102370262146,1.5593899488449097,1.6988235712051392,1.5942484140396118,1.2630937099456787,1.5593899488449097,1.0888017416000366,1.1410893201828003,1.2630937099456787,0.9842265844345093,1.507102370262146,1.4722440242767334,1.5768191814422607,1.681394338607788,1.663965106010437,1.4025272130966187,1.6116775274276733,1.3850979804992676,1.036514163017273,1.332810401916504,1.4548147916793823,1.4373856782913208,1.193376898765564,1.1236600875854492,1.1410893201828003,0.966797411441803,1.332810401916504,1.0190849304199219,1.1062309741973877,1.350239634513855,1.524531602859497,1.2456644773483276,1.2979520559310913,1.3850979804992676,1.5419608354568481,1.2456644773483276,1.2282352447509766,1.6116775274276733,1.2630937099456787,1.4373856782913208,1.0713725090026855,1.2282352447509766,0.9319390058517456,0.9319390058517456,1.1062309741973877,1.524531602859497,1.0190849304199219,0.7925054430961609,1.053943395614624,1.1585185527801514,1.175947666168213,0.9493681788444519,0.9493681788444519,0.8796514272689819,1.036514163017273,1.2979520559310913,1.2456644773483276,1.367668867111206,0.7053594589233398,0.8447930216789246,0.8447930216789246,1.0016558170318604,0.8970806002616882,0.5659258961677551,0.7925054430961609,0.6182135343551636,0.5659258961677551,0.3742047846317291,-0.6366884708404541,-0.8981263637542725,-0.6889760494232178,0.5659258961677551,1.332810401916504,1.7685402631759644,1.5942484140396118,1.7162526845932007,1.507102370262146,1.6291067600250244,1.507102370262146,1.5768191814422607,1.4199564456939697,0.966797411441803],[1.838257074356079,1.8731154203414917,1.2456644773483276,1.7685402631759644,1.5419608354568481,1.3850979804992676,1.6988235712051392,1.681394338607788,1.6291067600250244,1.7859694957733154,1.681394338607788,1.507102370262146,1.2630937099456787,1.4896732568740845,1.6291067600250244,1.5942484140396118,1.367668867111206,1.5419608354568481,0.8099346160888672,1.2805228233337402,1.507102370262146,1.4722440242767334,1.6291067600250244,1.7336819171905518,1.820827841758728,2.0125489234924316,1.9428322315216064,2.1868410110473633,1.9079738855361938,2.0299782752990723,1.9602614641189575,1.6988235712051392,1.8556863069534302,1.820827841758728,1.7511111497879028,1.9428322315216064,1.681394338607788,1.7859694957733154,1.367668867111206,2.0996949672698975,1.7162526845932007,1.9254029989242554,1.5419608354568481,1.6465359926223755,1.681394338607788,1.7685402631759644,1.838257074356079,1.7859694957733154,1.210806131362915,1.6465359926223755,1.5768191814422607,1.5593899488449097,1.5593899488449097,1.6465359926223755,1.7336819171905518,1.6291067600250244,1.5768191814422607,1.2979520559310913,1.5419608354568481,1.4025272130966187,1.5768191814422607,1.4896732568740845,1.4896732568740845,1.350239634513855,1.6465359926223755,1.4199564456939697,1.5419608354568481,1.681394338607788,1.4896732568740845,1.524531602859497,1.4373856782913208,1.977690577507019,1.9079738855361938,1.507102370262146,1.5768191814422607,1.5593899488449097,1.5593899488449097,1.663965106010437,1.367668867111206,1.5942484140396118,1.2282352447509766,1.681394338607788,1.4199564456939697,1.6465359926223755,1.524531602859497,1.3850979804992676,1.7685402631759644,1.4373856782913208,1.681394338607788,1.5593899488449097,1.7162526845932007,1.5593899488449097,1.350239634513855,1.4373856782913208,1.4548147916793823,1.7336819171905518,1.6465359926223755,1.6988235712051392,1.5419608354568481,1.332810401916504,1.2979520559310913,0.9319390058517456,1.1062309741973877,1.1585185527801514,1.2282352447509766,1.175947666168213,1.1236600875854492,0.8796514272689819,0.9493681788444519,1.367668867111206,0.966797411441803,1.193376898765564,1.2282352447509766,1.4896732568740845,1.4199564456939697,1.175947666168213,1.0888017416000366,1.1062309741973877,0.6182135343551636,1.663965106010437,1.663965106010437,1.663965106010437,1.5768191814422607,1.0016558170318604,1.1236600875854492,0.7750762701034546,1.367668867111206,1.367668867111206,1.1236600875854492,1.332810401916504,1.1062309741973877,1.210806131362915,1.0713725090026855,1.1236600875854492,1.2805228233337402,1.524531602859497,1.524531602859497,1.4199564456939697,0.8273638486862183,0.8099346160888672,1.7685402631759644,1.332810401916504,1.681394338607788,1.507102370262146,1.7859694957733154,1.524531602859497,1.8033987283706665,1.367668867111206,1.5593899488449097,1.2630937099456787,1.350239634513855,0.966797411441803,1.350239634513855,1.332810401916504,1.2979520559310913,1.4722440242767334,1.4896732568740845,1.193376898765564,1.350239634513855,1.6465359926223755,1.4548147916793823,1.2805228233337402,1.210806131362915,1.4548147916793823,1.1236600875854492,1.507102370262146,0.9145098328590393,1.1236600875854492,1.2979520559310913,1.2456644773483276,0.8447930216789246,1.507102370262146,1.3153812885284424,1.507102370262146,1.4199564456939697,1.2282352447509766,1.4199564456939697,1.332810401916504,1.1410893201828003,1.507102370262146,1.2282352447509766,0.9493681788444519,1.175947666168213,1.2282352447509766,0.9842265844345093,1.0713725090026855,0.966797411441803,1.0016558170318604,1.193376898765564,0.9842265844345093,0.6530718803405762,0.6879302859306335,1.2630937099456787,1.1585185527801514,0.8970806002616882,1.193376898765564,1.1062309741973877,1.0190849304199219,1.1410893201828003,1.053943395614624,1.053943395614624,0.966797411441803,0.9493681788444519,0.8796514272689819,0.7576470375061035,0.32191720604896545,-0.009237472899258137,0.7402178645133972,0.2522004246711731,0.5136383175849915,-0.21838779747486115,-0.7412636280059814,-0.6366884708404541,1.0888017416000366,0.9493681788444519,1.1410893201828003,1.1410893201828003,1.350239634513855,1.663965106010437,1.4025272130966187,1.5768191814422607,1.4896732568740845,1.210806131362915,1.0016558170318604],[1.524531602859497,1.524531602859497,1.7336819171905518,1.2456644773483276,1.507102370262146,1.9079738855361938,1.7511111497879028,1.9602614641189575,1.838257074356079,1.6988235712051392,1.6988235712051392,1.9602614641189575,1.8731154203414917,1.663965106010437,1.210806131362915,1.4199564456939697,1.367668867111206,1.2805228233337402,1.2282352447509766,1.332810401916504,1.4548147916793823,1.7685402631759644,1.7162526845932007,2.0125489234924316,1.820827841758728,1.820827841758728,2.0299782752990723,2.082265853881836,1.9428322315216064,1.9428322315216064,1.7859694957733154,1.9254029989242554,1.9079738855361938,1.838257074356079,1.9254029989242554,1.9602614641189575,1.681394338607788,1.663965106010437,1.9254029989242554,1.5942484140396118,1.8556863069534302,1.681394338607788,1.367668867111206,1.6116775274276733,1.507102370262146,1.6988235712051392,1.5419608354568481,1.4373856782913208,1.8033987283706665,1.2805228233337402,1.6465359926223755,1.7859694957733154,1.820827841758728,1.5768191814422607,1.3850979804992676,1.6291067600250244,1.9428322315216064,1.663965106010437,1.6465359926223755,1.8731154203414917,1.4199564456939697,1.7685402631759644,1.681394338607788,1.5768191814422607,1.7511111497879028,1.838257074356079,1.663965106010437,1.7859694957733154,1.5593899488449097,1.6465359926223755,1.3153812885284424,1.5593899488449097,1.7336819171905518,1.9428322315216064,1.4373856782913208,1.5419608354568481,1.6116775274276733,1.7859694957733154,1.6116775274276733,1.4025272130966187,1.5768191814422607,1.524531602859497,1.5768191814422607,1.7685402631759644,1.4373856782913208,1.4722440242767334,1.681394338607788,1.4896732568740845,1.5419608354568481,1.663965106010437,1.6465359926223755,1.3153812885284424,0.966797411441803,1.3153812885284424,1.4373856782913208,1.6291067600250244,1.3850979804992676,1.193376898765564,1.367668867111206,1.3850979804992676,1.2630937099456787,1.1062309741973877,0.9493681788444519,1.3153812885284424,1.2282352447509766,1.193376898765564,1.367668867111206,1.193376898765564,1.5768191814422607,1.053943395614624,1.4896732568740845,1.0016558170318604,1.2456644773483276,1.053943395614624,1.4025272130966187,1.7859694957733154,1.2979520559310913,1.036514163017273,1.367668867111206,1.2456644773483276,1.5419608354568481,1.7511111497879028,1.2456644773483276,1.2456644773483276,0.8447930216789246,1.0016558170318604,1.332810401916504,1.7859694957733154,1.1062309741973877,1.332810401916504,0.9145098328590393,1.367668867111206,1.350239634513855,0.9145098328590393,1.4722440242767334,1.367668867111206,1.524531602859497,1.4373856782913208,1.5942484140396118,1.367668867111206,1.4025272130966187,1.332810401916504,1.350239634513855,1.2979520559310913,1.2805228233337402,1.663965106010437,1.6116775274276733,1.524531602859497,1.6465359926223755,1.3850979804992676,1.210806131362915,1.0713725090026855,1.0713725090026855,1.0888017416000366,1.036514163017273,1.332810401916504,1.350239634513855,1.5419608354568481,1.5768191814422607,1.2979520559310913,1.6465359926223755,1.4896732568740845,1.6465359926223755,1.2979520559310913,0.8447930216789246,1.367668867111206,1.0190849304199219,0.966797411441803,0.8447930216789246,0.9842265844345093,1.1410893201828003,0.966797411441803,1.5768191814422607,1.350239634513855,1.1410893201828003,1.3153812885284424,1.4025272130966187,0.9493681788444519,1.7162526845932007,0.8970806002616882,1.053943395614624,1.2282352447509766,0.9842265844345093,0.6007843017578125,1.332810401916504,1.2979520559310913,1.0016558170318604,1.175947666168213,0.966797411441803,1.175947666168213,0.8622221946716309,1.1585185527801514,1.0888017416000366,1.2456644773483276,1.175947666168213,1.210806131362915,1.0713725090026855,0.9145098328590393,1.210806131362915,0.7576470375061035,0.9493681788444519,0.8447930216789246,0.966797411441803,0.8273638486862183,0.49620914459228516,0.33934640884399414,0.8273638486862183,0.4264923632144928,0.14762526750564575,-0.20095860958099365,0.14762526750564575,-0.41010892391204834,-0.7761220335960388,0.5310675501823425,1.4548147916793823,0.8970806002616882,1.4199564456939697,1.350239634513855,1.210806131362915,1.4025272130966187,1.2979520559310913,1.193376898765564,1.175947666168213,1.0016558170318604],[1.9079738855361938,1.7336819171905518,1.4548147916793823,1.7336819171905518,1.367668867111206,1.332810401916504,1.681394338607788,1.7685402631759644,1.7685402631759644,1.820827841758728,1.7859694957733154,1.5419608354568481,1.524531602859497,1.6291067600250244,1.5593899488449097,1.4548147916793823,1.5768191814422607,1.6988235712051392,1.332810401916504,1.8033987283706665,1.053943395614624,1.350239634513855,1.5768191814422607,1.7162526845932007,1.9254029989242554,1.6291067600250244,1.9602614641189575,1.9428322315216064,1.9951198101043701,1.8731154203414917,2.117124080657959,1.7511111497879028,2.1694116592407227,1.6988235712051392,1.838257074356079,1.820827841758728,2.0648365020751953,1.6988235712051392,1.6988235712051392,2.204270124435425,1.332810401916504,1.7685402631759644,1.5593899488449097,1.7685402631759644,1.6116775274276733,1.7685402631759644,1.350239634513855,1.2805228233337402,1.367668867111206,1.4025272130966187,1.1062309741973877,1.4025272130966187,1.507102370262146,1.4548147916793823,1.8731154203414917,1.663965106010437,1.681394338607788,1.5593899488449097,1.3850979804992676,1.350239634513855,1.681394338607788,1.4025272130966187,1.4373856782913208,1.524531602859497,1.6988235712051392,1.7685402631759644,1.4896732568740845,1.6465359926223755,1.7511111497879028,1.4896732568740845,2.082265853881836,1.507102370262146,1.5768191814422607,1.4896732568740845,1.332810401916504,1.5768191814422607,1.507102370262146,1.4548147916793823,1.5419608354568481,1.524531602859497,1.5419608354568481,1.4548147916793823,1.5419608354568481,1.5419608354568481,1.6291067600250244,1.6116775274276733,1.4025272130966187,1.4373856782913208,1.6116775274276733,1.838257074356079,1.4025272130966187,1.3153812885284424,1.507102370262146,1.524531602859497,1.3153812885284424,1.507102370262146,1.7685402631759644,1.367668867111206,1.1585185527801514,1.4199564456939697,1.1062309741973877,1.053943395614624,1.367668867111206,1.507102370262146,1.5419608354568481,1.367668867111206,0.7576470375061035,1.2282352447509766,0.8099346160888672,1.4199564456939697,0.8447930216789246,1.332810401916504,0.8622221946716309,1.4548147916793823,1.2282352447509766,1.367668867111206,1.367668867111206,1.2979520559310913,1.0016558170318604,1.3153812885284424,1.5942484140396118,1.6988235712051392,1.4722440242767334,1.2282352447509766,0.8796514272689819,1.0713725090026855,0.7402178645133972,1.350239634513855,1.6291067600250244,1.5593899488449097,1.663965106010437,1.1585185527801514,1.3850979804992676,1.3850979804992676,1.2805228233337402,1.4199564456939697,1.3153812885284424,1.2805228233337402,1.2456644773483276,1.1236600875854492,1.4199564456939697,1.2805228233337402,1.4025272130966187,1.4373856782913208,1.4373856782913208,1.8033987283706665,1.8731154203414917,1.4199564456939697,1.4548147916793823,1.4199564456939697,1.4548147916793823,1.2805228233337402,1.2282352447509766,0.8970806002616882,1.2805228233337402,1.663965106010437,1.2456644773483276,1.7511111497879028,1.4025272130966187,1.2456644773483276,0.8970806002616882,1.2456644773483276,1.1236600875854492,1.1236600875854492,1.2282352447509766,0.9145098328590393,1.2630937099456787,1.507102370262146,0.8796514272689819,0.9493681788444519,1.5593899488449097,1.0713725090026855,1.367668867111206,1.1062309741973877,1.4896732568740845,1.2979520559310913,1.1062309741973877,1.524531602859497,0.8099346160888672,1.4548147916793823,1.175947666168213,1.4896732568740845,1.193376898765564,1.2456644773483276,0.8622221946716309,0.9319390058517456,1.2630937099456787,1.0888017416000366,1.2282352447509766,1.1062309741973877,0.9319390058517456,1.4373856782913208,0.8796514272689819,1.175947666168213,0.8622221946716309,0.6705011129379272,0.8447930216789246,0.966797411441803,0.8796514272689819,1.2282352447509766,0.5833551287651062,1.036514163017273,1.0713725090026855,1.0190849304199219,0.4090631902217865,0.9145098328590393,0.7402178645133972,0.14762526750564575,0.8447930216789246,-0.270675390958786,-0.04409585893154144,-0.35782134532928467,-0.7586928009986877,0.33934640884399414,1.0190849304199219,1.2805228233337402,1.2805228233337402,0.7925054430961609,1.0713725090026855,1.2805228233337402,0.7925054430961609,0.30448800325393677,-0.39267975091934204,-1.0027015209197998]]] - diff --git a/src/test/resources/image_preprocessor/ox_cropped.png b/src/test/resources/image_preprocessor/ox_cropped.png new file mode 100644 index 0000000000000000000000000000000000000000..ceac3d01233e21334142860002e497a400246b78 GIT binary patch literal 121340 zcmV)LK)Jt(P)~Ih_V1J`*E##Y*ILis=V({9YC|}0MyN1=5Vygc z34yE;{!G7WzO(^}svRSXaf~e|ksfiu5$%S_+YF=2(w!+|VhR)Z7 zK2HOB-Sy~p)?$E<`HE)5N1cd{IN-_ktNV-0I9tWSr7?`2&S7{fjLI<{lc`=5mIra{dLHMVoy5Y0G{U1g zR91Z`EP7B`3t{GTo_|N-EA=D7<2ZY~g1N;C78i%GxHN*Ll~F9OjbmwJ0?S*|m|7h{ zb~KJyHN@ZJ#9+jX{(v4jzYe;94!!hU5ByH zP>-Vn%{XeTNBuw}nyoEpv9+RcunC8CNAPIdZamoZ5RT}N;y}+q?Cso#Jso?ozxx1c z`fJf>X-3UJ6CUY1iboB#*k^3O;lUQv+dI+X;CFQOVpp7!JUhW&kPv&V1E^bj8BoYT<9StKTNS zH9O`(Zrn@oeCoH#?V*xOPWqJ|F_aap6QvgLP26nuD#D`35Mz~Y$e7uK%n-y>ZPm%BlbkgKLfh#pSfFvQ5 z*T{QB%6j;71iH|x9ux3}m;4xA31W0Pfa+2JsW~5#^8uu1`~*3G%7h=o;{lA11u;Dl z#>uT=Jo(fK+!Ow_YB<0S?|dl&eupjAk)2M-Z1sv9!wfUmnKzd>NJL98yD3 zes?cyu|ep4edu;|q07zY{Za7#dlLwyb$Pl8V3z{0)!wFnX(osbj!x9E?^P1HFP;co#1KX|;cTk9` zCmlvQi*y?4c*Q9mu(^l=)05OGIHlv6eJ$v*9)-cx0DG+aH2|8z?Wzfg8jR8e8ZQA9 z_=4>CqI3eEKqYVqfC64=F^bA^Tx|>UVFjW*CeLvYI_)(Aa3J50Xx@Md)oW=jkL`<# zxPJ3AZrnPLYmZ%^5?;oQn^&lUiyYk(2*n2A33MYA??t-E??QmRDV=$VQrZjnuyr;Ma4Mt0_{WSmv^LoN!*ipQ@@JUMy z?*Qmbv?`F~wg6Y4;^n98>b3@*Yz0DrQ63jas|#NBn7oewE8tCU#xc8A;2hE8OVnC0)UG{aMB zK%5{>o(^K=N)}@$LVQ01l2aB$#s-j>w4=NnMvR|f47KvO^|3#(FGU8C&jv9*k;DAr zFcy|aFg9C6VI+Z6HNyQBf;(+TzfXsDs#Y`AqlKy?9l!g3fKZ^&;OlU8?kJ$6eWy7I zq+gE~uMQ2)ZUvzLcz{5N$~{8RME%~-yc<7L|Bz||p+Naa_aW@>IfOcbB;UapHNg<> zSMMvTCjiP;luzK3zaMITSp9vFU>>9r?(MI~9;)nKw*3NOe7qtK5kpR=-F#QDq1xN-X|Zr&F7F5>2` zYk1jCY2(x2*JK&FWAyuH=jZuL^?MmI{Hwu6Po@_Pc5-{bqGC6cvt~wB!HoU{+?n<6BU%E-4;73wo;yx9vf8f z321U#;F9}gD*y^;LyJC)t%ek2@?5!JV4T{BVc}E;OJ{OeIGM)WsVriXP6P$QVJbHF zZE@6tiJ2%?R&v-}FXPOqG48i5T)DY|>0?=x7or&2%%HNFLU@A5q0k5~Axuu|F?!sO znKN-z*SrMKi1>sBA*y(Ej4C)6RD*3VU6L`>Nj3Mu;p#&?>OgfU!B|kn%zPC?lUbxn zA;gLSBnY50VMQ;2X{7C|qit)V-TS`*P=ijk|E+nbj3Fc11N~_B^eH72JE{S=yRQZh zb{g={|zporke2knBO27F0TrbQnzyq%+FMujN9qXVRpTNe7eX z7H5Jg18U$&c9SMxiCPJG0*$~U017x_IkhIw(=4hyN5GWl$a6*U1U_lIYQIDO_A#;5W~W*i7c+2ILBreubj z-+3_5dN1S3Z(|U2rDeRI1fbYWX#$3TD6rg9 zMdm_Lz*fIO0eHU(iVYPI_Y#bUx(=xfDC#FL3Y3p_AIARP!z$;A?bJR;Zc7dn^%Hw4 zj|+qXoTWye-Un7sKlolcsJ z`Z9V;2a@{*OzDi;$RDfP7?wNk0VqIe&&2B z$@@vcN&pn=ZelKWB?wxwU0F?0I{{9LCsITi4AraK0-}H>mQs{Yn%oxf1YA){v8b8~ z3UFdMHJd8=Z+tDR?C0ExlxkDQlbAYN!q8S0#ib}SAoJgJ7z-;|oH{j%^V?H6cXpEd za1+~?XHlUGk|J1cDT4fJ6!94jdQ(P}mK_+|qLn;BbzGA?$-#}vmznj_xwz&403Q^{3HQ&}J%pb<`T%w%#m-3u zle;k`9=Ge(9v|4ctQ`xKRBtBYiJ0TIk1S%O^WB`)iCPgMuF@Z`Rm%&J$Be{5Z zA*Sqkzq?UcaRE(i>HPp|HeIu+|3?9j@OBey5!rW53b=t_9Zdcj7=6sup2MmMkS?iY z5eNmlbF3Yg3%4y zOXlq1nJ^X!;MubixN>P;L3ro!O`N_kMHl2jn8zbMA4F~?f((_ewBo|#sR-uIr7?Xv zg~}?`l=j$PHY(ehrefx1BN$%I^EmmS^LD}%qU#uC#!I-6PSR;)nX?Nal!tgcrgE5A zs9o@3Xx(}UktJn?E~tM^wNrrXQ`OO(zqJabG*LkfKvgvH^`VxT zQa}^n1VB+j$%L)Goop!g3524A0-o4X0rD`xIm!$tV2QQ-h1xf&CV5Yw6eSeM}6&9;^-xP#aK+u|u-coRp zP9@I~B~S&K40BXkuZl2YH#N94c%=BE_ctpT?^i?Zc>!eR96xhUQ6*Hh7^SI zp7NNcfC8UpL*+gEIp(A4Am*0i%zyK^etSz*L9ae`Mk(K&$8V^uWWX_o{ur%|Kg>=` zunMBAd@m`&$nVjrpQ3Cs0LgEa+XAHA7PT{aniN#dc#ncgR89sZ?J;SZDhiO&1U$)p zGKjUC4(t@JI8X_I_E@u0KWUL{-fg`A`UE?gQx^>~K1F^tL09L`>y!13`dHj7QrGk?)CCsjls48fg3Rs$E9vqFq9=D*G9ri%ye$-G^#6}Jz29*+u z!il zm<2ly?NmVnGT(RKyq~C_G`TIEN=AF>Y|=Tks-J-B<>QvSMHYcW15m7}OhxoD?+ARF zCB5H@YDy^63|a-WycAPY5dxk(SJY1)m#sWkfYlUL08ExlnB{BEU7EvVw~ph|Rc4n< zTWT6Y^52tB-Ng9|TbN%O=4cy6w&+mvfD;_4GlVddH{GlJio!`2)T+Hw0hA(?sGm}N z!YBJglv1k0@*1t+A~0$;R2!rOUfE}QXT4HBQB|?F9`1{9vHxBHM$}AT6aZUI523F2 z4N48ofm#Kk*i^}f0+t4v2HuZrk}Wj=HAR%yh)NDKCsx-JC>~2-WFv#+b0fHLV+mIt zTf%8t&||9wT)Hr;6!6mZB`lsOV}eRKL;ypRPIxN(?6Co)r){*bJ_TQ4ffjVi%Yo8? z$*qb~zUZ)@0Ggop_QBwjL7KTZVMik6LD0`Q;oG&>Sk3YeQr!IN>K zb&#F3V;>F?vKB&Tjt|@eP@8uX%O`(}%8Bxc>WNZHrBbu4Vh>v!9q0%cR1xNW05$um zDWkwB_Y07seh)CKy+MjGjSs2fiZ;a{0E+s__YepLKu6B0ntZ;fpFA#ehYkFGhxl8L z%IApfmHf%~KV)dczMdNF3JN?N=28_;t@0`MQh*cHQ*(iQTw3hzB)&WrB%tAvS!7FAP3X_5_p5`>xpit@?(3*?%TrYG$P3=cBT(TZM~ z#MwK`ICpIxXU|VzdwUWW&(GlI^;KLWkQ=9l`5R-Xa9}L0B@ko23le4lFgazT>ba2R zeF9%>)Wu_I$HMjmrnZK893!wNtS|+Qu*K~NmBYx7)ACm0h(+wMIoKau9Dw4?@r3}Q zIl7NZ7-LHn?w1?_w4oigb_L*mc6L!YQ8ZCDscMSaN#>H<0-C5#m%CemD9;f9rD-bI z;qE~j6>j5ZAr%g2ojG}U~)vTvLr%g?WN{TwlZMi=_ zMDgHV7Gl@lu}8Bl=HDx#7FwPKAZ<^K(UVnyYB zB|8e-YIO|XBUol0O?INRp2US`H*x(fr*QVlEHm;DE?$_ylaC+A6I8#m1Zi?Ut}=5Mw!9K_9)1GU@7JT(CH=#SXf;8L zSwy}Vf!|9o3{?F77P!0|kg^`c^L}K8W87y$s4f=y{1AEx)S>Q!*vF18N+%#m=ayV2 zN+*AtVrDq=gnu}s)K1h#168x3Dm(g^@tj?+DZpq&7y(eAGiF>cq#V#CZ0O*?Ayrbz zfp2QvgEvzFA833~Wk3N?s+=;)QYPZ}GtVAk1{Dih@9HLi zoj7W0!9iX9P6m`}px7*dPXkYi5LyXcs&@jR*ripW)+YI$9T z`!_YmeLm|$lr}UxB6EF%JZ2IHWci>Rw?Q6Pf;kd|FYhLN2DF%4(K^ruy@$s-!+~fh ziD1ZzL30P%JC2}N*9cF*j0}~pG?qkZGQ)jdVs0%VF%nhF&}wu?aj<*GY6^G)lLnf= zC#vHu`w$t6-Ydx5zbZy<_xg3J2vbKzz29!$-!uUG(@q7T{4Mv(9HGnuKHRo5wIIr; zfhRUpnpj~O5X2(OU?9pX>Z~fJ()b(p_SfMcZD@^rwtz1yat2y)m^O4*lvzq(a@++^ ztLAAdV4Niz7tgx<C`GbkT|{lGy}A`CD#l>o>(pYAa#1$@tfUP{5N+DG*EM(-ctPQxp5cW+Z7F7q3p> z+DqI=&u?M#>?l?V;I(T@cXBwYo7ZzG3`ZQoJvR4i;P$md~!Uk z9DuC}9c+nyIMV}a{ibBTE_=6vufx&}0~ODa@FJWG!R4ksG_;_ryB4N_4nz`8ltzX671k!?nLk1xxLpcNu#9_Wt0kD zn{mIY=E+td6lJv2jtYR1^<+Z5%UO#acfHDgT4ClMfa(7ZpjIsv(6oY#WITaRUZWOk zCwi133U~scSW-1FNb8&^nJ~kgvVCzD*KTgABFy=V$L|$kWGZ4}vaGU3I_JXVYy#6% zw!*LtDSlpR*l|~td`i&-6m6bQTm2(yCrUWF6j!&k6+!YE*+*K@MnKf|ojfKgD8S0? zdlURpIp+8FrhD#Xwd~!cWCE8q)gbqadTC3}w0S^nGX5t4s1z3B7snEDAw&;nb`4R<=gOcz6x&CmNBHo7KD7rZ_* zvIP#RBMGV?fzSI8FNZjABo%@Lb*M8pDqE>F z$#_~*(+#{&EU$~|FW*IgR4ZesnvcjDQL3O!#2>YG>=b$kpsWS0rAyeAEYMP<`?&+m zh_N%JWD&CDnQc>0v*gQ?37tETpS(UNdqk{4`7#Y1-gSUltmIsU9Dc_f7-%qZ5f~3FHLR>;PRL#qhx1mSk6>1BF-$8oDhrWKx*8E z=#ZHfQ3p?^oBOMi-;2LH-OYW~i%3C_Sg9WgLJ+SQ5fM9jU(@WVY`wIc;am@opB2Rk z8EE)fMLi0m%xFs?Tz=*lE;9d}zq5)>X4y5uw|R0HS07u#Q%{|sdze9{V1+N%tG@s6 zY7+5D59|dFoK+4Y{Jk~~GzR{b9uCeuK@PwK(3~)#$KOkZG7ugI0H>tlNf)$9evD8orI^4VC!fj4Fu2> zV2+KLFu*2TQ`pEspkH-*fkCX_qaAy&yK^ry)?w5Q5E4-&V?7R<aXt&AY?q;;{_085Mv_wxu&E(GJCB`EI0%(>=QI&|{9Z5pHfgrR1eSgbhGc@CDi<4I2XJy!V@?_l zBavnY%{Yd8c;g(Ny?7GOUp<4DpSX(4rUzgB*o-Ccfowxj#OnSI>=B`qXJdvX;}I z)hh+mlu(pUI;>Vr6$>i2rD!96YZf*sR#X;4OP(6HBSbKyGU>0F;Ui#yqLKERu0&iz zxC4%08+`E|q^O|7Q+`xtXu+8u!~8yhav!|3oKmQf3aKSn&(|~|p6|oZl#^N4g%a~x zb<~E9%?xhdT)^`$oS{=#z{;@#7FTlEQu%oXXUHywTh|0aai2DI_@uiZAOZI4S1P8j9VRa3vwOHvGB38OO7rLD~9AFmSH9nU@iqHR~r9E5T(KpE!WVM3QHFXB=><7XoL{c2JOB@MD!wBb{?C5sp8rq($ z4KAvtli=BM7Fy6j0+__gLKzoM&Eu&nC-BnEZM<~-EMB;{h3BMQI)U?>)0mmyKq4K0 zfcpxvY|6tt#Jo2wD@kNcWk11_$?gGWtwH84D{WjCLFhyv-@(ssr?qP(ye<4(sYG_b z#|)IH*zeg(Q8=-uQmm28DEUvSrqZ-23sJ@F1oPmmAMrUqqEy)6xD!4O2ClOC-a-Re zVIb@ONcU$m4>O{bF{(>VP;^0T9pyE8%`>oBhgAl=l6@ZQSthbrgh}$ z3RJFHLVNkbDBkk?3A%%2Y@eRM`f3py8)XIF`O9-Sd43Xe{N6!XekThvO3a#!15)sk z!dGcI4mVv$JK<}~51^HUb}PSEYqB40gs?rTN1eM3jh+s)`Mc2p3l54# zhmCf(b2kBe2nS^`L2o^3y7^pl2NisfgQWw#PCbrx*J0PpQVvP($P58Y$*DP6LLgQ# zA!iH_C@J+a@H%1^*y9}05)Rd@DK~SP3r0d`q;Kx0e>QshIAWU+OgZWALnso!Vlj+r zHGz>z0>w-KaX&4{U=M8iRydgjd<4)zCA4ycv(s|;`FR3haYC#}kfR(&e2y%EA`fET zrU0~31)T}=YXQ6}0G?9-zDV$%JbMh+Hs^3^c@(pg8Ge@#;w5%?s%xN11ss+&lT`h2 zs{W*fIZTQn4pbN996DO1Jk>eZN#*Y#d;}rYN~LMx=QgvosR?z-e_}5s|4H>&Ae5Xa z6;y#uE52xJNY$xLQq5iFz_c7u=jDYbUGP?UP;z>ecjbg*InjB*$7~$t06=@5E?Q9@ z^EiV&zwgKJ2J!EMrDm8IuVYxVVJ-3%*hg-d3*(L ze|a0Hx2kHweQhO=lT^P;*A{WM5*Ow9@Vv&^%10aSCc%*!t3?f$$8Z33Xc zM+Iz48PP@n+v5gw#{1Ds@LGIw>Q4`?Dft-M9r3LL0 zD@yBmv~553Hay7qRg0E^y4P+09YCtBQox6(a{F+ky9S3lYtU$DQAH^$0hF!$y=!bb z&WvQBQVD=&+C?J*aT#g4(9bVw_VzHh&|ZekYDI&U7D7Ro_HeZJppW475uiSXSUoMN z?3@6VGQ)sfC^IJ&BN!jg(gx;H&V>+k^1bxzIDO4Z0Ryr##md?^;`4oc^z}&|tl|Va z=?I~r1&&s{>cjF2W2=F?RYb9&G8JG{C(FjFlCvZ)_N(luEnJrhs5VC`c~G08(9W!o z>Zm+dfUGP;P+d=wVd z0$A*UovNpntkHtTiaOfI0p?skhQ{o4HGQb?eNS!W@$?fbc;V@FJau~o3-fWzQc0JV z+2OY*aP{U2&R<)=!e#*l+UWoXk+__nIpw4BF`h90`KuN+K=h?)H%0XXJ`U3D1hA9Q zpo@cbSDd%QI&=p6&`As0<=dGy7?8m`Cs#G_GB&s{zzo->uSY}c0d%z=fs2E2F6>eO zp5Iu&MIN^k$7eCb{Al+Z(J|0M8Z6vDRL?<=PT5gc+^Qgy_jPBT=n3?x%vZ}M z@O6jf42W(8U3)~2mLP%lc2W%mzy=)ZKZ^Z*JImRm;3JE`brgYKn-m_K(9nGZhuij` znE*DMU%&OZ+Fl31hZTT_Xf^k@9^ydKz+B6W9CNB7RhO+7yW|Xkn4F@M6${GjLwgZS z80gbGDEo~t&?B3Cy-MXwqIR^MW(HJJI5Pi=grZ2(uRr! zouH>*n699bkEjuEptl(|LmPsge#H4cp^ynazPF#FV<=%^hH)uaqD41tpi@~;cgCvV zvn3h8Qzlv&$`1ufC0B+5G=dug$Q?8pLBVu-eTj0(uSRGIT&cri!_ zgP1%P$K-kp6KgSyuSGDr99H)a6Pog@bX3FLv*4`?7O4u$)Qq;cTdR<2tA^D5k{PE1 zD6b`uUyG~Lg2MbJRi?@;Xc;_+{Zn><5 zta2&zB179*9=BnfwsvC5gSoi?&Ymja*{9a<%8MuQ#Ep5JK3zMVuINahG;p5){-bJM-iX)!awFv3fRiNAzLC>tt;QWatoY8?KB4eIY#>X)BwU@w!4f^s$e$ z1$t0RK-!p5l?r+~?kXSwG}hpNZf8Mtm$Q>%(v5yuKIiH|x1|j&94P9#520DkOXPDK zO-IpWs!^?xxl)?ketiXe82j7z6261j-6$X)RnQ55()xX7?8+8sGdOY!fCXlnV%32} zZjjldPbr|DVO7taspF35W$SiwbfYzBcl4r@mY|tCv(?myHe;iL&`gWqp*=`u*>Q>? zgd;YLjb*S%UoQZ9EWHXqv7sqGR?PdDQ`pJ@0_#VLK|PwWtGs6C4jrVGv2Y|C;0QJl zW6q@2F-t+_Cjj^Y0eotE9giKK$BD&ZOpLH| zZBY~K;X)q=DiiXf7L-P<%!z}T<$Ir?>OFR45-&cpfw#To6rOux6&FrdureRP;$jlh z^9jr>rm(tI!HM$|SUFiik*Xakm{FJws_CBGe2CvOgcRQ|!Mqw{8{oju675qEb|m`I z#pBSEGNX^3PR};LV`gN8P^SRd+f}EQs->*$4Dt9{qI^z}gE;$;$=U^nwFe=$5$S*p z!>J(FCM(!lo>Uf8PF3>9?cA?C=3yhuZVqzncNPxt5_3Ep8;R;jT)R zxhT+%G&@d(oo0B#&jap8h&Ip4(L)rlS5}#eEDyF(av5F?4LH(Qk0U+u#p=<>FWJIv zC+&jxb}7Up7@{-z0Guwp%79A*uv&<~P4Fzb7KB|!lrlby4#zPymBHLX5i|1zRK{Wm zr){usXLb)ZqJulBhk?15HbT!4%oL##Gjlk86u=)T!aRH7IG$lUwK9fkDF}a<-aDvM zJIYhE!;#d}zO}=ZVD6;)L`t-qBR1sZVog+#$zv(DBo$DAi%|jN7+DHa0izh24=bgR zNp`WDlKm`qR};x?flnTn9H^}emHT9#(4E$)d9@hf6Z;t)cfdbvRW{Ts7pBU|HDPo} z5ZvL}2qu@37@7zm7}G&#I)pae!#pO3;3kAwTF&u#AEp)p80PzAX%mlcW|if9*DKrj z#kZZqbC0j$5&=88lEUV43dafE{8|oE1aW39i>0kHrq(ia0@5jT2#?s|t#Cjn8DT3j z9#rT~#%zcZKr;uC=1>pXVtSSNMEL|hLwXR#v<3FOQ_aoEv_S`5QKz*HCcmsjrR67p zCcA=Kc z1v9kxMZY?WURKUX6|~LOfqM3tW{O4^?Qk~-ZK=%erAi&OH{%GKYz4r2M=Khsluhhg za?YV#e@5mpMWM|;y;8v*_V;#U1N-+;)awtU&T!}+cy;$si1+bmKD*)Rb#y(ou z-Hm(kz>$ZQ3Q8eH0Q6=99GLvrH8BxHEZ&PO?S-gcdDx9?h4zVd&mA?uDC_QQt!N); zW@xNOOt0n$Cmh9cYD*IWbN6q>>d1Surw_Rth*&jKXi% z!(r@1)NMkU_H>H&aAjo(>zfl;T&XGmqcY_YHKE7SM0?xF(WnguhI@fe6mXEX$CVsl zr%PaYzN7$rnhN;xt#hvd@cApJaD96PtBVyi4=9Ri=7DkM*jW;K=GqRmn#W5h1dim8 zO{rR8N+!}{7+R2`M-){8SLL=cD+{f|3Op&a$TBsla7x~jGbN-DBWfs0r!76xF7F{g ziY2why5W&C@~L`mT2EJnx1|DFGN}a!0--mv^ByG*h9mNMGC!Ily#96!y6Rx{*K;4Y z@fdZ}Ep*du^r2iGq}6vR%lUy{zK-|5_Zr^*+!n5#8O8>`@3HA1juXJGQ$v{F$YX4Q z1Im0wLI4j4%74I`N_=Em|0Kv_O0 zYeb#Qc~&Z?LqH^aGPrx97I+hORe;f|pz^r_V6BEwCeHa{a0bnvhFPBn=40_3%dZ_W~B;6?yh?fZ`k|OXzn?RBo(JToM5(eV{)p1`S~FQ;7B>Hs-S+G9zlm5 z*|-zalNqe9k0}5rrZdWdCJJuk$D(jV`Wf2$lm(UZ%Pc(j(#*6!HXitqi3Am}g3D(X z@!X9wc>5EV@U~kQ@YbuR@$|V3Jav8p?|l9`UV7m%Y@VD(Fl&c_p?r|9ckp*QW3s4R zPP>v-EF6ievRFER(sYQx#T9hJ3kgD&paP~9aN{dkOsr);`t_L%ajVcqeW3&SgBLNd;1^FO}=fq~v($lmZ5$ zy$I8yM$+9FpbFNv{xtR-`hU>V_aJ6zo!|MkZG7gFui%p(djY@r@-}YKUY;UotK&Yb zj(V|3pjX%P>RKHxh9K5*aId3ciUJw}26Z(yxg?^O?SQ#*ET ztmlwO^dcvh>yweY$Twohw)wlD`Pgj;H zvA^k21)(UQEG-&lh|ZTIJ6FJ(uVQgV6flOkZx8{yK`CIKfR2wQv9MUe;&O$-JHe6O zg;0uFso+uo8hs4mPKIcP=B9yKG!NFH#okC;+=_+ODo!1r!tE=Yc;(4Uc<*!9@!n^y z<2{dG##;#ClZ5bX&s@dxPhZ69#u$9bLAA5Yv``kRsWsHi&(IMR14n7ODu7&yLlz;s zn290;F@nlWoN6c#W-zv#!Q^TIQ^yKwl3jq56)~cM(gd`fGevX?AW=n8JyAe;ZiQ+V z8)B{@YA3o&VGGboQ>j8JCmoGfL1>TDs!EZ=(G6GNE`Yf(a$zTm z5jWJI+cCMu}s zXGm>9&V%&iY^o@8w0A#MaF3b?+}pDMUJ*vt#~S?u(7F53Y;41>8IFqc4CgZp{9{u= zlo%c=+yBY+{N5via}Wx$c47$zsvm|zZ+lV+nF$-K0m0-sF8%Y?gu zJ5#DnM|B5KOB>K+tych^+@8nPi)(o9&Nklt!VSFt&K|=n zPhY{aPoBrpv0>&WliE3kpxBKbdi_r3!ag`e?P;q#^zrVvl(+k-hE#`PA97=1svC3P zoSY4j#pDXJ>UtR~XGRr#n!3r#7qO+<;%v!+njIB5=eJ5KYZYfhux8i^Y43DY!LC3f zty2w}Z2Vp3{S5khxIf>7+Rg{i*z+)2dIY+MP}}qiI8^)7*mLlI;o&{I(A4_#$Q2BD z@x?8C@lW1|zy8K=;cH*|5Z*`lp1rY%+vmn{X`_Jc#S~i-mpFKw-z;I71Mc{-3@Qu! z?s5%QxeDEk51B-^T);+2QmmVKU(>IQUR4|2$PexnEgzqAtKCyab`f*ebW%4YBE4*(-1NVe^e@; z&X%15%-xCj2KoN9t5UI*q)Z z)P(3kLiT9WZUx{&O?#CRKHB(*TB#sK7@3ThN%-Pu0@HJ4btd}sOo;#vV{WpDQZ|UF zcK}h383lU(ky1nfI6Tap#U_~P+tV9bxxlFp`>nF^R(D`MsBr~*&BfUkDu zgLX+m4M2HZR>R1NzjMcn7+Q?Mp4BS=Mg2N_^$NZk(;gh@eF%rTA5cXYvzIxhe;hA3lRW{e$=7!@qn3PhFkG z)vYov(rTWg`fXFaFA%~jt2taeUd9ZMb$MwAzSuak8Cz`1qZS1u7lQCk*x??x!8$Ss zQ>7n$1!k#iC)!i(=!kZqJJ_eJUc0+fovGd=@x-`Oh?CO2bXoz#>NUU4@y7K<2U$7wPhMVqY=dQTTKgiftp^`&g8+2uq|TB$BtZk@fI zAa=qM&{G))5n(pXj?$J+rI?@6RJ5{EK*>20{u#de_n*P<{mxtQ_7_j# zx!cRQac*mX0e+xSCB8QEIr~TF^(^W@N{;x^!yM zbudh87IPqybTZHP?=0G|bSMA|Sy=-bLp2$|5Zl5?9xIG0G7WKTa|TNrlg!t{7-l?i z(ay?BnAcN4FOQEdY*30OOVT9&_0iRIFssT$yfm4HkZl8-tdNoEiWc@Uxt#q#l$o8@ zGgR~;$bKx@QmnF6L8S&FK>fHT70POajUAu&RhkWwetj+vVsWXnpFuNLl?N z6Y;VPO){VqVs?G^JHL-Fe(^*2?T^2L7hgV)E#`*um><5lfmWiO3c+wHR|A$)HRPPC zzFHjaK7s?Xyr!pyK<-BaM+irB5T%(MhG+7~R3jJ~%V1@FQmLN+C@W!dDW6*Vm!$n1 zFU7GuOO<5M76mL-Lpv%s6oQ}XBLKGO8GxyL4Z59bQ;VgZJBtUH8BVI8+m}{w`NAr0 zUfNLefN!~R7H_|O0q>#uy?lLJ0r-~3&*RR`Q<$2|^Y?VpG8{z1Kn?nRav2UeGefTJ z;-k{J)!%yVuy&5X$v#fuZRTF5g(euYBkk z{K4lxguniq&*Fza{3_x53cmf#PvEyd`W&8nat)82AH%JSleo-*;oNEl=V&|6%*JqP zGKAwJK5SN8SQ>Ieu7c++nqbf9Fqr7ZK&l(oJY7J=4CgRauc(Kyq(^_5gGAK;{g45= zp?>ra8`VmfUgoO)yQc#g!@SSaqZVQ`8|u`&S>IrrQYx#n4{om!f#4uwQ9Htf(B#vh z*WQWV!FB>@L{YAiT~1&)9ijsI)nxqaXiil@7gt6xw>E}}wGoW14I_|tQdRXoHUkE! zg1({`dd8M!`;Mx~G=z>I$m$%K1C&-TTUnmQZ8Ntm><_JUT77gqgRwz)nE%4elQOp` zll=Y8UIm~Ckkk(P*mPRs>*b(5TjVc5=rx z>Kjq7qtDhip{c(GM>-CojrKFd9WlevYI44WBm;M;62 zumjW86xR9J%2EX*BQaE{f};~j3{NDOL2W#cO|$^57@(DKCCrG@1{UYo>DMcmJv~7S zID_LSrg8Sf3@*^FJa&2sPn=uFbC*xx<;TwAh07=L_}MkQBno)*G$v_d^p<9J?niO7 zd!JG_FEdG$0Hz3FoYuob$PDaEZS?JXj?((oKY)ggedsndz`~B^i_0l9E+onxl&2$@ z-7I2~on5M_hiDb|HT*1kt+nhFJO6LPBgGhQ3jkg~p})-8GM$kf5jEIf;QCZ3&H=BU3VCUn#3c`LrED^wOej51R=YfCyGVq^YXZr^J{d-@;-+bfK_=_)n9PfSileltu6RYdf z$X61uGsCs@wc7q@3vUNnay!rIz5Xk+Y2~%VhSs>IaC?K;~e1|>)wRg!#{_^2Y&`NM}7{?O%K9A zMRq%xO?jY;qd|-2mDuJQFJ*HT#Gd#x-+vALdQwoh^(w9y83!Q*R% zGuQ!3xQCsCIm}NbVrT5~w4lS)j7~Q*CtIt#3A!jdT$(V(35@(-i%1vD97rsAW0BvKO zzzp!dKBp`gX;Z-Xvad|65$_#r5opdioxh_&% zPVX`kltBVRm%zUVf}QGrTMVWMY4S(6I<<9X`w^XRqsV-pWVUwaO>_uyNtRwXl13F_ z{2Z*L`I5Bz{BBwH?eV1&cKzV@KZsZV>|^+^zx*WdcYj0}zXbgASAg$+1^@LAU&i;p z^XK@-zx^|O>5o5&Uw-#naAA8BL)9GI9y|K`yI?Ui!9pt<=cu$cmBra(qc}F5Q@2kq z53AcJm#R2ESHw&?jB?C|k+ch|lNp@ib2ryVvA9se#CTG{A#HRtt}3G|t3zszaBFJ{ zX9?=1ORKnkeG9j5pT<*n&MJHP?6p(4wY`SR$LDa4ut~eHKE*c8EHr_$%oFF1O;Hu* zaGjvuzOaGEFRtU=&s@T9yz>cs@_jGh_kaEE_}oX|iQoIsOZez7K7|jx;}-K$5sM>X z6bPGlumR@o{V=gvbcbQ1ItLTlwo|L!v!1pf^9kFVg>fBho< z?Yn=3@BH;A@%1l%1Yi8zd-0iHdm0~jb{!vhY8CIfIfoZ6jpD}10tcETwpQYpp73B| z+K0)72(7XcmS`6`nJIf^tt!>mD65UeMs{dR7g~(6CYZ3g+36xqgi^F~Nk8+e z*n9Suw3*6khPh~ky<~^4;zoqoDK!*O(@%b8#6)Be<&+y!1aM^}jT2L4oLwBnyj;F; zIHVS7NR7ZjWsz#RIGAiTz=4jx)!U5@1Al{_Q9v9H;qx)hcvB{1rOLV}``+{@;;fhIZJ=s3OOEnKRz?xz|&r0k5v0GpeFz`_=&xdtQaZ)px-y=? zg^e+`ajeox&Q^k09*g6|LXoY6V^bLd7{C}i?E;l(``8H1Q+3t}+45qASul?oLOVxb zmuO>G1=07j!x3=-j)sqUqt0xwARFF+>Upu*| zw%1QDQeitl{=xAAvh{TTl0iyy`pKl2{^?nj=%ufF{vUU_mIFFiJgcU+ys z+b)dY`7b2%w8V_!NL~ng8WLR-_Wn z4kvJYwv26pcX4qH=eb>Ezo<|(5(Lf5?CIk7lrv{y83(eA5G$KwYO9mWN3`umN8e#s zoSpE{rg~#?sSZ8dsUA2IU1|y9V5o(^l`+Rt2M;rOn)^&zYSfNcRj#E&iyLX<{;H$W z@iiG{<=1I0=H|q-3x(wnk~40&3Nl!A(5812Koi1Q3xae&{H%{S~p1Z_$ z5x@MxWxW5b*YM%D-@-@V^CW(YFn;bg--%EE`YZVO2VTH$zVBK5&ikLor+(uVeEt)^ zgg^M*U%|WH`8Xcuci%idjj;(1LNf)Nzqp3Czw=4_-lsl%0d9!vp#H1c{l*Nus|DBk&9R{$0|q#m@xA3B2IDq#yLJ}k8@vXpAK|uA6{vu|s1u1y5cy&pm1-J!T1YD`tfgdw zqa;_^mTQU9c2=l>RX^hFAK{Q0LnS(dxiT&?LdatJD{Ip@w={-j?q6AYC`$?hQRZuY z4?h7+(1PZe|1#`PUczSL?=sVdhG>uFez_P|qUc~&1zu?-g7mBxo>D*E20w!;8psb&ooxuy zQ3!ltTJJ=`iNZ(_LsN0=dTF(Ycb%!?m#>WB*PmR)XWw}dfAMS2;qN~E9{khiKZIAm z{)ruH`cKS=|Hh2?{jcHGzxx7t{0zSN`H!*le2bmvoA|GP|0aI$y)WZmzxn@@_SVsH zUF)`|`;G3=Z`^xc-}CM{x#xt*F*7r>Wy>VXB8!=sr4m+^n3%+~W>Nrlv%)sl<)N-31LZ{q6j0%^QX-I+9D+0fPamox!x)B4V>mJe z#MDUSFmma z(M^2JW1oM17vFsI06+c2h6<1I3qEChj9-5Fn8!Y39`^x${Fe9XF`dPy%)38%9Y51; ze0AqI-o4a=8wcuewx<{abt%}-=&wpfXK@Vb(*ltnTE4cKX@G?#0pw?~lx0Z- zaMkLWSZgvDX67qkA*(QW%^K6$sz+IVj&9}VX}lkdOs+xL!+yPJ>_q3pT`NPJSEQBPkvs(95()&u#x+6PW|kj-3s-Xm2K9m)eJ8w zWx=_F$2PdpO^ryiUyTB96O;sOL~WD>I#XP6h#+2UO~I|cBHTGxjfW>&@c3FEe!4Gt z;uTeKetL8jKfHH|CDrk3<}BacC!EY3zh;a6(*ykS{X_ix^&Ncm?j?MD`xxH7(1#l* z+G+3VG0>Wamf}PdrxO&yR+LR!NcidrVN*>Gnrm~>LMU_6qL7*tj5LNZArQv+0O;fV zq1XATNRIGAQmBVgItkep7{zvq3Q8%qvnEfE#^N;f%$U;jIOH3`5g+V`7=LRRqFj(? z2tZAN4!dj9vA?ZQL3oySRIKO~=7w*a>c)dB2k`NmCl!ESzIP4pu>tz%{cHH@vpcHs z`GpP9w_ngces}|)FuwfsHooEh_g~+~kA(7vZ|>vUFW*v9Q0B(_%+mb+Tolh7Ssd<;1>^7=Ju&cH$Q?bKg z3;e>|v1Y?!ETs)yxnd4hubPLA>#4?DR>9U{BO%$s{A#0m9LN^JCyT7jnFm=qZd6LO zojJ0}+Bw+CT+z>YJ7WACkQnHK1b=75_}J54JHgM-7EZLj+nHN$W}dx;xwWOmYV2fQ zDt!n$xV>uSbSzsw6`KgCHPanCDxfU#igAEXm<^nK_#SpEv3ARBELbyviYWjtP%CJDE$6eGulBb(uEI|LEpQ8?(g$p1 z4!II*tQNq;T7Il&jhfrM-9{i>!*ZQ!a2!3&;qGsP5#d{A!C<=(dVZN{j!Tg5y%sf* z=Ges?qdzwQXBv`mvnLPt4^`r`OS|ynTL*x9CxC~vs1MKJ$9K;HU%sI_Z@zx_9KL;c zo@#juzdXK$Z$7w4C3v53zD>LO7JmNbE&TAwb-aIlKhE}5Ax|FwPv%QxaZ>Z^VatASTom(Lv6L;@?F0*dg3=Cqmt=5$0ioXkUjR z#S{37Qle3nlZ2MCOmtM`s$q+{Y__h12mda> z!3?3!76^5rfL1$J!;S!2S*(E>8v~2&E8*|I6Ga7y=m;t-K8njX4&vO^eK>Wo7st+a;pmy&=-yX@y0%qgZnXU6>2eCGz(un}?cw1kJh9Y*+>Oh!EAGS+-LVs^|x;?8-?e7XT&UnPjQdhyfk0kU_Hb?-9p;T3%H#vy$6=25yY+N)1*(5;@} zvBUV7$G^C90zc7i{qWue+&#Msd+XAW5M&DnbGCR++m-D|qN2$|lnhZmNDTLcF?w)Y zlrBERjnE827v{AS!5-EKa59I#<8~FYEfB`B)f79bdO?~035e2BBPu8zFk(ZK*jmSh zIw8~Gk9OYlD`&d!$-5V**vxZ(W`ps|hxm@5{6N@#p}oYTTm1i6zIPqJJiLY<-{b#B zpniP(CWET~%{>L-&tJWbulRQ#+&PVhw~pb%J7@6mz4Q3^?Q?ke#&O)fJb*XO^xy>T z?xE5obZ3U6A>Iq+1g$jGUPVQO6LNf*sGJ{qniPkM_+ah>UwR|>ALyY56gxJo5 zuf=q@Y@P(0bz`x8#cMEK@-kJB6?ofhESdKrW=;JEK^%i^TjsNZGWRfF#!9-7xz=24 zmah5@Gq8@YxoYJEtXMXl$~B(n*s4<*Wq<4Dxp0;t6_<^$vRaOv4kmE+wonyHh5{C^ zm`>Zb7{Q?~sH)091n;Y#rxm;$s4_Mi;by%F-u7D&>}st#QOs#?x7)3Qne94k=k^Y& zf`xiw-a2JJ7ta}k6$>X~{nBaJwt61yHm{(%Z-B4uR)qW6BZzsRi~VMpZ>1`m%!jGT z0+??hbj(F_)1y&Zq(@Ij1+HH`g0DVhqxbbgeDvN8+`fGVZ_%;beCrgh-8_c#SN7x7 zxn3MOu?q)}wqxLM8}>{8#Xu8w@2NsvQyy}Q5|F45L`0kiHd!oZ&Pd>77)gLMU#iM= zGH;lrK<4Og4lg#EP5~BFy>+y%OJQmyiwb0Q&n9fQ-hgdvoXlmRI_qK=ZyC*w&H_p?fCLeAMNY_9^LH4ty7ISx4#T+<;=O${E;5#hDcgg zH&%Fa(|K68Y%-x72{Y3<*t%glHqnM|Tr)|P+c(XkYAu8VTkKGODo(%-L{kA0Vw{nZ zTEC0p5KehY*cQ%eiUz9KZ>t-f4=+T9=>}_yZzZa zs{HO#mY>{L+aG*z1NUj)1%~T4j^o0G{Wy7|8^;cJ^8QnW%G1$OnT@up9CX&?qr0w9 zO|X|ZxxXD}k5kPgPVB+OQ+>E}W-qRs-G|GJAHI1HKYsl#oyI+U`NP_A#;dO%!^JBHapF`j`u8=VV^<}bT8dELRDk-%0@T*$qPjK*l{J~D zpbIOnPDe~qAbi*`+PQC6P_5fKm>+MpT&*6P;t^yA_h4Ii1v|il?!`0MUX`*R5b2Ka zSbz94J@W8#go~Fg+-RwNSWkmk4@X$97>ylso`d=9XIMUioeQ3a8x#1DEz_X0S%?&u zmB{v7g95+xsE*i<-9~2|D+|NTHY4uz7vRpJYTQ59hR<&f;Kzq2@FVlY$G7(4{^@qS zd8`hf@%UG79mKbHkK(gi`*8O}6OOlKprarPnUSstqiu=uw1v*sQ9VQ{CEQyLqG!@Z z77@N8LMW4}a|w?0ily^hT7(abRJR!ZLt5wpoPU!83cS)oDj-&7C#vy6*%t-WM|ndZ z?~TYvd-(dAAvW3xtxcJ@d1Ws?zE61WU%=oK-$G9w!T^3=4edt#$M*Br&}{|`*;=ZpKrv+ zH+JFin|=6*06t)PaPwp%KIMH@y{Ye<#(TF8p2pWnyNUp&OmUy7r6pRVKs+We33%_nc;^G9#utB>Bo*ZiCB z__yDG!TkCQ=GR|7!1tfs8+^S-xAE!wH}U8m;k$bg_ue>*+c!?&93j1M@gOcZ2ZHuE{|S)0WEWY!sBFASEZ3AO;gCH~5CQ zATY`u(Mdr_OpicXZUR#C;*gpfugdhi1f=E1vrI%zQ3?vnbC6w_j+CrqB&WqgpU(3+ z2A<2n2-^))v3cH0*gE$mY?<={w#|JW=JQ{K&7xOe%S7IP^K?X6&O?mVd?ec~RxnnE zo1r7w0o@rMIMr;##XSYMd#nK;uo8T9xf}P-wBY7IB`)_B*9E-4Y- z3OE^tD14%r0-qd{VF>|F8~ZCw*Qskn0aKY%#>KcJBH9sAR1|~3NBt;CZ&xucob1Hi zt5k9-*cW%053=?A>W$O*_U37Pe~W5<>nyiV;9XkDchB|k|Lew`V{N$3obK$d5*%yF z!M>^#>?uh^4`UahX{ObzO!7f)xD(O>tWX;5j3TOUn$LE`*sVdJ*+O`j%z*Ri$#7aV zNtJ$E<{^>RuPWXH0~N`*(O-oR&vo-XI|z0jt{f=B^&@3?^JFb8eKX!U-;R41I`Phh zF1&rAo6(DRF81O6r2}|y`4ApnIZ7oygr7gXi61|?if^U&^}TZ{Pyd0SNgn_6m$&f6 z!?Wu6*Y96Y=e}cl@x#Yg@IC+L%a5+&(?{3v_@nCtPbLXa@xQo(U%rsB;(Ig-*YMSY zEBN;QVEpjTVEp(t_wQZ9*8-4OLxT1b)rvk}4Qt_-$F%;Rf**|K<3EVccrEkmZ$Dss zI5-^k{YSk1>s0aJ|+tAzHh>q4uv^18gXrkIS)=?2_sfg7D1Tl{g=Ap1616g^=FlOnH zn#okAkSPt7x~j1dLamw^2hI`mgW<8VzP&UB>X#@^YrhhkSwBzlYDusbIT z&8b1CjPpcZ$WEksZASv3O7hr(c#lnpaaxa1yOjvETnZm^+Rd%=;I(ZYvO{;GG{GI6 z`B6C5nvK`@*Wm8SHp171ch0op>cJ9R+?S6td$MqesK@36YQIp`f;1N)ZJ?baQ_;W|LQ?Jymkoh(dxZV&_BF< z5RdqNA6+_xPcCx*(qY^>y%)FmIo`T_6z{x#67Riv9v|JkLdU_pnE<^(b$avSVcfoS zWGLPuJa-uPUO$EVy!Q`oo*9aVYz!p?x@)KQ;_AtMTshIF;_~rcmc1pD=@Qs)T>-mIi($QXCd`*jfZ0NVIQJEpQz0!EyadN( zqu{e)GQtUBjLibnCp)1g$q|)0dsM{PqRHriJw+in*=WG!u58?4#khC81`kg*;LhO+ zoNrIZ?%V*BL^H?m*oF|ht%z{4M6CNxB>6h2nGc!aKFEopvPB1|$d4r)gt3$Wmg}QX zX^c_Ne5qu9CqPNw7wl@O^1%={E7cn+9Wer*j0p;)a-Bqul=@J_#JD0>?}^OfC|ZFi z^&^#u2_7iPjY4;0HXhwNj!&4Ue9DCWQ&ynQSvkIDMfm>834C*zm8rKHSE-n%o3b!a zmWZzG2s9i0QJ3h2CcQ6OQv*?(;E5vUQfZ#s5NE#z5f;l3!o+>YveDSSax7f7%tnaw zS~fOTwA!9%U_;PS5`&)VWbALrz}dbs1<4yHTX6k&6Tz#&>ql#F=UfA>9xBGEu5=u1 z(c?g~0mo?T&+N{}#ojVprdnRzTZiidO?dNQC+~YV-Z|cndnbFTo>e&0TZChsc{tpj zi9@YfIJPSXr+bQUzQ2_3QH#q5s&Hw4B`)kOBiyCDp8sc0F^-94uKa?Xu?sJ5=Xil{xlAE)vGwTyAFr< zwBY>l{WyD!adaQf9V3h<4&w6ZBY6G%2^`(mg|3zwbhp-FcXJJPQL#E2E74J3f!2l! zDq%6oEAo(EkV>csp*|W3tcwW=;fSX|q^8Efn5u)(7>i_{OH7PFJkQ0&g&{UB0x@yX zh>njzOhT+GBXv;-kBLA~crZq6*)#`>=T5}tbxYyAa~p!Z>=EH>k5CUw1UqemXFrb}^Iw7k^G2_YQxUjrCPH@1My&l}+9?y1L|LLw=5~hg?(vnJK zgnBC=3urw{`43m{pA-PA+1dzH0-TSX%(mHtK<6DQCzM`LQ9e;ev7?$TmFx425lEyZ zOi1@bR%x{QJ#_hf1o@rx9D-9*sG~yc!kv>nc*tb`L$=%>v4#DJ739%jTF-%YTx`k3 z$=Vd`D~v%$Y5?k~SXD93sEBezVXzg_JvT#7g^RIXj!?4&2--3Sft%+bfTf?+5(K%d zMO=_Ma%shD3&PM@lZ3wJH0*85L{Ebe``WW`ysrco4%gty@dj4RI-EN|TYsb)cP}&% z#4;+N0A#?v#$*gM7;vaD6(`#BaJsXIE~FIaI?8aqvkDh>)!5(ZkbSn1n{hU9~vSS%ZO&YV2>X!oIdj>}{=3(c4stJ&h&k zt}nuF+D937YOBarLr-m0`RMOxz@D~x>}jn>Uq>Sj^t9vn{yofn2XLf+H+tI})N#3{ zr=8ChYc_@Gl8#}7 zHAA?)xr!J98Rub(WFO{Ew5B-`ekhD3glt_Z41_R42Gt|gxSw>uNH40Wp;%C{qhdRy z(?wtuOR9QU31EI|BwMmj=yQURS{ROWMp||VZ(0DdQvy+t5`_MS92{juy3$jJH}|&S zP9O8yPO1Yf$?5V;^yfxn7q73=xu7V>64^f6kmprjaCC2p ziqiunxXRq`;y?kFCmScaGN@(@s@bvDOy=Wdc)h;{*Y`Hy);=oWzBar?wR!sh^TI>B zaf$Gp>B`0NR;p(s)w3>{r2$8q2`@j-g*}D1&|63)EySh%VyY?c0pIuPK7vM-9O%ep z$gH7U9B9kK!PZvVJ**MEOb$nMnPBM-V*k zql?h(66gqAV__<4Xb+`+lrRk`q%swx&@Qs#=Nb}Gkg7*TZYG*5`5sMm*xS*9{kz(* zud@~X?akR^T- z+ieK2*#duAC2wg8ABzp}GB-i6of#sWEfDQyg9IvLDpfHzhW3>zC{H~rp~aL=775As zB*zn#lkq>XpxPvD*_LC20LqGpNMvV(tEWPzGWW~K3PEm87z(n(k(VAaI5Q?Y8l9yE z9BC@V`CXN4(b?)(WMNNs0@{pWsElz(QJ5Xleaw;Qynz;T9pW9=BZ)a)oWpuVS+7K_ z?HaY89bkp(cn@^b-tMoWUEE!W*DKl<)Oba0sGhh4AdHwIv%E~9_4$BLhfx$ z!|oa*gP*C|h+UNi>?%*jt};D#l_v6i4cJqf%rKx=J_F1CQYnq-ElovNSr&Ge=c2o^ z0KGMZY~;$YpRgTht0qJh=waj5Ra=P8>U^|S=AxxM3rz&7zBq%Rl+hj3pud%h#C)xX zxmtI9Db=o6MO$Saug^gPudT{8uujC&T|^>-sf!^x2oZr^2$%5pLUf29^sy0iJ4qH1C*bq3v&z#oMdM%0C z%^8ts%ZWutUL1B6B%qV8(_5E;K3dp)?FDSvi?FYw06oklJ6N$>Dw0uK7>oL%IMgxf zi{sEx60f4MBmu2uN$9FeML(}U)LBSXU|zPnn2Jz{y)B|j1vu1E#3)vAu>IFK#B=AF zyGgEhfw|n-J+!J_MO36bs$U+CwlhU&q%t<8sq%nU56JiDw)_mIJv#MCXJ9~GSbmk%Z95q2YUpt>LPTM=hFq`65vAg)|cTxdmZg0 zbFZ3W!dFP^n1|-lY}C`*)zIoy?rO!J-VW^PX+u|6 z8#<_pt*tF+ZD~eRQv(_s>QGl#gPNKuR99D_upl1=68X#%CGv7v=5jw5Y3X`IMh7A+ z!k1+LbH_-PKl%r_V+Wnzh+};XI7GYh){W!%=)voF{O+6h?BQ+PICBKmd1)wOu9as9 zgE7_(#&{>_BF*6My97GjM%32^Vpnw>Dvg1Nb>9kS(>btOH5m>YX2H*L1tOd_BHnvD zl6)yoXsWH!Oe1m%Hw2OnZP58CALwlrHmIy z_4$OZFkUqT60)sDQ*jbHd0kI^wwkwku(MQ!ypBvLm$i)h_#cU>v^TdJA=R;hFCgi?+-l?Z?t1TYnq3P1sj za24mGYFJbj4VI;OnJ6#FMnz#Z%PbTUzzjWeFe*??L=Zy5{16@yfasVI#3w{DH`5_C zEfE=+dP0(f^o(Q_6!JZ4O3>U=gLdYOZ5{P!Wp3C)OWM-XLO7ez*w~2r`g#IbM*wS7 zl$DjCw6qjOMa2ZMfVp5UbHQw6W@aKMCj;3z2E?=8g|R+|gn7cB_1V^b8`haD#)z*z zxQWLf-oV4RFW}m_0bD8o6!<(!Ruz~BAg=#p%di6Bet)B&#%?seZZ8488g6+DQuvjq}mMf>g zVdGplZCwi6P0L}mVJTw??6$0g7u7Dp%T@s;xtqYI&3=(%vMt92ENxs*u95Sy`a$5; zmLUmj8g$YVDwb68!a`cm!qf8Y5(Zf5YZ zHG!Yq1{eZtVGN)JeF9!VtT&1Yby-p%Dh(l2{csia8Bu7=ictWz=Eb8`RIprZT)L{n zQkiA7MR#4Ms<_Q1NvO?>RZ){0^P8y7iB`v3s5nyb1zG`1K-8d+WAb``9N9QY#XLp3 zseyN#;2on4l@I_AwPgNDWZ?kwy}d1YL+>S@c~^Cs`YZyRG#>K#heuO!qG~jnO7sM* zK*85gl!-bjnv@E{+7cDAE$4^BSDl-p0IbMMS77~F6lJHPg!z|PN-6U*3`kF=<%u&{`)S0UqnC8(_{W6*jw)+z8B8X6RQ z61BCpDg;1*vAVh%<>lpsut))zk&ywT(MToCMonD_GP9Fa&uB!HKYaaNU}3chOP9~V zi1%-w#s~K=;qI-IININgb|$j@P31VXr;ROMH52bfmZeN+nP0`xwuNp-WauVTl=

zr3Soz>j1vEdj=m~Kg?D#A385{m@S=v4Rc4rY{_`SIF0$@bnGO2cI#)ue#0C%ZJH04 zt&0_aHXD~<$NEJuU%LR-8<(mnWiq57AZe01Vn*Npp)wa(xH5h z;Qb!HBIDqS__EAc1z35OJkTjhK_<`%l=;RG0{LX0faW9zB8|2(IowsPqDTsMKu(mq zQab@p6t6rv2-W=CTK=6DqJA2H%{e*+VGDt7E=(ALNGh>bk>yxpQ39&6qg03*ixn>C zy%$9;O$$|}fGF3=-}lsK{RRdBTYF83uG);jQub@paHL(7ZV)ytjK_{P26uT~8r=pe?yrnE#K__5UWa*W)6c9xXCFGodC&z~1%Qo;@ z1Iltz6j*;2lF#MQ?uqhA(V>V6^QYzWKoB7eqZJhujEj#zvOZS9CuLG{ zjM^4O%%$@a5KC!E%PR^ATD5{qgYNes$|z7)RaK#+q(lLjo}Lba!9XRx8>L4!E47++5*x&pu^Mll?8O_WyYSwP z19<24UYtE%jf>~%@c7XQez7UId9n*%Ke&wR$9BQM9LQw;Xe^uZJT@&F56d+(v19dg z*sPxemu*YoYqJ*q@_X%8YvE?T8ct@b;jnEr?6)OMhU?v$s~{jrGRRcmqJ(#GEPW4Dhq#kEGsb(S%j-7 zoj~L#poSK*mLL_z`6}>+E1m$?z}Fid0-qL51ip#+pmgv^rIgAl%Awgfskm}ngHC`e zP6=kC5rhI-;JhS16>?1Alu9nDDd5TL$ZKf!PmAB!!3sSFnlhQ&r7K&hsoUY!EEU5+ z{MX1G24LP0gc^uaYM(&^Q9j=we4^&G(nW({m9YXAr^YkAiBsDGng*Q8_ZWlV=~a{y zielz!g;~ZSz>;DA73|&_~PShxOH^^j~-mY&GY-vQ_BRoIF(;WIWG6L;$(Xj4mB3x z;=TraaN{68x_cD2F7L)0ukXe;pI=5>r2&UKD{!vA3C%@%=5_0^c+&HjH~Jq~Iddc| zR?WiJWmBQcCas zMuAYXqyG}LstUlS!Ntpe6r#qWgwh}g_?n^*=CcW^Lq&iR@bZ$Q*(kE%Ge|FXf&x*C z^33F6+bp?Xm@W#JtW@rgLSPfc%QVC*_$2=`#6==5G8o~(zVP&NWQBJ{K%l3xqEXSo z%8Ckv0$oaKf+{st9JHgEC@U|dwJcHgvZA7bFjoEsKv70b9p#+lgJMGkLQ%rBv=rK1 z9aWDuy0QejcDJLeyMxMF%=e1Nh}X~VB1{8#lMtRi*ovc_mAE?4hPO}j;riZIbmtpT z661@4XitH{>g~`H6*lD^LK08g}X=Q>PYv#g{$`|YJJe2PVC<2o#Ez&w>WQBu(DS*j! za$X>mJW+#BR8mt)0Zp57ru~fuv8JFYF@8uUShB`2ng3g|j=82TKrQ%9jSqq`A%L*u zFpr3VF3cS?8s1z?NPI`rTk0M=Eq(!@_jjIMh)iuldIjhn^}u z`fBt;5DrKWCn3}T)N;drjRFN=UsKKyaDyE_1w(nL>}&aPpa57@oQBwa zGAYf@W{B9a4nbzC;JR)e9M{dpPLnyX-Le3IUfYmKAkQA|RO4zJm(IkP=l+5*&;AFd zz4l+2@Z#Sv>gj*O;%Tp8&IBsr#FwyY?l^2&IS1R<&V%W)nJVX#p#!mnO(p5{|0ya@ z6A%Ry$pyV_x4^^NR4rMO;RR7SZO~mx0Zi+l(d?(FpQxR7TwA`RDW&wP>Owpa8}5w+ zzE2XbO_4`i$fGP$qLG~zi^`%jq!Q$Cf*s=T#4j@lh1v2jDCQ%X@hGKYO5Qg-1V#w~ zt&Mh7I$b)8lCh^E4L#+l3dmBbYu1zAR{=~Q((*mcc8bDD2za7+8hpkGXI08EQN`g9 z|Gx9%_qmwrO_jN-MX_ivibh9q40e_3&|Q&$y>-SR2!F4LS`MgLP^}Y2>papreWX0J zt5k)+DEk7TW=mVkjI@|W1(c{?dTa>4<3LpkjJZis3dG-sC}ch(*ARznDqGf*5XeO3 z1T-ln*V7j6cyAIPx3!4WIsDc=6R+e zFF!~1ZWb06DzF4bflliM)!-Wrp%wyTc6Jt$lamn}8;kh(c;<$Bq@<*%9C1WSoFm$K z)9cFe! zZfLSd<$40&@!n=N)u_EP2c6Y0Ef}O2Dw@xD$otONIxVn&($Y}AtQxfau$`1m87H~75Q07NQ?_cSfD$?f(bWs z;;eL5f;4{d3H-7H9ANafh2C!`l6fC|3oOfF{5RR1z9!!$Yo>QeYJI6Kg6eDewwlqN2m|KiL-b(UegQY2-5( z%V55mE{`+xS7lRf7`n>il@bbgvMo^VsY+5xIjEAUjC3^&v7c%uN+-|_x192x0^gCY za#e~d3WU-rGzeh|8jCYkekWk1#Yl?aKLnwuVRk}<3QZj)GIXIl&wHO7J7g_IBM5KRTOVF^(_8H$h&7zqJT z>}afx3YlV1ohmY{AhvQih`)#L_c53|3Zzw3M1e7vua}C1gk&nB4kL1m9!N=Yr}d&* z1X&}&%M6*mR!DQ*hQM`mVK;j;ET+5+)A7$?)#zuiV&aRml;g2w&3yF>NA7lJ*tBjT zW=|T4853W|^0`y6a`80Gn)oVSd*MGZecVf!Jmy(U9Qh0;zV-~Jj(Gudro4uQGsa=_ zs(A>by_B_jeK55({Qv-f07*naRLx~-9-lnBrMWZ%{VnBaEzeTDodS^LeFBhDFshO$ zr>1IJ3|G40>ZkRn3bX=zked}E0$dRl;fvU)ASA@I6=X7=o)(83=>^MS@?VmJ%=84r z^9zb1s5)L39_9@%H#^wvFo6y4jiZUgJlL(B0H;7$zYU9JQ?P07Xsnw2yxR7&Sgk^! zEY$fZ^%EFtq-QnBAK7u<%1Ro-<+mIh6CWUvQRI$#7e0Z&386X?W_{yr3tj9g>9vY?`TlIw}W#YF_E zSuK%4J}P8ejtP(gV>GR2h@S`iyj&D`9-fZyequudgS-@k+R%hpQR$G8u|WY*LXL)bp4~m7F;0IRg0t zrjC6P^9Z6?Qkn50mQ$NFEtXW&Z&yt|8j4cYzT|JBX2bJ7QMKWVaCLOT@V)Li^zxownQOFjAtvzmN}I-J(amY3H^TtbB{!}jxnqx5n=vtcCo?w zwac(*<~VF!Iz@qIy>dEsES-#vvtPrKvH!r-XZ|M^y!JPk%zRaaob#30MgexHpejly zOl@|w>O>Ks;sbXg#@7;w!FEIHCie8tLX=YAlb%uOtPudUJWzlW)ze~lZ=^(%%&f@{ zLtSRj5P*$2q3A4$Rlo^^J(Y-hRhR`6C(DGT?761=+mM9nn zP*K3a*)18r>4?!3PfD?&a!iX~t!OL?)0qcm(iWy9DvK$QMG0WOgo%I!`?x8^iwX5t z=QLGR*93T}nI{6???cp3U=&L#9W&bSgyew&pfM!@iHQU;DT(z%&$^MS#`q++%gf7C zoh{Po@<&lvScI}tTGi@CR8`iaysQSrMU^PXFJ&WN%qYT$q$mr-6TsLI3m8JJP#o)w zx;S@K5W+0`4TxMn5AIaFtz(|U{D1r}O!&`#$E0Wfi+SBxte7_&i|0(kycy#$Z{~Qc zSUeM^>z2S|^&;+1z(j&Noys_E!mF4<5GRj)iN{{RctSY-wP*3#vwu}NmMy z1i+*ad!=sLki(yaz$fsE{nYYD>AX>Z5yC&p1&4Y^OA?0w6bmX*pB0R@!YHMD0-FZk z@1v)ZWo;^f%Nhc2cnFl*L;A~~LbCu*lbC&vU( zQOd!NnM9Okr=U0|P4#%H0rr@%-vAik>5NdSov5H@MWqxV!>Ep;b}|GZ`JaF%J))w9 zo?cEvy`$PVp$1|SKaYX7Hzqbpf--k=M6H_-=Q$IxZsc>A z`H#P0!atwFFC z1t_thVm}2wty4ze5__rjh7RA>LiS}SLjaVH7;Vbh@Lo?1NKF~r%9GKM6FvlBRjS{R z4V4ZVQ9n__LEsVSuSKv6ycP&#E~TRW!NQ>~LGp6?SL9>NGmWMt$}M~Wz-fGD$FBsUaQ{G-Uu z&PQQEB?|MaP*fn`)u5!P2BpQdC@-zYh~9Ps?bs%G*e*e^{R-rVTBA9^9o>oEIGP!b z&M;Tx+ipSh#uc!eI}IyGy^3kiKaVj_KZjSIeuf~uib>pk~8}3JOdz zUKjObQnlDpneigeadUci=*mPKZy z`|(Q(5Xkt21=F^KFpr2}juFT&*XzkO-V8gZomjno1s2Snhz;|{({_%;hFK#ObQa4d zE9kt;mLtMp6B50x5a+Q2VfLo*-o8TRgULQND5nC}<;b+Ms3F)S1g1fd1_$E*ECy%A zgsO5lfOYw?s`3w?KRRd$lN5ZagQi0N8vrX)d{x$Km6g3nW<@lb4Ts6tMv${x4JCk{z0-Ukq z>Ir;uPIAV&0xD)p(vuJiUO^;qrgCa1O){lBxDf8=;&zZbUGv?Bq$KYmi}3!rDh=`tq_^%CCJGv zLtc)+NGn=cM+h4*;@qinWM_I(#@EA#5XQN!gTZMXj5aG#x~dB@1R? z#nRbWzJ#`wO1WUpB-IhKV9H3$p#sikESWJH8<)+5&8FpWu`pq|0v?if*2pnYvhS(-nQ^!!{KAU4ZZ}?j{r*e6F^@A z=~eA2O}@W8;QO)i1V~SZnPI#3zJcu8BKU1 zSxI9F30108ayEksnbcgFB~#I&heeEswaxeSYQ!zzG6lRy6UpjXOPM51^Phs`DOBWe^a5F3))pD z3ui0PU0Xy14Fyo4Xw$bRl>?gw&ho{J0&6(9jSn zVK`!91VXA|oQ~;=kxFRz!!Q_9nLA2{OD&TmSV-r|Ay&L{U4b6%m|GB$6shg zM`Q8yDVRL!6}55V5lZz7^w^02cN+9 zc7+FRhzD~BH$v&oFU&={s-+8?tzrmU)sP68OXy7tY7Ns(>#%0|Tx?o41159EVdMM> zaM-jIF`m}QiuOTXd>}HSypbHp{M5?^A&%P+Xtx=W?v}`i^hRYG)hag;b$QIk3X;)S zs7F(gK}Dkk_ghO-nXjd&WA*tm^-bo7$`Ywqf)|7G^ytChcE#_aCMRCKb{+q&{z)|O zeIy#Cq)ImA%V&r}t-zQYsiHnFT7{fzEQmo~5pb8#9PiZWCVC=;$VE2>SvmYi_-pu9jRoi){>f&@`1AmJ;^ z&s6XUc-oXR=^2$lcgYL2u|LTNMg6o0;rA&6@-bAjcwQ%=6ALS#vf=gR_wTUN9M%?F zSnhy_s~tQU&JI@aaCah*PH=T|RHc`<8?CGl!XtudQ$-QO2qdA5jXHF2m4G=b%m{|oc~J^~Z}G6G}%^Z&%;7oNw0apRfGjlq{8BJ9|_9&S_|X~j}#G18M_m93DQD^^3V3u7`akFF1cJ}wyXw4>2f z$*=(F5pzJ0w>@)P2lx>}Pv(5?0wGI30aK3qI4S=xt)g^KOE z`_Sxp>4b4`w1UZol~}%bCe|;ShBb4T^DUVM5303+>MM^>ES3lMa9h?l%9EXa=^Uht z^|eO^t+br4&!%J9m?e?Z+{Y{wB^;=iR$`4 z4nm(F&(JBWtIg9K3{lc(Wofm}6uD+_kbkg;wXH0bpDl}@ElaIDmuM}`V5FhlV~852ii$=vB!y<|RI?JQLiE#p2} zyxDSt<%asXJHnTM=ykLlx**=fKqS(JCPe!qF49+pz$gIvd(w)!Si-|;hbsL%cOuBw z5π%3^3eVH$)oTSDNIkc3^}lkp*0OSaS29Ltu^$DHZoux`N=te-y#+gHtn4G`KH=AVDXOd0PR^$ezueGYS{yo%-XCt~gL8MJWIv2@Wy^)RRf z1a{`6u_~7o04FkcoIYU`W=$T8?WSwt;b@~;HEFrzMoDYt#g@s*#*8=3TTLeu-~>Q{ z(a8KTEjdDM2NSdaFWx9OYo&hPw4bsc?B|RCzrkE!cz3i0p;ANMV7ZyvED4!4VP(Ay z^XE^;n08JN9gXOw~@UYyVK-2j-B0j)bf#z0OfB5K=mk&KM8pcflv$in_stiE-OY&d()I|IB>sTgQy+*wR0zFNTmfd z0ZT#@PD1;?fHn`eBTLGbkz$j`sd_ADRDAU)p7&-ZR`t}H)9MIQ8AV*oPx!S zMN%%9iiLBgV9wO>m^yBx0&pztsDvouyy*mX*#g+^*rHl9v7pk;EQz%X)hL)YGSuH0 zk-_e?5k5)@QxfH8%%T;DA%0Fu1$}8d1wJW*m?MVLrUnK4+V!kK_L3E z)hsNxU>*UKF-;S~w|(Ut*qSbb)3()cHd_P7t*cKN?4QN|mpYcF@_gFh+Cu3?)j<3+05w1*RA*3DEF*r%<_-r=Lbm0Y{GY?EuN)I~ zl%7p3hOd4Q%PA0w6_uP&dPjc+Fhv1al4VqjZijcgXe%KEM9qdu=Zh$wD4(W&gDFdd zvYi5*_V>d9l>AY~5+&^s0L6mJw)OT+a3Nd*nKc{z?dGP~X0`!l+c#o|#byPg9Fw{s z=LJl;R$z3K**C1W9sxe^4DyFhXb}9VhQTqB2#bqRAdWbEITd?vu!ZS!M|r0!4xLEA z>zA_8TTkC?KMD2=|AHc)MR>no58P=1KI{e_v=Ycdd~>lB_}~(*^|iw2?EsUhqcQ$( z|Atro*Z;t%zyCYNKKoa^^3-22fgsMBJ{ogojl=ZmV=;{}o8ZltVTqZOF=xs+1>l6& zUc~5^p20|}=_}7Zg;$^ZF9qeoSyN!K#YEj8t!vqn|D=zrjmq%^vWOtJAqWLNQNZv( zSEYh-ji{iMk{^ci+Tb8}+6NESN(~>F)gY7*dm%PLLe81**o37^=c-8to0rd4uz6XV zs&Lq{5?1RM!D8(KxNKjm6fr5-4S9*73LXuv{|>(Y4nP5^@c*Ult)lF@vUJU`6HMY@ zX68^ZGc%JS6jFqknVHd&C1cu7Fhg3hEyjAYpuDquNu)9hmLG3@jMqBTL$t8p=}srgJU_A z!Z&zP@G1d!jdTF(94bo?37e{+Q98Nrh*#~e+S0dgsOaW zQ58OQL0{Ov-OPj`JZh?BG`gZxIGrIwPl?9c?6f&BPcMqF5j=&D@1b&1B?;b?t`_Os zJIrl{KwT|$7?8HsH>J}+*4R{qn%YuhwRL5vZ>T_3b+NhM&{%0;?CfeXAofk^!c(^`+Jd>5wRi#MiW)Akt06&jI(cIg-n%Y;#>r`T?ZgaRxV8>=Zf(QyH)dep;&e>P zd=hgC$Kw2fPW;b5z6Sj32l)TKd=dZi^8@&wcL?BZ;4fd`((5l`MrA&d+(#ka{VBwF zj)BjpN8u(G7T|^?4!|dbAuK8op2~rpJo5f3QOspa>95Z= zkP$+w653ML_s5I~C0z^xSXoshE_5bZ%Cj&}RE};ZV>~8Z7WOq`Nq?IuF13C6EVGXV z<32XRp$+w?0LTVS01t0nVLtc2ZrrYWv6%os2sxNP6hLb%XkDQ}dw%B%f!r47Qi=JU z6fRzyeph}^gU64!Hk_t!A zhRzQqfC?d1lJ2U;e^f^GswQ_dnU0=E!Z%Ig!A?7XjQ#lk6ST7Oe3X=OGtfM9n|T4= zuc$0EP*NdP9ec!$ojPkerp}p(Y4hg{f^gC56>vIwUfhwB{dn!{419Qb5zb#*h4ZHu z;rFk0;N?vPSlZ-Q9w3+s;Zvnzh=vDXzQXulewvGgv|;djq1ne=&n*NU*P)0?aSmdmK(4%;iE3K zUK8*0J1X?N&1>g#1W)1P%ooo8nBN}SgBJw8L*ik&N7ni5LJiF7v!UsH7{x&=D6F(zc_g7yo5R5bqoR6D{(=x9a7 z*~rOFMZS1O#U(kWgQhAH!Zt!EAotA}K%YR^FG@IL;eB_M5ITMJ*B5Z%yDj+Y-wxv1 zx0`X~<9-}{rw5mh&BM26SK;-|#aLG7j1{#mcy~iN{?7}0fPZ=)_~#>{h9~jwH$K4U z@BIqDS~DNhDzcCh=!W2@oZ#_uC%8ZMC_?Cl3V=ZY;#P)wBShlFu$WLp#Dya+J`#!1 zVJ7AybTr0(9EvE*&oqw{K9|vt!Fkj#jVdx;5Lg&Ce~ZeifvpJ%(9ByB$Qh$3xsU=Y=o+UR6qj7+e}apG=PT~n%~&H+^bZA!Qkhqz`>Tt;0FNZ{0! zWDKawl9(r897xy*A{9_okVhROWWt5nbjEs2>M{93=;(q@66iP#)?6blW>pCq>dQ?# zp!>-qAtZPi5<(@X#3DN<1?d@yNKK13$K1R$qlQh*HJBt|Pn$Q(z()m~F0LpcoVjSe zQA4MD-#vqCf7*dR|6ecSyT3h+%U71+>bWKO?#g=n?dld>dt*9YUY>;wZ2{QT7mMGl zEWsw&hVTt3V!b6&2xoWDX6a~ zKx>`ET`lG4>#8%u42<{af-)n@c#r_9Dl#5a_f!F7W|Lz#9LJ$6YMmcQ)niai;0PYw z4Z0s~(hE-QX~A+))YY?ljJruUltT~OxG0##qgKsz0H}@A8VhOcL>Lu7%_7={4elEO zq$!Y8o*x5H;p6N09aNnO;J)>99P1CMgmguzayr$GQ0htxbx*Y%;_HXEm`o}ake|=b z)oWCx*Vu39_~c7wPVeRsjnL^#7@dTDe>`x<0{|+7YIG&3XjDLjQ9)D~H8y01l=%b& zkntV?q~i5;HX8+00PDo-su#CX0o0g}05Tz$k{V~A2DLIP>pi@dK@KCgG$R7?`< znci=daLVi%#w8_`PB(7v!p(1Y;J^Ln%lP}hy@c<+-i5z@xd;E_+k^P`+k5fdiPiXM zPYd?+CtzD|Ja!DEV_8cKdhjrlpEU7tjpxS(;OhCyzl z5a>M?fqu>i335kRm=7W%{Sh4#jIa=2_z8So&ZFTv=5b?mJ0k+Ukq{Yd;=ZipIOCcU zLITKmFey4z9*>b9sSKUX<>>9G!L-TEMg^&OR6;^Ww^UWo8Xs~Y?%LH0A5cGnr(=P1 zIqApi4^H2nF39A*cFdX4gAMX|s(1vC`xWkHy;9bnVcA6c9*1n4Y_M#Unmr^?R5Tqk zqp33TIn5;UHH41uCB)2f(yjY30EdH*-)YYpu0gb|u-CPRs(4z5#=6*7Rgf+zr?zoM z&MWd=_&s=C{Cxc`ywAr+8XkGcOswBDq7l5|Rzld6aJvEU>7AR*nBQ>5WQxuUWm07* zj2aix-8Az=Aw_ugBMQ-`PH?28L<_Lb%M_2xdTA1J}{ zo?@i=jzhBNI7}4fO7?L@l8+1GMDe1%#v$Bu3<6z6)jURv8#)dl0nP%QJ0ilp5EbQ% z$S`q9{cRafsvy;mSy0A%90x4OOh$G}yiq-7MhPJS{xk!Wj!GzaJs~aHq<@6KjE8k>;|KNnu*o#qSws(8lSSG;A?bvgx9Yw=5VI-L5GKM zD-P|v51^K!&>1b7SmA92kr1jX5<z;QCOOflA21C)K#Orp%zum4XABv z79iUUkWQyhuExh7EyC4H8*$^}dfYs{8sA^phJU`k2ltLF$KNmP#=l>A4u3!Y9RB0h zTln+E*YMWUOE9-BA5D2N$PV*ER!9J{!UK>V>W4&s4@7#5N8q?8;4|hI2yl5E0d7ws z$a54zea9jqNaDOuS44-qAwJ4a)GWjRN8>CQ#(!L6Se%n)+)yTHsDK2I5Hd!j0%k~W zQ(cmU+VX5PROO+qp#+oKs!TjM(A$LReJzdzjTwFr_tXqk2soQ0PF%BU0hSAVR6n|& zR6e?$%yy~zsWGk0Suli?pe|c9!)%w$Mom-2V}sXtOJQUKWrHL@nmweVQRy@ew7Q?F zlQlPQK#r>5@tBl#Eca}hf69D9@=%k77Sri&V9hMNA+XIQ{B%&@t>$)l>k&J@f^J%svwO3Qr!p`)s6rvd~`?Ynr3Au zBTFF6%F94jQ692O3Xxw?ieiCLL9A(Qg40=XF+Vx76cK8Cr7+PR2(=qxJdJPJYM zpM>w2#|(h}&c750e~BQEClKmA3K9OJC9WGUP&p$p(npjo9BBzr20V`UQS}HPlQ2|4 zsvn`FTT0_h8G@QF7o3+Khr;XxlozI=t|G@k*wbE(sgoKEgfv3PF+d$FTyFtz+46ZN z_9IlBYDD-L_YpcC38HO0r_;cvvmBPppN5?hNA5C>dX8z}R%4@QL)6Ad6;wsg3?h|{ zF6W!}6h2{m)iTgN)P2)(miT5n&@^^<*O^}Rw!;1ohaXRTAi#~2T)JNojz z`?Gm8Bg<=JC&V#Ns~gVmp`DLj_u*~phAq6LLlVr2a#+H;HqZv)Cc6UK094f@XoQR| zCXZI&H2%}%3*l4sqx)%fJvI44_mlA--Ot9V64aIzpt2+n73KLRsZwKiMRh2mpfJ;b z7M~DdVnBjNDCvGO5kmmevs00plZmu~TmxZ2Wf@9E4J(`KQQguArz-;5&2u|(?bK$R zdUHNL`Rz>HJthF2-Hz*TEy1-nmdkNHZoIbx_fEWs2X&SVVWc9)M-aqdq$PzRFEb7mMd@g&DKIKXSF~T?qZ&?|++ti& zCS#b0F#xVxWB^>cY_4%XIp|LHqspo4N$7OqEnQO%M;H?b7tEQ8?eaNHxG?@xV{Wb?q5k7YI+iw-m?Un2YNt z*5a%4+i>yyCHUd$LHz3%zrpv{U&SABszOe|Am@dp~0=y?Y4nLPC5a2!vA>N}!0mmXbXaZuz4UGtLMUbzn#D-o7m(Ph3 zHq();?1;FY3otQgoGL|fyhSe+PV*T1hSY;H@=7KWwN!aLWGS;JU!mR>mrWFZ< z#^mb|Q^n+cPupMrBICz{+wrS?o6P4O*tpbuHX+w@ zJhOSZIp=Pw^D4T9>?Gz2c(br|$!r72x_OhaeqpbC&#Bn5tY09UCBV(LXGrN%&k-ou zfv`5sLg@sSiYvO@K8t3x*>CTaeVfhX?pOA05x7=i&+3KJ@z{O?o`dJyB}%w&ovoud z%mTby*EnXqsN!iU3N60Gu|O+?s)hvjpuH@iDj?O5@DVy@H+9@kp`+RnILC4%`|Y6s zYV4=(C&vQS{j3)CD=W-KX-SR&tD>^NxS|~EBV+}IIRan?($bR5v7}U7)@q3n#mdFq zEGjNUc3v)0aVeFIekT@_o5hrnDLIhz8KzO(xg5@!Pe|Pwa@pfcnpb2WDqJt43uL%qHM@Wbd0s=hX zE5LdR*dCta&3j|xLd5S*kc-WdAEp2`HO2BH6r!=Q0{#76m^`@+y}j}SPiYr`dPVVO zVCBjMj_SyqY|Ug0-A@MCP0iKjHdT-yI%YJ8IvQ0JFlSBc#_9!Jea})DEQv8w8Z&Fv z%)^dV3yf`Fxxkd&Gcc`Pf<4k0O%*UgwM}~a9b!AznL4BgcS{VkcO#zNFAZAazFnJF zNCRV;J&s?^7FSAKJOOf-0QU4&Tf^KfpSMLC`o<-*%#rt>*}B@Ci{E40iuu?okF%rL zw1jn3XPNK0Y(|e*H&)DIy`0HdGp`?O7xZJ@LYDTQX+GoN7M2Jk2rKNi+}z*0eyOoT z+c|5+wrG}>t8EFCHRc=}7R@l{ z{2h5MyEd#eOVV@}i!MDPP=txlsoLpUK)Rb+FNSWX7H{I?%z#q;=yq}mlETO2ivvCh zgNj7q3Z-+;lQ1VYKSe-GF$tC|QMSyiG-PC?BRxG0xw-QCvMSWoHlwMb15J&cXq00` zRh`6u1;+i%5kT|GOALfX0x8Yu#Mv$Q^vo`tKfec;uk6Fk&kx}4R|oO+cZc!EAD+h- zUmwKT3mb6u+&0|){8#w>`X;IuIgoO8^MV|qOL3w!}y zE+&D(3@2U4*swsv)2)mQ61e;jL;wXYTCji?5fx+t+vu1OM9S@O0Ww6O4Gi)!ukjHG zy?tB^u%QBH(!?0!bC;DDm;jls0zo1$1ZPrDn}KQ?*Z3`vMrf9bEOwM8CxCQ8`5qdT zP-ipnHa~~Y(|CK@ln$(2G}8_rtF*Bs2Fv8z8veEw767FYvGye!m956*GVI^B+DsVV zPj_?odK?t^o)Kj`B=8-QBPWz^+rTxB3v9zCmWk&3wyZLr!_VZocwW;$*DN*-m`822 z{601SXWIdsh2=9R8(T4}PXJ{34wh_WXTnNzvmA|oIOFwfU%AknUrWmC06OpUy!U^D z`GbA~8prhbdQH0MG&FvmngYn{;CuM~ZM>c}OR(Kic$W&OtKJEex|xJeV?BjW$NYFy z0GWgt3ZOOnNdU_WvQV6tio!yP>k3nlSD+B43xpEmWn~xulamF;%p4RIR-me~0kzfb zsH^EfO;x+J$vWhglsdpGtSUE&n3CEmql8W$o?MULy}khNzOxJ;ez+Q^POryjm$%@? z=euzC%YC?fbt{g1xJaH`iOZJ`;;lE6`yuX$}ipr?7QoBLRE2zGc~LeV+j)B)8!*fs1P9ALdv<0%2x!CBSM&>r z2MD3WQ_m1YG0x=SB4aMITDM}3Ep8PU`50IKD`Y&6o{#r;uU%}1hT&|(qL~I%elD+r3T7QVCqP!^;(K^*zK`eDOsBe@T9Qx;@#^oRpJBTexemFO z4a?@4B1=rNF#aQmx&odqsKRG;HC6d+>qn=U+k}sgGYLcYlW`y6`{@9tAt512+|W$q z<(8nlvJwo^ZfDv{8!-i2nQ9K2Z zDyR_hae^2s?;(sXuA|}W=Vo3r6hMyM5gr{%;BBfG6DbQUE8V$200HDR%gF( z@SO^%8BjvV*pLdi(cZX*Glfw>v?}2)Iqx2E=eTCk3gOec);U1ra|$4*&*=n$EfTwK z6PNa3kSO>g0Z8zM+H(7mKvLBS*-+!-gq5$OYVvb=O@xPFX|Y{}kl%sl<$L))nyMRL zqm{3AcIEQB~25^0G#W8|zWk*l1$Dp=OH#&uztrA8)`%AFjiZ zBP;RV?-%0j_h#dbx2NH?H>cwL59S&G-+XJn#EQG{+g~q3V_h@?d>=(*$msvA04juP z1WkdY(G4Yt9E0JYCg1iJ#UDXG^zu4-91aPh?A2AfbjrNifR`?V=x|)QK!11;|&LIe9 zJ~`|_`{@9tW8%aVIcA|Czf4rGPF&A6aYNh09c@KTT?-mJI#J)zin{g|V;qQQ29!sq zGnaPZ(v^d_cwsM2pV^9I$5-L^N9W_McW2;tZ%o0FkHkHFe=gp8Z!ylD-Gkr#cDVu2 z-}_O72R$V*-v2%ql!+Jxk++8$K_z@tKb?ur7*MB>-$ND4?JOnk3G%g-Q~Jdf3F z$x&aH5F+T<$XT0#X zsv$F=%zV=A}oea(wr{cJb>?icpHEC!|(9rmoMS-+Xr#w`VL&Uv=L`7tiibp>u~hr#W;F& zB|f`&0B^ju5)HLc@b!EIVS!IRpn#m$N%-8yJ!y`^0m!Lj1TZGj7TXO6;855&*h$kl zcQhURXmv+;2Oce-IkefFcz}(z?6cP6_RtCn@8vMQi%)Is=|SmEs@_C3ToGlp;y zK7z~l(-oyV%UF;Au9F77&Ypl#w~EI5Y;aZuR26i%i+sJram;FR$rO!hN8r>5A&**E zit|}@PV17{HsvBn3cG@#G2C!&v6=#*uP00jA&-2Vrg5LO6X9*1lWL|a$Rj_8VCj4G z9O}C2XR4da_wzOUOxsY!QitnmRZw-S*NE4#ektR>#m3!a%%{qyV}68-Mz|C_H3CTB zsCqj1t`o1-{Tw<7&&qrphA7NQ5!X_bFK;3;vlEe?$t6cg$jD4K0OsUK=U-lh>T2<} z8rsm&-it|H(=oYc7WyX7!Q{T_2EeZV$z}pJLF8m?!bo#EcX>C?oZW@9XLsV<`5ica zahu74Ub(&vS8r^?&Chq?`pwt$BFLB~hX*|p52HJamO|r1zXrmt~L1P;9s`)0X zIg&9ELl>2CALp@hf;m@vaDMCD{the~lF4M_w+<&f%&ZwrD@>|}JSyP)OukN)mfu}r zQn%9TlIr)+=k+x-ejXLp3L($G!QPSa^VN;j-_gJ)pRrQ@m$i##o869v8*Jy1fGK2D zI~u`L0L=<_`yyM$esn(x9gQGbr=d{+D~obaBCcjZ_C#?nIqsK$)bv;+C9|XommMV< z0Q2&4QCHW9hK44zGYY6S4` z{>{cEr3=a_bX@B=(9>w9*3Il~aU@Ty<9SvHA7<*>jRc@VsP3XBd=y$MSk_olp&bgI z6+r!LRZUfJey(<8>NY#n&ko?4g|i+y(}loU;TvjNNr3?B%ojqZ0ICAg1+6PDG{wL; zCpn+O^GJi7=DHSzHE_!;~>ej0$0oWd3nI4IMp2^W3L8vhLkASc5z_R}E;!l!Pi zR;nU+*0De}oo1%W$qXp7qMNs@!JfTajT#bEzK;;o6vCNoNcILwsC1)A>)6-G3MjT> zo`GvPBZSXBy~VhpT;0!gja<>e3Fc;=YiGTq!7GG1o~Mb9huOmbq(U*SqG#4zBQ?(F*ToGC7t7{1v9X6gt0yvRZe3)HFY_4 ztsmjzkpQX+Du|kd;WRW(!ZsPuY;ip^6Okh-n2{BSa{~g0Z*LRfDb=fE-~K{QNfis|Ji!E zy$J8TH%A^{h0B+p!QI=x!$(Kt2sEqysM=GeQh;ZY;hN@N@!J} zk?h9+oZH)qd6V0Qg;3*0D||z!Yb?lRNL+-=1WajOhFO`zvYFXgiAc+c!Ne44tBGNzlnUL@w6qjt zXJ;A!>4G*jO8C>#jm~yyH(k@vE3W9I-T}1r^q_TewwgQ4=v7jv#~_8|07!6;;=OF)r+$ zB(d1k4lEexHVw!MphEaC6(oS`m(8{fDGXzTkl9ftVOUy&kI@a~vZ~(p8cb=g#X@Q9 z)&{Q)dZ-$z>u0_FFaVi|nc3Bd*>a7V6}7sS)(q;Gx6hSOK&uxS9^F z441rN5@s38M9%JiU~pX%EefHv#Dvx5)HqKeR7K=#_&C*%@t-DO82_1y49v7=#7q1a zZQRe;_z>~X>~3gEvdMxHzJ`WoG&ZzL9N2~S);@u-A6*>-=&*IMQm+>!uKZU>l(^`w-es~@86gX+VXj{l7WAlG7X4yd}K1cmV$;iGBsR6=B?kXaHiT56oJ zBcCITv*{)YAS+k0T!jrleh%T|dN3+suc*UpX-M;=p|OFnArrtoI%m>8M|0B%i5LR7 zZs{zOU>V7@+PBUHL;jQ`B$v(nbm)8i!mi!$mL z6BjJu5!+-Gl9MNznK1VOY!f%M6Rpj?2Ez8XsnY&>(bC;*#sG&irw@*;#@p{M#pyHK zaqo*4@WWq!hd=+*ukrPF&*IkIJ-BsykEr2Ry#K*cd~kFPzWL@Y{OiA-#oKRgLQQ!L z0=;a-lKecz!{6Omj5R%7%+XKodrja9iE;3Ao8SO2GSCxIAp&8zpCjQiToQ%=syjLq zK2!Wg0L;lrLB6=6CE|(_l$O>SOcLOzd<_j1Xt7VICS=nEx;fI5avQ1{Gx{)jN|(3@ z?b1uN2&B?W3Xn5qO3ylf29~c_h*@)|iJCT{qPkcBFGNFAHKxd)Jy#ml9BFWDVCxk? z`+n!UIY!8g;Rp)2VW}wHl3Aua#zivMJ`cj3ylpv!;5R)4DdBgolO2gbXpI|J zsoP8!R8(=XT+>|cSi~|CTuQ{1>{K~|Ca&hf+0!te3vD^eMV{y5{d7I4ega)jTfKnR zAOJR*ih8UoJ44#UEOx^3SbIYyT58KsS6+Y$>ClVVxl0?%NQps4daT5MHup0+HVDx% zVFtj76B7-9O-(ImY-|=6wA}$pSuJmxu7>x4*)@Z(hRpe|Zys`4SC@#DqPDUK4Xp3jZrf^#f7&8$*0FGw*`{jAg4tNH zd=XZxS&kK}mt*B^xnRJk8j~wq*DMqlbB=jz<-%zX+Jb3VA;;y528^;XvB=3Hq4QZWWh9P+@cb*m?V-;WxfEiR9v=|0OCL$ zztWkkS|CtMXR>t802Xl&eI~bW6Pwj*zW9^VrnRI`oUm4oqsqv`I|@d^2WF zZV_w6Z29cjed4AHWYgum1JcP&<>ZF;24k%?rN%nzE703gD{9@0S(7_3uYZ#HehUP$ z1v4g@^DdnuvE=-I^P8+*Jj0mz%@*AMtyVc~Iu>$2M^2!yFN)^6%<1x()8xNk;oNzw zW+$ENOb#mvR6PP&hlC?75|*?!R-mJ~5?xJ|qI4Cem=~?BzSLCKqqWq?f6V1T?W~>SE!QzPpAub`*7?UuJ0SO>gu(Y%sWn~qpD6chx@%6PGXsj32YZUle zd(hC{jr#UZ)V8*xy15mVjV-7U)hw%Pgwvg`pA!K0V?R8waxeu?swFI%z6GYWq5ai{C0Cx`o%?m!` zz2WB^h#>b60ni&h6TIYcH=~07;<5(%JcU5t#}ODX&J4sWfJ2Rg@q}DTq1?h6C^%ir_FrcT1J&t(h{XOEu8bW?V43Uba0mB<_*;hS$Di&a^?R!I#V( z5CD2@)#3z##dB<1xaoK0ZR6(lHrd7|ixu-!z3b$L#TF z3oRH{=$;J>8=4x+1;7eZysN#j)D-e+sVhQrZK0{6z$2}pG7r_InWn@^QBI=SJSZzI z8gX$!;(7*}_>U?`02u=&B_#-eNhm5RL2+>z$~Y0bqTb8{ZK&%sQ_`B6dr;pp3AHVq zsBY>&rMRgT^{ptYZAMA80C@H80i3zA9iN=vh*JXJwR;Eg^$)M$E3xZeJY($ccP|>d zAxe1jtHZb_w=aFZ7ax7HSprl)LG=VcSSghy4td<7l8W*rZFxYOYDMw*JHgfW^ zQBqcnx(10GyE`#3L*QI64~v#8#ExCtv1Hj|bab_&qN-d>;)BLIaYLn7ZIL*spH>IvJam>|Z>_+9%hW%4bD}1wIve6QP$(`~&n<`90XUxLXIpZ5<`*cSiO||nrvxT}o zjv2&7oM<2odC}a-j_;=c@cZ+eJP%=4<0JrMQ`*E`>l9;Je{hD8=cBPxpbzX&!29$tC2zg!Xz-YRG&TuwcJdN4XVayr^KHalVceK*NT3X$JiMi$`1+dHj z*w#=i5Eco9_W|UwzA_h8B^lD0rtF2m%>J*cg(L1kq*s_W#>Y;HuC^!C&2 z4VB3e>%J5^e{=B&z4Q0pV^=^P~|{l{gOAR$nI9QDPDX>`a(IP^DpG*Xv~} zo{FgD7zpD+X`}?us(J*F@TuC;)m7v8qYc7Vy9$cyDK4eLrvR#16CJ$I?{I$^keqM+ zfH^O(jnEmm?3<@jX{oxy*?`!LY2CxZr-?KwA0Oj=4mB|o{vd$mb^uEpDoF5XtgOch zdzHoMD9M|M{LDDyi27xuL?R~IA5k&>CjK)J#zoj5Oo%fOaxQ3IUZHgAWddOpD#{uS zgj|?gQ`e5l`upH1e6-S_QE^1Z^jyl1!v71KwEngYHKRc&{%^>-R+nr>cU3BhQo%+p4@EuVs}H? zkk!@tDMmHWy)1ZC_md5XwNUFT3QcE1H=7*`8$4mq8U8f7iEQ|~Ovg5E#^pHo-9YUm z6hy*7AcjIg`1>U$oYKWvBaM!8=-8T?&MM(;0;pSk@wcDH#Lb*3j%(uYW<3X8Ursg{ z&ic9=B-ZOPOTn!0X$D(|mw2DUP0V@|KxV<4Ti9tev7s7$Jsp_Cg}Kro*?6pV zN7W5wW9DOQ=s(5SIH|1amhn6+Jj{mEP{~9=o*A!VyhT@(E}w3zrQ==feCT=;y!-ng zaFE)jYPw;mo=06lo{L5xSn{9e?QX3Um)@4ZXsfR<1J*pRF6Ge)&3feb;dij6`=<*S za|XJGC~KSJe1!aA01n9a9u7VNN5#`4;iLPh(+HcJ6~OWl6;RcW?x)6oR6p)%nVJ-a z$Os>VN3v9kzYRjxswIT6(FQ^;N6N^^Ms{X_SruPYP%RMFi#y5{@r@{|Xh2bAy)n9- zg8)2!bsH|+-H(qx+k_9!uEi&E|I(KSarK+S=5fMyu_feW`vNIOV<(gpf+evT|$;OhRxY$M;@;6=#kg!L}k&^x}T-_$tcK*N4CU%=>lI$VkpAHy%84fB@p`AAmnDUgfJ#bEE*{(=}1e< zKt_5larq@u4FOFPTkGDQui4y|gjUQez5Po=hGmc%^f-nB*HGFhp7pC;) zh@w3rKs+V@j>Whq9>Lhhet|#_Z=-~^VF*|FxjEaipxi6MXN&>xVOh{01JFlePA+ev z`^h8>2Tutfv!ZlOIqpbRWMg3Yy5GEb2&X=JAGa=_ljC~=-K+TM{nv2p$m??dU3_}t zJ)A#z6z4uYg3qs<#b@U}7HD6_#&ue4_?h{Fe>K3Lq0OR6|vk|BCTF zG);u)-u7l1T5E-AEVX4hqVUGl5`YC`M7j9{;e5ebm09F*GIpRM8 zm?rQg#|I-q01OoX!yo1x6XOF#yyEo3_%~uX% z+xo>=G;^|1qRG;D*hAKp=Afs;rVd(#n-CHpbwhRBP8$}VXG79>XHbT3h&#sTRfPx% zf#A6agi)iKA_E{BKOr}2=p-mKvh&1aGDu5XfbZ20ok5#V8bJ1gwAAHrIGTS zdVZd>x{L$U?BJ3G!YngYOTi;>3L4L+lbf~D7=Lqi5S?5Q-DqK5LU{2D-6Vw z+A1ITJ!w>UD}apslH-C9AL(lVjN&oc&%mbu8WZ>;Bg5@6;C%qIGfM=*GUVn|ATzrJ z$r%Mm%@JWJC^Je(6;wCW>BQYVI4;l~6FWY{_}D1{kVY^+y0rrz-`tLmKi`Ry^1d_o zp2pojzJd=wT#s2Zvk@8o2;5zq5E?Mb07m5r^mK=>tMgz0jRLxg0=haBkZ>u4x^_VxM1m=518pekF45{M@}-kWH*O%;tXV-MguKt&ghL0zr`ZS1r*t)& zZM_LP8@Saa0V zkA#o_GCpB4M)#RlHf0<8a=xDMXQ%4GYN;bDybyay#=?#F;prX(RPEj3#p%tdB;k%2Ia z5ax<2T2gJ)FDHLM-GyBjA2z>{C?$EV*MFm~$e zr}4>G`*2d+(A$4_7GHn+BHnv%IVSfeATIhbM1?&iD#(WaxVWMMjq3y(fa7c{BM2ZB zFgU<%5L|>!RgZC>#)b-`^>yCz8hm?lb;ZT?6$ zQo4MRr9rt+z)r)tOPP&D?;YIKv#OpW49xyB@uY+~HYY_AnY9tk5| zL^gb#{ckJ5P%rLi>!7hWjr$Zno`c4Q$@~0Hw)l{l)_O};v&o@+Iu7`70ISeiTl_!< zQehZs`kZ-fT``(OJ&ikQcQ*-}RxIc6gf%m&AljCr35@NvXso$^E?yh2k-w=9KRiqU zLqj|e66Pro`aF;Y_8F)m@lU;|MgIZ-$#)#hq*!KiiEMU5ab9^|!KVd-fj43&-~ ziz=@f;J2TfjgseLf<}`xREjoHknWahv#LOcI;{4iF<@hrxUWSIs84;R4FUpTg|4-s z*uZaGQHlS$yW~8*_qU5A9$FRn{XskmwRX=o@( zLuX|MIx6ILemp8OBhXSj5exh3v1iR}{Pw^`>|HY#n-)*OmZbw&+~17GA^|Wx619cm z=86jHo`i&GwiUny{exXlYZ8V4+V5+^MFC*rU}NMwL=FZsB~B38IM_&-2q}~Ao|VFB zQi;fw&SWTvW^Y9SkckpzC)HK#VF`8tkhA?8r17^)!=`&l>yQTCWIumhMXotlQErlH zjQlQT1*y_tvqim1jSFgkGOAW%V!?J=1GAdL1IX8QP`zpf&phF^a(IIf=x?ddUE z0Wib3pg|Ji2!Nt|!P1U{f~^4B7Ud=+#3C^v9!W_P#gYZWbfiqoL~3%bfiP99u($?| z?Y$E7)nZ~s9wHM`j3uOHBTd{O&n;`IvcZQFP3j*Bb zVtl+1=;vwRQb-~Vggd4!Vn$cjR<*9LYNP- z5<^j%BVZLIO3aole}0-km>~@%1D*BhXf2CDb5W?k7cB7kp*+o3?#EzmPZ_o>>%+>K zT=3eACDS{wYEB}-KBCzEqqlaZI5f_y?)APuZs+_?HmbP5Dr0z(H&F0`<0x+qSSxOt4nL=9=p z;@;I&7mD|ihYA6rgmo};`I!mwnc}kNr=qMR)4ZmcY5jVO)!B}Xb>--47w9^hw2Gd48U|L(bh;U1+kn4VC%!L4C%p98=6Ru`QE4G|qQ5Lly#UcQcbS)$%#wddjg) zpkz{ona!p~aZ5#+8>M6D?P)TQ^4L4636r`Tj8Qo|1mYS3FL8TKmALT|K9q|GQ(TyW zg1jUY%I{l5_~f_F%7_t&!jKRbh!|!+!@Up?-~#_Zs-TxyiNk`>F|oEaf$;)iY^=={ zjgOBPAd`@kIMFB~l`%Uv59QU>$SEkm#I!WTCMFt7N=-vrRyLfDT-u0Z*SCvpGsojM zw&TRj9r)ztPIKfK;N|b0!}T9t#I3)+j2nOc6|Vm2d0hDFAWq-ggJU;0;N9~}@TtIh z^ZQrv>}!jWRqPK}&qoj#EU*YDJ|5ymx^t4YF9KY}Tztg5;p^rOPmc)>m(vO#je9@v zF+Qi`ftr*F^z}qacodQXLlNukk7zG1#QAw4Im8DUQNGBH_d`iq07^1^P?qI|iX3-T z=DDM~&>eNfa?Bo!%G9S&kt~)r7PVO(0$?z@s^Za8mxd`#g;+4P1uN$cVE)ueXsxb5 zNmdq$IfN?$;^jX)i;G`BBf#y&@mpJP^3E2#e|b4hiW*+|)35N-+sjef z7!AMB#}O3nVgU5wP=o;JM*v;??B**_dce!W8Sb9<0VH%I0Z7+V2j%^J+!5<9u7GzS zqCLbd@bE;OuNP9}$H|c&FF(-_xe0E_O&pKhiKCI5{Djyqk(=@hm~&6tC;^;z7B>(Zv$*QuG9goDNsm-Lvpq{RR@NdVO3hcy#NrQ<;GPzVWNz9?d5 zy0|?_k&X%htPYTto?!MS=YHih*2*cem+EJ>kj9j~4IDYj;{=ICjR`6XTQR-QGLJ0p z!JS@tpO2Tw^L(AYUT>SvlFw8KZPf^B9UGhuHNwfYnv6~B?Q1p}t8)m2S=)zOwsDEz2@i&m@&SQDsde8CO?SuevrLHFW~GfXLe=Wf`JQb^rxD1u#hfj1vH( zVwmx?%>gw4`VIz=i^5sKon~FTs*kg#tycPrPtdX|1U!0BRR;s$(My}aquK`-HyC^W z{5k_7Av|+;p8@gQ7f<8#oxM1AZ5xhUUS|~Wjk62z`_I`6sP^eFfS zj)IrhSaBC!1wc;$(8s2Lb~6Bajtn5xkjBS`Lg?$|ieN5#auy%m*&ShSZip2HObH`+ zK`2NL6xY-P*-6ggj*do#0G1a2Go;2jAvM+sxp9x8Aogd-i+U6}Q9na|+>%!ztk&?(vwI5^f+& zO^-6igd_ncjsxz#2#fGCQ_u+D(AiqnY7N$k?z~TRQ~-zDR)PPScA!q2*GW?d6+GIz zXV;j=j*Dx0^42Z`9*yoP-}C;()p+OpQoL|#-# zb`Ubc#xbar_+SGf=OYqEf|x1KrA~~n_o%~{bJRUE=#mmNRW-szFsYVSqjKtPKCh4s zH9k%#`C0r--c}G*8R>?ya-8nRp|_36{kqDB1E|9)L#;R`Ri00m*JYrpB;6!X)U4Us zp_xtouJkC1#fnN&jp~(EWT8~t&w?WHG_qoi;?W2nkMW7Y;xhUh^$QL6G{Xpo977um zzwu)cCg+F?@wWeeIGQJ1);qx7%fEsXf6me z37PiFSoGAVV@higiZi2-l@yAUm|%e+5?N^zk((_IIV%%cnd!z&(;b;~;}@;GrX>+* z)&b!bGdrUitxa@2i;at9GLE8rj>*4qK}d-5Lt?Z)l41hPeZt7+(h|ckQ7k@w@Xk@z zZQFRCJuTfETU?l8Hn1U-*522un0zgb0IFL`xD-ZJL{(0ztHP~HS!^$grF(J=wOYoC zl|NkpIs9TWmLr%IKAl#^b$#sE^0>M^FA@2L$wv8Tc?A=Zp2Q0$rE!{@;Nt|7DyaX3Dj!YDY+8#^I}to4RLqQ@s0I(<@gL7es?NfKeY@;&TYl6=Lb+)7Yn}Fy24=dof@lRmvxW~9Z^`&U4u}z3(56vVC0V8yr z08HZ;l!8b_B#4}upBNv4xVX?kI|$R|(Mochn2!+Bas)`a zorI6z@ksTf`>E;|6e8_4NYu>&;83IbvF*|;Gs!_wK?RV%xx%La4&8LtiO^mD{za2u zVRD5aGUii7q}mZaKF0*irEd?L*L-qw7e2hU5jXz&EIzuq7H^zhgimg7$F1*Q#k(gr zqjyF&f+BwbPwz+J?foQt+{eJz%^3l1a$$@GU3^Ry^kD!JzA%~L^ z6^|;Y)jK&GyYP`=10CYiZ6BLsFApni?*;lovr`WQbnG#au<|i5TBa8%) z@L2(*`xzeTZPYIyh{F%g0-)<4;D*lHVw+_9HOWCyME=f00aWEv__Wh>di|4S4wYkq zg=$D6bcBzO(Fi2(^EtwL_TJO@@ahI!_+}4I-V=B9(h9tLVI@vo--TnJ?ZWOuQ_ohRpfud zICxIr-h=|7>nH(RKor#t@gIlKfN=;98jGmVaiU}s5Fh1&glK1EC;6I0O>Uwuvf_P^ z8S9PoI6tI|3z9B>$V5?`I8mR-2tR4?;qnKH3o3D6zVyg>MdEfz<79(lhEey8Ab3o= zSofOOc*qO`)Rv*9rWhS9RcLJ}G43aOXvTUpCSBNIqCz|jd~`wSemdqQ%H!c7p7Q4n zuAiz~c55b1_gB;`DS=Z39O`;n<3Zi%R8>!vPXQx%8Y}X(Rv2l7R+B!~q>XV?QIo$`XPqhN6Lu9n$j3jpycVaw+>XnC7WeeqT{v=O9Zp=^it~4# z!I4wjuw`!_0z!T+U-*{@4Vr-HP(S#&xEKIKJS5N!41%ZoPXo|J%tKsGnkUVbM{!ME zxoz5$@Z_3AFHv3ZQSkGA3IV=PA<%D>D4M`8$HYhvWXKPk9_@paXm3mupFcj#LsZC9 zItouji2_AM`XQD-qPT4n)5K-TmcU(l{Hy|T$MVxm17)Mrvh`;5wY?A!fwMtZYE*?P zU{jV{bhX!**&ghz*+2*x;p0#P6_KD3IJ%u07g7;J{awrolCZFm%QfmiF@aMTlSjIq z?18Nr)1k)K5;UsXP*VUES~e;*9sVG2s+`uWtI4=B!)i~eFs`#sAh!a@dA!ygYi*mQ z@HvhX=9pMdm5$Ky_hPK4bzF2Bnf`YCeKS&7)jG&1+)&f3rwurNbDKb_Dozyj39YG{`ni*03yZZi{X}3>2XNrER_6IfiPA6 z99y#E>6hB>4W7UrZ4nm}${$w3Hp zg}>ICv27X64Kr=augdu!3wG1~U z>A41w&=44cqthnYR@F>ig4ub?x>bz_`Mc`=CH#H(-)PMvCo0|5KR$01jmZ~PI=ZEN zj*k&U9h%^60($h)W|IYd<>Tr2^s9}y`L}~Od1n(oIKL8~3ba?hcot`_9>B(JT_`RK zhnuq#Je(g#QiSyAk+A}xFFc){9~uMx7=V1e$%+nhoG{@DJpQ;7o*MNtj3tOJPr*~p zu@JFfZ+TqIpFNpaur%`ENPmRI1|c#j9B~`~7Z)cbKLx3I$p%18 zW|%Vh(#Ys)Y5Zf2q1YJJ1g9s4|4taPj zRdqp!15jhY;f$|SXoeaer^>N0(fC?kyS|qStMMd3RaJDTq*z{NvSZ%r(3Koi!lCtL zc;x-Ys$w&JjfHcq%cXQpA!iloFb-W$?X>7w@P2A?xB+VM>k_& zMlnKz1pwE_Ffmfxf`lXkpxfAS|7!rc%SF4}Ky+~*V>yn)c!>ued;C#6IqDbke)*9k zW_0u5EE-q%`FX<6Q;x3A2oUpkbAg|S3w%6X;O)ujbIu5oh8!5?kC2!^ge8O`IyD;c z@+T+d5kiT7xM`!kfw7?xGXA*gergtR=onmbax|(dY)fGXAc12XNMkHR(@ZEqBzR2B zu=p`2w}(hP5)|Y)V!6g215gL>hcg1jj)V{mH9pR3wSs3&E->EF4oQz{Cgv2&<^*yv zu1K*?Ag56YH94b+7`@FT3|&xWjj4PbKjkC_D}Y)^iK<8VG;u}mA|)xz5!(%Cs(f@w z85a^hCTy4~%_~T@?Tl-WqX{9Ei*T{cvb~NpVMIZsD@qT73doL`pT*B$-01Yqnbi(; zBUl`MV9duj@6O+TZ2%;6bU9637=e&+BabI;ZN-~s7vRh{n{oBe`|-)0^*DKR1Md9w zdHnT%yo*2n^V_(1?K$k)I~`>u(Iz1h8|;ges2CFidW;`$18{`7pg#tni@VyGAvO-q z;+BpZKMLa}@COHGoOS|Rgem3b>Ai?N1?1Z!%+gAF^nb> z)Yy2adIT@j-`N-|3`FpLu*d&T+)Ob}`Y>&*CBn(_F4ex7kekB@au(l`mNDnP^% zV}$L+*s(wZk*hgqWJ5|(G9m$~!D;Xp4Gp36su22sdI^)3qT2r>>+$+gIZ(nAkTC+n zpb%H(=XGWTp=Lh@Xqcd9v@|U}4(S=<`=&&;Pd>&GWi2C(E3`T@zK7S2_X4jkua}mw zCLJqYbRb6ihLob35ovs^O4ROWqVDTGD1W?30kG<&Fk|ydk+R$H{ePUnAOG_TUj2Lq ztI{2lC)hbT!dA@A!9jdd2h~8>-B#GpL7Z!60i3+gU3^qG4`;Y~Im1oZ#63{_RT)%& zktKnB1%#<#h)NM3C^<^a?mDl-$7DOsa(Y8g0+Jx4?$<0B7axlB0dWd^x>AE6)Ojn) zP|n~4plV#@VxhXo`MOytK>B$z2w>Z3r#Si^1mOD^@O}F*@;%1#v7>1K>d)ehNZ|2i z)Kwum5Tt7&`5pzvP(NX#5Va_p%f|>pE|^YLtoSP<@*I2ma1k|+e4f@fMs1d&qn>GP z6O}Gf=TUXBZu9@NY}Yb0N{ofoEHCTK2tdt#Ojj^P!Acoc&I}orB4FgI215#lK%@lc zcyq!cAdT0p8b?U^SO;fx0F2jz;3HcSxF&^FYubY?1Q_#u49MtmGXj$=NI#LRr~@*$ zTeETh`$M>Xe-*AZF2(8cnK)cDMWpFUJpbh=9{+Fzl}*`r^y&<18;&D0`zs{(^;3SJ zi=CzTUUG8_6FIOL+rd%*XsM*5wXFcix{tEo2cR&fgMsxd?d5Om`oPl89G3DKc22hN z5Aub#zYjdTJ>lx%4o4Sf*f~1L|FIJQ3h?Y*1bnXWaB_o(t2;bBJVf4!d3y)|UEt~? zGE{CP?=T9Fa-k2oj%wH<}JbQ~L1&6NGx7LZ%-WjG_M5d9=hN8C(I} zAORkiG||#!fCr>RiH{`AAU9MLyDta0!pB{tv7?!=b02uQStG#L5q`c-BBB3r0KU(7 zGrbFZ+W+HCr$3ATM+YY;e|0Y(KG!8#hE)RsLYbuEA_=Mh0b!t8v)MO>KoqIR;E%|2 z9^=TG-1$oWKFr@kfar&0d0$F`FlW4BuZD!ShPg}?MF`7jmVxNP^>}3rt8lCN7!A)3U>|pgcF)>_xP%}{m=5iF12}W7la~Bt@clv)C032)rP#0$NJLxpU zTcBu@iMmKwzvuUMEauR4H(243=>-;A^T@s5;}gRKY@$lUKOZ(?fU=>( z`?rHn15c|2T}R97#@|X1>WProMdxYt{m~Jed~8znG)FO=@e(8+DLrXA=%QCe5PUja zQP#2*jbCS?UgT%hqxHCbe?9KBY!Luvqv81>0pKxQuiAzB$EQ(Ve;jMK&p>dr6S|t2 zz}mT|u#;$L4>y_7J>cw2017+V+Q8b{QUGW6`v4Rs?a}iiNN6vhCR@>WqkQC1M=?7l(zTK0+&%2t zD^v__gTasEcjxz|v?i#GOX^hac6gf6GOb_JD>_(3F!CC664L=1or2J*q4$lI2^Za7 zsaXdGV~maG*b$om)Ri&>9sx-3QMO*ayB1&n^%!3MB@d5&%thm?Y}7r?M9rft)I7{Z z-Qzs8e0>JjEBBzVbQcbuT!#@8;$UiP0t?3;@btA8;5ooq0N^On(80k@Y6u6~4~TG40c%?ek0(0Bvml zegOLU`n?Un^b|EB=6x9@4nF$GAq8lQFNc{!9WYAD3cQt!P~ zwE_=+*n`&Zccb}rHtL^eqWY2ellQmbc2gGaH0PlH$uZoh*@GL^2XMJ87i+eDfw=ze zuy*-C{I~9HEhcQ+%%j*RP1zlXNgazO3h-NTz<*1rlbpI^?+Y;`Spp=!A znF-?arKBb*7L1LHQ~>08f|HC#@b&D~6}?Rv*y&;L18x6N04AzpY`r=_*FwM` zjT!WP(%1NX8hkqap%<%m20j&l2xOqdATy1@rvXV;r15n|Ite_c8kl%z-R#H_a-)k3 zWq^croSFeO2pLmwb`>Al%|d~ZAk+Xfv=n@MyK`e7m=c|1M|R^lF?goycl9Ky0of6R z#*3YKKNy41c+B1jz^X^PRj`G@7Xr+9C4{k0s6l8fK}#Ap;6%|EIC=eZT)HzC*XsyE z@dcZ=ie=*F-R;P~vQ%W~X*~O(2sIB*;7-F)oV~UkU(6kdzz7?esW@ZVs0-)dM0OLf zSqtc_y2H$(>w5rbA&)H;xajMp_DfQ$6evH*gfu5-J7GyHB|8be?ma$KN7Fvt<@5d- z0MZxub#*zJORtO5MaaegiY_hXJv^(CD+9K(mFwy)tM=;;4()q+kVXaH*PaWw$Hpx;v|ngkY);eT-x&zs=d&vSRy^2=%7?pDLng{iN>L`-wGT)cs;gr< z24Tuux8v;1ISPC?>Q|!T!6xwmvvBw6F7X4iQQ5LfK)3_d5B8(+c|Mw+pArxr!?lWC zIC*6QrhSzGFJE)`2H3*g%M1?A0yNtXVQOZA?mbQ9*aha6T?J%11;M&Ia|J$wSt@zy z>*pyKfNc}f6!6G?JW_sYmSnJ|TlX&N*xR%lEG_>@0HzuAzxL&fm*VKb(EuFV))a}) z`5K=Skb1!Nig`XKlXjGb9gR14XU5m`dOzOy+DGGH>t#yD;M2e{URv|61ix{AR^x@K z#yK#}D!=wZF(l!mqJt0Fv+q~FK9;MrTtaPr0?NaQ#Tjm!kv{$a#F6cX4J4$ zX}17y2X5Y5i`y-01$f)h^mPte-t0%ytGxok9MnC@MawtGP*N*CVdHLL!U9ya?8oKu zEogpm2K$aKLwJlMg2H5AJ$u8>@k3bJbU|LmNR-;l1|KXfC)%GCg}K_i+6RguJHk)OQ6*IM_O!pqm95%T{Ah z8dvq}R*$OJ&O4abcrBbU2#o>SvHIn$g}-qkKi|QCOqTP!Ue&JG_UTm*L&Q>3B9!k( z>B-gV1e#_$!98#h1NcnK+|J)6=uKP?U|~VU68YZhij0PwrC_zW#W3r}|m8F=KG8-G4b~d!Pw^!+qK7IPY z!ot9k&d$y%KNuJos8}#6DnkBGqS`D(GaUzu14ky~;OTXOd`^aAl#`$%SSe{ZhhVuj!%5E+0W`x%-KC$+bXC-^8w*$XE=F0j3A1euM@M*uoFnJTx1;4?N2 zOoQ2~D5#!vbk3I7mDic$#c|>!Ng!$kqt|=#eFT@<=tahu=k*E^zL$TinUbHu$&};B zzfC8(Dki zV$$bH2#>XbowErnY)oKnX98P?u5xhzoKG0V zn2DrxNm^-Ut^zOfNDv z1|MZ9rKfSNCm$1(Ny3usOc36-azU?Hr_3a{C_U->bp+tsW~TtCzcarZCo^7KUVGim zjT5PkRO_}Il$N~i923>iK#VNMzvcL76{Ay299vGfybt(!9ACR})xN&bCO75-}8M{jSz}3H+oWD`O zR%{*a+}|SL%SPkNTw%&x;wx^&&H4=}uGoy*b>bgBJdMKZnV30uAiM%hVJb{$=lqdK zQURbtH#NiA+V%Mj02yG>0E~%<-{J1&_K(6T!*B(km%Ah}uu&U>b+F zH52Naf~=`S=vsDmWIzpyj*n^oEC4&E8jN#(zXw2_h}Y3h;}sy<_tSYmp5yyi*XiqF z179C|qr9GjVn9RFBs=8`{vH6?)tU`-jnfXCJXK@iHvgR0nq$J(wJ)oye>hIMJtO~? z@=_=6^{N-0|K;bA5%qg@P)rwa8@mK12Mea+TI~h}Dh6LDKTnq~QIA#k>t}lmYySkC zWI!4pD<%|~S=P8gMLwB+C~w{qy>6A9UoWzBhe%bCrB8RL=U1zj zg4UsxWTn(6KE9->+}#jtr=M9Al@yV*ub^$$$wlf$bGAZ+HCubtMQ{ zPp^?ATXGqen`0kQBIfNmzF*S|4sDT6r}qNT)7wtv0rd)XPGV#*-94P3(SZ|P*<>8? zrDW%C)5Q$@%{m&bi!XG=k#6syYjCv>td}yir)AoTB}^_9FH-xztI{$76&a3llWeD3 z6zbIyjD*tkxl2_mQQjmhc7L;CwW^2PQS*2^?mjd4gm<51qO@TR%I~k0*EgV|b)$f9 zt+3^CT&Y@&8v^{=X7LFh9LBxYW4Kkl4>@`BFmimjFkn|$+f#;qWCTFVw*Y8wZ>s>v zAWV2fu=4wu1LTpFG5-tzJF;J7WTXOLLW1~ZeG@QfaR2t^v>JfA7bY3dc#k?hCIb?D z%=rUcJ#H+@jd_=FOhkd{c8aj@S7?aW77?Yb%d0w83MV%kFz;k zU4EP6(-BaD@b>`7JYZ0WPkZE3%S&EwDhmRM-%~HR)j=sf=7IpGzxexkP8U=2HU3^* z1aBOnCRq7@bQ=#{FRHJL?iXWHS-(vHvZE~#pQD(M49Msw(+~tCk;v5t>r|rtYVAT4RnN!O8nIddezSnK zF$aY=gb~ZOpz2;8E|=`U%z5boz#g!)dlvxh6=)nBxGKO&0g#MGzmG=w$&$2R0oYT( z*R>6RZ%fd3`G7hyN-0VvBm>5?F>l|#=-;2rH=w-j8g~3k;;E10As>^mH+oH)9DBeMm}f2CeVj2f%RLJ zF52ENJv9LB5g7dI8cD4@V%h>*x<=Ns4SafiAEU!=?hXoYT)ALqz+~CpDwEfNf6Hsa z-y0g{ul9oA-VjmIAs93$Roy3gEuk)uAoz6GI+NmCt8lq;mD-%8_W2&%dXOp1wpti) znfQaN1%N9>mM&LEo-Y)CkVgh-3aeJ(Sm8_@FPwq=qM0~dJO}4)%*DmB`6#?CAgfw} z``_#q_FIoDmGg1BWSZC)xLh#@Hyf6r?qL=x8+PGr(F&ZsvJy8ccH-QXjhH^CzX5=@ zCb0Pp0Bza<=*T@M$bf#Nb5`_+DJdEr5h54FR{&+*<^%RJ@&SJv1?>!g=H}+=H9lrq zg3(U`uwOqzZ_pt_2e!A~v|* zf{tJ&C^<80*`m9b88^>;Ul7I^fbX(@X%I#vWkj%>vTy-bSfGoMxgwGaXvIfV{vq>) zY{kztegZ^)KSzV~Z1eZr1&FHh#f9wv&E)&E`GKAW^Yr@FxV2bFn2%x{eJz=r3=U$- zNn|?JfrnfhXDhh}%#=AhS;CVA+`cji%WEv93l3%~!&R<>e6FX1Vzsn^N#b&hmNDgc zrz1Hv8o{BSYKaq9)ejiR!fkO~;=@!&^N=uuUm3|3Ao5*It_r)|XxN}ux7WVN5x*`A zC5;F!TBOR*N*gxeOwnANE}VtamuBJY<=MDY zJP+5(mY`I?Sy8_M4`1#PdAS{TjNyQoz-CB>sr{>~Nft)Yd zCYFUoD@Vh{vlpD)y2Hi2kE)O{w5l*`V=X(_*x0LbG7nEz1O-th1|U3~DS~jdb+DVe zv#R&Bv^0a6nJIdk_JpYzADf$-DFBlFXvS#>4a6QjddT}t)oaWN(ib!aV8&nqkkt|F zd^S|sh>>*W1$4uiWFL&7Lzxp~^#s{*1SU=#FFxTU8LUwXaJtuu_9JyJ)krv4n?s7wi2D-sVZhAK|lK{j+*vU)2i^_KSp`ne-2A`sDHF)TSi*SDj@kd<{6~@WK6=6Xxh>P+;dRiRDj!DD91)t%}nLRjrF&B%LO+fMh zcewj?g`0101V-8+DpA-!NfcUwfIh+(ew;YN0uUJ+36tt4?Dx4HWe+ytdgEFF-UmosNQ=b8xZW;1Te`z~Jk3g-$Jpy1+St6$26jFg!g5qlU%fs9Yo<{0c{}O~>BzlaQ4^2AdBL#m2oExO#Jm0BR*lt}jRNwWYXPv=~KK zgdqi7MOOr%cQ&9>th#D5>T0*)UVSE-8ne-IKL@q*W za_1r{&Iu0AU19Ik19lFksshH^+Cmu33g%|kFzaI_kF6Cj2tXaNjEsy@0Td?DDI61_7?t2y(GRh{)Iok+abP zz&HV4lBXF`d@Ru4*8=@yk{A$Xhm=q|#0T3T*53wkK~D0&-O)eZ7XwoRF@5SlR8^nA z>+i0k^<_RJToB&R6oGLT@Qt=dP@Fqr`iCPyCfd;W7&!a*8UT3puK0m< z%M{Q~-g)n17Ll&Ms%ft6SoW{dvhed{N!G&w9as2FJk*`}& zUXzEs<0~+3Vgl@(y20G)16bSk5dY6y1z@bL1srBp=woUDCnsl>n zI{}|IEj{05hA6AOsuShs(GMip335h7_5aecG(A22E%3b?fMOHIs4m$$iK}Z4=?hY3 zYQPyM(2etY#w)5j=K20r0OV`$On-P8*5fIF`RFA=hNGvCVf$yAdQZDKsiUXoiIY!Ye<482E@9fZ=-fo$=MIVQ6SNho64AjVG_q;>{n=q4`w~P797!XAQ-GQU36c73m&qiO7^7 z3>-BOiD}7jk$cMIM$;zTd9)4X4>zH-Wdll@*5cZ|RVccu8 z5t&Cu;lQzpC^$U>#l=feRl5cE?{mNSJ-FYJgU04vsJpuzmDQV3etR9t@2p2n?N)g` z7hk_VfxFE)IDc)q3c?&avk>R5$a`uIps;u+wq(tQr$|r>>knXK$Nm|8#6Pn#w5+hS z6o#@85csO%XfhH3qAOMin%=#8E0F0xOGo=X0P0{2%g_iwem4Jy2D)ZNrYDk;k`xFB z3>eUE1Rw$V8vu?UCrV`gDO<-r<4QAaxfK~60;Aq|h9^x+sxY;0FKpyKazMYpXBHb(yFW^fR-!vo4 z2_s`YF+RZu<5T?bX+}6Eh>aW&j6n&$NRIG8RGU+3cX{he5}VJuQd1`7bq;2S9nJtz)+2PGpgIvghF?<~dnJBx6>VxeL{ z0*s)eU8!5H&d~@+g7Zf6I(00nUx6!C%W$)5Eh+?f^}=jTtvR?a;A?!aTRpE8|L?)0 zy|{NjTfn&$x9BTYtjF!@ji{;Ljw>b0apd$&EfLnpt&@pB?)D{^qV=CFV;7x8^P z;Ofy^d_V!8qp6B$vc;f{jkOAvPL?5G$#esT@}@BjAL_ zA$x#s$Nd+3asTN)1-k0SOx$6RrBXmzz8WQW)}m2Bc~<~f)35{OwVTxW%Qu$d;?;#X zc6NpUZyE|N&BKBGnb>=DCN36l6hH7FD(a47%!GJE#)z~MNnq!|F2p_6iU>z1VE}hG z<%5xFcqBl`S_BIjvRk)q3Pd_--_d>#fRw2^MWI=cz$54=MYZoq@FyoHD**Dy??Mm~ zfSpOu@dCifQzodui*94D*PSu0<(w5;j6JpSU6=M=6^N_bEXW!wDJ8gJ|hkT68uF1 zJ0Zm18k0XsMsv$W{Ovy*1%Q|E;)enyLCc!fpz>iB>Yf}I5bnU@O_PwA5da4tGdPJH z4@-!EN!E#vv3PqD*6tmM?Z-x9--Sya0vtUv zT|oDlu-_b9ELnUXpY$wWy9am;j{gq#tP9{74t^ z>PigbeF$`QzwSu(_W;lse7fr6U5#aRhiBsrNd7T%gp0Ggn3tHhfKSYss)Zf#T$OrJ z=IW%z*Tt1hl5LeaiPUuU>L5 zl(1iF5M~UG#e%WPSoleQET1+6%Vv(iq8TIb)s!KaJSr7K`-dY@m@F#H5vx~B#*?ST z`0mG2)HLtI!*34beve zE{rz=+m4OE!fo-GwKhy02}TBE7!76QlhTy(^J@J{B~Qy9Y{dOH`*EdwIj$?P2?+13 z0gJnjoSlwi=R{gwnuDXla)qVKP;qZNY9C~yLV$R^axJcuuE6>0i*W4x3}hc1kLbK+yG#RAGa|vJgEZPt2bkG3UWn^rwx+)3=(v7oVQ}Y`D6NG>EwY} z{8>7dOdp2jbH-xDoR2a8i_!RWOg{y}eo1~bCXfCqy#^J!} z&vCYRA+A=gL9u}ELg`YRxG1u=Xbw(Zo`vmuhht05a1>mekE%u{?vJA4?jc;iwGUs+ z%7BwwH(1CQc61ge+|N-J))Igj8R<&;(GMda^a^&pkoNZgs6j{o5^#p#j=74Uc2*rj z5Yh;80-kczutdpFsI9@LOV;QM5`6k~vh~cFGgKZ>gYWI8y;1E;j+l=1!hT+GbM;a_yPuzrDkt<7 zS?I;GGga+kp}HiviMe|AKu}~K3>xEsS&LGzY1c$iO`GuO%>_LB_A+kO?~#drEiT{M zhU%t6_~wt-@#6a;Y}!2$LDAh{W&eQ+)Y$gv0lPlklmtzV3P46uBnGihO^7?$IC5kLL&M7hc=}^LTHYK%WlI*W zRG&3Y8qZoqy4->&16kefdlCj^j%w^xcDUWDwU6R`i(WSqS=2f0VbVe{_6*s*tv z_=R(2CfhDE*>RcOPGZNdxrj}4g_WHNoRuHIErYG$g%v8DPEbJBl<`*wOS>rYo*KNf9GXl(G<8k!-XE=CjlE~08 z*pxj~{J?QId2uN!?;XICuZwW4bRQ;6P8JsI3O7$Pk)W1}3E9bbP)6E20Z5=2mzQlO7TE5;k17}tCnH)ZO$5?=d?@3PLCGIeZEp_$cKh8j2E{l|$UFTN%9?lL$NwnCkN>>{&wn|G zM?arN%j;vf{a_cGUL8j5v;BDT<7qto0nkAJ80_iP z2Eb?~LDQoAkRIuSL6M#q7VU*`iGE6g&K;GAMHBmD;p8+doSLD0z(vzXVa}A{_-uR{ z#tvcA;0Syzt>1H#qii&MlZ_{TI*z8-M}!p*VfXPx zNFEjhd+$C502bCPQvny_Y8WQrDM{%E5`+XKgERC83B+T?(@|Kx9B0dyptxbPT1`>; zBu9boV%2IC)i7PLRjsPeE1ZRGhsWc<#hHeFqjl?%cVRjR?=N6nT&<&+jE?>uLm4N^I}6C@V2rW6)ol3B1CT*7$F?Ag{69Af zIJ%g^-l-d$J-Wg#xHkgBdm%2x7UL&}VN>SExOQtRo_~K{^_ji*dOv>nA6M|?&jqM@ znvL3*xoG*}FdDx-fM;^9_2;8_{kIGF`fuljaZcg&f4hJSca~xJ1V1?0cZZ!>PuQAv zg|D*>5+ek3iQx)>=`jHq9OI9{0zL*|M#p<&5(6=VqcD4P0%ng-#+RS;!>maIF!Pgv zm^yX@OIPV;AKA7ED3zkxy|%X1j~U>+$lt>v;0&8ulJshW_aRaPjCVgVhxt z-WG_A_WNA`>Oe|IBe)1YChJ-6X{Z_fwQ`2wd>;ey^9d}bC3N#9Cg~X+CD0fFWqBIG z$a9pXOqUEFJ{)7lj8ZE$^u7rMp$47a`kDDa4L$P<4q>DZ)se>{g28}M<>IU&W##RRGxZ94_=Lvr@(Y|QUy9jFG-*9zq?}cgDed1$m-!}-^hlXSK;nB!BG9HIceSr(b zD^OaMh39Xs;Qo^fICWtwKADmNhqhJn{z3Mt>y?(EQBl7F(9O+V8Noszy{ig_;Nyx1 zrW^QJv!RxwzXw3F8Ud)IuKeGc>6ing4AoUSjD}KvGAGC)ZFcXbwAAh63BIJhG3~qW z#KeXv5Dpxe+}_NW?C9suGz0hl^Li^k$dJ8ZuW~M*dVemjvpk^jUgwOcwr?`&WZ7w; z=N~msFSZZlG9n9A0~!(L+*ui^W>xYo1^C(Gxe@a|HSKHP-5*V(xHCI`jMt8uMy zEv^WQruGdI-_I51T|a>7hbC~d6{ZdHXk$Qsq=kE;e~7cHgc%TEi;Pf5jEr)_m;^73 z?;n6M1A;KTUmyl2`D0+bKT>0TkP_>Sq*xE6B)VgF&O9_fIEm(`$5bUu!}DEu^y5A} z_+ck*KU$8f_ZBK5tABM+e8V%yKDrEEVRkUteR?9!-kFcn<#SL__9c!MPs84e6NRBh zVbj43Y(F*}TMiGw`n_q$J~0YsN@wG0?NXd9nTegpN8w1(EX8{4D|+Y2Zo_ugB1yTv z@Xq61*mL%C>^}V&b{w664f{u7i?HGTi!;<(!*jRhBUe6i>)ruayR$Dg?-_(c;v1G! zZ$QJ7JUn@GPAL62E?(P-8FPoi#<2@5?YhW}=?-@;1gXDP(0=Z~2L;x7!kEqxn z#3zL#Wk56r42s9V!3jtol7O)j24VL6iCDAoD{ReLDz+G#cPzrpIb#tT>4eA_caz~{gngKgEurEbplN=Clhep?&*);Tvzcn63Z;Uf(0(-Xl_))+E6 z6pL4n#ew6CQC71DFMha$#;1pHry)!3f%Pb^T7{c+Yf#>_3D+Cep!C58+3`#%e5ETAMA=g-A&Nd zM0`S#qG7&HNJ|LA00Cj&P){TTIw8*22JtdE^bNGdfN)0)igCt}zTU`4@M3up#mRdy1V zZjQpr?Qz&~ARR}~PsD{AvvIw86-w`ILA9X1=Fx6c-Oo}H(DNmWarDxc$T>O@JC97j z;d9e*>e>PvIy)VE3qHf;^5wWG7xn1X$yl44i0Lc5@Z}mmY(12Qb21rJiH5Fwx(8Jc z@^G;<6HC@lLUf9c+SJ9?)e8P0e&|0iS@q{kPKg&5i4ay1MsjmddrGkVJdf`(u8ik< z*rZ8s*up9sE_>ZelwpRO9IJ?-j-*CTf$mj$wFHi9aLlG05fRyBc=-)2` zX#+AuiVji1m?1+3B0VEXwN;N#3PFSncy!-Lq-F?Pj!4CzQGL;GNHpU5`y(>h9jmr} zft?2z;QWnD+}~1!tF_;M@`%JGlTmc1^2bad3izC<0DEzP>CHV5e;lRjtBn#D>Q_28VD< zvOpE^(d`<7!ky8_(FCr+CW!3U6BB2L%l)wk58j-T8}&4*TKAxW)l_ox);<<{l8YLd z(5oM3t7;N<*Skvh=IUJJ7tO(?(j{`At;N-fl{j~Ekve}=T$}v`laX^`qMFFhlq^7L z-A0t(-Gwb#(?srCp?fbASju&9cJ7TJe;2sRMB(q_hD0uWj+6!g8;r)m(_?Vr(j?L7GjOAF3HF_sfaB+8;!4>H75%wUwO%FT zcOCp#MKyWcnll2~dE>F~_+(`68-s1Rqj2i-S2DA$L)n8BxKuL-IcJAsVP**CZ1l(G z!vn;R{8Ak4ov3FgRl* zh7V%{UbZ3}jFDsdVaRat1qVkWZCE1u4^I(GLfWV#3>uq=VUrRudTJ6ro|%N4{6#o= znJqlFq3-zswElP;kN$8%X3ryX!{(uhH)q2RRNmc!x~44D-`|PSigh@7{!3iFxePb& zi0mp6m2!R-cJCjDWR!yJT;ETOy8MxD%!d43C*cwF}pR;p&z5Hetaa=B4jzam3 zyw{j-qkqU_Bimgz3v*Vk!=)Qbm0hn`D}S>?e91jHdTJ>K4EBbZfUmci32f{>Qu~rH z@y|(wElol~{nWmJfgvvN54M9}kOh1K`iSCiKy;j8g?qoWI8iwLRgSlBQa{5&0AF{E z87B%ccM(b}_sDlTh?ZBmXnwgJP2X%0KQ&WWaHjxpr}%{87k-nk0x`3eje^Ne0ovBn z!?CeoFxDSSS0LPVaV(CPeu0ZM^H9<#y1H4w)wmqD8kVE{-ZI?2w;UDq%S5ZM#ZK|> z@=i^~@%5tPEv*zI0;>mT&2ggJ-|Mb#Y2-UTl&t zm?iRJIkq1kh}j$buqrn}q{K8-Kg&kVvpf`w)0%x`DTYt#2WNlr%fycfiVQ+Z|HSsb zne?L=*dQzE?XCYl0Cv9n?)w19O&!_l&c)3}-F)0w)WyYJC7S(xMTRD%VdRMM7&Dqn zkH%uc#1R-jLC%d8IXW^<7%u?>M#c;H;xP1+WK5nj6w9_u#qQ%vaqRMXTrA&?Yqgmw zyk7k*7gf)8;nsuAxO#UbZrl|=LT<=f0o}caIe7H-VLbm%z$wSNmTcT-DE`ecJQaKL z`Y0Z}$W!mDYLpxCZVsk=DqtTNj;LUnKIyZl9vnqLB{Wu42{&F6#emaF3`Q0pi zB-mPBOFPBs*R5i3o{+UqLm}z>DNoKVDCOAsE(jt z)G*9nJRawZHp%zN$BQ42p+WrB^5*3tn^&Xq*+!9|J5(#r>L&+<&{kr`l3_5}UpyH* z&W*zQ6B$^Um#S=wfH3dsB%G_9gDbTQWQJOTJ1whG|8z5&pKlYLz6JFU*2|BS*`{=% zs&1)lHdMnjKHsNg=ylQX7jDW$KK%u@?Um2Z9;`sPXk8MPZAw*=w5WPHiUrVB&qXFY zT8)BIxe3n<$DyK$D7w1@wJ*3W+J2NZ9>9q!TQF_mICzJ-3Ip0H0QOCdZ{M+$0AvE2 zGcVg$=*Bt!TL8!+XixETT&-2#8MQjY)=~T=PgUg+7n_XH0=_Y0#t866ie+HbxD*T- z5rwoNfk+ig8y$f$pQm881QpHN|*jzuWa&1zfun*!cSiz(4%gB7FVxX|%pN zq!_W`@g6zu6F{86>z_(Q5o|!ebRU??Z|&N{1SVZrre>-3k>q}q+|0+#-LNp&KhQw{ zC`uv1QCN^UN^1lJIU^*@TXow*)zRJ4S?xhTa%>!O^X95R48KR+!)>^9TPB;b z8KUwQ$RxTEcVF$32}SPbqBU5Z^%+bK-k6G=7sn_DT)saUi-mnw2?%$b9ESac;=5g$ zq$KF&J0ckySD@y>I@GiXwbzReSG^RK_qh|&4&1C4`FVE}${Mz+cJvJ|_Nxk+lh@{B zPr(#q9vY9W`$uE>wgFhVW1#X6Z`5<+msPl0zXVtBi4Pw>W}i0V zKRLQ907gY6VCYbGxn`TfAsGAdK#U&W7sCW}>B9o>>6fXh8e&7vbeRcP<7y3O`J-rf zm5=5(CvZm?uHs3SfNwi)KiY_!Eh|(M?PAp&ToC{GV(DU4e_JLuVyS?TwY5d%t57KN z?DoB_Y683?N~G+rjEPKy*Q?g4_gt@7k4FOX2M^DnzU~N$ine3#o-Z+XZaPK|XZv?y zMW+vBBIyE0cBB)zW+OMNmAS!pv=N!kHJN$`W3rwl_v;X#+Bx(_*X|~&P$D+L9|6G* z=wtB#99_HOlgVi~aC{|R{_#rtzLVVI;Q61=sv-^ot?~6C1wigQqIc&a2y5l_=GTYu z^oM*E6{U+qcc-*wV>S)6+lywIgdV@n$1nfo4r-h7F?+#ac=+~2_uc}) z4@^{}FK*(>7yy}^X%aVg8?{Q`FUVGaCG73TsI6t&j!Q18}bmjr~DC#r5{h2^txRe*Tq)@)oVnT|6>({S*yy~nKcMYw+=v#ILoEYn{oH+U22BE z-Xws2unJ|Zs}&$mmd?VBCb@a)x1g+PuK@d~u;^R?peuUWegt>95b;To?R#~znuGvk zj*EaHh~CG7{~Q1Xd@fch>~Cvlr8>1aI=H~Y%}0E}AVfySs-7`JhYrLilZIjXm!mOv z(HJaTJ{t3u4#AYnH9YyI5C@JeLH|L1s?$O@VL>}~K@;|~ zuwc_KL+5ozXG@u2t>Eq@*TBb007$cLYXu~z!JW($TaI<+6?tLTU{p)VcejIHweg3T$Iz9I@MveR*@bb-upj1J{0eOz>R zsghaei1;m zKLbE6kul`V7<8}}AJ7r*Ze9rR4?#qDj98S~KVtBZRLqz)4x6^k#*u4Q3*bP1|~B zI;dcajh!j%9ZglUT$Yk??PhSeExi1DAuzm;$j(sg+%p@^kIv)Y|E~rVRc^%XhdUMc z_MMxi_8rko$AAmLNWk50+bWMoc4vS3hf}yKejwTYX7vVCia)FUKQbVFLLN2i(Fi=6 zferWLzR1Go-(JG4>I3+ER+?gFD_f>%EDV#0m3h0g=D6BBnyHD!K_(r)KzlKVw#HIU zhHcQJBaxh(s&c#`A%P;h9aU~~Kt?cDZI~#&;70Mg<^MmEF%niUYZ2Gr*={tv&Qm*! zmC0oB;QKQ$*>-vaGS81j?$u9l^wu<-uU~)?@yDuOiJ$i-6Zc+=Gy8O-Fwinwt6m^J z-%K38@QFx@5y&|*0$UD_z^20jz9ZwXJ%6Ig`R%_v3&*a{!?BY2*mP(tR^$xE>OI4- zE^id(Zb`&dye4w=gfMGi%|f*Pd_ZK_4)HI2!I z8|wgA21p;T>gf)d8FTUQ4+ru5uSfCq-{fZbYo35m7~sujR6JXWvWJTm01Io`9&#>< zMebK{H{%C8akFu&+Tn_fLAgdbS0%EJ4V16Q&CdNkiUg3?>eiyXUerd_a$GK3Ad*%5 z`-*3z7{Ph^f7w zgU4T=mC2?6E7yMv-@rcd{l#Z>v}kL0X|A@cqp|A(LCDt}oXkXqijNoKtXkmv2fC@Q z>oGA=NKG{q-G_z+t0i)tKDLO7_r%m017#AE-zBQz>Gv1#;!l^*Ad_VyO~&SSYnGZ| z?#p*I*?3|wR^+8%)!_lyB+@hI^2az`JqNd+Z9vPfhUZ)H^5^}c z#bv;&7m9ze6lY{04;0Nt=E+G|cW^W|3K+A`PQ~$?3vs$)1$LgAj0KqkFn@bLY&tp~ zTaJB<#ln7bw7CiaW5xo8z3vLT!29%rjyUW;~ zHxF(hruabgyR#4L2*rVRcTmO1#zo7zK`j}~&`;D5746mgLv$C}(Y2ciKI&?MZsN1_ z==p&F@goIJzK_gDa2cum8V+hb6!I51J|;;I6q)IHgTlDZ|haC0Uum4Ahb=Jl#-qw%TuTf$Dw&-dZ+x5x4Fr!#o` z=A`&B^0~J+h|94aU(Oq$dbwE34co`OtH^M3@%0=L7;2~dDn~c2*R#P_iwEMwxn-zo z*ry_p^{xBGFWrsr|8^DM|L0Zw@ZYbg3%`%rOjmrMwIaJXOvGDd`= zr>TjWY@MC$R0*P)nYl9h^scUkj_Yjb8yfC~ut-m}HCkjeO9w-h!eI#{gD~tv%N(>n zH>SIgk+#=XZP1uA9stXzzoGn0^g{&Vat zoQeI{<{?iXY}`p#Y)*sQ1g` zEX{NT0Z2d*SOgf^j({WZwDs)OMV;sC91JZx^(p|pia-}U>xHj|yq8s53WC))o&r7} zL*phHxQIwUjGNF8IR}=i78|wAB0UQ)6a!}cWpZ1E<*oms=n-svB zf5=ATcLKg|x8v?N1mH$gzg#aMT#K4lq88qWOnb5mw;yLKaJBwYAd}?@dCxw1uds{A zoH}9HnpgW!BVez3u}6Wi>Up;KQv%4Bn{nsLpGG`-xT zwvww8AG7I&_*mb{XMb}X_g~~=#rnyrQyG0<3#)EwTj;f7(lMF#7q#S+q*9&;_A6M{) z|5+k`e^8Zp5lq_1ZUh>Q%tzMaIZ9E2k#@H=M|EUieddMYWw=$l8@HRbChn=%H9L zHo+HDrw>K${*^*ha!p^I6Qv>(z(es#WwLzy%P};*$;I`C)i60w@)>6D2*;v530QGJ zKzOJ>Rv+w#6?^+)$I*`#n^Ui40fEGfkCDw~A;o@L|Fk0PT4cu)U)1ke6*R6v*~jF>Bv4%cOF7JpFe z`DPV_sd*s)e6>|x+a|~DX#9RJ9{#Za)vxx8O3A_9Zx7+&pHJiQU(TTEr{ky-@YQ^C zKpkrdM0s2#z^r(lE1=Din}3&palOpG!X}T`qgB}VxqOGGKOaHMcf!W651_1htFYuI z)QS)FOfUWp{UcWo3xq~EBdMPklGEI<`@kGrxW@Dp%gRpT z$G={}4}U!)s)-VEzubVC?d(S25pQ%;dlc|^o~fA=7rw-qqWLOKK?zC*EG%7$qVi=pC-+fJ^Bz2YbrHu; zZ9vAbC?zp1E&HgxH1yx2qY_k61^s%S3uedlNZ&U0^J`nR5~el*(hIPuc*4Vj5&Zwt z^_Jmr9oZJB@4Z8r3CDI~$IQ%@EHg7RL(G2hQbY&m4_Q*LEZ5z9CX_Z0S|VVw8@JeeP(c>}-DF zPw>&}y$VutyXLV6LFV*kv2$jvnOdJIt5AyC?A2>!-8Aw2-Y6gNM<&_t5hY9xfmJCh zt_KOeUSFg)IwG~+UY!>JmJI};tef38arcAS{(&PH+{^RHxVO7jG**{Q@eHk06+ zuhJf6Ntvdmlp@g}1I|@jBFNq(B1MG>H8kg8*PeASFu8z-dEO{)=Kp;fgPMUrdVd@G zdQ++tON_V|unFhPXG5C+Gzr`U$JqVwe0U7L$wY6;DcA;W!%fQt(6L+y?}+`#DArLe zIqRwdpx>iQa80@d+vw9U3q3+Fxes@I_q=KMf)0{hx8b~{mTG!lJ7G>x8V4MJp$9=~ zzYlu0JIS(V5tU_t@N{kXC7dS6JWY=bXb%6lJGh{`l``}ry!*)rj2`ow zHw9sbOD+6#QR*;r3226w>j>Kk2!;9NI6MF&EIGWC=coH641;f2&W;@Qu42C-0FF|T za@@EHKQiDHwNcE+pS(+^7zbnXvq(s_B>*jvl4pqGdP{VW?W9;w!=N9UUIY?|LG*$C zlq4Q1^CzdlmeRx&X;tRPAYilWWgkW-zUE5F#`mygG&v%%$`T3m&6(oe2(E%|FQk%T zVoOc%pn`wf?4-_DJqtlKTRA~mO5d5^ZiCDQ2GH8Ol(g2U8>HtW6Ib?o^0S>$MX;83 zk_iVw>A@eO{fh^P%D%@yxf*+pX<+}Mt=PDE1(s^ez~W_-uyN}=T)e&wX0|8jbA!>^ z7lDo^VdxwTMC%hT)c4w>vdxUL))aLEerhm6q^AH;Jl=4V=W>2{B7S%zQ~;SuV5XN0 zB^?Ox#N%~8i&TRy!iF*mD(R2OIY#QSq^n6SBB@Ix^Phz^wn!~7z|*f{(LETWzURR6 zLew>9;^gUl48m{W*S~%nqehOw$D_w%(e?oV8ksKO?+lG2iKjKk^$GjA!aZ9(oZA0@ERUf8zA7}NfkH1?!axfW`!*XX=T0Ik9{_Nysen=~@!owVWl+ru*eaYzEFJ8cl zo!sZmf>PNSC!5TbR>cm-PM1b@NUyTv?{+|TEjwhLbXYfJHMk&|%$G!PrW1T+PXbZ% zG8~1yK1d)a<0{OM(m>F5d7^@>SWUTF{xnEE&uF0s?Q&xDwL&giC7G}N>o9bE8-==O zf%K1L!XAIJaVR=oC*tuBS!C!WB$e93!uvF?=^w&pmyY4+u|3$lZ3WhBn2-I3SHQ&T z3?kx9QPUbq-xY#}ZZcK3E9!gbce^c7(`}CGE^E~P2tWZ@UW4<{01H`3o=eNEAKIhx zQJJOMeJe6kk19wTfeBX;O(v5`cmZ5fcOcprASBC2)!>w>dp}N1$aw*&oRdMA(t2mq z(hHX~Sfl%S2>&LCEPWr}{jmk#|6u^}38C1#Zx_AaY<%+Z1ibg|#~Ag|cubl&gN!%_ zlP6D8vU8cnY=UpzP%4_%Qnh?c_K6e_O2q?N`#DsAOG`1LSdr;7C({>iMo7FPvZ};m zKTv~CB~%?n9VWCB78s%Jw1NO!M0vOrw_R4kG;k~26OSP>{~FTj3<-qGu=3jkJ)0%4 z_TGS?_+to9JVl*-1}TL)u#Y+l^Kdd>;6B`R-;7K4YjDm=6DLiVvMqtW?=IZ(*vfM& zaMn^277_gWQbU9n^RszDqq5B48Fd{|nZ}IrUX(#DNU1PE5vec=fJBSf9 z7V&uwxS+QMb2L7}M<4&3K>2_G{8*JXm_B3t8vx20IoaDy*i4o3`&eYC)E4~(-hTII z3WV?C{QHqortmjve?cjcKXRn37aU?hStB@k@=$4r zG2`ALGt5VH0y|)9Br=O^keH=|vL-7G{x%#{U6f6fV`Uv~sG>|P?-YOF#7Iw|7Ml@t z_Q+(k7w~0NlL@M1szE%HJyK=U)MnmL{%!TkF!cWU5gz}Yk@d?6B-b-wwK=2Y2|*+) z#9v3LV{W%69#mN%ELRuFmBvUYr39_GOAyL}RfXE(O}d)y^s2*ktpd1 zq*S$~55Ea(zq2s3Jd0a;=W*%EaU3|jfgWlxj-OcrXU}WME%ib}Cw*FX0O|?$`W`1V z^*f?%&=FlPUC{H&3nlz+x%{0HWFD59v6(X1Sg9@X3R+w#hrLzmnY<@m-cw>av_)R- z9mHqfL1K=fN^#6Cw^plf%9?on+Po-FDe3!yl{~E>2nCoee6E04VS_CGuVx0h)PlRn zDz?JYFEa2iJjOr&?{oa{hZl&948oqhyC^^Bkp(}+#0g}*g_>A6f4M4~D0}^BteB&~ zr>V6NS}T_gZH2ySB>}fWRYs5!m9hw1)_X2qyii$@iIc|Sz_G1}N%cTbq8XBl9ntbU z0?+@PfVS6EEH&B~agpBamdh^ay6uI5=N=gO?uA|CQQoZU$Z9o1ewP)(az2BZ-v*fb zZ-i^~0k}sUf>#WIlzA1w+1Ftodz7AUH`@+qJFmqdy=mBeV3#r{0gI0gvT{POGt^JhDM{lMM>m9T=(YNYz$&P-29bygLM? z1>y)=Gw&nVdwv1l8$ALaj{1cvQ!#zkCn`VlqmjQ+V3E8&l_)(%@--j(|s)E5+=xJjKid969~r97(I5B8ff`o^w8YU$WK00?^BC& z$4+nQNPk@q8 z9goA+2%g9$=_rNu4k)OTW{>P@D*}#eR&JssX*!iaPNOaI+8xPuWQ;yC9D!3SwML!? zBDd284=V3bhFYt~g+1;l9$-N0cEh7a8^o3vA}sqRnMDV&**6fKaUBVKoW*-kLS`&) zb45kF8yfojQPJk9ifg5om?JLh4noL4p5f==5qKSruG-MOa};MUuE+VyYhh}A6miL> zsBH-%8%bK29g6F$P}*ota9E(J&la7}ozVSC%0|$u4)`LUQag>mCx!nzgYV7d|1a(K zK)EnyJO7vPfZWqoOmv$TbQuhk0o$&ITO#Bn=_&@Xlc#grB)d-7p#?IZV**D&0K%a=EOP5i8 z&LJ2lQC7}VB~Ub12>4{9RIMK?p>Jf{fCcjxs#>t?)~&{djjIXH#Uupwr77>>n%)6a zcEqS;lI&VHHLceFT`YaSKkug*Mw~ZW4bk0&NEk?7994c3vKZ)5bF) z>kZu#jv*lZ0{qg>A+B5(d7aeu{O73+<|yoTL2er(eWMi~)tVx?h8?cX3~78#+Jo}D z@Jc!hi=f?MKgFoApAfJg z;XTQHlm)tc&-h6b`G00&(u6sfH%CKB7b&?ncm4#d-AI|T>J#iaJPU4qpOF=uQQr}Q zy7pkQLnx|R0+5zxjjo>i`0cluc>Vej%B!4^k}9i9EKpB>C(Br*m9^WUfPqS;C32h1 zP}pgW@&R_PCvNm|?gW?%vfJ!<4J{bRjOqOh5M822|7VDYyoRau;sdSe7p;&|Z$`gp z#6V_%)Z)8H&DBFf+6~px>5VEH?a)n``s7svzk?eJ=`Ay4`|)C9^*E=*81bn$5tniY zVbS{Zdxvq;U?c9D?|^6EIm9L#s1eA73>`}C+sG)^M}D;tL1==C7E@HVn)3HpqN3jo z1(d+qWZv{fOJud!ps1U^lb*Qzu_tn6pr((^{>&G(FZ@w8=%b$JFc=roqn5}#CR-W5 zYq`j4@wbB^Y6_PNLiCwP5?Ib1)*g?rY3yU9AL-eC^97P110DHeeLi5T8KaY zUnRc#O9{UFa}`>L8ZbL7vwiPtK*344m)wj zLpu0%*o0q&Md)dmhaQ4+!U=>GT}D*pH8?-q3vKsBxZ*UQa#E9CZzc4+H^MAzH^Fxj zE^$W`0B<^K;)2;coHm+?6L+TJxWQChro1)qSPR$qqlhWFP2ic5S=q7LtnsMclpVv6 z=PY>6hR@A#KmR72V~-KI8xdWs%Z{ZFPs&}ph=cHXbY7kFOgar6yA3#WZXqVk_$B`9 z7b6Ie|5oWj(`F3qF)(i2m>&W7p-QqHHCpC;2*6MNM}hFY59tNpe}@44kW!Xjjx08Q z@+1OqDyGhyK{gzZk3Su&Ui)CwNV4Q8^_~e+CS%gnSr|8FCT7oEikUO#strUWQ$lk! z<;sc=aPY)zcm!NPa<)10E9kk(olsokfzmo3c4j9uHU{9;%ZK>-bt;;gy-`qTiLzQd z)RQ60o9)rq>xtTa7u57Qv(u8DdhJlsL)q1B!47QA0Oo+)4zgsMEizlI)b&fLGbQlu zsi2nGVy#{;=ysxlaa8Y1Z6KRcerA>5BQxJcN{$XvvdMtOMyQ}?Z0q+y_h6s`V_w-k zq~+@?;1!dp3WSO2VPjMD5D=jaE9WCHFy9Vin_aN;U|;b&1_z)0@VS2i;Yn0Dg}Nx_ z_o$%HEG7uED)f+8q>TXHzhDOT$imxi?z?=?qF#Dj2AsqyBXusj-Bx{XX*ql>fh4Wf z9_j5a$m(=Q4kdMApAQ2O+4@NkC3G;_zl>4yi={2RhGg)@-as_=1gfQ2Mb*wj0PG;M zb_AenFcL3*oBZPniWKxbdqDph4o8p6n7^3!`=kF>1AEhFOvm);GgRrsp-oa}D|xwm zxh6rk1}n8TV)d#GSi5GU+6z)cb1}45&0`>*kA+J=!PY&q;T3uVm0ba9U8Cf|Dvw)k zsYZQeJ>&>|kNwd1I0nnmi?ENrM5%ZTMwE*8f;Yo1ekZJBH$m5TG0xje#%c43^m5a2 z!DcS5IxNL4x7Dx=*`+{eA9)bhY?t9Pa{=5s=)14OdDD3~Ych}L7Qiw35Yn5>dBJUY zq3`lSlilb;{L?O~8xmJ$fbcwRzV8Tuyb=d)PE?Ntkn*~`&o%x8!G0WWWM22^v#@qQ z%^x`vpN#)Geb+BkO4Q`3GA$v4F_Q?uq2${CU_b#Nqul!+{R;1V@GjmbNJoD1F~*D^ zr@%FZ7k%2SnF@>o!qH>LsMkl0`9wXRJbfDf&m4^XcsgcIUrYl&Po*Kvobw5mYJRFJ zdR@7_29b&Sc$h`$SV)gk!bo3DztTjHLKdv3bijyEaPis4YtTBGevBg9y~%X z!OZCp46Js*%;g~5g3rJ=`XYRzC{e>tARz8MC9XEod2e%Sjge6)oA}VImoFh>t*4>#aOyT6U&#ahNgyWL$FhA&MKp$ z%U8_C+70utdi``J&_Z zcjK137PQ?KLEmpFZn)3HMTd#FU^@Y)Ek4Cb({TjiR0YD%Y!*?r?uK9L1$ZW&g|6!w z+;&<6Cwe}o=wr}xlZ=<8xM;CRJ(muWN!cM6JF-wmMQv$vvE@bx(0m_VfJ4+_nD}p3 zM**I&UTDtsH|K>7gHo=+FY*@dnC!=)6U!KNrjwc8<;DA%8UdAr+2M3C1;CGg^B(~G zVB}krmhY3@Mk$beI&lIfPMxCIZ^oS2iU|dT0!(4TVTKfNPM?WWSwh-VI z_Bbo>RXp`V^>bg<1cY)vpPss`m42(q4n?(Al!*j7!7c!-ZgWC)2c=OprGL>KB9 z&*BPi;$gWI?J`6`hXYEaR_1e=9`RA%Spu(j@;P`tJgWdGEviUIDIe(*N!7+krX_h$ zZH9P$-z0)Ct zRP7EV3;L*(yULcK74_LAl8{c%*%*aedI#~*=(kj=-JCg6^L3^wge8M}QWR_UY_j3J z1!~fM$zm-mTdIW}+xM#dKUS_@P8m82Yu3-j=I!%gVRwOkSjy7-sllb;sTTpFOtDBC zVd%FHdY;<}ynQeY*{$T|1)CXUyom(gG=gs|uDVQwuHPJ7cbkE8Hk0_;G<;?^2WKtk zz&dOnJQB_jU?*_ba|_#6I7S_XbIeJ4!dmT@s=VIXO_Nm~Wc(u&MpSPC&_eBrAwEPRZP#Elo`0Q+ zqGCIAwguz$mnjN>t!;knD1qpDOgTjmRLgu^wg3iyheY*8XLcnHkGI(G0< zL!=Z?f>xQ5O&nFrsiLGL!<6@gG5FnusrONs`y7LB(k)6`dla%$XR&i7mYE?u>o)vS zE+g>KWkeV0B8$PIh@MrxqkNafFN4wYbr|YC4^ZbsdI}KbDC{SX1%UEc0GL7mrcfC? zBKryWGMfoB`lkYRYFRH>*6xL3>D*PeYEiPt&aTJdc=~x9`kwOo_5@LW29Om)hmyEE zyiigvX@RyX2|cfzGQS}JO`Q+m|eCg!F1*5XCW z$$~4%f-A9g>n1gO9+Pm@?Ni(hnGL7pb+Cw9ft#Llal>sMZn!Sw zd*>1iI~C}3oHwwoBLl9-O@}qmbKOL5xdo>U7ed!%18l>O!2986h~$k;tTaJ<8BKeI zF#&0eknC&9_X(Ry6NZ!Lasvc-x13htp5Hb~-P1~z-gaJ%OD0Qj$9fAKJWnDz(G-yn ztZ1SSV9xxH)rOv9#t!FezV{;lg#mx1*iYJr^n@SKAC8oggFlg<3Sjf+DIf|6<-CAU zj`Cbyo4;rY=FVA6X)>E_vKsN4G5Z7T+&_;2;VONTC-N%nRTf4nrA8%vNqwg;BdD2Wp?X(&Nw%4zfL`ym~?) zb=oT*_|qmp6qzX-jhu))iCIbh9^F#?;`_ryP~Ykk#g4td3BVg z^_J>+CV`hq5a!gFtLG)+zsQD?@Lfm=7m#WI%b-)R2{{YDN4iL4kV$WFA;3M6(d3N8 z3QGddn5<3qB4ZU$E|v}W;9<3i3LNr%1bhvzf>eNz=Mp$1NDTQ^a|OI1@R=e_GJ+VG z3c5Uz-|4BCuTb(^TcvOlo2=yM3slM3QmUh>(H)&+yWYq5(MI4^Hx8w%wGM=!<7p`B z_!-4@3_P_qYJ0tES;X7qPkRuF;0QCUTsK|SjgjdrS?f2HWi@FiFLZ%ygT7Q1;L_As ztGwWb4O`W&S6jBOS9N1nu9<~R+vX8~+9+)Zp#(QWa;e#yEFVcUcmu%OZX2NQvmSch zD{;kf9>F&nyLEnvV`lH-md|A9_)Ug=k|yp~9D-NoP8fwOr!-v-U2jcXvReoP_f0rq zFb@Z{XW*i_2F{x-$L=c=aNx!aT((?+Jy#}Enr?zwzJhTN}@V<#eOfoibMaaaMX9Zqkn+*Ij= zM`ea89j=(*D`+MtD(>NamM&alufWXz1Wf#n@$ohKQVXQjxe$2#I|3k!k}j9NE3d;B zh28&d1zlc9t}#>IPrk2wC;5)U;FIs!{8gwr%Ig9`0iPVxo2=>eWWF*8RgVKv-s`7E z6N?$xWSwI{ts|a(mB`>mR&DV@eX|$ZDEVb8^m4LWZh^Uyn(a?Q(DNc34L$U_WP0)2 z4c%TmABw7Ge-u{uAu`??yY?-`yC3|wN+}fYH+$}6mFPcj!AvY#v_P$d*VI^rm0BCH zYUO&YS-nwhJ-2-+@YK?4Mo}n6q8A?KM#)!M@ z(0BaSLB~r2SDa^4VvfTp%aJ%^^8wB~e2D8FpTZz$2F#+Cz%phfS#TZ9?{C1pkd3(O zzX=!2mf`f>#W-oO7^m(m!datbxL~S*TMlGZkDWNKw-6W2$ei{YVd%LFPEltGLOn7d zHGR1;Z=jCS{qf~@ROcC%q~iGu$;?-6mgBmeCPBQG|7#((UmT5nH^$?(ofaz#7vDn$TS~4GGBWR>w8$PUyy<=YluDGQ1268Q=V=I<`@K=tY=_b| z8%ir#4PmQRM$`;CqyBTr`($TtwtOQ&r3tu(8BkbHSVgX*bY2-5mB9>ot+?A613$!} z^;L+{f9kmagQv`3gq_-R;xU6*>Q6uU$l;aMkeE1J@MuDX;cugXzL0j>-nRXp07s+ zUFztED;?0@7esXtNCpf-`%`~5Un&jRNhug@kEMWB2p)f)j3HYQ5u( znd7ibW3F2GEfesoSFgnS^&7Ei<2G#Byc=7$>>?mns0s)Iz>S+VuxQyttlvBvj_%iy zTj7JWayzvKP*_ir%!i9lNkaMvd$Njq$`M#cZ-s&XGWxw~xM2S&+h}~|I1<;~KgDgI zY0wXt2jfspn1-#xy25zo&t7#zXD0#cJGk+yWEdgRlrZf*ZCQ*)~Ai zZX@(uwljLt&&6DzjJbvI93A>R?Kd|dquEMzs9|F+0Mv0=10$a;%KP2*+JrO4b8*>f zsoF;EhRGu6k#z-xHm-*e7HbUe00ZpWtEoWt(WqakRojvUGy0Qv)CC<)799EUuhfFl zQJ;)f126(Yk(t7FYLt^wRDdT;ID8Z^%5gT2GiJ|L$-0tqq!M+PO~T<5E8!EYgNnug zwXjw44-+J%F8MN&bIJOYVioi*W%NmvmCk6a^JWJL!{D=WFj&RVH)6Sv9Y>}KY*iyjjsFqBT*`)GY2fbY*8Lz&<1D&0Lc=0S2 zub#)_F+FP=J$U;-09qgW|0wZ&(e>O!9sE2NxYC;G*L=TyYtXtFGg5!+k1ld(Vfy zFFU*6TIhPNR~au??bqUx`6_&7x)Pt6tin~RbCK@od*+u{w;C`$*E?nMDAbp^WwB&nA?a%i={3QYTmXe`TMqwnq zp-isJAdGoQi zl%DLYxy`1kYFuHLCBbKf+%}nbH&pWMrvMz5bTaTF{!cox1U0#?!`D~5wy;k+JG+!_ z7qHf|6PEV7DSs$z`LNPRO_B>+R+CK|Wx3R=U^IRngwEG7Xc>$|W|=)A3B0(Bd&sMC zM@xSU`d_D`sW%qY9Z{%mjUtQRM`?XHvdjIElH-QhEK9U}8OiVGt43*u8BQJxYs*po z|M1B8Pe;g8WOYcL4e}eDRKeb|Ru5HyPnDdIG87GN$e|R@%`-!3sV%xF>wo(?1%LiN zTOFS=XtebD@cPpSQg*jf=5{>yM%N2^@0YS#!wU^vet7w9CVHP`P&!`2Qq2jNF!?=9 zoH7zimd#d0za$5A)haDj^?bwnEd=2%vfxgvU9(B;2O>l(DWpw~<-u zfz&cvwZcROUu48q)HTa5k=3FH<9-GD0do zQ9x)DyaQP^jPMUn!^VRQ>AnY1iFXkmYpO~DjGOcuRsZoVwqLRR`tAS1dmsE68>IAQ#FRRMbK`o%bXej99^FC+G$ zxf;@rPS%EJ=po!sI)}6(U6jy!RmqZ~Mr#7o1Xa~eXsD&4144E&jy@SkpLu54>(O*e3`;Sr3pUO}=dht`jCzVBH#wkGrVToMP}e=Q97z(f^GkUx@)+z=4UnFG7sZ8^=xGnc58tHWZ-2U*tv6ulAx>BEQE&EbjsNE@DDS_!yJ3~ z#9UGJZ=?jH%>Bu_N0|>)(-3AM2jCEQ1V(`yaK&jMPMJ@_NwZJYG{jYx=>*_xTz8od zZ8r^QyRIhq*5iWtS{%Q#5(jTBC!jXq%v~*2_7Z!a4T10-i`rVK!|CE#>u2-kpUT_A7AOXb#Tao2OnE zDJ9Wdz-Sk`3#sMWc#wS_0ntYg5P1ekndXRjXn`v?cTqZigm>N>D!%&5w}wFYj?(qN zRu!y9kNH5QnT;AV#C`%k0o*X#3Gjx&C(joyUGfHiOEs3$|INaDn)1zCHE~=21iS;u zHj%pU3B3Sa(-rva_Eb3X_atOrL7pr>ArK;yFTgY85FR9IBQ1qKhzydG!_J;(j*NUm zq~+eh!(1ITL7rNsuRthk_fo6%@u*gs9&%dE$r#>0rlb9P)KJ)C*hi}=haWriaHffX zNu+54Jy$$|DD6R|p-NNB=KG2WLTSkaUj{pUzOa)Fl87(k`2xz*Dtef!-2k?WV8oc1L3$Wpuv_LFhsdx}bf~6&=q!P}?QH%@w`00x!PKM@e-g zuHQPy{xDMQMLBQ5BrKGDJeJNMT6VNzC04ImPv+Y~Aa2ICt-G;%_b&E@bt-9l^}0E@ zcJlyYk{pm)-~z9xi||XhjNs%O{{ceDiW%XXah;Nq($IYst~e~lIqR7?V=)D1ttRvF z6a_vV&lS+|Aj7$B#x=VwIA^jEhjrFs&s9yFy}KSqZ!g0MJxu~|KS6f~iPZbi1y=A+ zF;LGvAKaoOy$CbElVrlfH1G%6_QTj~4=jTAz~=sbScdF@zWaK`b{8!cE1xG*4l8!_fh~z(4Wr!mOS_0*%F;wKWij6?onF9~%fBz=XAAK1C~q^!xRRfn%}!HO z=7heMV0t6+;f$ZDzEL5$EmkgJB zVZRzDWEGktnL$22{subQC?#v$`28HvT0Xsm$N ziZxiZa-$jn9cIAw8&;~7^P9FVftl51WEBLWyeSMRWa*SL3pM(gu8L<36{eEX8zbU) z!)3*SX~-_z3)%_;-!-`5x)kRL#G^*zam{%#3!s9j>BGrW=LTn55yMQ!aG5iOmz`X5m(_BqYd}ioAhos;CTNEY{?YH z-h1iuHWGX?|F=hZJ{j?pfftdP;s=Elg#qPtkwzj(L`L}}9)m;BTHH@Lgy__>@D4vh z_BoG;2S$i`U<*Uj^J>MmR5=#Vz5D*pRg;03@v=kElyR8!W9Eynp2$kgRV%TIW_sPG zjq0(+N-Zo~p{bZpz&SiBI)Cwe?A)~lYt}Bug-eH!^vDOT-6_Z|bAyZDF<7{4fzSPe zh|j!4FzFJ2I!MmHK{={}!Wx1spJ2=T4CTEq3R^Q{UK$u-)tXf8$ zp(@OqR(FRW(5F8$rswM41SrH z5lyDe?65=OfE$vf+=vW($p7eZLN+^RssNBOIyuV#d8x+euJy&2{c-r}aT2~7NXGZi zbMVjas`0uv3k?Oq$cVB--UD~^*QVnyU$o(WzwX92ugXzDZ(P{>@2L|x4hIR5xdOal zV9Im(zLjMAswb4`{eGzL8mf3*RPCUoXHJm?@(bAV&GGDMG}@bdP*G%qszMud)_LJs zR~VkN^-#7pbUO3eIueAA1fc^#Xou#<_Go?TLI#wjP4@Jx^yxjZXzNXdmHjof+tiqG zzsAhj<1lCLlpm)d=40714K)p+wPHP1YONc}1>L$ujgrn=I0-xVtWfn}D(mCP*oi1@ z^HHOo!;6o_3#v_82E#BSsmc=Wai78G;T3o%T~rw?#=hHe$!ZxT=49M(S`E|S{RHU& z7jzXf}4P=;zR!;XtHu=~;+Xxne6=QBnse@Gmqfct|RF!DSM>rg4$ zbQ6J$_Ce`}@J*)YjJtt*KKpUYaV^XP_rNlEpUR}U?X(ugKHF91jDPACe&#BE{uq@} zBhRA>_4v7GU>UdrA&-tBtx_9_g*Ra5w-W}o8`M7H_Y;g^=XM#3SB$~z1*3TpW!cgH z&;$NV0Z_`1Pn89{bEabUyqQ=)X`w-by?XshMz8hQN^q^;$Oy;hD_3h`>59el0rN0x z{!Gl6HI)~6CJr3kjLkcjK=?{&I(1f>|C`&12WRGYGuh5 zeMO})*^si8o-(i19);{&Wqlr~k`?c*4#;X?=WMb?ezU!*H7Z9baFxyTGN<;S#uVX2 zdI*t>q#SKBr-0jnpJ#)I6~+WRC1EpVX}dFuJ0;`95k<`oNFm###pt4=+y`HFKVVD1 zi?%p?*_DDnJ}<&xV-iXpx**z97m5BR=qQQ9-(Lv}KEXf#(1N@w2eq+g7*&^l(glR3 zUBkn2V-%5{YM-$~z6?gK)Ju6vh8rNm_qZWnN@a97p|sfv<#qh6<@|0%3}A(3C@r%^ zU7ee{mam>AqN6bYW!bhU&a_2SnKz!c#o|@}LkteYqQ2de-q9TmJ+5fzb0z@U9y_6# zQna>P((`z|s_jtI7KGN`B-prI#MIfpQT0P*uZY=mC#ua`hFEZkV!;)ft0+fh`O!*j z+_VPESICI@C)jsL6MO#Sx~tlQK`>BAZ$WXp)3 ziOANra4#bH9u|U zI8|zX*4#U%v=+G2-C#d;`Whc9b&Ta`plDx`Ew3@p8(B2n_PI|3YslmbyR98bFrn2+Lo1-Du6Rk!5sLQ6WOm`>HLhw~rI?}@K zAvN?K&w1gCwnzBa*A4jBcP;qgaS{5OW6}RK28}&_D6V&8K(az!tv#x{ywUY#G}=Co zU`Hk6HrOMzmXfX33K?Xj{B94_$P%Om8&sCxLqm-<+M1ow$L}>bK$-b89sevUC9!E}WI`+kLobzaKX|j^l>+Nu06Ug9FCwpr^-T z%f<27aDEI{9DN@iyF9Y#~t?_^o!dmT@N9l z#*FgF5^?2s5M6v5_7MkQNl6`!Sn_Hjk$~8=S3Wa$@G6SrjNsn8Dmum zxw-Qvs!ca!E#dT;V^k{9-u)Zt?KZ2TI-9m=s_X`>RrA$rtJf{W+RZbudGB~!*4ILK zvJUF#ZR(^h3p+_E8L6_<3AMfM==vfIeXnCEb9mvqf(TUluxAPA=n6$ug%dlJgPJTJ zd=iCT`VWy&fBbz8e*b+ozWX)}Uw)CO&J7T(@_JXNMCV{NkJRyX9NJ&UqK-bItc`wx zpy~ZQMkOIvOXaXidz4i|{9gl%m z@o1pGYVIIAxA>sG&K>1cGCApF-Um8}^0|Zv*Q?09Z-$}-d*sDhBP+@rg%9jdmqnSI z?x9+1VIW?#B;of@^YLAO4tgpgP?qJa)<5npAI)UK?sf+Zbh_d><>>2Y5%}&^BL4VwCjR_wKJZU^(7&|dFW)ra zcQ0!3yXTGg%j<6Z>-$0c^KXyw!{3_l)nCf+{JTta@jBJ>ew9iM+IkZdw_2czEZFlp z42=W6sBHH^a)A{#?H_~bi+@HHHInjkqMGxS=?EDOUA$!ek2@Vt8>$zxVk)N1ew)Gh zZ5UeYqfZS*-^&N6=?PG!2vv1D2FctO7uE7**DF3Bp>4Gh&b}Am;BgMtE~jAbcnpSi zhoNtK5IS}TaKmOVE?VrsIrD9}V7m)f+z#Qq!yfF^TY+UKCt%yP>DZ$^9a}F=z^W4; zVdMF+IBC2D*Bv*g3TRgMk5j&q1%3BW${tcHF6?8@sPpn+=~6bR)g&-WeNguO>rVAJk#xM8#wQK<&({A3QYP+q+?aw!`nxw(d3uJ?5$o_d2%RC=vk%D=`q{NZ^4{`^HTUU#RWqb8W2XEyZNg%-#w zu|j^CHS#NL)z)cJ*-ZX_1=&_6*ozxnC_CNNZ>#I_K`(*v?1>LPe-?nRzlgy1-z4Bq zze~g4|4@K`{<$1~|9u7i?@vwm*WbE?^L`V9a4VE}*nstdpSx(VO?sSdCHNSRFa z(ep(tr6+?xH$8GY<$g1NE0t6Q181(R65)4AE4IUdv$LSJ^TwQ$^IBaWMs9SFd+ z7pCLzoy9n$Hy69EPgUUCaBhqOqdebxa|VtZF2WIm`8alWAaIBi!RZ!})v5vGd|YY(4iWP8uv!fE4iQyKYmj9oL(WE0(KNk>8LU9WtN= zVoL9-(YucC?jx_m7QRWR;g@(0FZr3D9INu)N$}Wpc=% zLUD-=s;enI>2a#6oYXLTMy8=kWs_7aDZX3PFV&WP)&FmQb{}85(gQddzyJVQpGibPR9w(n5{TaF2=vxOpt~|0ofV-dNp?VP zoFxhpY*3%)jVBGUc-fwW{@N(i6?q~&{1P5Kyp8-~E6Qnaf+`$Op2uMD^Emq72-Ndj zLo1u)bMkSWY);zli>7wU)NW5a?(?MV^u_0c!T9QP1{})t-+z;VKYf>n7XwN7;zlAdoj7G~K6-htkZLcGNM^9E~j6(Y3 zlp;f9RoWt>)B%St%*D#BW3YVXBxqGoL`LpskQ{8KOEy1gGiZVWB;I?%#y2#V#DZvIM)& z&c?or3viU6J9Bp}4&Bng#IS^+h;#ZynB9Zox^j^*CvwsQ|YB_AKnXHS<4! zDAIK2wJE9%1M=vd1-N3jR zH}NgJ_udFhpZ)>m!*~U-Q)l<%w(e)Rdi@j*9oeRUCV-Qxqs#^+O_US#e_560NGUc%bcQzK85~OJX__AMMpI&yG)cV@Ms@-%i(pDl zzk~cjOLUN-x_d)VP-3kHIWh?7EHaOIOp< z1Lo56WtLf~VntGzNB}4ux`!RSgWgh-lG|J9>$(CdlcoNro0^jo<|`v0aD6*5aK zRAz}JG`Enk zEq>@|@{b(nhVn=> zR79hxG9Jy15774_1D(&4&^{Q8mM7t8eC&_<0oiwg-ukgC${DyzTj||PjCh}9`IRdU zou7k+tKNmy+G(^Q5`?v|b=x|&4cNG8E!M2nQfw#zd#T10vf!sUczg-GgKtn;Q*m_5 zf?#hnb@`*A%|~5VIkxo#sbx}wUl4%q4=%xglJcJG5tzCigOT$g+_K(@vv=3vz_rEn zXsdBTPYc^F%q9q@6J*P9!E!UMIqt3~b%5rGRH*MwT?VjFYGL^4!o~?jlEpA%6-$d2Rop%{X&$E4)Il(kD>% z(#Pb~$o_~HZ01NVG-N=#i~Kq}`U$eh7tv@P3?GuI-I5F(MakueN7-buB1?K3f3$Q4 zAgj;}2`Rcr%`qARUA-%6n>XuQ}P?eZmO9qwntf~q})bsNaa_$aQqRuo>+sMh*a#D0DFy^AFD*Z6q5J{PL zknl(sQE}JcA95N_Zu?+iu^Ddm2NCFc7M|8e;ca&uk=|F45_t#dG53%Vri0JBlJKG{ z0e$t6c+wVw?*_B+_urP{AK#YacdxRMlVyq$ewTU%p-zIYj~%qXhhC{82t5Q_UuyuK zc7~9-!udI5Vam9HMt^h@{PmP?m6ax_t+wFb+n}Y%39YRj1gSqd+k^4?Wh%j#h^`j0 zZB;00N`p~b5subc0*-;AwmlLxo#AZ3sP6Kk{Pd(va7A?wf&J8-M@Qw|b89Ts>y>SR zICg0PW-tF0)@+SS}50TNU$uP}Ng2{lvs!mBZeNJ8t|At`7AzLM+>npHHK4SyV zWy@xp`6g2kH3k0Xj?Tj?r$K6gf~tY?#jr8M;=onENnXIDQCRI99IrMfVfl<6y~ zaX?wU3z|CoP}fYbl4aAuT<92$yV1=!l9Y$Mj0#VU9!!WENGSg zpG%+iFx>!Q(U;&8a1ve~$KhnT4~E+8FPAl8d1o8^Tuvd_5#=K9qCip4?QCUuj zUgFOHZpvt!;>ir%adig{}T5uW?bq zuaQBdt=R`n{QqUew#r+_L|(y&+s<2X!*&a0-45I$qsj5Q^%gSE2Anfmh3ht3anoT3 zfw7s7w~&?g!^rCp0ke;6wF#H3)++XsCIc@r*dlvCNEv!*!hixm*(X9u(hCR$paM>9 z$Bq1-8x_-Cw^^&?r8Fb2-3ZR0SLpCi(o{x61)wq_D&UJQG*Z={V@gbs-s*zHDsx1u zS|dh?FT0K8Dm|1ChzSL^Vdc3KzW2|Qbtp~ajmThg@!p3c@agz>>G>AX(=lM2KZw(m zqC0l2QF>m=3$EX|OnJg#?n{8e^3?qv()b@dBdJ>{W?__U2Dd8tO1!q^;Adix; zs*_P}K>VK{&)KTFmeSIS&5>1ViKMK%ifu|8TvVxb>G-nWfs`qfRo$6C?u93N;>ott za$fC$&^fg6N`;gU?DbP-zN*Vt4Z?i$mmE|!yDKnPkVRz_G>?8VBf}8+xn?LM0L53y z@|_ZXULFB110XWFE&H$cJdaWZZin~QlYtRoRM~Ymvyh*YX^NyceFS@7fUnyrM2Fl! zRti->HoZ-{6$&$L`P>xAad(jvqlb)#rYO#_Lrn<*UhW1Dw?lAs-3M3az3}%rhWLmp z$Vk#dZt@+JW|*SA!WGY3g7DkE82q+38n4drwe*g4GFat<$_fTxO6I&AM`Y&mI`DaBxht|OoYm&0)m@&dKyqzA zgIk{y@*Bv`t+otKZW#DF5l_BO!!47|ShV^*Y}>sAd-kozz5`ov;NVWS-PpTtCwA}I zjvYHUF=#JSD5|UjJOXhjh$WGGfj)%48@J~Ar$LPIqj@k{kn0;^w z-wiYOjj;FGi|AxsB&D0-p7}n^UGO139{Y0wZQ780AmFy|T#e0JS17r;VbgL2KpB7$ z<~wy}pK8L87cU=$vzIQJBoyUs9=u^*yqUfVXfoI`)B@Dh!?WK#!iyhL(e~`VDi$O_ z%$GH6WS;_pR64ed_DMD8j%N`H2vT@9y~vD=NzjprY6v)CE!iEYQikp+IYoZTjz}^J zD%(7FeG!A+FJdw9WxN9M&`744@|BeYp-4Vq9hq9FqYSO152@z=$}O`-D&H$dDb+CW zMH~vrd@>#Jn4cy8vyT6}?^PTIzj;Ur9E8F=DvS&ZF5*?rWqUD(g}lC*hV-rUeN98Hi6E@xcg)K&K{|i`h;tU2I7rqxX0!~aO||IbR^hCv zfNwdD=`Eu4TSXA=z+LyfxMH>%yU$O-mJ?(DpSIpIyv{4l7Ie?t+g;QJsY+E+;lxfH zLu|*)vMt+^EwY%InVFd^W|n117Be$iXj^6qR#K_1>h9^M=iZrnXMU_%@0OKYKjz1N zzH`2Fr1QaE?^jf(|3T*aU^0o(L~7P(TwJ{j;?NmZ*UM%FS^N(KS-ELlQWOJwWhd@5!Z(y>4ZB&$VM=r>kY zc=PAdaeFlftMrz_k|PA^7+G(Ha#}#xGaiHcU)HFh`b9}o&$jVxy_!n7_l%$?h^D8~ zF~QEgM8FEpD*u};tARBE?Mgi&u`^^CT>$Y&Ite) z6IIUAk*R15GEk4tCSY_Xj=nku-BOmjHyF*Gez@7{jfS>BbPlJWsV|m&A%<2!6pCaW zNK={H#@3?IG3keag-FGK>o2Qt_hkbD;azpyKvQcEN~%Kf=!;G~{Gtgxqw(k-j8K8^&iZCsm3u%*Iyw@I-kwlwlN9p0WG|EO z&tVfM37JmAHin%p_yF`hKT!|adMBTUNBmh>`F{p23nJa{HR##C4{QH@NU60{vQwB% zrW~Znw1lSP+c;zWd&Pd9>E{*rge5OHyro7*4SYXU0F+Ts8U5U1Kw&|*r_F<}BhbQ&S3mBJ%0Wlek2vDym=l^tozcG-M4y(9 zjhAJ-fko({6sxTBgQ3Y$?D_0nHTf=sEnCwLB0)uVUe-RTSWvbiQ%%gYl~m2j;Z2{e z!Sp(19KFZ{0Wd)Th_4vu#T{D~z!YKq1*7ZN4U~pAu=1=-0aZptXYOU9Z;pOX>OauC z)pYqHt&}Pt`zjLi4Uk=Jjp}wUG|^Lvl$|953d4>`iDvpd$tBq|5rJm5TMR;y;;w^? z*)<{A%%Uk}v(y8sGU6s|C({}Nz@^13)y76+u}DyEY?NUAZXsqDc>FTj`l`gU6gF9T zT1HmAfkg=#l-TRv)MA-lcH@g`Jbqq-g$14~eT>My#{!@)ZsN?C50>=PuWiSJ|0Fe z2BU)@Xd8@IE55pU+ycN+ddc3oFx(t)CHQ>RwreUF6YHsJ5au=&j(^N$9KG;+Tr)k* z;CqEl52j}NFgDSr57c=jK{ZvdmWQ%+t{p;IO*qycHDQ%rwr7<0c{E0ie9E+oGzosQ zi@fI3JdW{LY%`D82c5v3FpS&}OR3+GK*<$z7)JDTSKU4&6MjzV$^AhDm)B01x_%6E z*X^)$+X-`zop6sor3PAr^@IgQUJ3w(;bgEyfGMmf`(*@FKq=BxB&vVbCB=L)vMJtA z-+j9RU`&ajlAjTjjxrH1j3-kSB0cLzLsb(1RuAz4vQxI-PDJxuIBG{d$&BvkTMb6v zN&ss6tT4394n>_W4`VJ$Myk0Kwrm83nBd^y9e7t(#_ar~8cG)Mi6j-)lMzpuBb4YS z0F)^T2Pach*5u&M<6cZGvoo)fy`*{(fgju{wYrx{+%X3J3f#TUxJOs}Mv zmj`vHqtv=UDIc9#V-1(E!!U6E0A?Paz%A++nuo(w%>>Ezwelrd=gVrfnnKD>_beo# zjsHv56v}jjD(OWa_t01N5QMU_S6i4+Dr40)1SfR>{cpNmp-(+O87lj|rk@FBy~w zu!*TeOirg@YBpKDpIu19905N=DO_G-=5@e&y$H|isZrLatt#- zw6^)7r#}pn3=ET$mEC;H3aq*W-vz0&tw{Iz@RtwN?nf=u0?z zd_VH6YVQG5~H8*2bJ&?Ke68d=Cb0z!+h1B&rvP)1h8$UYgQkqLSY+c%U1 z70}8cjLh-L=%)Zs$K?YBLfI#*XyCC!O+BR4SSm&o|0mNG(z2SIG4`kwqm0mlG~}`x zrg~Tszq(`eKIPlpV3f99L;IvF##X|3LE|t7AnWoaTkWe~>R(HONi3Mer~FtQ+}ljAY8m_Rw1fL=zlZkp}R@g(%mWKdpa z@pS^)83B8yV%7JCm*OdN*uf^k(aHeRJQj|k7FR^&>Z(lNAsLsEP-2AM#Uxb+L3R2s zE3qai48Ewq+>@fsye#*!RZ2d!oJmSiONF5oN>SceRYRQ~RHiH>;)?$h#uM<#Xxw0L zI2QT(@%=Kj`bJjQhzymd3uLgTiyl-MdxebGznq5d+sSG$Ony^j@F;z23#HwSW_NV< z1!H<41xxI(OY7Iwnp2rHmx=T>cJlj=%jnxmu_DQFdA$ltEzwEfE-VvBWQCc$>zRM7jet&wT4ccGwoGl%a!4Lf%4BJMv=WljW`y@_n^hbElXMt{G5c^e`w-eb zA3)b{J3+G(=WTw6tB!BMGwv7y6VJfOZ#PUF-hqSXPJ|?B;H1&7mERMuC!?PNL}54a ze9;xgkU<_9@e~#mMidFE?e>8Jr5(R#8+K5QfJ&3(PT~P&0$%oO@ptUP52<-Vk)tvQ zBcrC9OVO^NgD2O+=rY6((!Ru-$7ohF;)J$25410Mpt9QpHwLWHHsXqbS;`CEu(?&r zl{BxYk^;JsHKdR+uvYt=2B11(|$n=9qP+>l6TYUmhQ_T~WS7l@4*#L&vVFqu< zP)^3EX^0N8LECT~S_Wg;8PeEs(s8plLM>HmAB`mV=(ScE5hcSjrBUP9W@{SXl#|Vr zld_ff-2`9{JAR)O+FVQD%zyb{v-GrN1e>9c6mUvXTA4_nzMD($d0kCIh>VQ`mJ8c z$4OT18VW(9$o^J$^bUt&Mix}BW?+(@_N(t3@a1<6c=na#712cmH#6z$V7802-RYIj3flLMLt ze9xEwvAyreXby>$vw-1s;9dhG&27=JpnD zKPqN0NmZks>t8Z>P$6|r`4g0BSbCDD0N798=^b$a+9o6$PXqY)J0LjJ3t{2@2n_Op ztD7UtEsW^}uTU+WgrV^{#3Z_)ZfG<^N=GM$7dBTylH| zSNK0<@;#zZo^ZGdcY07eg42qU)t3yKbIS=mDj{n!a+)3BoqCqvKZ(F>EyPz@p@cU} z3RCvoO-A!<0LuDpQP^&X%04r+O*x~s*Bo`-R_dYH#d|4~XE|!Y@%T&?ynJj_IboT{ z5eX`wm|a0(aVqXS>{S5lpQF#1-t=FsLs2yOk!b8; zG-a!3_Csc=HPVXBP}=B-ra^yp5I;&CHv*6{dYFE;k5PSEa=v6^;$bd2=nX4+ycH1T z^GdRQc{hU!BYz9O*DwA?a%?^=#N=a0dmvtm{&0Le9(}U%hD;<=9c$0a@$iR6wNj?ymFkcM4{eL`P-zU> z>BDbz`_NYfVT#~edql>&&rZ9Lh%dgsfv4Y8GeDK%@mH1j=3koe)n9I6jXri{Iv&fi zEQ``>f9E0*U?v2shad1la%E%v8oX1_=6mDFDKE4M51jW4&#q<)irA#3Sb~h z#BKV(dtaAg?TaGJKg>`}HYtgl?j>U8z9b(`SCi`-f08FHis)x+=*MMEZW}>ar3Sv* z`TvGjVsZbwBDO*`4RPm7O53l>sg~rK%nbNMXhO$y7n#irq2V5gi3>t}LO3EKgW&D$ z1{+&*2522+Q*0crAT!S&W3v@Jw|aVU`aUWEDHv1J?}sY3a^Bm@ULV{TVNjC-IJ7U@ z9NGEp$vy_bpW(9S4(Ryogb{t1N$`Fc`t4DV8J#hE9Xie*LEmi$v~AzTIn&qK{(wu? zZz=$p1QDDGC*YQHiZWE{4IY74#(9JmT}4v81rlma2*fLtrk~-w{Tl?}>tw@^l~26r zNR92k7vAX?5R!KlZb_$M8*uNAH5RVj#rHu@XO_!??&At0R z!bdyaRF9e*IVP-kgc0o&&S)H>6g>$GD}8!DGXn4ubo4JEDwcrnEv3PyoMR{NouHRv z2ksf8j9OsioJywQk3xNiKXNN2UyTlu^R6JT#sszPj*Rdg=walRvRu8ld^bPoiPsY1wd5f~Ydrbi>w(Webf#BqNldWIrYJ@uKp^h+-)6!;ci zl%bVAGr!Fhxn!Pt0zv8#3KI_s8%iyA0%m}6YHUTGrOU!3CG%}H9Yfjss0gdiOK^w( z@3z#eXJF`?jK;ku#h90o+c_x{MkXZK)}9rqPCxVDI(@OEKBQNAmWQ6TB-)7(-uGbM z+bFVrF8y#Z8H??kQi7`-8{hMIzpuoDAF41*|F`mG9>G+KJKq*z@ks`QNGg_|lWo72 zCrEDM{$Dz<@k5i6@&hZh4{NcQf0mA=msu(c-SkG9D$h2}z*O530C)ehFf{uN{(feN z2z5nrd?0eKC!i=l4XMe|@bt7-LD|5F1ZH^}S;anNb6SOsQq0jmuQNzYJ<4K0rD_-p zM*WaK>W2Jqb1Vq0ysw?}G1%r5cMjGOC+YY0K+E}K82IdiRoHQu2Oq&z_fK)s>`k1t zdI$QR^o3q~anAZZ95VO~4jcRyr_JBMW#{+EW^d!F$9pjF-43&m-ISmQC`Av!CFvMq zDz71;R3_&&aLsQAPFnm5C(M7zzv2HR053Ux!2cnV^pNt5Hcp5m}*y%3&8Y&H15rOfrDU`cf-KZ!6pww8zkL zAQm3R@S;T0H!y0i1Yt$8h|QHFmJ#j1=ezLcTd(1>eIMh@*(3CRCvaI?1KL;4L09i0 zqnrsfzb#F-4z#$>ofo~NJdsi(hn_MYBeU7;?D6bSywQ&!#C;b@TzW{Z(3ZM&rS?^%weXOkN15%j$wXdU)fX%XA{ebGGG(KH{X&UN8sfy!CB^o1-!r_6qmjfLmAs?_(LKk=B? zlhk{uLAb=fA0;F9@$bi}dgh+V1HKhl`mPbHJjcnWdFY~LX`c^a@QS38NM!JeSH~i? z=qGRIAh*;JE*>Wcu>FV(u|`6K8!{4juL@Fdv$_yvC0U4x@`aPDF-$DZL)YvOGD|$@ zDNA{caxuqaStYYhJxL?b6I5PRxvx!Q0R&_q+GoPlzHLsi7hoBB0$1I3Si%lB|l|93c`_e<>8`w0$S`zel_{Sq3szo)-@ zmq3$6*Sjf255PD30>LNK5J#co`2mg?{~Vv`{O>rR|4%q&`8qUg-ohEHH_3=QUoBzV z&%Y(OqW8f(jP##<90~P$NNX}gPM0|<#+=z4)oaVh9jb~`^{6Yl))-M%c!D$DXdn>l zh8*bs?9n~zLr)Myw(>>)v?qOF0M>bvm)370Gb;|KP9IT)H{?05bLUUsg61h)*3y8E z?nSlg!P&(Ie*W$>-6qi1J`XEvBP6Bzqn7}jT`9rLN->6~Gcmhbi2E;V3Bqz!yZk;o z^zy?z%#f9&{=(edRIEMC#=~!lD0ku+f#XzbB><~>Tv6I?kJ^5Bv`or6RG z{GHM!ACNiNsYW))IFecHS+>g8()X&Yo1_!GC4Vd6=8f$mOUeMnFd21fB@xT_GRZ)c zT4b&M$v9Q+xl1Pe7kF%xi1+E)?*F9`W0bXHkManBT=YN4MmGV|MhhSy?3a?*0w^gl zO`u77g{?H};u$6Ny5u~OeNsGAa-K*oOnGK;=~*!zeo=;1GU*5-fBT3(CA%zI_dyFg zrCf(T29m`u3$XFG8m#=eT;-|hr=%Q|1XFhsRREICJiMN$n!J{M(&SpoHIhWaQ)GyJW(T)wF|nL60;IN>j?**rRIy zX{+C1pWZ)W=cR4@o1f#P`R{Sm_&1cMZ>f<|0j+i9epp5Bg>B3}1Q(sh^$trE^x7c1 z!xXvQ77Bp%vz}zYPY_;q0aYU|=-=SQenMlrL4&&#gti$UdI}#55Pbb}^k2e~y>^s} zZUjpr*6+8Xv@Bb#ZkO6`Cr?pwUOJ=RYhO99CR}CCM@GHEBLZl;?VzQ7j=EuBR= zkK7Q+R6V$|*~zxRCml+fN~9~P4H-O^**WLF*{rFck|we9blr~PIfoJy@noE2jISiB zVk-;xGH~}<0iJ(bi9h|dk;j>=mY2!u7nydD%+f3LeUB+UpZ;5`dTLure)ZqYR4gd9 z=w-dFNYKeA1!_7(9)S{;lO{kD@JVex$@DBuMrP$R*(cAu2?*D|C|3Zy`#2A?Ybh%4 zO&6uutzkbj4g0E2Im`gF`X~Cw|7gJazf`HjP#vo=Xj_hAQ1wH@u#f7%0#<4AH;toy zR1RJWY+C@8>nYb#wiEZ$6#xh6Q~Sx%ZItnnh9j@t1{Hk{=voZI`2BbuGrcAQ<@`n- z6+#l?Q%zxQcNnIohmo4#iR36xLhim;ozzZ3ug@!)C6Gq zez~fIG{O5i^E@4kUu5I)-)eae8PKRw#>gj+yxEm4++3`R6A$$ z5w5uI!3op1an$Hd_1Y%lEL;*U!!GI^neYI=^8s1#7dT}23!Jie9haQnp>Nzx7W*7d z@u%UQdX@~RrKF`}{7E%Quj9G7LgsV*U#Juor!4-!?Qawt%2GC$q!aK=KLdyOgK$fw zgsr}U@)1`wkiklZ?2&fs8Zz4qQ8Zu;xAX&utkgtFpB=i_BQW(sY9deu-HTNTZD$^e zDW^AE3Rmd?t8ZE0M!U7D5W9M}71cF`xTpR>bBIYcN9`?{_w>5@OxhLzg#jmD=3t!OMzWSkCsj#q z@29FP*HhBr=!a(Skqzi|*V*|V(*u3`*PHm;e|BO2Z{e|2h>}zn1*%@V zDnj~@Qhg&`Et(fL5VjHk-X-`XnUthZEE#Y^ey0O%g|ku$wf!CnaMJ1qJW<{2hRSXi z)wxAEbj*gSrr1y9=Tl)JDbZGj$>*gEENQAnVFmj`)08hJ9wqSFOTiQZVl9nIB@b9h++uDyxRt`H#R^myK%lLarqElHcQ^$dag8O~b2g>$xVLCfVMT$3Cx;fEFYJkvDc zlX)2dIXZAjJgfGb2JMG&0Ds5x6D2***}knj;AzW0C;$orh7?{wT(uE=uWKN*_%h|E zK8gn%adX}eRTHjAZ8kt`?Ik2P>L9%QJYs9KaJ|(O4b$EjdO#yh5XwUA2?B5VWj0n{ z@&;@qQ*QawSlgkd*&2qW{W}!^1$ZJo^$oP(+ugS*iocc6=jMMR+N&(j^(tC_M)^Qa1B< zN@g+1o%vF{SB@&UGIu{i)%%men-9Jy!I$6H;`@KSrE2p`W6ENN!@l~uS*HP+R$ZL`D@?QR@)VWyshKk{8ChlDA?wf5!#A{s!P8$828N%(%IYM-gRJ1=YzT{MnlLpu4;Ncw z1o$~2G}sLRAr1(MaDaP|J_CFd7M|3os!c;8neQ`5q%6cSFN!2f_F$PMLjxgL;3!VS_*70>5h(NI4m$3G<*cxZ<{# z`zTQz-{8e!Cx zyeq5OD!I{uBs-#qk^-0W_arG(DwYVC-nj_XnM6KGrxEZ;G!%e|tdi~4O_I+9d?H!o zyOI&DO;WZ?)gS_KP%7d+CY#Y;&a=bK^Lzz>GyKhI0)PHa8olUsJa}HDGOjJ(&Bd}j z7%D4d*ydL^S7=NwWnh@{w4pBm{oKma_N(7i^Zyp91@W>5w|+SI#{wf;EGS?UkclT; z`Jz(EO#!5UPWB7?2~b6Xj*(55cs(Q_y!fFOFaJ`9``?z+ALeZa8+kzXE3(zI>ndSz z^@ukrN4;@#HW)*9H-nZ)IAJ~kp!b z-*W`_@S`L(UeLQ1#@|Zj-zF&roaOzRSua3!V-OtOPcz_>P^``%Cd?5*9_Fw&zXBUm zEx0?F!Qa;rf&Py0_OnKGygPiuO;FzvkK51c6af1P=-#ymbS{SQUM8wz6uTkkDNSC> zF>X6!u^lH&K7_H~Nw_BH5?q&|=W!SpY(G`)lEYpy;tn$5I|Sp0>NAVrvoP>FM&N!# zW_$-{$by;q4!|_;>agQDZ}%SdUik$+yZUo_$G7M&x8uC+`_S{= z1-s}IF!0$$5WcVG5KHE{JL{PRvCqt!?az7+H^B2K$elG-XT zMwXpNN`o%yCp<88KNgdZ$QEm{=$H&qYcJQI7pt0Z5}LarC__Ui zJ?Xjb7O2%I^LMXfY9&=kP^tAWDz*03;xSLaNFBb;S5irC%)Rd`@Z?|Xl`jU`9RuG!?hGQ2aK1-%<)X$a)QcF$^o_H_^LRuSKm5838()@So-(w5k$z2{ zL?A#m0hp~43`@db8HBn0eJSq!P=&=8c?xhhhP)LB<@yQmWE50B6WJ*~QLd9Hho}E` z17H33Ry_D?tr|HVenRO@RW$StXbs(PY4Q%<;S=XHP|aAZ#5^QyuMw zwbgl~C;B2T)CE2+X7F$_L6Em2!b3d~9K?P8Hb_eMLqN1S8oCnc?{BDc?^}^HkKt&V z^g%0+M+Vj8SY?D(yuW}@?)A1kmw$)j#saJ(unfLHU>(OvlkM1Z`E~5R^gHZ4{~PST z@&>^sfZUB!raN%jdc-vCu@r_e-n0pNi-E=X&2^aURGpNEZGGYB z9Eig3L>9`c;?&Y28F)ljddpOMZY5naHw zHGm*Zq?Jffc`Y|hZq^nPin$+qmZca_GF;0jsHAuo4=BU<151>-s|gsGiz1l9&_5MU z=846^dMeg7axgQq`E!)GFa>K5t}6*D4EW@`Dy%%uR~~SX z!AVtW5-W02RTeJ%`*lVtC4FRGdVHSi+$d24`e ziw(CO)_)&oEq39e-F{rMKY%mlpW>kIyV!gA4eZnYBRbQF~P#`k+D$HQE_ca#s1i)Mh=!e#L`U z3V=numM9&tQ2=aP2*EHrLwgat)@%2og<%y{YY8Jsz{8<%uHfUEBb6jg6l#C`Z>BcA=KncI3b z4I!hT!*jBZF<6cE$so+q!*o3U6Qe#mjDTs2?K+g091_{Fc*$DJZhN4e$oXkaIc7-f>Ckrb}S-7{Fk4N`P zR7yn2xF+@VBpH&(QCW^A&jiY<8krxQx|geR$1FcDSN=}qq<~8RCvsF+Pu{mpMypx} z0zLt!uz&#Y$5GP91!^s>F!9EVB0T=K0uRW7x7qQ>7@UR(6dAggQQk>zRh>W?V0y|X zWw+T`rQ-_ANoSU}HFCT)x+oG|0-0P}0iawvdEc`f$?Fw~&N~t4zQgN!Hwem)Kap@Wj32F9ll z5@)R>=+JT=gH|TG79-Iz=a0780N%?mb!=NBvvS{6Fck@^?Q{f}9S;#$JFrXh57=?` zHGF#E_c(C%UA6Co@h3Q>_W^cad_#Tyxz2kyZMF*+Z1%H#hNFh>Y))NR?|`<;ZZhfT zYOqG%^C0v*_v4DoUb5ovam?tgO;84%BnbEMyL(^~cnA)$r|AHc8{713@*|@SlKzm)@mWU!x*K*c9f##$nQ1V1Yo}nYRBAo(n08>#2Z*n zLf;%ubmclGmhvz*mrMDXgPws@)HlW;G~9uVr>UkN1c1VB(q!~gB&RfCzo1}m1O$4j zX$S$}1^1 z=U{j?8Z%1-;e*XmZSpjOjDij=u~YKetbARp<^ktk=51EamD&_iL-4`o=&1N)Q3fJ0 z<+?3@S*Vyqz_``Hw-`n~-vVIo3e^wUu6-?tKnz6hyb?2M=Nh)+EKk>o3U2 z59<+|WWyl49apX#ft|H3yj@J-=gQ`00Y48b1wdbKdxFp&o<5eZ0BA)3#wh@b2OL<7 zR~~R+jjZ=~>gMm89NRXVP#x&Hp2B|Z_wf6D{}sR4wGHnc{bziB^#hzS+Y3#bgE)5W z6MT5`H+bjBFRGg208BTcQ) z72D5AcL@>bUc}|kga&V!G{FxtMXny7P90G?_mcVS>ykbQPfp- zDoGT)l7wk`!1=WlEUl*F$%7Jn$zbvIlNyzi<@uvZm5ofEnh-fE12oeFprpl+$@=ce z7?pKRYVu9V!uREL#dI>^E)(xkW=jf>G>?X>ffxbc|6iM+jP0Kc$M{@~@}vtJ8ETqj zVx6pcdvn74?w>2L@@$0()89wlP(Q8K1p$zcf$ zTgNJ_EdgVjQ?xMwcm{{{cHoTzKf^C}Y{T#N{v&p4z6}kF1JH7yhcn!T_m2IVpZ^q} zXuP4`pEljc?Z^03^EG^Y?ibj8_GkFy{4epj?i*_G#?a@O8mu{I{R#GJ{T2uH-lV^j zlouK>@)2pulZ(HA;Cusw7aJkA%1q@8jju65bcF#ysG~ffZR~D1B^`io&T&LnUqX6| ztcZ~bc@t!`=_0$+Kmo9P$PU#bQaeHh3xaSGXp&_BZstF)vWz6vt2e4=Vn>bBHVBxSA@fpTw zXlFE?VQ0EcDL9{|1~g>tqtu3UC=chs(>ZYT()vEL^4T-+W7M( zJIc-4`dolI^GbrrG=xk}iv;an+mxYF=2=$4wDY@5FDNhnQiG>|uE8_5=ijq^SB+=i zRN}>#mH6BDE%^8E+g1DPcdhu-7Y%s!umX41^3@ab>tyh`rA)OryL})O%{_r=>J3Em zKrmW{`8yL)itz+^vfZlqBWx(Z6b~rdEjcO-saDJ^rzil9Oh;n;cD!00B%`#F#8_4a zO*}}$8o?)nFtaamH`$NO*SkUMa3@{`n5_X9xjtLhL$;z0B!J2LEzoT>HHbz3*Rd9e z&b$8ne}U+KNK5c2Q~_{`032M6WDtnM{jY9fcD0(Ix`G1---6E7Q*gF7A>&yh(8C-7 z9@aks(A(1%UVQK7X$E^29mHk2@;dSN*9tKy#a7A8)6dh?Jm4&kQQ3!A^SoOC6pOJ< z-(5q2?1J?n?9+N*f$W!`Y*T>tR0zr^;_uj8Q3cC}y2;h6G| zhxOl5Abj`uf5As*eu~2eZ&7;ghiSkmXgPg`J(qurT^E0i^ENx7>wZvucFp?;oMJD+ z|GF+h3JefkZlbbf$Jdyu^`p@hy70<8t-$A$w4XBcsFI)QEt}I1DNR?Adg}@@+jUXc zWA-BeYldZr+MAMyGGi_Sji<9UPJkY95Rz4Ujzi_vPzL1d>ikx_DE^~0aPxru-OQyc#Chc5i* zzjUh_dVl%$7QT6TL)EERmz4CBsWMMEF`ue}NylLLCJ2W@&^aygK1~5jKqyb-%T{D* z<8Y`-c_{Vov0Xlc&_jC_@E+lVoQB;PkyTOl`>A?Phswk=P>yo|I9O z5nc&2T?{m>v!Uvm-2b5p5C5e`0dFgCNznTH)k0hHZgX;9CdB#vQ8)%3hhXqk8+yc` z`7i{d4=58?r1(t&?^8AU#&costchbMK7x^PZaP@80{h8b`YE&5QJ~wqm!>=@1^%}+3pzZ!u4>?^CUFw_TZ5I z+XUe+3BaFY_od%ba=x!dO$~icKt@_cs(!BfM>T?a&iYd|onaR#^Mn`Sm!(Y>G$0F_ zDh8B^_?RkvgcMzdSJrX3qbMSZUDr9Z?Ie1ysU%GTpGX22|M2!O>EIE;P(f zO~lJ6WHwmBtnFGwg?TsP=Fay2pm;yj~T3aUK`=`Sw zQJfS2yU1(;C>d}mX|qRhi=A4{(KPC>7U?#Q_^HS(9#L+VjQAC|+9`k7Ko%_~i`GvC zsA{$qgC44UcVQbpAM!@-4RfTG8z7h0v9Qh@MYZP0EjL6){#B%8Ttt7nKPGx3u{6QX zOu6*pK?S~G$NNI^wGe=-Yk4Yz_VX|6@x^zIc=F8+mFixe>YiN7!i-d?eNnEwps=0F zF)F|$6BgfcMPZXON?YAg-R-LYDT6Zt!U3v*iNyp=F2rGya&LMqd2@dBVHR#vT1p2M z3Ei_y(6UL<(M~oQ?UiYlZu;9{%Ig`aX8Uq;C|^J~`#4+qKv`*`Jo3F%wVY2aau7LA z08Tw&`zitBU-BNkh{W)d5DYvZ6W$9Tvj!;!99cSM~xH^_9q!p;l-thS%){(-*lgp#0dAN>c#lCtlF$@{qC zx(}AY$Ke=t3SP;SqB**Vq7;oQH)S(Mbg3SqN^}vBeF2^+C*Yr@frM&(WHg!~sa7B1 zMduJ#r-jreJ>++pqjbOl<%2FL?R8>jbVON~4_PJ)Ju^8dZ;C=@X#jzejGW>~=o_CV z0FT3ffHF1Fg(JacVPSv)9v0#0^D-iO@igr0%;3a*-U2`}U<4V^i=fmO0Pf>?9)25r zjCKvJL8xx@Ve=-)DKEQ%DA|Gtz8E!%I3iEB&r>Q+MWA`uAGO^K4lNG2+2@1$E-#ce zIv}scQniX(&bT=sDec4f9cOlk6s&z+!5f!_$}SJ&+^|Mfk0);M{}i=5p_U-MF&e=0 zbj9@sE95p>t8!n3jkd_Iw?f%12UN8>qpH~nCG|GAPLG|Hug7yaiR8G8D9JZNbAtzl z`XVqrMX)bqs;A=@*zP}(rE6{Y_x~}B|M;Jy_?Q3e!`FQO=uZu}|J@Br+$J^sAkwq4 z(_58auImdxX0?@S1&vOq;`J8*Zn0oL{jdb2i6wf|W%{DkRQh51z=t_16WQdw4BQ$I zM(eal=?HX*WM86myd8`7`6!IvNyF%J5(dbk6RRnB@KrgU{!owQhq>sYw7v6Ove6O9 zylz8_WaNc-jPd(Ycysn~3g*8}#_YFbUV?D=2^GQJAOf5od%>SoHFlo)6+S)p8+@+yCeE6EOaLB)q31C;#ax1Q_-W{S?SqE(`#5CqI`(M& zGd{ieGwjs-DPR8r$4%bEzN^2+yC=3`*QKAS@13{#00*!93Mch{3v=&%unRl_hu~xI zl{}>J=V9c!6ZS!e;T5Za(9EkU16z8P4YKO&kzMDA>>JeK>1Pm-cMg%|R}fE7Ce#@q zu1c3|s>Q7l!5Dyw-YE1eRbXJX3F#HF(6hUOBboMjQMmn;jx$#wKoctW8PkxBfa#tj!T|sKLK5n-9FuG?@ z>LnnrlAXWF1^x3$XdRv;uPrG7Tm56g@EhEE02H z(SzL&SGj{K7_jR`d@&~LTptxvjRe6XiuS}}A5Q7)gr>MW?41$dAIRnd zS62r(IhnyP&=yhgE^zj|jK~C2l;8BjID`HMgVX&lOR*?(w`A`L`t}9BUVD~@#IA^v4x=x?N#QPXL5-zI=ceB95YF_Vxt*j$`2WQw$TgXE0*KyJQBLePy z95eod+OOsOiF$uj?=@%`z5!#GJuq_FjcZPy!p83~>;sQM&;DavvHDQ$v-Lj;KmJZk zt_f1h?2uXIh|F3?L=+jQDT|mY0|M}x0-&^b%Dl8D0%0H!g`FW}i%irG6(B4p5Ereq zaPZ<096L?cKJhs&p5brN2U;8J!^hPYF`)rSPl!NuaUOEh;??^QA6M#rCpcOeuB63H zwTcce1x8^%k)@lZnA4R^6`v^kBzw3FR_O0q)gxT{=xr^0Q^Vn)%+E9ocamgJ^T;YbKzGwZtynu{hI9e z3w(C*H#ng6I~>*jBhHy`hn~v;SO%Pieb{*fWL|@B+Euv3orf*ujb-pr)vQB~!HVsg z*Jo-g`;26nn(qOa`X7Xz`)*t!6YARUfSJcW=-6(Drs>-XaF*VmD*&F>e;wzH-h`p^ zE;xstLP(k}5(+KoaqN&$ZIASNJEYWEAil~FaTWSXqNdz1LS~Z%3Od*c`vZ`5lk%-G z6dASQa1OV^X@e6uq$zda_v7@@1GsYjEUXB=Kuhys}8-@sRf7vIsxU)zChKPw?31M+&6msQP<^*(t1Z#1EPj(ccY!(?etUN z6EN1cc%rh=mA~($(i8TM$EfUGva&~#1Ft?SBeNB&=>`FyfJ$<=hzFEG7XhTSt$i{W zBi|8uTHE7?_R$Emk436u?0cX7(FCG z@F*P&Zm_a4 zhpE{$m8K*l!U@S4o(K%ThRTKz%&wNGN75#j(=jj|sa8NuttN0wk15ap%}0`rqcBJr zJv1AKVJewz=ZxRMalJR`^L|Ik`Hz&GKf@)PPhsJI3R-r%72q!0@_?N7DaNx4JqM5Y zs|ZLpM(A}jL={=8RP}+BVm_2)KB?O9&(NW#yT<)I$XrACXX?T|K@;|olJDgd9HY;| zm4J1QJPY?I4R}VMS0KD<^N|9dYxo)11ssKe<4(nl!id6vQP+)-$lpsTwLxkHqiw4P zGU=m|s?88vu1^r^A+_EFIW0CQ?r}pA{YhMz4I&F15R_pLBX=zv*8UtvE*`>J`aSLQ z8Zgnh3MVT|g!+0TEiM)%*RxSwREX~8CR7&WBQ`V`-p)>NwY7o0xfzVEYC~5tV0oTI z9vS&oGnu2-1*w#dsoB>Q2>T`(Rp(OCHX4O$vP)sJDA8lD`Xeh zAh*;W1r<&xu5m+Yorhw-p3x-S>WM^MOCYM61Rx;G=^xcVRaH zpnz^`6m)CqK|T}TcZ>2{04P3Cn!Hx&8y8a)=mdPiesT_5=OF+TfXcazNtQSMmLx15 zq@q}$1b_6P0xzG{DnzZ1oxPihg$-FOUxeEm6&Re#L3Xh_tesEcy!I#1H#q_qFMYUrU4yB`Ww^OH zkpVp@JzZ2rG#58(cz9XEH_#Hnk(MZ~l>9iQ`2PPG#<&04g~fY$1Yk6QC>~UveT<+# z3|7-nk_lj7I*OmAss;PoTqDlI(vN6&-H$US@6rQ)1efTG2+yVOp}(^WJ*&3fNxBHm zGC_2q4H6l>Q>t8%R^y69`j^-eOGM_IAS~Ai;RIbYWm#f5WlyaW@^ASduG9*F8M^RJ z)`C~!W%#G-AdY{NRBDYxcE+S)EBMA=f3Lv)TYl1r== z^QD&As_(}ao1?JB16hgp1Jhhc2E1MzW}(RkAbP0fBND6~RKx<1l*tW}MkxYZYqDtg0QdaaZa9$$emV)Knu zODVQMdXY6!3oVhH$7_{Cd6;F4xD1{HTT@p!flNtR>4JhXGFF`@TDv1LK1;8%bX`eY zd6Hc^u>echZ3}!g9p0#FBa<;WNs}bMTT)fkr=YalV!f><`y@q$0IqX5Lis;=FZ%_U z!j_dyuDHqn(f$f}0Wo69P^MG56vt{sQYtB%7t7L8yPzeYHd;+#DcHTNZ z2^_-ITgNUzWI)b$Bo^~CnRxQB2G1VX5rFxWpZv|~46LsdVR4SvW{mP~FrENRSNra+ zm0*F_Y?z?zU?Az>IrR-kVSFYHvx~WylGRb;IcV=p!Sx&uI5}T{zQIA**vkB#RIc>Hw(X4kUGaIu(C z&ljeuR3zQwGEL!2=^3B^IJ3s%ep-TUG5MBc2Lt%0(P)NisIp|C*G-UIE%n(8FMdg_wrpN**6?XitGYXo$k;u;z zDA!V}9QfKAu>@!)Kg+IjK_=x}ZoM1g^39aQ6mZFVVL55(GC)DemP4tRUE{0(C^9sf z?2}pNM3CDft;z~Xm1amH2oov{kW_IEiIqkS76$N;Qfe_*;1+2BL#OjNYj7BsjLtH$ zQASu;5ny(3vvnj09pGqT4QnG)nClzD$tdl>q9W6;_ff@-o@ZKE$)BN*k4UdW|iO=s{(;x$o?0VkX1bG_Ob89cXC z0x>bq3~{{HG3f?~PSHbd8QC)53dxzqWL9J36j)R0daSWljYD7)dLyr9TX`JOPK6q4x} z4p)=$b-n(m9|%$sQ$Q$8xCOGUC*)-rnhdFXOxU*VH0H%@kG6}X4OpKCU`{Oat8;eQqU%6dK zkQNb?JO-+XZeF|A7W&ZUV7`v#_ma`s7Khr(5ESS8B01gx9?sgZG&uzatIG)RG)H)V z1409w;p}9grm9@sZ4eylj@Sf0g3tv{?pJZm>>#Y2jv+41gn?7m-KMH#d;`-lWWHGX zy=cXLJre#ps}?BML8`G~!R+ zbm75+I*d+aptUm+H`_u{-QbM zY=upPWdv|reosIq02AOzQ5P9>scLdl`?vg|09O29n+)`H`SIA@)qqPafhg-gMPAB? zs5AlE78^?2lA|I&<+}nZ2@(S^h6ecRzmP4qKCkeHa0|gH&>v(JJ^?qj+SurcEq8vHW1Zil;2fB zXsQiIMWG*(V`xzVO%UvTjY0MjgYO9#X&;59z6M;ab=C5-V1m%y!xDCm{EjET8)lD? zNIObYZJ5~}L12U)Qm$L^x&>0gC-FL_qMN~~PEtB{x}kqMgdhx3+rb%n!-aSyLFcFx zw#DX?O$eTpYBE{5jgpa}IfiQMlcJ5FECVGeMMfr+TdVKHQ2vDxR3Y>|*Xv!8N)X0e zH%2%?5le6+k?m3#^%LmVVkoa-2;lr19*mmNG~;1NA&Z5i>MFS@K#DIgS29xoD6A)7 z6QIdw(&RH?NRg)UTK0vJE#mU5xZeti3?Kvo`_NHv{PH zd{BOqGO>*vky5g_$yWs=0bzMt0KpNYS}kv2O$*=OWCv}PX^J4!H~2DY2QiArqQ5VW zQk1@mpb_~dY$2e_Vek>43Gjqrq(cj<$Y;`|6K~1V>RawgQVPqJH#n;S83CH4(U6C7 zMS2QI1%LuRRj`wQzbU{aaO(R4RKnaX=96`xB1Hv&!iZa76yV9{B3A{hYP7V`Sp@?* z4gsPZqX1EkTV6}h5P2$tFthY%GE%BWajR_L<9`Afsis((FTrqR^dW;XJV|0*A zGGC0=rf@XYQO4c~#z0RZ7H8@2=87=fpNh_wXpHt|ptm&%9gT5lzezAwM<74l4Uzsv z@OHWkF9$aJD{!~bhKq$3+^nv^&(R1WKGp~gc7#uWH6^DZoZa=|;bVlrFmpu4v;U>p z;6`gS8apD;G01x~naD94RyI-=F5ZuwjS~P1 z0K~%qpg;05v$C>4B>V?MKtcfk`TxeVFf&8s|92UX|Kfkz0QEoc$K?kb6a>_N)!>8o z|5ZyMApcWi(U0mw{)@l-)3gtJ|G)L{3P1z^0|gBY4F&UYfPsO5h5G~#_hG0=NC=fI``llIC5dS<8{~8P|G#n%p{Ku{TNapzr zfP{d8f`oyDf`f*D`N;B5S3{%0pp(I}z+sRJD;hdrvIf9Yd^1WY_=&})bQy?E**mrM z;ffCd_=os^(|(*kJRzWAU_a6*(Ev~% zC^Uc&Ks@QY#y;aGa&-zk>oWlAg?vwtObp%pxvW_Gq;WVHc8}=i9f#ha6T@9Xu%;6K zB_`Sphq3d^5y&|iG=|hSPOG~b5YzV7TB8Td&@eqpIiJs5mW$}Xg|B?9M{%@dn4i|s zXxxX^q=2KOMiIO{<1|C(GmUN=Rs;(@6>{FwT3?Om;zjvWB)HK|j$?J-AO}_f(Iuhc zx5Y@(qisl}X-j#>qA!?j2I(|55eeL9CK+PSi0}8BYp{G%$R}1Q>rORMaSgKn{tfy{ zpNLSh8Da9neFzbgg+H5crgPu#l?Of@6p-e`)PZWP>JGc~=eIC4;bS<@!A_Il$(y$i zJz=D3=8YM5Tm)1RQx$Fpre0%Q(qVVSSPiK<&9ZxaGo8LzBwA(8SL?aC{Mi z#&71%Pr-?nXa&iSMywic2mC54NUaA6vuLD>=RD)eE&`-lOT6GO`;k0mh;IrF+314E zQp??DboJu!4JE2>etgR1o}0ZQywg|tJem6yD6kslTEDrhs7OJaEh}G_pFRFjRrdbO<+OaFBc(h z#I7B{^c}P{uu=5Sow=dO#mzq?XyXkl$4*B>-6oC|vctr92;6{|yjshY0uhcdc?%!0 z(v&O|(W`sYuZwDf8$7Rcva=(_b~h&}w9jxFS~^Ev%H@a4{%DiXlSqk<9RZKk>X+c= zXY2!$=lYNU(g1bN44Y|U8YB-UAo^hW6zpiD68iT}m<+$D9s6CSxCmnO+leIW3zXFR zW)Ol@Rd|M9{w>o@p-N5Uc*LX;w4liXEp%edK5?!0>|jpSc`%&oWN-#pG6E z)9h&YY%8WL$7YezglGlK676+gA)^P?PxL(p`S#?8WGXrw?&orAKlxjf<4tRgG4Xj0 z0~K}=D4NU}qBO-LPsig#bI*wI>t~zQ6cT>Ki380UTXsz#mF|i?5yEX;G}NVqjuuwg zbp(b8#u`pDGY-^!Ff{^6^`}@qHpgchHIB8kGzSQU+1WtTECnRE9L7zaU0VcSMa#KViZ1uB_>coZ-F5t*NAcpm#9|zGWKe?Yj@e`MU)5rfcp!1 zPg$13R9J$b1F6p#I=k20+d|J5qBCOCyr^=VQ57+E8m8nj@xzU^5K`kp2z$+iW+R5-IvVUtfRZCX+B@FVZjm#yn~*>>EHn;#_@jkX=e9r zTHIxLsQtPw59*j;C0L~6TTW?*^}?g+#-F3~r3dgTXm9j-93>5yycO0z&z`>RwM$ee ztG6XkwReS_t>6L^z`q^6u06=RA8^dbX8e%tC-zJve@nLgMH{u{IlEBT%doS<4q{)x zam9`&MVWN(P!zvVLv$Lt;GvIhFcEEIlDfB@VzP-r=rNbl#CY z_B7uro$xxYrt^WTIrp0elF!WimH2Et2>tYR_pVegwpUz*A_Lk}=W09GinQ9J}(xWLuGR{=66s&sA z$YxQ%%j(pZ%twyxjy$_$4vRIfKd+i5#CLt*Z3}mkTr38^>vO=}IQc^ks@w;E#m!xw zmHABcYM9Xp=>s4s=(b|#H=|Rb^Ei%N&yhzhkfRNEl%r2keKi)*u9@DvGqkqc7&)zngwfYg&8r>3 zz>(ybDCuB1HCgwWFUTMM`5@DC0i*wf-o!@#+e|H*fTG9U)X1;bmFzj%GF^H!j#j6Z zxm2FBNyvQ5g=Ob^@)OnhP+hl1)*(!Z8?c4Eg=^FxxT|UD$4M^Z5x&W{g|9P=O1qb( z+?Z&W%z??d&$XWOW|0T)05haGl{BUh#T&(Oiz(Zi=Pzpa@?K`)**N~?clQG}JqxJ0 z)4dcdwvNTq%XUL+pku`{?aM*|F)f%AylKV9qRdeWp`zIK7##yJLqE{rlMtT#;!^lQ9Jx5Ca! z_Jyo*pC)Etm9L#rE>vB+rkPi*u%D1m<2kb`RvS6TcI{$i%?zx4gBIsNwxu!|Bx8mI zM8miw$*-@+z;X+lnk5geySq1q43dkf&K4Ml#y}pmaj`VY?ik|S)?K*;i7)OsTkims z2m7BfI^cO6`C&VLxh}+@5t4^^o|5#E&x0_xMTM(_$5c|MUVfHo+Z(DU_!o-nOUL*r zw{tnwvk5Ex4$jvVFh*=a=N7gQ?SBxWD$J4y3>NYShWie72`4;kk@}0<+gG%vXUAO* z#vza>slJ^mgC!ozpCW0+G7)gBh=2Wknj=o5H3s#2!QL(xXcJcAPt-&|ECq6*gK~+3{{KkK5Sn>jpAQQhLYx93`Bd6*j|i z2L}8ip5>D1K-+QxJ6g)ET_g0d(2>OdQgSbnsckU9p(iP;tG=43wWo^S@;^KKN}2Q3 zri_wMEy_kzjEw@F^@}C%rIsflc@Gjb?o-_5vzn4_MMw5#uB>05Z;vMg(JtG!=4a#>0W#q=EaZFPz9KUppAt4sHo|ErQ ziHd!1jE6~wf)rNmsuMC|?x$sY8s~7&f2>H>SI*3kE|zQTmj8;TqLfcR#TZlbo!HT- z3v>=m_AFRb2u}IK2@YZ%z6wFnf2v(auJ zs@jbV1wc`7KW{Nc6}vb*(ZA$WbL1%PjzlYQDpT|j1-?v|W{Ra&GRES`I(~-W;q!`X z!DOEgOx`>F5h;SW9X6^d6T3Fz2jx0CLrE+4ro)aLve zVr|i=TQ`LTA=J(7;z~MGt+c`@re6MPIZDS;4kOWU%o??7ySf@?jOrnMH$cb!*8%Bv z{fm_j?dV?8273d?-jvJdzUW}LyXyISRBNz!B!8})XggEJl$vX*mdlO|W($g;shOs! zQL8{G!aD#{?HG+AhQ~y?H9Pw3*|@DBVVM+26^{4Gz{4N7>C2~HVqsGzuB2l|3YDVu z*JXFu!^0aRJab9bFH(swO*mlO&VQ6}XpF-7qQecVN@sOw3|lRfOMj#+KyS!eg3^)g zCqYIi_tW=?>CZjpa&#v;mnSNLe5kzIHZ9*%Y=y;d0eri0XFAqWDmI;F&~IIpH~0v~ zF(X4)GB}lEF}pl8wyY8_RxvLwN7P4pE$x9w7UVO)h}H(j&d;m$W{(PYYMTfwY-q}$ZMk|Yb-@DD@09+ z0#!khw+x)b{K0fh%&Ge2h2+FQTr8@6*>c(8a&U{*@GRxdgw4al^PH(Eg*1QP_#mlS z9G@3=e;=x!68RRTIwu5C7DhtHj&g`;BP zY5N;UH;x+$3qFevh%^_SlA>j{+jAY4XtiJNV@9_uVdln@pzZMqLO2$l#B=sBL3c-y zsw&9ZzZt=9YiGSl!GaK{j$eEYA|zMzTSpy={nvK@$KKh4i3gdqISj^dtQR-mdAcxkC9MfPRm+@VWVQmD3NWjV+_sKC5SwXi#(M!P5FSEvbbWBldE zJ>l8)ily^OsJG(EleH2v+7vnuU-cP&$bZUhI#>qRN%`xfMsh*JDNhK=CS)==?^VcB z4NBlzwL47RcC4|A95=TmqA!Bas>B`6?yA=mzIY)?qV6lM95U05zvg=y@sXf2G-(tf znN^FY(Sui8$u!VT-6u~}Z5xZOuGv_?+mO#FPI_f9^uc{(%R?0U%G?U}T}SVLQf!VE zaTGj%}SM;hr>mY^nfh)LBw~fzap0DKkr#X3oh!n_*Dzf0&i5i68q@G4SIsHAh{SQzp?qhEj|cYqM7kK z>G28l>$Fc888>|ch>I)W@~e1N!_F_C>L{4^NpZ3AE3D>9P4-w`cg$z84pcKg$+)>; zx~5)#P9$Z*jr+TK4dwGwxslI`9-L6t+K}VaM3yP8$&ziL)YZ|8+?f;sq-@o{(-1^s z153UG?uwV!mIn=ina$U_Yg?4TrBLF(4!Zdqq{bK8>Qg8OY0s7BElw#LTU)}T`6TRx z++qiXXij9-cwEZX^mHunqf%qfzP7Bxp|G6`(LPXzSa~)s$5bgHB{#JVuh&aO2Ta=4 zT3Q@+@k!!S;%CR>_^f-e5uVyT91y;CH%gW98g|C?Y(_lGE%(AnIiLNNq)DB=GDO~o zGl&k}`+0{oz9tdY$%XKUYxWj-f{IQ$|UU|Q!ZysL)}oxfM2L%?e#sQsR~S+5({-GN5yu(>@t&3>CPwJA{o4W#; zWtFQAk^;KVLO0DVOc{j&6G6^Hnu(O?D{;01Eht`_bA$K|GKj$ukm&1GiBk9c^Jqw* znsv<_Jv`Qu!07u;D9JoU`+El5VYzInZJICv#Xt1})F8&(X$x7khQ8xb7NUtijzU^C zmomMtB9*{2#d+wvc0%Ed-Id0PjXscq;q_WK-Q|^WnZYq1pI66hbf>A27=cQ~`5nrEHEEx-{A|{(~035lY!-pW) zOQ8ghMfpuc+31qpF)$IEN_6T9$EkkH*rf133gJJ>GsD}Ts zk5bUkS)j=&Hi2*j7wFP>HZX&sLq&46i?h$A*tMc8h<|)!Jotd0)9WyY7ab#!dwxb81nP^&7VRN(fg_a-T$tdW>4$&AW zGC_)V{qV=Y+QQmZ7M~=>?}N08P^Dfl_HuYeSP=hXMT%! zBB5Db{ks{{O=pG+jTsm<@FgosK{WNOTU3q<`tv$4-Hs#|OGk>;OPFZ%VK;CR49et$ zn<}nuN~6fGb2#AJ5=2ZtuL9+Z(0nsSbz%<`zLFlPH!nN{^<~s-JfcT8Nl|A{5IT{2 zt0Nk{p|Ke39MW9Gwe%l^Ftk#RQ@OmIs$%-mDvFN)^-?E#NEj*!OeW#`B7H3*?rUfn zzuK`TKYB?SUuqo*Mw@)PE3NaUY%YJB9lxv5Zv=j}Aq-vLMlm44KUDZO=gMZ$Pxgzi z2S4S$;3u9g7yBwYAyQdYg!cG14LMvVgLI{(vu^Br5<$g&l1LSKvn9q!zWQvRBhSdd z47h6egeEMcl^82xKMOJ7on_^=izVEH=M-i>|;;U9Rur z+zgT2-sq7@^j@}7?*K8#cu`}vW53xvtz-K|$RU1I zsY%SSsi``X?wpq3z>)a@j#3W3XrQ19<=2NTtu{)0@!!w=>&buCo9KP27m15PK?l`o zexdIGU#zQ)<^%`Kv$jbX@fm$C%>J+3{1m^(F0NjuisJom_SZ*%bs&M=5H&_?)eb&6vJ z-K|13ZArKhswwgK`quI5n=0p|xWm$T_XV3g&3ux!(iZhimBb#0sJ>g=D1O%w*kUlA zFWtrx?y;_dI;QMg-8IsxRw{i(V4E*RFd6e+51x5D&3ziZtk>KsdMBIoc~yssxn#!^ z;KkDdVk|7xYb_=5s7X=Bw3IH99!(bTnX9f*w- zEO0C5N?(8@ld;h&j^ zzscmje}DP6#LL(wqe0n7A>s|I7v1X};Ns?UQvAfW0t)WGVq(qkg$fM3F>8~<3G}xA zTOxjSlF&ZytmRu!`@J%AAfGpLy87*h*PT$ZNd0d^gg z_mo8SIYcXDqK7S|Xl@O4DU46IY=ap{+*<{6UFK*67^7-rdCwjV8%7p)uFF@yHA|4T z`QG9AvRla}J%4>J7@IaqrkS(utO9PuBlBtigq<W z$CgLAleJJp4uzgEgkq6k4@@R0=Ara*qVnG-lchDOENZrnyeGdZ7vL{F;Pa9^7pn`J zNAL`eOh?td#YAw_%%h40CF_P>5!)k{p^J&$Z?&iD($u{UkkvkbS=0p<8G+n4216#? zJ3|in|1q(PZB6`Li~5v_OnvkdP5E}}UNYuo7>$MWNfV=s(p3-fgyRyt7`q_48=N;f_^2bqoaO!%C zg0bya43lE@a?paO&k;fN3FM3UFfS0- zVo)jB>~$wx=Si9+Qdhz|{>bE5 z4j#o>7Rh^nx{CC9X|`_r{Z{ZxwSfs)BfJ?xFFsaa?cng`u=-HLed>sK zld+0)vn_B0wy~UzdMs^!HL{JekyhhpJ_`35`p0`!(SG94n0&1@(|%Z4^?OZB3LQ6U z_>Ri_-%EG|ViqD94a}x>=INB+ENGRx_zUU%X{;ZG`46`Gj_3L*dR+uIw3@OE6S*>; zM)|rpFwe6qKTMx~Co&zr0~$~$Vlmxpl;Yg0@ZbvtW!k&7-T@MFSH!tvju^-J%761}L? zs;UeYd3l0`MxiVcx`5aEC8Bim^rb8vHF!5O6xuDFT;C}h@oC9EXep%-H)^Mmr~}2O zx-| z>3{gZ^szl9BM}i+UCe$bH7V6uM#sT$VEUSewt0f+ZWlHO=ROR9RyC3&2T(jSe zPm9&z2aT$#K{eZ_!yP;A?cV7(4hl#OqhlgIgP|(6C`>axwr8nw<3Glu*UQX=Cj@*< z6uLaeqXud?VMxpv84P=W8U9rHD|h3>XW0)QiALTm_1rr^7olC~x8)m0IS{%fs^UtW z0ZZH>J#xEvw(l|$PVf#8LL9NKKc%;~qjLKpwr7u(6;IA>1UnPGXOc!VRJqj?)`IBR z!RO&&hS?guv}m(BB*#}3Tlfx82vN@M+_1*Mm8&jOqbSXsW+UA@Y^^!xRxO2z2X?6K zZOa|Yj&sfy{Z4&~FEG`E&#IFbR6S6d($XuQVr1r+Iw&@w4o;)?ZqG`)_jM**>F>%( zJDu*GjjaeFe84^x)Y#cmJd0@;mTVzBJgqxy58dkPrz5XX8IL`CDD;?)DQduK=C3D^ zn`&NjVWDZfK@H<1cwJwm%a!$Hgz^$P7AW+g+F+blYGpRBHfZIJio?8jDB!F(zDZ!t z++oIzJ)%%vN=ROCEHohL3LA}4y9;FqT55KUTtQ2{E=<7SKME`F*wN`XuP*RuIA#%O zN>1-6^geD28CpH7KQ8wluG8Sf9c_DU9+_%|jw$c~71rpVwx{1eb&<1`l~lPpY>!tPq# zxt|KaVF6ha>I0(Db&Csy-xzaho)_gd^ZR(h!(-WWAx$kE!N9SBuD^y!RI{IV`tg-* z6PoVvVuqU(QsP<0^FnV_%2i~43>ap(X_t{Q?t5`>0qYZ5vLJSKKj&}ju>yIgs$#H92~1wcJ8DS{fMcoQ78LZ8=2F*p z)2fjq97~v=Pjj$dK2i2bmO~xyEG!WgB8SJj5A zT%POr7~xW7&~K!BRU0~e$8z2MQJFpmvD1Nycb6FF2jQ^r6udYcgVo0@Oo?=$~{I>QQ* zHBnZUU3&rln3O`Kq)qM*F)1`vfrqVgtrIyJS3y;qu5aYuSWW_WzODx@c(+JL??R2T z^ue*hnu>`I;GlY{c@X^=(T|W)uWk8v!1OM;tqXbZM z)Mv1`TPC9Of|KLSKCy7-m54u7Ew@>-$(ZM}5!2-ie(ZqXt1!Qm_N*xqI&otmTgIZ| z?92d9yJGXh*Dl^wPF>Z|2QwIYdFNnsk%i?A~iFc64{ErQ6Zr5aWzDye@ zO&t)eHU7S&B=or(e9jQhO z@K^b~e_8C4R&>m>bYlE{Co1MIjsTBYm$Wj>OMbw7Y~}-e1PLAWQ-%`HNpgz$cRyP4 zc_|7`_@IupIB)>fNctZr$}~|JEr54&{gbb*eu*z36&x>a&i%xb1D}^_4UIDt@bAFV&Y^?QqW?3*LoiEKs6V^^V1@Q?gE^W+rf0n;w@;5!HbnkT7Vd?I_ z>XE3_Fbg~^lnBWZbuy%uwW?IpxOzO zi3;lDbCfP(h-+RlEcc(5%qw&ktmLnBJ$4Ln0XLONcELlx%0_6r z8-?#CWudW@_vB7Q&iK{8Pdo9~zE(;a*tDecHSWl!<2qI=;R;?RVDYEmoPC8{j5kRq z;D;i72OzrBBsk7#jglrT;1i$9z*JhGm~Z=zi1X5#lhd!)D}wib!22Y}tJCc$gX00$ zXxA5F4@#NO?0BBMxi9n(r^PYv0Je7kd+I*y+>oqSz3SkWGV9$jvK;K#`ABF4W#HFv zC%gVFCFXrIMS&ZlUpK=FB~URs8B`Fe{9j6IYo+_&(IC4o56 z4&0Oy&NZq$nqNKtnkMR+=c8b2gq96dlEfQYp?f4bNl|Z`xXWn@+=U3l7 zG3m>V;@509(`K*_=z*;AqtniqP;)$czzbk|URq8?#}=H7FWHV4`33i8N|rxfh?|bJ z+u#qWlvsW!+TKf<_JlxyoZtyDWQ&Qri0Hoi3XD&&swU zuHOOfYSEc|vT{kwGQU6PSho$>0^uu!2WZb)jBE4zg2VWfKov|aE)HG6IgQ%XFjx`i z=B<*IX-U=2^w=|cccCgE8jsWX;ih@FQiMpF%tD$R%Gtq!P7hc04!+cts&JIH_)IEY z!N%7xKO-ilYIWDn9kGu3Rny4_+MLPBv(nV*No(?ZA1kW*QKpuX5x23SbKb*##K z)BtK`L}XLO_*U|2Q)7su7VVbcWNYnN8V6D04$u&4mV-`9)DvS%An0-0*kUP;^|6N| z2&T8;DE1=L_HSV%e|ln`9D>}wsLtT8`-O4A;VxS+9L{%@R>L0cvirV5ZeGZGKD{#Y zwX_;c3a1?VKe@Xwy}rp4GE+sINTn!0US~ENi*@U>0_%G*!pX+Blpv)nzm_%E%Z7vh znl6&R1B&7hQ(T-?`<=)xZMs{}pBN$WTpTqULCDA0Vk*QPmE-y)KHUzJjT^ZUrKl{0 zB{PUOo(!qs+PBOm3F<As z@#)IbOX(Dt>08YUep)ToDEuatD4ga@t}wK`2VZv6uI(Va!9KkLt}eKmrveF&eP*Q# zj1ctIu(3aJY2Y^XuqYGt@kgK-&vQ`(_oIyCT>Tu4{A$s81vE}wOl)Z`N!N6aW*KJd zJ{i;ZF#p?{hAf5-26WSHdR3&o!7GHCMn`F%^1`suE}YHA(%pG+68#BK4|}muL?Oyd zMhX60+Y+Jh-E^7$9K%LpH|xHcm_Soyfxc<=XfGls#CVAHSlVuDpm!xWg}Y6$=}zq` z=f&aglQJSNmve}vyW^`v2`b-%%-51Z;a$CC2zyuY{4Xw56?HmIQrPu%h30qKRbVKa z+TBti%)Vv|W3sZXV?PBgb>v=)7D7Qq-5YPIKc@Kf6Bf;aSKb#5Ae2C7)mQR z*+XSR8@jV5YJRZEHh`558EdVwr*S&;8FjOuXl5FSUS@?W!{0)G`zMn5A&go%3(Cvl zE}RR7H)q8s^zth%h?_oT;K$Xol(iIBp6nkC_8)xLNjDOy*J@*_jzo;``k1kWxpaQ? zYsw#*IB1-GD&4cI;p=&>jmp;gO>WUF8kKgv2?FWqc!P)+S3U)Dzd6`2L%r$W_m#y_ zwc%2*-Xgo@-(KmbP+eIC6Z^hW3y{eEIKEq2nbd88RP9wN53FKdRl%YMDF z;*|<*aobSb~Ah)(B>vzh28H}PU!eZyB-WA_n4^+ zV7AVH<2)5)PyDtgrUl43;*9~lNfR`09jlln$-}rpQ22+%n)>`v zf=7=x5B9FAs_{lTU%EMxW9lP{79E#j(A9(n<%|NT98-oSh!jKkXE~FQb@-sWaCNfxnzM*AKV38W31L^PQaEsxe%KO)B!XHEq-CjQc9^1OI7 z*2$Ym$+{gZ(sj2r@tvVyZdqU=nipz90+oVdJ ztRSbs;9MKg>k@jVcZH4uC$Y52Fe~d=vqfM17;iaVUu5c?eUvwoZ)_~gRuEDXKW0#m zUIkyIuy?=&d**qYu8U8P=aZ#P;wlW}x+=IkRZKxY4cy)O_FW0I%y3So3i!E9IRyLJ z*o(PRMv0KwnrL6E=&P(QiBO3~6)-r2;Uz!nCLhUJacmg%rv>rMMPR?KT5|;1BImFY zYR;{w-RtmOezp`_kS}pFNk`V6vQL0s{CO-#xaP7_>3vL2tEdGDpUI4&GP;At$g=Z* z&rQheGy@-X-mP%p9S;%ulmcLXG8B{Y0LMf|ZyYwxa(()*S!(r#go{s| zR`f=+lXb*@csLznrAYM2sTnM=6$iL#-T|)c3?>M&Z4OzGN+`4`JASO>UM1_) zg?GNA{y>DJ*w?wD1%j@^`RCO0tNA&&SM9XjO8qa6z`-;PBB42YGb&Dr8@}Y zWs(FAfC6_aGo@-W)*;_`TyqRxr|*=wY{}jMpQ5ZV0L!D)vf5!pUZ_kHhwtCp z4SUYCMps$lms~w6XRN6i_0n`c@23zEEAZ}nsqqve+|=|wsc72Do_!)JO2wNNfgfp` zfvFK@zQz4~oN}}3Hj#}b2OpPWDb7!a5aY{81kK)yTB2k0BkjwMJg1gO?-$jL%ZH~8 zA8!<0L1KF24avWwR69P&+Nd#yc7pRN~khl+0AuC{t#)*9t8mL@kK zr|JfHV&ACq*$}5VHeu&DPhEJs%-s{3B+N_)QVyW+@&+usrRgpLIUTJwCC{l!BRaKQUXrfR~ z5%jWdkWs*~rN6RhVH4IFiB}SBCjPkJ(bQBH9zR!F&+$;-cWRDETKo6|k&7}lVk8Pu zt1%NJ&==V792p4%R?=w!@S!V1nm4QEo#cLwq2P%2I+WCpAV|}WDZEz6vHJ~G271re z*Eh!dxW1 zs;WX(V>+ifX6eFJq;WzOw?09tM9+i?hKcv@LNQT%*3TBw0Dcz;@b@CAH%sIGElo|m zva2}ec_taL?=#F>a^x(TY zGKHWDnsKH2`nJb27KtK*+mMQ{Ne+8=T@v4aXAy%c0(+>mfI9pn$v4)y4XwGpSScxg z6}S}NzN)r;JI1sfEqRg6_Up9L8=LB+yx=f3bt(t1P^CeH>A?19DB3@$u&i*Stw$10 zkZ;{qRh7}om6EDDgwNa+OXS%EDl+LjDm%Wqd(2rGoiP=|rSiAn{hIqOkuZLnlH%!8 m9c`AC2A@}jRjWHl8g39N{JWE$o}P}OuHjD-8{fyenEwUqaWs(t literal 0 HcmV?d00001 diff --git a/src/test/resources/image_preprocessor/preprocessor_config_convnext.json b/src/test/resources/image_preprocessor/preprocessor_config_convnext.json new file mode 100644 index 000000000000..6b3ef5e2d5a4 --- /dev/null +++ b/src/test/resources/image_preprocessor/preprocessor_config_convnext.json @@ -0,0 +1,23 @@ +{ + "crop_pct": 0.875, + "do_normalize": true, + "do_rescale": true, + "do_resize": true, + "feature_extractor_type": "ConvNextFeatureExtractor", + "image_mean": [ + 0.485, + 0.456, + 0.406 + ], + "image_processor_type": "ConvNextFeatureExtractor", + "image_std": [ + 0.229, + 0.224, + 0.225 + ], + "resample": 3, + "rescale_factor": 0.00392156862745098, + "size": { + "shortest_edge": 224 + } +} diff --git a/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassificationTestSpec.scala b/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassificationTestSpec.scala new file mode 100644 index 000000000000..50c4bec7ab81 --- /dev/null +++ b/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassificationTestSpec.scala @@ -0,0 +1,31 @@ +package com.johnsnowlabs.nlp.annotators.cv + +import org.scalatest.flatspec.AnyFlatSpec + +class ConvNextForImageClassificationTestSpec + extends AnyFlatSpec + with ViTForImageClassificationBehaviors { + + behavior of "ConvNextForImageClassification" + + lazy val goldStandards: Map[String, String] = + Map( + "bluetick.jpg" -> "bluetick", + "chihuahua.jpg" -> "Chihuahua", + "egyptian_cat.jpeg" -> "tabby, tabby cat", + "hen.JPEG" -> "hen", + "hippopotamus.JPEG" -> "hippopotamus, hippo, river horse, Hippopotamus amphibius", + "junco.JPEG" -> "junco, snowbird", + "ostrich.JPEG" -> "ostrich, Struthio camelus", + "ox.JPEG" -> "ox", + "palace.JPEG" -> "palace", + "tractor.JPEG" -> "thresher, thrasher, threshing machine") + + private lazy val model: ConvNextForImageClassification = + ConvNextForImageClassification.pretrained() + it should behave like + behaviorsViTForImageClassification[ConvNextForImageClassification]( + ConvNextForImageClassification.load, + model, + goldStandards) +} diff --git a/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/SwinForImageClassificationTest.scala b/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/SwinForImageClassificationTest.scala index 3b98e522e9a5..d837356346e4 100644 --- a/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/SwinForImageClassificationTest.scala +++ b/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/SwinForImageClassificationTest.scala @@ -1,13 +1,12 @@ package com.johnsnowlabs.nlp.annotators.cv -import com.johnsnowlabs.nlp.util.io.ResourceHelper import org.scalatest.flatspec.AnyFlatSpec class SwinForImageClassificationTest extends AnyFlatSpec with ViTForImageClassificationBehaviors { behavior of "SwinForImageClassificationTest" - val goldStandards: Map[String, String] = + lazy val goldStandards: Map[String, String] = Map( "hen.JPEG" -> "hen", "chihuahua.jpg" -> "Chihuahua", @@ -20,8 +19,10 @@ class SwinForImageClassificationTest extends AnyFlatSpec with ViTForImageClassif "bluetick.jpg" -> "bluetick", "palace.JPEG" -> "palace") + private lazy val model: SwinForImageClassification = SwinForImageClassification.pretrained() it should behave like behaviorsViTForImageClassification[SwinForImageClassification]( - SwinForImageClassification.pretrained(), + SwinForImageClassification.load, + model, goldStandards) } diff --git a/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/ViTImageClassificationTestSpec.scala b/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/ViTImageClassificationTestSpec.scala index 94cd69904031..da5441f820c5 100644 --- a/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/ViTImageClassificationTestSpec.scala +++ b/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/ViTImageClassificationTestSpec.scala @@ -38,8 +38,9 @@ trait ViTForImageClassificationBehaviors { this: AnyFlatSpec => .setOutputCol("image_assembler") def behaviorsViTForImageClassification[M <: ViTForImageClassification]( - vitClassifier: => ViTForImageClassification, - expectedPredictions: => Map[String, String]): Unit = { + loadModelFunction: String => M, + vitClassifier: ViTForImageClassification, + expectedPredictions: Map[String, String]): Unit = { def setUpImageClassifierPipeline(): Pipeline = { val imageClassifier: ViTForImageClassification = vitClassifier @@ -55,20 +56,7 @@ trait ViTForImageClassificationBehaviors { this: AnyFlatSpec => val pipeline = setUpImageClassifierPipeline() val pipelineDF = pipeline.fit(imageDF).transform(imageDF) - val predictedResults = pipelineDF - .select("class.result", "image.origin") - .rdd - .flatMap(row => - Map( - row.getAs[mutable.WrappedArray[String]](0)(0) -> - row.getString(1).split("/").last)) - .collect() - - predictedResults.foreach { x => - val goldValue = expectedPredictions(x._2) - val predictValue = x._1 - assert(goldValue === predictValue) - } + assertPredictions(pipelineDF, expectedPredictions) } @@ -79,28 +67,33 @@ trait ViTForImageClassificationBehaviors { this: AnyFlatSpec => val pipelineDF = pipelineModel.transform(imageDF) pipelineDF.take(1) + val classifierClass = vitClassifier.getClass.toString.split("\\.").last + val tmpSavedFolder = s"./tmp_$classifierClass" pipelineModel.stages.last .asInstanceOf[M] .write .overwrite() - .save("./tmp_ViTModel") + .save(tmpSavedFolder) // load the saved ViTForImageClassification model - val loadedViTModel = ViTForImageClassification.load("./tmp_ViTModel") + val loadedViTModel = loadModelFunction(tmpSavedFolder) val loadedPipeline = new Pipeline().setStages(Array(imageAssembler, loadedViTModel)) val loadedPipelineModel = loadedPipeline.fit(imageDF) val loadedPipelineModelDF = loadedPipelineModel.transform(imageDF) + assertPredictions(loadedPipelineModelDF, expectedPredictions) + loadedPipelineModelDF .select("class.result", "image_assembler.origin") .show(3, truncate = 120) // save the whole pipeline - loadedPipelineModelDF.write.mode("overwrite").parquet("./tmp_vit_pipeline") + val tmpPipelinePath = tmpSavedFolder + "_pipeline" + loadedPipelineModelDF.write.mode("overwrite").parquet(tmpPipelinePath) // load the whole pipeline - val loadedProcessedPipelineDF = ResourceHelper.spark.read.parquet("./tmp_vit_pipeline") + val loadedProcessedPipelineDF = ResourceHelper.spark.read.parquet(tmpPipelinePath) loadedProcessedPipelineDF .select("class.result", "image_assembler.origin") .show(3, truncate = 120) @@ -117,8 +110,7 @@ trait ViTForImageClassificationBehaviors { this: AnyFlatSpec => it should "benchmark" taggedAs SlowTest in { - val imageClassifier: ViTForImageClassification = ViTForImageClassification - .pretrained() + val imageClassifier: ViTForImageClassification = vitClassifier .setInputCols("image_assembler") .setOutputCol("class") @@ -202,13 +194,32 @@ trait ViTForImageClassificationBehaviors { this: AnyFlatSpec => } } + + private def assertPredictions[M <: ViTForImageClassification]( + pipelineDF: DataFrame, + expectedPredictions: Map[String, String]): Unit = { + val predictedResults = pipelineDF + .select("class.result", "image.origin") + .rdd + .flatMap(row => + Map( + row.getAs[mutable.WrappedArray[String]](0)(0) -> + row.getString(1).split("/").last)) + .collect() + + predictedResults.foreach { x => + val goldValue = expectedPredictions(x._2) + val predictValue = x._1 + assert(goldValue === predictValue) + } + } } class ViTImageClassificationTestSpec extends AnyFlatSpec with ViTForImageClassificationBehaviors { behavior of "ViTForImageClassification" - val goldStandards: Map[String, String] = + lazy val goldStandards: Map[String, String] = Map( "palace.JPEG" -> "palace", "egyptian_cat.jpeg" -> "Egyptian cat", @@ -221,8 +232,11 @@ class ViTImageClassificationTestSpec extends AnyFlatSpec with ViTForImageClassif "tractor.JPEG" -> "tractor", "ox.JPEG" -> "ox") + private lazy val model: ViTForImageClassification = ViTForImageClassification.pretrained() + it should behave like behaviorsViTForImageClassification[ViTForImageClassification]( - ViTForImageClassification.pretrained(), + ViTForImageClassification.load, + model, goldStandards) } diff --git a/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/feature_extractor/ImageUtilsTestSpec.scala b/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/feature_extractor/ImageUtilsTestSpec.scala index 0da501649078..6609817309c7 100644 --- a/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/feature_extractor/ImageUtilsTestSpec.scala +++ b/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/feature_extractor/ImageUtilsTestSpec.scala @@ -18,30 +18,26 @@ package com.johnsnowlabs.nlp.annotators.cv.feature_extractor import com.johnsnowlabs.nlp.annotators.cv.util.io.ImageIOUtils import com.johnsnowlabs.nlp.annotators.cv.util.transform.ImageResizeUtils -import com.johnsnowlabs.nlp.util.io.ResourceHelper import com.johnsnowlabs.tags.FastTest +import com.johnsnowlabs.util.TestUtils.{assertPixels, readFile} import com.johnsnowlabs.util.{Benchmark, JsonParser} import org.apache.spark.ml.image.ImageSchema import org.json4s.JsonAST.{JInt, JObject, JString} import org.json4s.jackson.JsonMethods._ import org.scalatest.flatspec.AnyFlatSpec +import java.awt.Color import java.awt.color.ColorSpace import java.awt.image.BufferedImage import java.io.File -import scala.io.Source +import javax.imageio.ImageIO class ImageUtilsTestSpec extends AnyFlatSpec { - def readJson(path: String): String = { - val stream = ResourceHelper.getResourceStream(new File(path).getAbsolutePath) - Source.fromInputStream(stream).mkString - } - val preprocessorConfigPath = "src/test/resources/image_preprocessor/preprocessor_config.json" - val preprocessorConfigJsonContent: String = readJson(preprocessorConfigPath) + val preprocessorConfigJsonContent: String = readFile(preprocessorConfigPath) val preprocessorConfig: Preprocessor = JsonParser.parseObject[Preprocessor](preprocessorConfigJsonContent) @@ -64,42 +60,48 @@ class ImageUtilsTestSpec extends AnyFlatSpec { ImageResizeUtils.resizeBufferedImage( width = preprocessorConfig.size, height = preprocessorConfig.size, - Some(nChannels))(imageBufferedImage) + resample = preprocessorConfig.resample)(imageBufferedImage) "ImageResizeUtils" should "resize and normalize an image" taggedAs FastTest in { - Benchmark.measure(iterations = 10, forcePrint = true, description = "Time to load image") { + Benchmark.measure(iterations = 1, forcePrint = true, description = "Time to load image") { ImageIOUtils.loadImage("src/test/resources/image/egyptian_cat.jpeg") } Benchmark.measure( - iterations = 10, + iterations = 1000, forcePrint = true, description = "Time to resizeBufferedImage an image") { ImageResizeUtils.resizeBufferedImage( width = preprocessorConfig.size, height = preprocessorConfig.size, - Some(nChannels))(imageBufferedImage) + resample = preprocessorConfig.resample)(imageBufferedImage) } Benchmark.measure( - iterations = 10, + iterations = 1, forcePrint = true, description = "Time to normalize the resized image") { - ImageResizeUtils.normalizeBufferedImage( + ImageResizeUtils.normalizeAndConvertBufferedImage( resizedImage, preprocessorConfig.image_mean, - preprocessorConfig.image_std) + preprocessorConfig.image_std, + preprocessorConfig.do_normalize, + preprocessorConfig.do_rescale, + preprocessorConfig.rescale_factor) } Benchmark.measure( - iterations = 10, + iterations = 1, forcePrint = true, description = "Time to normalize with 0.0d") { - ImageResizeUtils.normalizeBufferedImage( + ImageResizeUtils.normalizeAndConvertBufferedImage( resizedImage, Array(0.0d, 0.0d, 0.0d), - Array(0.0d, 0.0d, 0.0d)) + Array(0.0d, 0.0d, 0.0d), + preprocessorConfig.do_normalize, + preprocessorConfig.do_rescale, + preprocessorConfig.rescale_factor) } } @@ -112,21 +114,6 @@ class ImageUtilsTestSpec extends AnyFlatSpec { assert(preprocessorConfig.image_mean sameElements Array(0.5d, 0.5d, 0.5d)) } - "ImageResizeUtils" should "read swin preprocessor_config.json file" taggedAs FastTest in { - val jsonPath = "src/test/resources/image_preprocessor/preprocessor_config_swin.json" - val preprocessorConfig = - Preprocessor.loadPreprocessorConfig(readJson(jsonPath)) - - assert(preprocessorConfig.do_normalize) - assert(preprocessorConfig.do_rescale) - assert(preprocessorConfig.do_resize) - assert(preprocessorConfig.feature_extractor_type == "ViTFeatureExtractor") - assert(preprocessorConfig.image_mean sameElements Array(0.485d, 0.456d, 0.406d)) - assert(preprocessorConfig.image_std sameElements Array(0.229d, 0.224d, 0.225d)) - assert(preprocessorConfig.resample == 3) - assert(preprocessorConfig.rescale_factor == 0.00392156862745098) - } - // Some models don't have feature_extractor_type in the config json "ImageResizeUtils" should "rename image processor if feature_extractor_type not available" taggedAs FastTest in { val json = parse(preprocessorConfigJsonContent) transformField { @@ -167,7 +154,7 @@ class ImageUtilsTestSpec extends AnyFlatSpec { } val jsonPath = "src/test/resources/image_preprocessor/preprocessor_config_swin.json" - val swinContent = readJson(jsonPath) + val swinContent = readFile(jsonPath) // height and width not identical val swinJson = parse(swinContent) @@ -187,30 +174,76 @@ class ImageUtilsTestSpec extends AnyFlatSpec { "ImageResizeUtils" should "normalize an image correctly with custom rescale_factor" taggedAs FastTest in { val jsonPath = "src/test/resources/image_preprocessor/preprocessor_config_swin.json" val preprocessorConfig = - Preprocessor.loadPreprocessorConfig(readJson(jsonPath)) + Preprocessor.loadPreprocessorConfig(readFile(jsonPath)) val normalized = ImageResizeUtils - .normalizeBufferedImage( + .normalizeAndConvertBufferedImage( resizedImage, preprocessorConfig.image_mean, preprocessorConfig.image_std, + preprocessorConfig.do_normalize, + preprocessorConfig.do_rescale, preprocessorConfig.rescale_factor) - val expectedValues = - JsonParser.parseArray[Array[Array[Float]]]( - readJson("src/test/resources/image_preprocessor/normalized_egyptian_cat.json")) + def normalize(color: Int, mean: Double, std: Double): Float = { + (((color * preprocessorConfig.rescale_factor) - mean) / std).toFloat + } + + (0 until resizedImage.getWidth).zip(0 until resizedImage.getHeight).map { case (x, y) => + val originalColor = new Color(resizedImage.getRGB(x, y)) + val red = normalized(0) + + assert( + normalize( + originalColor.getRed, + preprocessorConfig.image_mean(0), + preprocessorConfig.image_std(0)) == red(x)(y)) + } + + } + + "ImageResizeUtils" should "resize and crop image" taggedAs FastTest in { + val preprocessorJsonPath = + "src/test/resources/image_preprocessor/preprocessor_config_convnext.json" + + val preprocessor = + Preprocessor.loadPreprocessorConfig(readFile(preprocessorJsonPath)) - val channels = normalized.length - val width = normalized.head.length - val height = normalized.head.head.length + val img = ImageIOUtils.loadImage("src/test/resources/image/ox.JPEG").get - (0 until channels).foreach { channel => - (0 until width).foreach { w => - (0 until height).foreach { h => - assert(normalized(channel)(w)(h) == expectedValues(channel)(w)(h)) - } - } + val processedImage = + ImageResizeUtils.resizeAndCenterCropImage( + img, + preprocessor.size, + preprocessor.resample, + preprocessor.crop_pct.get) + + assert(processedImage.getWidth == 224) + assert(processedImage.getHeight == 224) + + // Use PNG so no compression is applied + val expectedCropped = + ImageIO.read(new File("src/test/resources/image_preprocessor/ox_cropped.png")) + + (0 until processedImage.getWidth).zip(0 until processedImage.getHeight).map { case (x, y) => + assert( + expectedCropped.getRGB(x, y) == processedImage.getRGB(x, y), + s"Pixel did not match for coordinates ($x, $y)") } + + // Case: Image is too small for size + val smallImg = + ImageIOUtils.loadImage("src/test/resources/image_preprocessor/ox_small.JPEG").get + + val processedSmallImage = + ImageResizeUtils.resizeAndCenterCropImage( + smallImg, + preprocessor.size, + preprocessor.resample, + preprocessor.crop_pct.get) + + assert(processedSmallImage.getWidth == 224) + assert(processedSmallImage.getHeight == 224) } } diff --git a/src/test/scala/com/johnsnowlabs/util/TestUtils.scala b/src/test/scala/com/johnsnowlabs/util/TestUtils.scala new file mode 100644 index 000000000000..d935896a8e71 --- /dev/null +++ b/src/test/scala/com/johnsnowlabs/util/TestUtils.scala @@ -0,0 +1,46 @@ +package com.johnsnowlabs.util + +import com.johnsnowlabs.nlp.util.io.ResourceHelper + +import scala.io.Source + +private[johnsnowlabs] object TestUtils { + + def readFile(path: String): String = { + val stream = ResourceHelper.getResourceStream(path) + Source.fromInputStream(stream).mkString + } + + def assertPixels( + values: Array[Array[Array[Float]]], + expectedValues: Array[Array[Array[Float]]], + error: Option[Double] = None): Unit = { + val channels = values.length + val width = values.head.length + val height = values.head.head.length + + assert(expectedValues.length == channels) + assert(expectedValues.head.length == width) + assert(expectedValues.head.head.length == height) + + (0 until channels).foreach { channel => + (0 until width).foreach { w => + (0 until height).foreach { h => + val pixelVal = values(channel)(w)(h) + val expectedPixelVal = expectedValues(channel)(w)(h) + error match { + case Some(err) => + assert( + (pixelVal - expectedPixelVal).abs < err, + s"Value does not match even with error: ($pixelVal, $expectedPixelVal) for $channel, $w, $h") + case None => + assert( + pixelVal == expectedPixelVal, + s"Value does not match: ($pixelVal, $expectedPixelVal) for $channel, $w, $h") + } + + } + } + } + } +} From b6b8cc66c4b5c0c7afc6f3d16782255432f7a0fe Mon Sep 17 00:00:00 2001 From: Danilo Burbano <37355249+danilojsl@users.noreply.github.com> Date: Thu, 6 Apr 2023 13:03:46 -0500 Subject: [PATCH 05/26] SPARKNLP-785 Fix WordEmbeddingsModel bug whit LightPipeline (#13715) --- .../nlp/embeddings/WordEmbeddingsModel.scala | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/WordEmbeddingsModel.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/WordEmbeddingsModel.scala index 23ec8ff9d215..f32c7dace570 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/WordEmbeddingsModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/WordEmbeddingsModel.scala @@ -188,7 +188,15 @@ class WordEmbeddingsModel(override val uid: String) private var memoryStorage: Option[Broadcast[Map[BytesKey, Array[Byte]]]] = None - def getInMemoryStorage: Map[BytesKey, Array[Byte]] = memoryStorage.get.value + private def getInMemoryStorage: Map[BytesKey, Array[Byte]] = { + memoryStorage.map(_.value).getOrElse { + if ($(enableInMemoryStorage)) { + getReader(Database.EMBEDDINGS).exportStorageToMap() + } else { + Map.empty + } + } + } override def beforeAnnotate(dataset: Dataset[_]): Dataset[_] = { if (this.memoryStorage.isEmpty && $(enableInMemoryStorage)) { From 51098594bde986b0da38fc70ee56a2470dc44592 Mon Sep 17 00:00:00 2001 From: Devin Ha <33089471+DevinTDHa@users.noreply.github.com> Date: Thu, 6 Apr 2023 20:04:08 +0200 Subject: [PATCH 06/26] [skip test] SPARKNLP-783: Python 3.6 deprecated in Spark 3.2 (#13724) --- docs/en/install.md | 6 +++++- python/docs/getting_started/index.rst | 6 ++++-- python/sparknlp/__init__.py | 5 +++++ 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/en/install.md b/docs/en/install.md index 809ec03e09ef..629db45c8e73 100644 --- a/docs/en/install.md +++ b/docs/en/install.md @@ -35,7 +35,11 @@ spark-shell --jars spark-nlp-assembly-4.3.2.jar ## Python -Spark NLP supports Python 3.6.x and above depending on your major PySpark version. +Spark NLP supports Python 3.7.x and above depending on your major PySpark version. + +**NOTE**: Since Spark version 3.2, Python 3.6 is deprecated. If you are using this +python version, consider sticking to lower versions of Spark. + #### Quick Install Let's create a new Conda environment to manage all the dependencies there. You can use Python Virtual Environment if you prefer or not have any environment. diff --git a/python/docs/getting_started/index.rst b/python/docs/getting_started/index.rst index abdc264f78f7..65c6d38cf0c7 100644 --- a/python/docs/getting_started/index.rst +++ b/python/docs/getting_started/index.rst @@ -54,10 +54,12 @@ Requirements Spark NLP is built on top of Apache Spark `3.x`. For using Spark NLP you need: * Java 8 -* Apache Spark ``3.1.x`` (or ``3.0.x``, or ``2.4.x``, or ``2.3.x``) +* Apache Spark (from ``2.3.x`` to ``3.3.x``) * Python ``3.8.x`` if you are using PySpark ``3.x`` - * Python ``3.6.x`` and ``3.7.x`` if you are using PySpark ``2.3.x`` or ``2.4.x`` + * **NOTE**: Since Spark version 3.2, Python 3.6 is deprecated. If you are using this + python version, consider sticking to lower versions of Spark. + * For Python ``3.6.x`` and ``3.7.x`` we recommend PySpark ``2.3.x`` or ``2.4.x`` It is recommended to have basic knowledge of the framework and a working environment before using Spark NLP. Please refer to `Spark documentation `_ to get started with Spark. diff --git a/python/sparknlp/__init__.py b/python/sparknlp/__init__.py index 964c63fd5c2c..ede23d2fd859 100644 --- a/python/sparknlp/__init__.py +++ b/python/sparknlp/__init__.py @@ -117,6 +117,11 @@ def start(gpu=False, output_level : int, optional Output level for logs, by default 1 + Notes + ----- + Since Spark version 3.2, Python 3.6 is deprecated. If you are using this + python version, consider sticking to lower versions of Spark. + Returns ------- :class:`SparkSession` From 79d5976153884c72fa70d93ffbed80ca8a82018f Mon Sep 17 00:00:00 2001 From: Maziyar Panahi Date: Thu, 6 Apr 2023 20:04:28 +0200 Subject: [PATCH 07/26] SPARKNLP-763 Implementing ZeroShot Text Classification for BERT and DistilBERT based on NLI (#13727) * SPARKNLP-763 Fix a typo Signed-off-by: Maziyar Panahi * SPARKNLP-763 add unfinished traits Signed-off-by: Maziyar Panahi * SPARKNLP-763 Create a new BertForZeroShotClassification annotator Signed-off-by: Maziyar Panahi * SPARKNLP-763 Create a new HasCandidateLabelsProperties Signed-off-by: Maziyar Panahi * SPARKNLP-763 Implement predict sequence with NLI, new tokenize from strings, and new tag ZeroShot Signed-off-by: Maziyar Panahi * SPARKNLP-763 Clean up the code Signed-off-by: Maziyar Panahi * SPARKNLP-763 Add BertForZeroShotClassification to annotator [skip test] Signed-off-by: Maziyar Panahi * SPARKNLP-763 Add BertForZeroShotClassification to ResourceDownloader [skip test] Signed-off-by: Maziyar Panahi * SPARKNLP-763 Implement BertForZeroShotClassification in Python [skip test] Signed-off-by: Maziyar Panahi * SPARKNLP-763 Add unit tests for BertForZeroShotClassification Signed-off-by: Maziyar Panahi * change default model to bert_base_cased_zero_shot_classifier_xnli * SPARKNLP-763 Fix Scaladoc and Pydoc Signed-off-by: Maziyar Panahi * SPARKNLP-763 Fix Update unit test in Scala Signed-off-by: Maziyar Panahi --------- Signed-off-by: Maziyar Panahi --- .../annotator/classifier_dl/__init__.py | 1 + .../bert_for_zero_shot_classification.py | 221 +++++++++ python/sparknlp/common/properties.py | 44 ++ python/sparknlp/internal/__init__.py | 6 + .../bert_for_zero_shot_classification_test.py | 52 ++ .../ml/ai/AlbertClassification.scala | 11 + .../ml/ai/BertClassification.scala | 90 ++++ .../ml/ai/CamemBertClassification.scala | 11 + .../ml/ai/DeBertaClassification.scala | 11 + .../ml/ai/DistilBertClassification.scala | 11 + .../ml/ai/RoBertaClassification.scala | 11 + .../ml/ai/XXXForClassification.scala | 103 +++- .../ml/ai/XlmRoBertaClassification.scala | 11 + .../ml/ai/XlnetClassification.scala | 11 + .../nlp/HasCandidateLabelsProperties.scala | 49 ++ .../com/johnsnowlabs/nlp/annotator.scala | 7 + .../dl/BertForSequenceClassification.scala | 2 +- .../dl/BertForZeroShotClassification.scala | 454 ++++++++++++++++++ .../nlp/pretrained/ResourceDownloader.scala | 3 +- ...ertForZeroShotClassificationTestSpec.scala | 186 +++++++ 20 files changed, 1292 insertions(+), 3 deletions(-) create mode 100755 python/sparknlp/annotator/classifier_dl/bert_for_zero_shot_classification.py create mode 100644 python/test/annotator/classifier_dl/bert_for_zero_shot_classification_test.py create mode 100644 src/main/scala/com/johnsnowlabs/nlp/HasCandidateLabelsProperties.scala create mode 100644 src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification.scala create mode 100644 src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassificationTestSpec.scala diff --git a/python/sparknlp/annotator/classifier_dl/__init__.py b/python/sparknlp/annotator/classifier_dl/__init__.py index ff2cd6f90cbe..8ba241ed0ba4 100644 --- a/python/sparknlp/annotator/classifier_dl/__init__.py +++ b/python/sparknlp/annotator/classifier_dl/__init__.py @@ -43,3 +43,4 @@ from sparknlp.annotator.classifier_dl.tapas_for_question_answering import * from sparknlp.annotator.classifier_dl.camembert_for_sequence_classification import * from sparknlp.annotator.classifier_dl.camembert_for_question_answering import * +from sparknlp.annotator.classifier_dl.bert_for_zero_shot_classification import * diff --git a/python/sparknlp/annotator/classifier_dl/bert_for_zero_shot_classification.py b/python/sparknlp/annotator/classifier_dl/bert_for_zero_shot_classification.py new file mode 100755 index 000000000000..532fad53510d --- /dev/null +++ b/python/sparknlp/annotator/classifier_dl/bert_for_zero_shot_classification.py @@ -0,0 +1,221 @@ +# Copyright 2017-2022 John Snow Labs +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""Contains classes for BertForSequenceClassification.""" + +from sparknlp.common import * + + +class BertForZeroShotClassification(AnnotatorModel, + HasCaseSensitiveProperties, + HasBatchedAnnotate, + HasClassifierActivationProperties, + HasCandidateLabelsProperties, + HasEngine): + """BertForZeroShotClassification using a `ModelForSequenceClassification` trained on NLI (natural language + inference) tasks. Equivalent of `BertForSequenceClassification` models, but these models don't require a hardcoded + number of potential classes, they can be chosen at runtime. It usually means it's slower but it is much more + flexible. + + Any combination of sequences and labels can be passed and each combination will be posed as a premise/hypothesis + pair and passed to the pretrained model. + + Pretrained models can be loaded with :meth:`.pretrained` of the companion + object: + + >>> sequenceClassifier = BertForZeroShotClassification.pretrained() \\ + ... .setInputCols(["token", "document"]) \\ + ... .setOutputCol("label") + + The default model is ``"bert_base_cased_zero_shot_classifier_xnli"``, if no name is + provided. + + For available pretrained models please see the `Models Hub + `__. + + To see which models are compatible and how to import them see + `Import Transformers into Spark NLP 🚀 + `_. + + ====================== ====================== + Input Annotation types Output Annotation type + ====================== ====================== + ``DOCUMENT, TOKEN`` ``CATEGORY`` + ====================== ====================== + + Parameters + ---------- + batchSize + Batch size. Large values allows faster processing but requires more + memory, by default 8 + caseSensitive + Whether to ignore case in tokens for embeddings matching, by default + True + configProtoBytes + ConfigProto from tensorflow, serialized into byte array. + maxSentenceLength + Max sentence length to process, by default 128 + coalesceSentences + Instead of 1 class per sentence (if inputCols is `sentence`) output 1 + class per document by averaging probabilities in all sentences, by + default False + activation + Whether to calculate logits via Softmax or Sigmoid, by default + `"softmax"`. + + Examples + -------- + >>> import sparknlp + >>> from sparknlp.base import * + >>> from sparknlp.annotator import * + >>> from pyspark.ml import Pipeline + >>> documentAssembler = DocumentAssembler() \\ + ... .setInputCol("text") \\ + ... .setOutputCol("document") + >>> tokenizer = Tokenizer() \\ + ... .setInputCols(["document"]) \\ + ... .setOutputCol("token") + >>> sequenceClassifier = BertForZeroShotClassification.pretrained() \\ + ... .setInputCols(["token", "document"]) \\ + ... .setOutputCol("label") \\ + ... .setCaseSensitive(True) + >>> pipeline = Pipeline().setStages([ + ... documentAssembler, + ... tokenizer, + ... sequenceClassifier + ... ]) + >>> data = spark.createDataFrame([["I loved this movie when I was a child.", "It was pretty boring."]]).toDF("text") + >>> result = pipeline.fit(data).transform(data) + >>> result.select("label.result").show(truncate=False) + +------+ + |result| + +------+ + |[pos] | + |[neg] | + +------+ + """ + name = "BertForZeroShotClassification" + + inputAnnotatorTypes = [AnnotatorType.DOCUMENT, AnnotatorType.TOKEN] + + outputAnnotatorType = AnnotatorType.CATEGORY + + maxSentenceLength = Param(Params._dummy(), + "maxSentenceLength", + "Max sentence length to process", + typeConverter=TypeConverters.toInt) + + configProtoBytes = Param(Params._dummy(), + "configProtoBytes", + "ConfigProto from tensorflow, serialized into byte array. Get with config_proto.SerializeToString()", + TypeConverters.toListInt) + + coalesceSentences = Param(Params._dummy(), "coalesceSentences", + "Instead of 1 class per sentence (if inputCols is '''sentence''') output 1 class per document by averaging probabilities in all sentences.", + TypeConverters.toBoolean) + + def getClasses(self): + """ + Returns labels used to train this model + """ + return self._call_java("getClasses") + + def setConfigProtoBytes(self, b): + """Sets configProto from tensorflow, serialized into byte array. + + Parameters + ---------- + b : List[int] + ConfigProto from tensorflow, serialized into byte array + """ + return self._set(configProtoBytes=b) + + def setMaxSentenceLength(self, value): + """Sets max sentence length to process, by default 128. + + Parameters + ---------- + value : int + Max sentence length to process + """ + return self._set(maxSentenceLength=value) + + def setCoalesceSentences(self, value): + """Instead of 1 class per sentence (if inputCols is '''sentence''') output 1 class per document by averaging probabilities in all sentences. + Due to max sequence length limit in almost all transformer models such as BERT (512 tokens), this parameter helps feeding all the sentences + into the model and averaging all the probabilities for the entire document instead of probabilities per sentence. (Default: true) + + Parameters + ---------- + value : bool + If the output of all sentences will be averaged to one output + """ + return self._set(coalesceSentences=value) + + @keyword_only + def __init__(self, classname="com.johnsnowlabs.nlp.annotators.classifier.dl.BertForZeroShotClassification", + java_model=None): + super(BertForZeroShotClassification, self).__init__( + classname=classname, + java_model=java_model + ) + self._setDefault( + batchSize=8, + maxSentenceLength=128, + caseSensitive=True, + coalesceSentences=False, + activation="softmax" + ) + + @staticmethod + def loadSavedModel(folder, spark_session): + """Loads a locally saved model. + + Parameters + ---------- + folder : str + Folder of the saved model + spark_session : pyspark.sql.SparkSession + The current SparkSession + + Returns + ------- + BertForZeroShotClassification + The restored model + """ + from sparknlp.internal import _BertZeroShotClassifierLoader + jModel = _BertZeroShotClassifierLoader(folder, spark_session._jsparkSession)._java_obj + return BertForZeroShotClassification(java_model=jModel) + + @staticmethod + def pretrained(name="bert_base_cased_zero_shot_classifier_xnli", lang="en", remote_loc=None): + """Downloads and loads a pretrained model. + + Parameters + ---------- + name : str, optional + Name of the pretrained model, by default + "bert_base_cased_zero_shot_classifier_xnli" + lang : str, optional + Language of the pretrained model, by default "en" + remote_loc : str, optional + Optional remote address of the resource, by default None. Will use + Spark NLPs repositories otherwise. + + Returns + ------- + BertForZeroShotClassification + The restored model + """ + from sparknlp.pretrained import ResourceDownloader + return ResourceDownloader.downloadModel(BertForZeroShotClassification, name, lang, remote_loc) diff --git a/python/sparknlp/common/properties.py b/python/sparknlp/common/properties.py index d9eb3d8bcbe6..79db876d7e24 100644 --- a/python/sparknlp/common/properties.py +++ b/python/sparknlp/common/properties.py @@ -389,3 +389,47 @@ def getEngine(self): Deep Learning engine used for this model" """ return self.getOrDefault(self.engine) + + +class HasCandidateLabelsProperties: + candidateLabels = Param(Params._dummy(), "candidateLabels", + "Deep Learning engine used for this model", + typeConverter=TypeConverters.toListString) + + contradictionIdParam = Param(Params._dummy(), "contradictionIdParam", + "contradictionIdParam", + typeConverter=TypeConverters.toInt) + + entailmentIdParam = Param(Params._dummy(), "entailmentIdParam", + "contradictionIdParam", + typeConverter=TypeConverters.toInt) + + def setCandidateLabels(self, v): + """Sets candidateLabels. + + Parameters + ---------- + v : list[string] + candidateLabels + """ + return self._set(candidateLabels=v) + + def setContradictionIdParam(self, v): + """Sets contradictionIdParam. + + Parameters + ---------- + v : int + contradictionIdParam + """ + return self._set(contradictionIdParam=v) + + def setEntailmentIdParam(self, v): + """Sets entailmentIdParam. + + Parameters + ---------- + v : int + entailmentIdParam + """ + return self._set(entailmentIdParam=v) diff --git a/python/sparknlp/internal/__init__.py b/python/sparknlp/internal/__init__.py index d33c9d2fd26c..b22fb5caa597 100644 --- a/python/sparknlp/internal/__init__.py +++ b/python/sparknlp/internal/__init__.py @@ -503,3 +503,9 @@ class _RobertaQAToZeroShotNerLoader(ExtendedJavaWrapper): def __init__(self, path): super(_RobertaQAToZeroShotNerLoader, self).__init__( "com.johnsnowlabs.nlp.annotators.ner.dl.ZeroShotNerModel.load", path) + + +class _BertZeroShotClassifierLoader(ExtendedJavaWrapper): + def __init__(self, path, jspark): + super(_BertZeroShotClassifierLoader, self).__init__( + "com.johnsnowlabs.nlp.annotators.classifier.dl.BertForZeroShotClassification.loadSavedModel", path, jspark) diff --git a/python/test/annotator/classifier_dl/bert_for_zero_shot_classification_test.py b/python/test/annotator/classifier_dl/bert_for_zero_shot_classification_test.py new file mode 100644 index 000000000000..e7f9f76f7f23 --- /dev/null +++ b/python/test/annotator/classifier_dl/bert_for_zero_shot_classification_test.py @@ -0,0 +1,52 @@ +# Copyright 2017-2022 John Snow Labs +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +import unittest +import pytest + +from sparknlp.annotator import * +from sparknlp.base import * +from test.util import SparkContextForTest + + +@pytest.mark.slow +class BertForZeroShotClassificationTestSpec(unittest.TestCase): + def setUp(self): + self.spark = SparkContextForTest.spark + self.text = "I have a problem with my iphone that needs to be resolved asap!!" + self.inputDataset = self.spark.createDataFrame([[self.text]]) \ + .toDF("text") + + def runTest(self): + document_assembler = DocumentAssembler() \ + .setInputCol("text") \ + .setOutputCol("document") + + tokenizer = Tokenizer().setInputCols("document").setOutputCol("token") + + zero_shot_classifier = BertForZeroShotClassification \ + .pretrained() \ + .setInputCols(["document", "token"]) \ + .setOutputCol("class") \ + .setCandidateLabels(["urgent", "mobile", "travel", "movie", "music", "sport", "weather", "technology"]) + + pipeline = Pipeline(stages=[ + document_assembler, + tokenizer, + zero_shot_classifier + ]) + + model = pipeline.fit(self.inputDataset) + model.transform(self.inputDataset).show() + light_pipeline = LightPipeline(model) + annotations_result = light_pipeline.fullAnnotate(self.text) diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/AlbertClassification.scala b/src/main/scala/com/johnsnowlabs/ml/ai/AlbertClassification.scala index b3c0e0a593d5..3f4c78f92272 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/AlbertClassification.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/AlbertClassification.scala @@ -71,6 +71,11 @@ private[johnsnowlabs] class AlbertClassification( sentenceTokenPieces } + def tokenizeSeqString( + candidateLabels: Seq[String], + maxSeqLength: Int, + caseSensitive: Boolean): Seq[WordpieceTokenizedSentence] = ??? + def tokenizeDocument( docs: Seq[Annotation], maxSeqLength: Int, @@ -223,6 +228,12 @@ private[johnsnowlabs] class AlbertClassification( batchScores } + def tagZeroShotSequence( + batch: Seq[Array[Int]], + entailmentId: Int, + contradictionId: Int, + activation: String): Array[Array[Float]] = ??? + def tagSpan(batch: Seq[Array[Int]]): (Array[Array[Float]], Array[Array[Float]]) = { val tensors = new TensorResources() diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/BertClassification.scala b/src/main/scala/com/johnsnowlabs/ml/ai/BertClassification.scala index cecb81608083..83ebcb740827 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/BertClassification.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/BertClassification.scala @@ -79,6 +79,24 @@ private[johnsnowlabs] class BertClassification( } } + def tokenizeSeqString( + candidateLabels: Seq[String], + maxSeqLength: Int, + caseSensitive: Boolean): Seq[WordpieceTokenizedSentence] = { + + val basicTokenizer = new BasicTokenizer(caseSensitive) + val encoder = new WordpieceEncoder(vocabulary) + + val labelsToSentences = candidateLabels.map { s => Sentence(s, 0, s.length - 1, 0) } + + labelsToSentences.map(label => { + val tokens = basicTokenizer.tokenize(label) + val wordpieceTokens = tokens.flatMap(token => encoder.encode(token)).take(maxSeqLength) + WordpieceTokenizedSentence(wordpieceTokens) + }) + + } + def tokenizeDocument( docs: Seq[Annotation], maxSeqLength: Int, @@ -246,6 +264,78 @@ private[johnsnowlabs] class BertClassification( batchScores } + def tagZeroShotSequence( + batch: Seq[Array[Int]], + entailmentId: Int, + contradictionId: Int, + activation: String): Array[Array[Float]] = { + val tensors = new TensorResources() + + val maxSentenceLength = batch.map(encodedSentence => encodedSentence.length).max + val batchLength = batch.length + + val tokenBuffers: IntDataBuffer = tensors.createIntBuffer(batchLength * maxSentenceLength) + val maskBuffers: IntDataBuffer = tensors.createIntBuffer(batchLength * maxSentenceLength) + val segmentBuffers: IntDataBuffer = tensors.createIntBuffer(batchLength * maxSentenceLength) + + // [nb of encoded sentences , maxSentenceLength] + val shape = Array(batch.length.toLong, maxSentenceLength) + + batch.zipWithIndex + .foreach { case (sentence, idx) => + val offset = idx * maxSentenceLength + tokenBuffers.offset(offset).write(sentence) + maskBuffers.offset(offset).write(sentence.map(x => if (x == 0) 0 else 1)) + val sentenceEndTokenIndex = sentence.indexOf(sentenceEndTokenId) + segmentBuffers + .offset(offset) + .write( + sentence.indices + .map(i => + if (i < sentenceEndTokenIndex) 0 + else if (i == sentenceEndTokenIndex) 1 + else 1) + .toArray) + } + + val session = tensorflowWrapper.getTFSessionWithSignature( + configProtoBytes = configProtoBytes, + savedSignatures = signatures, + initAllTables = false) + val runner = session.runner + + val tokenTensors = tensors.createIntBufferTensor(shape, tokenBuffers) + val maskTensors = tensors.createIntBufferTensor(shape, maskBuffers) + val segmentTensors = tensors.createIntBufferTensor(shape, segmentBuffers) + + runner + .feed( + _tfBertSignatures.getOrElse(ModelSignatureConstants.InputIds.key, "missing_input_id_key"), + tokenTensors) + .feed( + _tfBertSignatures + .getOrElse(ModelSignatureConstants.AttentionMask.key, "missing_input_mask_key"), + maskTensors) + .feed( + _tfBertSignatures + .getOrElse(ModelSignatureConstants.TokenTypeIds.key, "missing_segment_ids_key"), + segmentTensors) + .fetch(_tfBertSignatures + .getOrElse(ModelSignatureConstants.LogitsOutput.key, "missing_logits_key")) + + val outs = runner.run().asScala + val rawScores = TensorResources.extractFloats(outs.head) + + outs.foreach(_.close()) + tensors.clearSession(outs) + tensors.clearTensors() + + val dim = rawScores.length / batchLength + rawScores + .grouped(dim) + .toArray + } + def tagSpan(batch: Seq[Array[Int]]): (Array[Array[Float]], Array[Array[Float]]) = { val tensors = new TensorResources() diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/CamemBertClassification.scala b/src/main/scala/com/johnsnowlabs/ml/ai/CamemBertClassification.scala index b6c9e02fc564..7a7b80a40adc 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/CamemBertClassification.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/CamemBertClassification.scala @@ -81,6 +81,11 @@ private[johnsnowlabs] class CamemBertClassification( sentenceTokenPieces } + def tokenizeSeqString( + candidateLabels: Seq[String], + maxSeqLength: Int, + caseSensitive: Boolean): Seq[WordpieceTokenizedSentence] = ??? + def tokenizeDocument( docs: Seq[Annotation], maxSeqLength: Int, @@ -223,6 +228,12 @@ private[johnsnowlabs] class CamemBertClassification( batchScores } + def tagZeroShotSequence( + batch: Seq[Array[Int]], + entailmentId: Int, + contradictionId: Int, + activation: String): Array[Array[Float]] = ??? + def tagSpan(batch: Seq[Array[Int]]): (Array[Array[Float]], Array[Array[Float]]) = { val tensors = new TensorResources() diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/DeBertaClassification.scala b/src/main/scala/com/johnsnowlabs/ml/ai/DeBertaClassification.scala index 7a16944625da..c56b34e5e5ef 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/DeBertaClassification.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/DeBertaClassification.scala @@ -71,6 +71,11 @@ private[johnsnowlabs] class DeBertaClassification( sentenceTokenPieces } + def tokenizeSeqString( + candidateLabels: Seq[String], + maxSeqLength: Int, + caseSensitive: Boolean): Seq[WordpieceTokenizedSentence] = ??? + def tokenizeDocument( docs: Seq[Annotation], maxSeqLength: Int, @@ -223,6 +228,12 @@ private[johnsnowlabs] class DeBertaClassification( batchScores } + def tagZeroShotSequence( + batch: Seq[Array[Int]], + entailmentId: Int, + contradictionId: Int, + activation: String): Array[Array[Float]] = ??? + def tagSpan(batch: Seq[Array[Int]]): (Array[Array[Float]], Array[Array[Float]]) = { val tensors = new TensorResources() diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/DistilBertClassification.scala b/src/main/scala/com/johnsnowlabs/ml/ai/DistilBertClassification.scala index 13097f5260c1..e4f816f64074 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/DistilBertClassification.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/DistilBertClassification.scala @@ -80,6 +80,11 @@ private[johnsnowlabs] class DistilBertClassification( } } + def tokenizeSeqString( + candidateLabels: Seq[String], + maxSeqLength: Int, + caseSensitive: Boolean): Seq[WordpieceTokenizedSentence] = ??? + def tokenizeDocument( docs: Seq[Annotation], maxSeqLength: Int, @@ -235,6 +240,12 @@ private[johnsnowlabs] class DistilBertClassification( batchScores } + def tagZeroShotSequence( + batch: Seq[Array[Int]], + entailmentId: Int, + contradictionId: Int, + activation: String): Array[Array[Float]] = ??? + def tagSpan(batch: Seq[Array[Int]]): (Array[Array[Float]], Array[Array[Float]]) = { val tensors = new TensorResources() diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/RoBertaClassification.scala b/src/main/scala/com/johnsnowlabs/ml/ai/RoBertaClassification.scala index 2cfae20113b4..26ebf3812bf4 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/RoBertaClassification.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/RoBertaClassification.scala @@ -80,6 +80,11 @@ private[johnsnowlabs] class RoBertaClassification( } } + def tokenizeSeqString( + candidateLabels: Seq[String], + maxSeqLength: Int, + caseSensitive: Boolean): Seq[WordpieceTokenizedSentence] = ??? + def tokenizeDocument( docs: Seq[Annotation], maxSeqLength: Int, @@ -229,6 +234,12 @@ private[johnsnowlabs] class RoBertaClassification( batchScores } + def tagZeroShotSequence( + batch: Seq[Array[Int]], + entailmentId: Int, + contradictionId: Int, + activation: String): Array[Array[Float]] = ??? + def tagSpan(batch: Seq[Array[Int]]): (Array[Array[Float]], Array[Array[Float]]) = { val tensors = new TensorResources() diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/XXXForClassification.scala b/src/main/scala/com/johnsnowlabs/ml/ai/XXXForClassification.scala index 3333be19e818..9354f124f06f 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/XXXForClassification.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/XXXForClassification.scala @@ -124,6 +124,96 @@ private[johnsnowlabs] trait XXXForClassification { } + def predictSequenceWithZeroShot( + tokenizedSentences: Seq[TokenizedSentence], + sentences: Seq[Sentence], + candidateLabels: Array[String], + entailmentId: Int, + contradictionId: Int, + batchSize: Int, + maxSentenceLength: Int, + caseSensitive: Boolean, + coalesceSentences: Boolean = false, + tags: Map[String, Int], + activation: String = ActivationFunction.softmax): Seq[Annotation] = { + + val wordPieceTokenizedSentences = + tokenizeWithAlignment(tokenizedSentences, maxSentenceLength, caseSensitive) + + val candidateLabelsKeyValue = candidateLabels.zipWithIndex.toMap + val contradiction_id: Int = if (entailmentId == 0) contradictionId else 0 + + val labelsTokenized = + tokenizeSeqString(candidateLabels, maxSentenceLength, caseSensitive) + + /*Run calculation by batches*/ + wordPieceTokenizedSentences + .zip(sentences) + .zipWithIndex + .grouped(batchSize) + .flatMap { batch => + val tokensBatch = batch.map(x => (x._1._1, x._2)) + + /* Start internal batching for zero shot */ + val encodedTokensLabels = tokensBatch.map { sent => + labelsTokenized.flatMap(labels => + encodeSequence(Seq(sent._1), Seq(labels), maxSentenceLength)) + } + + val logits = encodedTokensLabels.map { encodedSeq => + tagZeroShotSequence(encodedSeq, entailmentId, contradictionId, activation) + } + + val multiClassScores = + logits.map(scores => calculateSoftmax(scores.map(x => x(entailmentId)))).toArray + val multiLabelScores = + logits + .map(scores => + scores + .map(x => calculateSoftmax(Array(x(contradiction_id), x(entailmentId)))) + .map(_.last)) + .toArray + + activation match { + case ActivationFunction.softmax => + if (coalesceSentences) { + val scores = multiClassScores.transpose.map(_.sum / multiClassScores.length) + val label = scoresToLabelForSequenceClassifier(candidateLabelsKeyValue, scores) + val meta = constructMetaForSequenceClassifier(candidateLabelsKeyValue, scores) + Array(constructAnnotationForSequenceClassifier(sentences.head, label, meta)) + } else { + sentences.zip(multiClassScores).map { case (sentence, scores) => + val label = scoresToLabelForSequenceClassifier(candidateLabelsKeyValue, scores) + val meta = constructMetaForSequenceClassifier(candidateLabelsKeyValue, scores) + constructAnnotationForSequenceClassifier(sentence, label, meta) + } + } + + case ActivationFunction.sigmoid => + if (coalesceSentences) { + val scores = multiLabelScores.transpose.map(_.sum / multiLabelScores.length) + val labels = scores.zipWithIndex + .filter(x => x._1 > 0.5) + .flatMap(x => candidateLabelsKeyValue.filter(_._2 == x._2)) + val meta = constructMetaForSequenceClassifier(candidateLabelsKeyValue, scores) + labels.map(label => + constructAnnotationForSequenceClassifier(sentences.head, label._1, meta)) + } else { + sentences.zip(multiLabelScores).flatMap { case (sentence, scores) => + val labels = scores.zipWithIndex + .filter(x => x._1 > 0.5) + .flatMap(x => candidateLabelsKeyValue.filter(_._2 == x._2)) + val meta = constructMetaForSequenceClassifier(candidateLabelsKeyValue, scores) + labels.map(label => + constructAnnotationForSequenceClassifier(sentence, label._1, meta)) + } + } + } + } + .toSeq + + } + def scoresToLabelForSequenceClassifier(tags: Map[String, Int], scores: Array[Float]): String = { tags.find(_._2 == scores.zipWithIndex.maxBy(_._1)._2).map(_._1).getOrElse("NA") } @@ -212,6 +302,11 @@ private[johnsnowlabs] trait XXXForClassification { maxSeqLength: Int, caseSensitive: Boolean): Seq[WordpieceTokenizedSentence] + def tokenizeSeqString( + candidateLabels: Seq[String], + maxSeqLength: Int, + caseSensitive: Boolean): Seq[WordpieceTokenizedSentence] + def tokenizeDocument( docs: Seq[Annotation], maxSeqLength: Int, @@ -264,6 +359,12 @@ private[johnsnowlabs] trait XXXForClassification { def tagSequence(batch: Seq[Array[Int]], activation: String): Array[Array[Float]] + def tagZeroShotSequence( + batch: Seq[Array[Int]], + entailmentId: Int, + contradictionId: Int, + activation: String): Array[Array[Float]] + def tagSpan(batch: Seq[Array[Int]]): (Array[Array[Float]], Array[Array[Float]]) /** Calculate softmax from returned logits @@ -276,7 +377,7 @@ private[johnsnowlabs] trait XXXForClassification { exp.map(x => x / exp.sum).map(_.toFloat) } - /** Calcuate sigmoid from returned logits + /** Calculate sigmoid from returned logits * @param scores * logits output from output layer * @return diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/XlmRoBertaClassification.scala b/src/main/scala/com/johnsnowlabs/ml/ai/XlmRoBertaClassification.scala index b667aa8161fa..4b83f45ba11f 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/XlmRoBertaClassification.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/XlmRoBertaClassification.scala @@ -71,6 +71,11 @@ private[johnsnowlabs] class XlmRoBertaClassification( sentenceTokenPieces } + def tokenizeSeqString( + candidateLabels: Seq[String], + maxSeqLength: Int, + caseSensitive: Boolean): Seq[WordpieceTokenizedSentence] = ??? + def tokenizeDocument( docs: Seq[Annotation], maxSeqLength: Int, @@ -212,6 +217,12 @@ private[johnsnowlabs] class XlmRoBertaClassification( batchScores } + def tagZeroShotSequence( + batch: Seq[Array[Int]], + entailmentId: Int, + contradictionId: Int, + activation: String): Array[Array[Float]] = ??? + def tagSpan(batch: Seq[Array[Int]]): (Array[Array[Float]], Array[Array[Float]]) = { val tensors = new TensorResources() diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/XlnetClassification.scala b/src/main/scala/com/johnsnowlabs/ml/ai/XlnetClassification.scala index a4f12fbbeb79..242ba9e47e62 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/XlnetClassification.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/XlnetClassification.scala @@ -72,6 +72,11 @@ private[johnsnowlabs] class XlnetClassification( sentenceTokenPieces } + def tokenizeSeqString( + candidateLabels: Seq[String], + maxSeqLength: Int, + caseSensitive: Boolean): Seq[WordpieceTokenizedSentence] = ??? + def tokenizeDocument( docs: Seq[Annotation], maxSeqLength: Int, @@ -221,6 +226,12 @@ private[johnsnowlabs] class XlnetClassification( batchScores } + def tagZeroShotSequence( + batch: Seq[Array[Int]], + entailmentId: Int, + contradictionId: Int, + activation: String): Array[Array[Float]] = ??? + def tagSpan(batch: Seq[Array[Int]]): (Array[Array[Float]], Array[Array[Float]]) = { (Array.empty[Array[Float]], Array.empty[Array[Float]]) } diff --git a/src/main/scala/com/johnsnowlabs/nlp/HasCandidateLabelsProperties.scala b/src/main/scala/com/johnsnowlabs/nlp/HasCandidateLabelsProperties.scala new file mode 100644 index 000000000000..17334a89b3f2 --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/nlp/HasCandidateLabelsProperties.scala @@ -0,0 +1,49 @@ +/* + * Copyright 2017-2022 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.nlp + +import org.apache.spark.ml.param.{StringArrayParam, IntParam} + +trait HasCandidateLabelsProperties extends ParamsAndFeaturesWritable { + + /** Candidate labels for classification, you can set candidateLabels dynamically during the + * runtime + * + * @group param + */ + val candidateLabels: StringArrayParam = new StringArrayParam( + this, + "candidateLabels", + "Candidate labels for classification, you can set candidateLabels dynamically during the runtime") + + /** @group getParam */ + def getCandidateLabels: Array[String] = $(candidateLabels) + + /** @group setParam */ + def setCandidateLabels(value: Array[String]): this.type = set(candidateLabels, value) + + /** @group param */ + val entailmentIdParam = new IntParam(this, "entailmentIdParam", "") + + /** @group param */ + val contradictionIdParam = new IntParam(this, "contradictionIdParam", "") + + setDefault( + candidateLabels -> Array("urgent", "not_urgent"), + contradictionIdParam -> 0, + entailmentIdParam -> 2) +} diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotator.scala b/src/main/scala/com/johnsnowlabs/nlp/annotator.scala index 480ab6b0be7b..6ba09e517050 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotator.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotator.scala @@ -679,4 +679,11 @@ package object annotator { object Chunk2Doc extends DefaultParamsReadable[Chunk2Doc] + type BertForZeroShotClassification = + com.johnsnowlabs.nlp.annotators.classifier.dl.BertForZeroShotClassification + + object BertForZeroShotClassification + extends ReadablePretrainedBertForZeroShotModel + with ReadBertForZeroShotDLModel + } diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForSequenceClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForSequenceClassification.scala index 22dab206130f..f5d97fce5fcc 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForSequenceClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForSequenceClassification.scala @@ -95,7 +95,7 @@ import java.io.File * }}} * * @see - * [[BertForSequenceClassification]] for sequnece-level classification + * [[BertForSequenceClassification]] for sequence-level classification * @see * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification.scala new file mode 100644 index 000000000000..b3c05c9d7e7f --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification.scala @@ -0,0 +1,454 @@ +/* + * Copyright 2017-2022 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.nlp.annotators.classifier.dl + +import com.johnsnowlabs.ml.ai.BertClassification +import com.johnsnowlabs.ml.tensorflow._ +import com.johnsnowlabs.ml.util.LoadExternalModel.{ + loadSentencePieceAsset, + loadTextAsset, + modelSanityCheck, + notSupportedEngineError +} +import com.johnsnowlabs.ml.util.ModelEngine +import com.johnsnowlabs.nlp._ +import com.johnsnowlabs.nlp.annotators.common._ +import com.johnsnowlabs.nlp.serialization.MapFeature +import com.johnsnowlabs.nlp.util.io.{ExternalResource, ReadAs, ResourceHelper} +import org.apache.spark.broadcast.Broadcast +import org.apache.spark.ml.param.{BooleanParam, IntArrayParam, IntParam} +import org.apache.spark.ml.util.Identifiable +import org.apache.spark.sql.SparkSession + +import java.io.File + +/** BertForZeroShotClassification using a `ModelForSequenceClassification` trained on NLI (natural + * language inference) tasks. Equivalent of `BertForSequenceClassification` models, but these + * models don't require a hardcoded number of potential classes, they can be chosen at runtime. + * It usually means it's slower but it is much more flexible. + * + * Any combination of sequences and labels can be passed and each combination will be posed as a + * premise/hypothesis pair and passed to the pretrained model. + * + * Pretrained models can be loaded with `pretrained` of the companion object: + * {{{ + * val sequenceClassifier = BertForZeroShotClassification.pretrained() + * .setInputCols("token", "document") + * .setOutputCol("label") + * }}} + * The default model is `"bert_base_cased_zero_shot_classifier_xnli"`, if no name is provided. + * + * For available pretrained models please see the + * [[https://nlp.johnsnowlabs.com/models?task=Text+Classification Models Hub]]. + * + * To see which models are compatible and how to import them see + * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended + * examples, see + * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification.scala BertForZeroShotClassification]]. + * + * ==Example== + * {{{ + * import spark.implicits._ + * import com.johnsnowlabs.nlp.base._ + * import com.johnsnowlabs.nlp.annotator._ + * import org.apache.spark.ml.Pipeline + * + * val documentAssembler = new DocumentAssembler() + * .setInputCol("text") + * .setOutputCol("document") + * + * val tokenizer = new Tokenizer() + * .setInputCols("document") + * .setOutputCol("token") + * + * val sequenceClassifier = BertForZeroShotClassification.pretrained() + * .setInputCols("token", "document") + * .setOutputCol("label") + * .setCaseSensitive(true) + * + * val pipeline = new Pipeline().setStages(Array( + * documentAssembler, + * tokenizer, + * sequenceClassifier + * )) + * + * val data = Seq("I loved this movie when I was a child.", "It was pretty boring.").toDF("text") + * val result = pipeline.fit(data).transform(data) + * + * result.select("label.result").show(false) + * +------+ + * |result| + * +------+ + * |[pos] | + * |[neg] | + * +------+ + * }}} + * + * @see + * [[BertForZeroShotClassification]] for sequence-level classification + * @see + * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * transformer based classifiers + * @param uid + * required uid for storing annotator to disk + * @groupname anno Annotator types + * @groupdesc anno + * Required input and expected output annotator types + * @groupname Ungrouped Members + * @groupname param Parameters + * @groupname setParam Parameter setters + * @groupname getParam Parameter getters + * @groupname Ungrouped Members + * @groupprio param 1 + * @groupprio anno 2 + * @groupprio Ungrouped 3 + * @groupprio setParam 4 + * @groupprio getParam 5 + * @groupdesc param + * A list of (hyper-)parameter keys this annotator can take. Users can set and get the + * parameter values through setters and getters, respectively. + */ +class BertForZeroShotClassification(override val uid: String) + extends AnnotatorModel[BertForZeroShotClassification] + with HasBatchedAnnotate[BertForZeroShotClassification] + with WriteTensorflowModel + with HasCaseSensitiveProperties + with HasClassifierActivationProperties + with HasEngine + with HasCandidateLabelsProperties { + + /** Annotator reference id. Used to identify elements in metadata or to refer to this annotator + * type + */ + def this() = this(Identifiable.randomUID("BERT_FOR_ZERO_SHOT_CLASSIFICATION")) + + /** Input Annotator Types: DOCUMENT, TOKEN + * + * @group anno + */ + override val inputAnnotatorTypes: Array[String] = + Array(AnnotatorType.DOCUMENT, AnnotatorType.TOKEN) + + /** Output Annotator Types: CATEGORY + * + * @group anno + */ + override val outputAnnotatorType: AnnotatorType = AnnotatorType.CATEGORY + + /** @group setParam */ + def sentenceStartTokenId: Int = { + $$(vocabulary)("[CLS]") + } + + /** @group setParam */ + def sentenceEndTokenId: Int = { + $$(vocabulary)("[SEP]") + } + + /** Vocabulary used to encode the words to ids with WordPieceEncoder + * + * @group param + */ + val vocabulary: MapFeature[String, Int] = new MapFeature(this, "vocabulary") + + /** @group setParam */ + def setVocabulary(value: Map[String, Int]): this.type = { + if (get(vocabulary).isEmpty) + set(vocabulary, value) + this + } + + /** Labels used to decode predicted IDs back to string tags + * + * @group param + */ + val labels: MapFeature[String, Int] = new MapFeature(this, "labels") + + /** @group setParam */ + def setLabels(value: Map[String, Int]): this.type = { + if (get(labels).isEmpty) + set(labels, value) + this + } + + /** Returns labels used to train this model */ + def getClasses: Array[String] = { + $$(labels).keys.toArray + } + + /** Instead of 1 class per sentence (if inputCols is '''sentence''') output 1 class per document + * by averaging probabilities in all sentences (Default: `false`). + * + * Due to max sequence length limit in almost all transformer models such as BERT (512 tokens), + * this parameter helps feeding all the sentences into the model and averaging all the + * probabilities for the entire document instead of probabilities per sentence. + * + * @group param + */ + val coalesceSentences = new BooleanParam( + this, + "coalesceSentences", + "If sets to true the output of all sentences will be averaged to one output instead of one output per sentence. Default to true.") + + /** @group setParam */ + def setCoalesceSentences(value: Boolean): this.type = set(coalesceSentences, value) + + /** @group getParam */ + def getCoalesceSentences: Boolean = $(coalesceSentences) + + /** ConfigProto from tensorflow, serialized into byte array. Get with + * `config_proto.SerializeToString()` + * + * @group param + */ + val configProtoBytes = new IntArrayParam( + this, + "configProtoBytes", + "ConfigProto from tensorflow, serialized into byte array. Get with config_proto.SerializeToString()") + + /** @group setParam */ + def setConfigProtoBytes(bytes: Array[Int]): BertForZeroShotClassification.this.type = + set(this.configProtoBytes, bytes) + + /** @group getParam */ + def getConfigProtoBytes: Option[Array[Byte]] = get(this.configProtoBytes).map(_.map(_.toByte)) + + /** Max sentence length to process (Default: `128`) + * + * @group param + */ + val maxSentenceLength = + new IntParam(this, "maxSentenceLength", "Max sentence length to process") + + /** @group setParam */ + def setMaxSentenceLength(value: Int): this.type = { + require( + value <= 512, + "BERT models do not support sequences longer than 512 because of trainable positional embeddings.") + require(value >= 1, "The maxSentenceLength must be at least 1") + set(maxSentenceLength, value) + this + } + + /** @group getParam */ + def getMaxSentenceLength: Int = $(maxSentenceLength) + + /** It contains TF model signatures for the laded saved model + * + * @group param + */ + val signatures = new MapFeature[String, String](model = this, name = "signatures") + + /** @group setParam */ + def setSignatures(value: Map[String, String]): this.type = { + if (get(signatures).isEmpty) + set(signatures, value) + this + } + + /** @group getParam */ + def getSignatures: Option[Map[String, String]] = get(this.signatures) + + private var _model: Option[Broadcast[BertClassification]] = None + + /** @group setParam */ + def setModelIfNotSet( + spark: SparkSession, + tensorflowWrapper: TensorflowWrapper): BertForZeroShotClassification = { + if (_model.isEmpty) { + _model = Some( + spark.sparkContext.broadcast( + new BertClassification( + tensorflowWrapper, + sentenceStartTokenId, + sentenceEndTokenId, + configProtoBytes = getConfigProtoBytes, + tags = $$(labels), + signatures = getSignatures, + $$(vocabulary)))) + } + + this + } + + /** @group getParam */ + def getModelIfNotSet: BertClassification = _model.get.value + + /** Whether to lowercase tokens or not (Default: `true`). + * + * @group setParam + */ + override def setCaseSensitive(value: Boolean): this.type = { + if (get(caseSensitive).isEmpty) + set(this.caseSensitive, value) + this + } + + setDefault( + batchSize -> 8, + maxSentenceLength -> 128, + caseSensitive -> true, + coalesceSentences -> false) + + /** takes a document and annotations and produces new annotations of this annotator's annotation + * type + * + * @param batchedAnnotations + * Annotations that correspond to inputAnnotationCols generated by previous annotators if any + * @return + * any number of annotations processed for every input annotation. Not necessary one to one + * relationship + */ + override def batchAnnotate(batchedAnnotations: Seq[Array[Annotation]]): Seq[Seq[Annotation]] = { + batchedAnnotations.map(annotations => { + val sentences = SentenceSplit.unpack(annotations).toArray + val tokenizedSentences = TokenizedWithSentence.unpack(annotations).toArray + + if (tokenizedSentences.nonEmpty) { + getModelIfNotSet.predictSequenceWithZeroShot( + tokenizedSentences, + sentences, + $(candidateLabels), + $(entailmentIdParam), + $(contradictionIdParam), + $(batchSize), + $(maxSentenceLength), + $(caseSensitive), + $(coalesceSentences), + $$(labels), + $(activation)) + + } else { + Seq.empty[Annotation] + } + }) + } + + override def onWrite(path: String, spark: SparkSession): Unit = { + super.onWrite(path, spark) + writeTensorflowModelV2( + path, + spark, + getModelIfNotSet.tensorflowWrapper, + "_bert_classification", + BertForZeroShotClassification.tfFile, + configProtoBytes = getConfigProtoBytes) + } + +} + +trait ReadablePretrainedBertForZeroShotModel + extends ParamsAndFeaturesReadable[BertForZeroShotClassification] + with HasPretrained[BertForZeroShotClassification] { + override val defaultModelName: Some[String] = Some("bert_base_cased_zero_shot_classifier_xnli") + + /** Java compliant-overrides */ + override def pretrained(): BertForZeroShotClassification = super.pretrained() + + override def pretrained(name: String): BertForZeroShotClassification = super.pretrained(name) + + override def pretrained(name: String, lang: String): BertForZeroShotClassification = + super.pretrained(name, lang) + + override def pretrained( + name: String, + lang: String, + remoteLoc: String): BertForZeroShotClassification = super.pretrained(name, lang, remoteLoc) +} + +trait ReadBertForZeroShotDLModel extends ReadTensorflowModel { + this: ParamsAndFeaturesReadable[BertForZeroShotClassification] => + + override val tfFile: String = "bert_classification_tensorflow" + + def readModel( + instance: BertForZeroShotClassification, + path: String, + spark: SparkSession): Unit = { + + val tf = readTensorflowModel(path, spark, "_bert_classification_tf", initAllTables = false) + instance.setModelIfNotSet(spark, tf) + } + + addReader(readModel) + + def loadSavedModel(modelPath: String, spark: SparkSession): BertForZeroShotClassification = { + + val (localModelPath, detectedEngine) = modelSanityCheck(modelPath) + + val vocabs = loadTextAsset(localModelPath, "vocab.txt").zipWithIndex.toMap + val labels = loadTextAsset(localModelPath, "labels.txt").zipWithIndex.toMap + + val entailmentIds = labels.filter(x => x._1.toLowerCase().startsWith("entail")).values.toArray + val contradictionIds = + labels.filter(x => x._1.toLowerCase().startsWith("contradict")).values.toArray + + require( + entailmentIds.length == 1 && contradictionIds.length == 1, + s"""This annotator supports classifiers trained on NLI datasets. You must have only at least 2 or maximum 3 labels in your dataset: + + example with 3 labels: 'contradict', 'neutral', 'entailment' + example with 2 labels: 'contradict', 'entailment' + + You can modify assets/labels.txt file to match the above format. + + Current labels: ${labels.keys.mkString(", ")} + """) + + val annotatorModel = new BertForZeroShotClassification() + .setVocabulary(vocabs) + .setLabels(labels) + .setCandidateLabels(labels.keys.toArray) + + /* set the entailment id */ + annotatorModel.set(annotatorModel.entailmentIdParam, entailmentIds.head) + /* set the contradiction id */ + annotatorModel.set(annotatorModel.contradictionIdParam, contradictionIds.head) + /* set the engine */ + annotatorModel.set(annotatorModel.engine, detectedEngine) + + detectedEngine match { + case ModelEngine.tensorflow => + val (wrapper, signatures) = + TensorflowWrapper.read(localModelPath, zipped = false, useBundle = true) + + val _signatures = signatures match { + case Some(s) => s + case None => throw new Exception("Cannot load signature definitions from model!") + } + + /** the order of setSignatures is important if we use getSignatures inside + * setModelIfNotSet + */ + annotatorModel + .setSignatures(_signatures) + .setModelIfNotSet(spark, wrapper) + + case _ => + throw new Exception(notSupportedEngineError) + } + + annotatorModel + } +} + +/** This is the companion object of [[BertForZeroShotClassification]]. Please refer to that class + * for the documentation. + */ +object BertForZeroShotClassification + extends ReadablePretrainedBertForZeroShotModel + with ReadBertForZeroShotDLModel diff --git a/src/main/scala/com/johnsnowlabs/nlp/pretrained/ResourceDownloader.scala b/src/main/scala/com/johnsnowlabs/nlp/pretrained/ResourceDownloader.scala index 87a326209d92..9b016c15be42 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/pretrained/ResourceDownloader.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/pretrained/ResourceDownloader.scala @@ -720,7 +720,8 @@ object PythonResourceDownloader { "TapasForQuestionAnswering" -> TapasForQuestionAnswering, "CamemBertForSequenceClassification" -> CamemBertForSequenceClassification, "CamemBertForQuestionAnswering" -> CamemBertForQuestionAnswering, - "ZeroShotNerModel" -> ZeroShotNerModel) + "ZeroShotNerModel" -> ZeroShotNerModel, + "BertForZeroShotClassification" -> BertForZeroShotClassification) // List pairs of types such as the one with key type can load a pretrained model from the value type val typeMapper: Map[String, String] = Map("ZeroShotNerModel" -> "RoBertaForQuestionAnswering") diff --git a/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassificationTestSpec.scala b/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassificationTestSpec.scala new file mode 100644 index 000000000000..dbd181263442 --- /dev/null +++ b/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassificationTestSpec.scala @@ -0,0 +1,186 @@ +/* + * Copyright 2017-2022 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.nlp.annotators.classifier.dl + +import com.johnsnowlabs.nlp.annotators.Tokenizer +import com.johnsnowlabs.nlp.base.DocumentAssembler +import com.johnsnowlabs.nlp.training.CoNLL +import com.johnsnowlabs.nlp.util.io.ResourceHelper +import com.johnsnowlabs.tags.SlowTest +import com.johnsnowlabs.util.Benchmark +import org.apache.spark.ml.{Pipeline, PipelineModel} +import org.apache.spark.sql.functions.{col, explode, size} +import org.scalatest.flatspec.AnyFlatSpec + +class BertForZeroShotClassificationTestSpec extends AnyFlatSpec { + + import ResourceHelper.spark.implicits._ + + val candidateLabels = + Array("urgent", "mobile", "travel", "movie", "music", "sport", "weather", "technology") + + "BertForSBertForZeroShotClassification" should "correctly load custom model with extracted signatures" taggedAs SlowTest in { + + val ddd = Seq( + "I have a problem with my iphone that needs to be resolved asap!!", + "Last week I upgraded my iOS version and ever since then my phone has been overheating whenever I use your app.", + "I have a phone and I love it!", + "I really want to visit Germany and I am planning to go there next year.", + "Let's watch some movies tonight! I am in the mood for a horror movie.", + "Have you watched the match yesterday? It was a great game!", + "We need to harry up and get to the airport. We are going to miss our flight!") + .toDF("text") + + val document = new DocumentAssembler() + .setInputCol("text") + .setOutputCol("document") + + val tokenizer = new Tokenizer() + .setInputCols(Array("document")) + .setOutputCol("token") + + val tokenClassifier = BertForZeroShotClassification + .pretrained() + .setInputCols(Array("token", "document")) + .setOutputCol("multi_class") + .setCaseSensitive(true) + .setCoalesceSentences(true) + .setCandidateLabels(candidateLabels) + + val pipeline = new Pipeline().setStages( + Array(document, tokenizer, tokenClassifier)) + + val pipelineModel = pipeline.fit(ddd) + val pipelineDF = pipelineModel.transform(ddd) + + pipelineDF.select("multi_class").show(20, false) + pipelineDF.select("document.result", "multi_class.result").show(20, false) + pipelineDF + .withColumn("doc_size", size(col("document"))) + .withColumn("label_size", size(col("multi_class"))) + .where(col("doc_size") =!= col("label_size")) + .select("doc_size", "label_size", "document.result", "multi_class.result") + .show(20, false) + + val totalDocs = pipelineDF.select(explode($"document.result")).count.toInt + val totalLabels = pipelineDF.select(explode($"multi_class.result")).count.toInt + + println(s"total tokens: $totalDocs") + println(s"total embeddings: $totalLabels") + + assert(totalDocs == totalLabels) + } + + "BertForZeroShotClassification" should "be saved and loaded correctly" taggedAs SlowTest in { + + import ResourceHelper.spark.implicits._ + + val ddd = Seq( + "John Lenon was born in London and lived in Paris. My name is Sarah and I live in London", + "Rare Hendrix song draft sells for almost $17,000.", + "EU rejects German call to boycott British lamb .", + "TORONTO 1996-08-21").toDF("text") + + val document = new DocumentAssembler() + .setInputCol("text") + .setOutputCol("document") + + val tokenizer = new Tokenizer() + .setInputCols(Array("document")) + .setOutputCol("token") + + val tokenClassifier = BertForZeroShotClassification + .pretrained() + .setInputCols(Array("token", "document")) + .setOutputCol("label") + .setCaseSensitive(true) + .setCoalesceSentences(true) + .setCandidateLabels(candidateLabels) + .setBatchSize(2) + + val pipeline = new Pipeline().setStages(Array(document, tokenizer, tokenClassifier)) + + val pipelineModel = pipeline.fit(ddd) + val pipelineDF = pipelineModel.transform(ddd) + + pipelineDF.select("label.result").show(false) + + Benchmark.time("Time to save BertForZeroShotClassification pipeline model") { + pipelineModel.write.overwrite().save("./tmp_bertfornli_pipeline") + } + + Benchmark.time("Time to save BertForZeroShotClassification model") { + pipelineModel.stages.last + .asInstanceOf[BertForZeroShotClassification] + .write + .overwrite() + .save("./tmp_bertforsnli_model") + } + + val loadedPipelineModel = PipelineModel.load("./tmp_bertfornli_pipeline") + loadedPipelineModel.transform(ddd).select("label.result").show(false) + + val loadedSequenceModel = BertForZeroShotClassification.load("./tmp_bertforsnli_model") + println(loadedSequenceModel.getClasses.mkString("Array(", ", ", ")")) + + } + + "BertForZeroShotClassification" should "benchmark test" taggedAs SlowTest in { + + val conll = CoNLL(explodeSentences = false) + val training_data = + conll + .readDataset(ResourceHelper.spark, "src/test/resources/conll2003/eng.train") + .repartition(12) + + val tokenClassifier = BertForZeroShotClassification + .pretrained() + .setInputCols(Array("token", "sentence")) + .setOutputCol("class") + .setCaseSensitive(true) + .setCoalesceSentences(true) + .setCandidateLabels(candidateLabels) + .setBatchSize(2) + + val pipeline = new Pipeline() + .setStages(Array(tokenClassifier)) + + val pipelineDF = pipeline.fit(training_data).transform(training_data).cache() + Benchmark.time("Time to save pipeline results") { + pipelineDF.write.mode("overwrite").parquet("./tmp_nli_classifier") + } + + pipelineDF.select("class").show(2, false) + pipelineDF.select("sentence.result", "class.result").show(2, false) + + // only works if it's softmax - one lable per row + pipelineDF + .withColumn("doc_size", size(col("sentence"))) + .withColumn("label_size", size(col("class"))) + .where(col("doc_size") =!= col("label_size")) + .select("doc_size", "label_size", "sentence.result", "class.result") + .show(20, false) + + val totalDocs = pipelineDF.select(explode($"sentence.result")).count.toInt + val totalLabels = pipelineDF.select(explode($"class.result")).count.toInt + + println(s"total docs: $totalDocs") + println(s"total classes: $totalLabels") + + assert(totalDocs == totalLabels) + } +} From de6ae11cf26d4da3b19cd80e46708826d1da9f41 Mon Sep 17 00:00:00 2001 From: Prabod Rathnayaka Date: Fri, 7 Apr 2023 04:05:55 +1000 Subject: [PATCH 08/26] Sparknlp 534 Introducing BART Transformer for text-to-text generation tasks like translation and summarization (#13731) * WIP: Added Bart transformer scala files * WIP: Added BART tokenizer test and BART is locally working * WIP: Added BART tokenizer test and BART is locally working * WIP: Added Beam Hypothesis and Beam Scorer implementations * WIP: Added Logit Processors * WIP: Added Beam Search implementation * WIP: Completed Beam Search implementation WIP: Added Generate method for text generation * WIP: fixed a bug in Beam search algorithm WIP: Generate method for text generation * WIP: changed BartTransformer methods to include beam size and added description * WIP: changed BartTransformer test methods * WIP: fixed errors in BeamSearch * WIP: Updated to use separate encoder decoder model * WIP: Changed model to handle the int64 version of the model weights * WIP: Added python API implementation * Pass session and encoder state as a parameter Clean up unnecessary code * Update TopK Logit Warper Logic * Code clean up * Update Tests * Update documentation * Update documentation and python tests * Update python tests * SPARKNLP-534 move BartTokenizer to the Bart backend Signed-off-by: Maziyar Panahi * SPARKNLP-534 Fix the copyright year Signed-off-by: Maziyar Panahi * SPARKNLP-534 Add BartTransformer to annotator and ResourceDownloader Signed-off-by: Maziyar Panahi * SPARKNLP-534 Fix BartTransformer in annotator Signed-off-by: Maziyar Panahi --------- Signed-off-by: Maziyar Panahi Co-authored-by: Maziyar Panahi --- python/sparknlp/annotator/seq2seq/__init__.py | 1 + .../annotator/seq2seq/bart_transformer.py | 402 +++++++++ python/sparknlp/internal/__init__.py | 6 + .../seq2seq/bart_transformer_test.py | 280 ++++++ .../scala/com/johnsnowlabs/ml/ai/Bart.scala | 853 ++++++++++++++++++ .../ml/ai/util/Generation/Generate.scala | 279 ++++++ .../ml/ai/util/Generation/Logit/Logit.scala | 31 + .../Logit/LogitProcess/LogitProcessor.scala | 19 + .../MinLengthLogitProcessor.scala | 45 + .../NoRepeatNgramsLogitProcessor.scala | 95 ++ .../RepetitionPenaltyLogitProcessor.scala | 48 + .../Generation/Logit/LogitProcessorList.scala | 52 ++ .../Logit/LogitWarper/LogitWarper.scala | 38 + .../LogitWarper/TemperatureLogitWarper.scala | 31 + .../Logit/LogitWarper/TopKLogitWarper.scala | 60 ++ .../Logit/LogitWarper/TopPLogitWarper.scala | 66 ++ .../Generation/Search/BeamHypotheses.scala | 85 ++ .../util/Generation/Search/BeamScorer.scala | 43 + .../Generation/Search/BeamSearchScorer.scala | 176 ++++ .../com/johnsnowlabs/nlp/annotator.scala | 10 +- .../annotators/seq2seq/BartTransformer.scala | 608 +++++++++++++ .../tokenizer/bpe/BartTokenizer.scala | 31 + .../tokenizer/bpe/BpeSpecialTokens.scala | 9 + .../tokenizer/bpe/BpeTokenizer.scala | 10 +- .../nlp/pretrained/ResourceDownloader.scala | 8 +- .../nlp/annotators/seq2seq/BartTestSpec.scala | 206 +++++ .../tokenizer/bpe/BartTokenizerTestSpec.scala | 92 ++ 27 files changed, 3580 insertions(+), 4 deletions(-) create mode 100755 python/sparknlp/annotator/seq2seq/bart_transformer.py create mode 100644 python/test/annotator/seq2seq/bart_transformer_test.py create mode 100644 src/main/scala/com/johnsnowlabs/ml/ai/Bart.scala create mode 100644 src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Generate.scala create mode 100644 src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/Logit.scala create mode 100644 src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/LogitProcessor.scala create mode 100644 src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/MinLengthLogitProcessor.scala create mode 100644 src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/NoRepeatNgramsLogitProcessor.scala create mode 100644 src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/RepetitionPenaltyLogitProcessor.scala create mode 100644 src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcessorList.scala create mode 100644 src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/LogitWarper.scala create mode 100644 src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TemperatureLogitWarper.scala create mode 100644 src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopKLogitWarper.scala create mode 100644 src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopPLogitWarper.scala create mode 100644 src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamHypotheses.scala create mode 100644 src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamScorer.scala create mode 100644 src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamSearchScorer.scala create mode 100644 src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala create mode 100644 src/main/scala/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BartTokenizer.scala create mode 100644 src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTestSpec.scala create mode 100644 src/test/scala/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BartTokenizerTestSpec.scala diff --git a/python/sparknlp/annotator/seq2seq/__init__.py b/python/sparknlp/annotator/seq2seq/__init__.py index d0916bf48b95..f1bbfdac8453 100644 --- a/python/sparknlp/annotator/seq2seq/__init__.py +++ b/python/sparknlp/annotator/seq2seq/__init__.py @@ -16,3 +16,4 @@ from sparknlp.annotator.seq2seq.gpt2_transformer import * from sparknlp.annotator.seq2seq.marian_transformer import * from sparknlp.annotator.seq2seq.t5_transformer import * +from sparknlp.annotator.seq2seq.bart_transformer import * diff --git a/python/sparknlp/annotator/seq2seq/bart_transformer.py b/python/sparknlp/annotator/seq2seq/bart_transformer.py new file mode 100755 index 000000000000..f717cc4bf049 --- /dev/null +++ b/python/sparknlp/annotator/seq2seq/bart_transformer.py @@ -0,0 +1,402 @@ +# Copyright 2017-2023 John Snow Labs +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""Contains classes for the BartTransformer.""" + +from sparknlp.common import * + + +class BartTransformer(AnnotatorModel, HasBatchedAnnotate, HasEngine): + """BART: Denoising Sequence-to-Sequence Pre-training for Natural Language Generation, + Translation, and Comprehension Transformer + + The Facebook BART (Bidirectional and Auto-Regressive Transformer) model is a state-of-the-art + language generation model that was introduced by Facebook AI in 2019. It is based on the + transformer architecture and is designed to handle a wide range of natural language processing + tasks such as text generation, summarization, and machine translation. + + BART is unique in that it is both bidirectional and auto-regressive, meaning that it can + generate text both from left-to-right and from right-to-left. This allows it to capture + contextual information from both past and future tokens in a sentence,resulting in more + accurate and natural language generation. + + The model was trained on a large corpus of text data using a combination of unsupervised and + supervised learning techniques. It incorporates pretraining and fine-tuning phases, where the + model is first trained on a large unlabeled corpus of text, and then fine-tuned on specific + downstream tasks. + + BART has achieved state-of-the-art performance on a wide range of NLP tasks, including + summarization, question-answering, and language translation. Its ability to handle multiple + tasks and its high performance on each of these tasks make it a versatile and valuable tool + for natural language processing applications. + + + Pretrained models can be loaded with :meth:`.pretrained` of the companion + object: + + >>> t5 = BartTransformer.pretrained() \\ + ... .setTask("summarize:") \\ + ... .setInputCols(["document"]) \\ + ... .setOutputCol("summaries") + + + The default model is ``"bart_large_cnn"``, if no name is provided. For available + pretrained models please see the `Models Hub + `__. + + For extended examples of usage, see the `Examples + `__. + + ====================== ====================== + Input Annotation types Output Annotation type + ====================== ====================== + ``DOCUMENT`` ``DOCUMENT`` + ====================== ====================== + + Parameters + ---------- + configProtoBytes + ConfigProto from tensorflow, serialized into byte array. + task + Transformer's task, e.g. ``summarize:`` + minOutputLength + Minimum length of the sequence to be generated + maxOutputLength + Maximum length of output text + doSample + Whether or not to use sampling; use greedy decoding otherwise + temperature + The value used to module the next token probabilities + topK + The number of highest probability vocabulary tokens to keep for + top-k-filtering + BeamSize + The number of beam size for beam search + topP + Top cumulative probability for vocabulary tokens + + If set to float < 1, only the most probable tokens with probabilities + that add up to ``topP`` or higher are kept for generation. + repetitionPenalty + The parameter for repetition penalty. 1.0 means no penalty. + noRepeatNgramSize + If set to int > 0, all ngrams of that size can only occur once + ignoreTokenIds + A list of token ids which are ignored in the decoder's output + + Notes + ----- + This is a very computationally expensive module especially on larger + sequence. The use of an accelerator such as GPU is recommended. + + References + ---------- + - `Denoising Sequence-to-Sequence Pre-training for Natural Language Generation, Translation, and Comprehension + `__ + - https://github.com/pytorch/fairseq + + **Paper Abstract:** + *We present BART, a denoising autoencoder for pretraining sequence-to-sequence models. + BART is trained by (1) corrupting text with an arbitrary noising function, and (2) + learning a model to reconstruct the original text. It uses a standard Tranformer-based + neural machine translation architecture which, despite its simplicity, can be seen as + generalizing BERT (due to the bidirectional encoder), GPT (with the left-to-right decoder), + and many other more recent pretraining schemes. We evaluate a number of noising approaches, + finding the best performance by both randomly shuffling the order of the original sentences + and using a novel in-filling scheme, where spans of text are replaced with a single mask token. + BART is particularly effective when fine tuned for text generation but also works well for + comprehension tasks. It matches the performance of RoBERTa with comparable training resources + on GLUE and SQuAD, achieves new state-of-the-art results on a range of abstractive dialogue, + question answering, and summarization tasks, with gains of up to 6 ROUGE. BART also provides + a 1.1 BLEU increase over a back-translation system for machine translation, with only target + language pretraining. We also report ablation experiments that replicate other pretraining + schemes within the BART framework, to better measure which factors most influence end-task performance.* + + Examples + -------- + >>> import sparknlp + >>> from sparknlp.base import * + >>> from sparknlp.annotator import * + >>> from pyspark.ml import Pipeline + >>> documentAssembler = DocumentAssembler() \\ + ... .setInputCol("text") \\ + ... .setOutputCol("documents") + >>> bart = BartTransformer.pretrained("bart_large_cnn") \\ + ... .setTask("summarize:") \\ + ... .setInputCols(["documents"]) \\ + ... .setMaxOutputLength(200) \\ + ... .setOutputCol("summaries") + >>> pipeline = Pipeline().setStages([documentAssembler, bart]) + >>> data = spark.createDataFrame([[ + ... "Transfer learning, where a model is first pre-trained on a data-rich task before being fine-tuned on a " + + ... "downstream task, has emerged as a powerful technique in natural language processing (NLP). The effectiveness" + + ... " of transfer learning has given rise to a diversity of approaches, methodology, and practice. In this " + + ... "paper, we explore the landscape of transfer learning techniques for NLP by introducing a unified framework " + + ... "that converts all text-based language problems into a text-to-text format. Our systematic study compares " + + ... "pre-training objectives, architectures, unlabeled data sets, transfer approaches, and other factors on dozens " + + ... "of language understanding tasks. By combining the insights from our exploration with scale and our new " + + ... "Colossal Clean Crawled Corpus, we achieve state-of-the-art results on many benchmarks covering " + + ... "summarization, question answering, text classification, and more. To facilitate future work on transfer " + + ... "learning for NLP, we release our data set, pre-trained models, and code." + ... ]]).toDF("text") + >>> result = pipeline.fit(data).transform(data) + >>> result.select("summaries.result").show(truncate=False) + +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + |result | + +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + |[transfer learning has emerged as a powerful technique in natural language processing (NLP) the effectiveness of transfer learning has given rise to a diversity of approaches, methodologies, and practice .]| + --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + """ + + name = "BartTransformer" + + inputAnnotatorTypes = [AnnotatorType.DOCUMENT] + + outputAnnotatorType = AnnotatorType.DOCUMENT + + configProtoBytes = Param(Params._dummy(), + "configProtoBytes", + "ConfigProto from tensorflow, serialized into byte array. Get with config_proto.SerializeToString()", + TypeConverters.toListInt) + + task = Param(Params._dummy(), "task", "Transformer's task, e.g. summarize>", typeConverter=TypeConverters.toString) + + minOutputLength = Param(Params._dummy(), "minOutputLength", "Minimum length of the sequence to be generated", + typeConverter=TypeConverters.toInt) + + maxOutputLength = Param(Params._dummy(), "maxOutputLength", "Maximum length of output text", + typeConverter=TypeConverters.toInt) + + doSample = Param(Params._dummy(), "doSample", "Whether or not to use sampling; use greedy decoding otherwise", + typeConverter=TypeConverters.toBoolean) + + temperature = Param(Params._dummy(), "temperature", "The value used to module the next token probabilities", + typeConverter=TypeConverters.toFloat) + + topK = Param(Params._dummy(), "topK", + "The number of highest probability vocabulary tokens to keep for top-k-filtering", + typeConverter=TypeConverters.toInt) + + topP = Param(Params._dummy(), "topP", + "If set to float < 1, only the most probable tokens with probabilities that add up to ``top_p`` or higher are kept for generation", + typeConverter=TypeConverters.toFloat) + + repetitionPenalty = Param(Params._dummy(), "repetitionPenalty", + "The parameter for repetition penalty. 1.0 means no penalty. See `this paper `__ for more details", + typeConverter=TypeConverters.toFloat) + + noRepeatNgramSize = Param(Params._dummy(), "noRepeatNgramSize", + "If set to int > 0, all ngrams of that size can only occur once", + typeConverter=TypeConverters.toInt) + + ignoreTokenIds = Param(Params._dummy(), "ignoreTokenIds", + "A list of token ids which are ignored in the decoder's output", + typeConverter=TypeConverters.toListInt) + + beamSize = Param(Params._dummy(), "beamSize", + "The Number of beams for beam search.", + typeConverter=TypeConverters.toInt) + + def setIgnoreTokenIds(self, value): + """A list of token ids which are ignored in the decoder's output. + + Parameters + ---------- + value : List[int] + The words to be filtered out + """ + return self._set(ignoreTokenIds=value) + + def setConfigProtoBytes(self, b): + """Sets configProto from tensorflow, serialized into byte array. + + Parameters + ---------- + b : List[int] + ConfigProto from tensorflow, serialized into byte array + """ + return self._set(configProtoBytes=b) + + def setTask(self, value): + """Sets the transformer's task, e.g. ``summarize:``. + + Parameters + ---------- + value : str + The transformer's task + """ + return self._set(task=value) + + def setMinOutputLength(self, value): + """Sets minimum length of the sequence to be generated. + + Parameters + ---------- + value : int + Minimum length of the sequence to be generated + """ + return self._set(minOutputLength=value) + + def setMaxOutputLength(self, value): + """Sets maximum length of output text. + + Parameters + ---------- + value : int + Maximum length of output text + """ + return self._set(maxOutputLength=value) + + def setDoSample(self, value): + """Sets whether or not to use sampling, use greedy decoding otherwise. + + Parameters + ---------- + value : bool + Whether or not to use sampling; use greedy decoding otherwise + """ + return self._set(doSample=value) + + def setTemperature(self, value): + """Sets the value used to module the next token probabilities. + + Parameters + ---------- + value : float + The value used to module the next token probabilities + """ + return self._set(temperature=value) + + def setTopK(self, value): + """Sets the number of highest probability vocabulary tokens to keep for + top-k-filtering. + + Parameters + ---------- + value : int + Number of highest probability vocabulary tokens to keep + """ + return self._set(topK=value) + + def setTopP(self, value): + """Sets the top cumulative probability for vocabulary tokens. + + If set to float < 1, only the most probable tokens with probabilities + that add up to ``topP`` or higher are kept for generation. + + Parameters + ---------- + value : float + Cumulative probability for vocabulary tokens + """ + return self._set(topP=value) + + def setRepetitionPenalty(self, value): + """Sets the parameter for repetition penalty. 1.0 means no penalty. + + Parameters + ---------- + value : float + The repetition penalty + + References + ---------- + See `Ctrl: A Conditional Transformer Language Model For Controllable + Generation `__ for more details. + """ + return self._set(repetitionPenalty=value) + + def setNoRepeatNgramSize(self, value): + """Sets size of n-grams that can only occur once. + + If set to int > 0, all ngrams of that size can only occur once. + + Parameters + ---------- + value : int + N-gram size can only occur once + """ + return self._set(noRepeatNgramSize=value) + + def setBeamSize(self, value): + """Sets the number of beam size for beam search + + Parameters + ---------- + value : int + Number of beam size for beam search + """ + return self._set(beamSize=value) + + @keyword_only + def __init__(self, classname="com.johnsnowlabs.nlp.annotators.seq2seq.BartTransformer", java_model=None): + super(BartTransformer, self).__init__( + classname=classname, + java_model=java_model + ) + self._setDefault( + task="", + minOutputLength=0, + maxOutputLength=20, + doSample=False, + temperature=1.0, + topK=50, + topP=1.0, + repetitionPenalty=1.0, + noRepeatNgramSize=0, + ignoreTokenIds=[], + batchSize=1, + beamSize=4 + ) + + @staticmethod + def loadSavedModel(folder, spark_session): + """Loads a locally saved model. + + Parameters + ---------- + folder : str + Folder of the saved model + spark_session : pyspark.sql.SparkSession + The current SparkSession + + Returns + ------- + BartTransformer + The restored model + """ + from sparknlp.internal import _BartLoader + jModel = _BartLoader(folder, spark_session._jsparkSession)._java_obj + return BartTransformer(java_model=jModel) + + @staticmethod + def pretrained(name="t5_small", lang="en", remote_loc=None): + """Downloads and loads a pretrained model. + + Parameters + ---------- + name : str, optional + Name of the pretrained model, by default "t5_small" + lang : str, optional + Language of the pretrained model, by default "en" + remote_loc : str, optional + Optional remote address of the resource, by default None. Will use + Spark NLPs repositories otherwise. + + Returns + ------- + BartTransformer + The restored model + """ + from sparknlp.pretrained import ResourceDownloader + return ResourceDownloader.downloadModel(BartTransformer, name, lang, remote_loc) diff --git a/python/sparknlp/internal/__init__.py b/python/sparknlp/internal/__init__.py index b22fb5caa597..1dd1b5de4905 100644 --- a/python/sparknlp/internal/__init__.py +++ b/python/sparknlp/internal/__init__.py @@ -220,6 +220,12 @@ def __init__(self, path, jspark): "com.johnsnowlabs.nlp.annotators.seq2seq.T5Transformer.loadSavedModel", path, jspark) +class _BartLoader(ExtendedJavaWrapper): + def __init__(self, path, jspark): + super(_BartLoader, self).__init__( + "com.johnsnowlabs.nlp.annotators.seq2seq.BartTransformer.loadSavedModel", path, jspark) + + class _USELoader(ExtendedJavaWrapper): def __init__(self, path, jspark, loadsp): super(_USELoader, self).__init__("com.johnsnowlabs.nlp.embeddings.UniversalSentenceEncoder.loadSavedModel", diff --git a/python/test/annotator/seq2seq/bart_transformer_test.py b/python/test/annotator/seq2seq/bart_transformer_test.py new file mode 100644 index 000000000000..955b6b9041c9 --- /dev/null +++ b/python/test/annotator/seq2seq/bart_transformer_test.py @@ -0,0 +1,280 @@ +# Copyright 2017-2023 John Snow Labs +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +import unittest + +import pytest + +from sparknlp.annotator import * +from sparknlp.base import * +from test.util import SparkContextForTest + + +@pytest.mark.slow +class BartTransformerQATestSpec(unittest.TestCase): + def setUp(self): + self.spark = SparkContextForTest.spark + + def runTest(self): + data = self.spark.createDataFrame([ + [1, """PG&E stated it scheduled the blackouts in response to forecasts for high winds + amid dry conditions. The aim is to reduce the risk of wildfires. Nearly 800 thousand customers were + scheduled to be affected by the shutoffs which were expected to last through at least midday tomorrow. + """.strip().replace("\n", " ")], + ]).toDF("id", "text") + + document_assembler = DocumentAssembler() \ + .setInputCol("text") \ + .setOutputCol("documents") + + bart = BartTransformer.pretrained("bart_large_cnn") \ + .setInputCols(["documents"]) \ + .setOutputCol("answers") + + pipeline = Pipeline().setStages([document_assembler, bart]) + results = pipeline.fit(data).transform(data) + + results.select("questions.result", "answers.result").show(truncate=False) + + +@pytest.mark.slow +class BartTransformerSummaryTestSpec(unittest.TestCase): + def setUp(self): + self.spark = SparkContextForTest.spark + + def runTest(self): + data = self.spark.createDataFrame([ + [1, """ + Heat oven to 200C/180C fan/gas 6. Line each hole of a 12-hole muffin tin with a thin strip of baking + parchment across the middle that’s long enough so the ends stick out a centimetre or two – use a dab of + butter to stick in place. Roll out two thirds of the pastry on a lightly floured surface and stamp out + 12 x 10cm circles (you may need to re-roll trimmings). Press a circle into each hole to line. + + Sprinkle 1 tsp of breadcrumbs into the base of each pie. Tip the rest of the crumbs into a mixing bowl. + Squeeze in the sausage meat, discarding the skins, along with the bacon, mace, pepper, sage and just a + little salt. Get your hands in and mash and squish everything together until the breadcrumbs have just + about disappeared. Divide mixture between the holes, packing in firmly and shaping to a dome in the middle. + + Roll out the remaining pastry and stamp out 12 x 7cm circles. Brush with a little egg and add a top to + each pie, egg-side down to stick, carefully pressing pastry edges together to seal. Brush with more egg + (don’t throw away leftovers) and sprinkle with sesame seeds. Bake for 30 mins until golden then carefully + remove the pies from the tin, using the parchment ends to help you lift them out. Sit on a parchment lined + baking tray, brush all round the sides with more egg and put back in the oven for 8 mins. Cool completely + then eat with piccalilli, or your favourite pickle. + """.strip().replace("\n", " ")]]).toDF("id", "text") + + document_assembler = DocumentAssembler() \ + .setInputCol("text") \ + .setOutputCol("documents") + + bart = BartTransformer.pretrained("bart_large_cnn") \ + .setTask("summarize:") \ + .setMaxOutputLength(200) \ + .setInputCols(["documents"]) \ + .setOutputCol("summaries") + + pipeline = Pipeline().setStages([document_assembler, bart]) + results = pipeline.fit(data).transform(data) + + results.select("summaries.result").show(truncate=False) + + +@pytest.mark.slow +class BartTransformerSummaryWithRepetitionPenaltyTestSpec(unittest.TestCase): + def setUp(self): + self.spark = SparkContextForTest.spark + + def runTest(self): + data = self.spark.createDataFrame([ + [1, """Preheat the oven to 220°C/ fan200°C/gas 7. Trim the lamb fillet of fat and cut into slices the thickness + of a chop. Cut the kidneys in half and snip out the white core. Melt a knob of dripping or 2 tablespoons + of vegetable oil in a heavy large pan. Fry the lamb fillet in batches for 3-4 minutes, turning once, until + browned. Set aside. Fry the kidneys and cook for 1-2 minutes, turning once, until browned. Set aside. + Wipe the pan with kitchen paper, then add the butter. Add the onions and fry for about 10 minutes until + softened. Sprinkle in the flour and stir well for 1 minute. Gradually pour in the stock, stirring all the + time to avoid lumps. Add the herbs. Stir the lamb and kidneys into the onions. Season well. Transfer to a + large 2.5-litre casserole. Slice the peeled potatoes thinly and arrange on top in overlapping rows. Brush + with melted butter and season. Cover and bake for 30 minutes. Reduce the oven temperature to 160°C + /fan140°C/gas 3 and cook for a further 2 hours. Then increase the oven temperature to 200°C/ fan180°C/gas 6, + uncover, and brush the potatoes with more butter. Cook uncovered for 15-20 minutes, or until golden. + """.strip().replace("\n", " ")]]).toDF("id", "text") + + document_assembler = DocumentAssembler() \ + .setInputCol("text") \ + .setOutputCol("documents") + + bart = BartTransformer.pretrained("bart_large_cnn") \ + .setTask("summarize:") \ + .setMaxOutputLength(50) \ + .setInputCols(["documents"]) \ + .setOutputCol("summaries") \ + .setRepetitionPenalty(2) + + pipeline = Pipeline().setStages([document_assembler, bart]) + results = pipeline.fit(data).transform(data) + + results.select("summaries.result").show(truncate=False) + + +@pytest.mark.slow +class BartTransformerSummaryWithSamplingAndDeactivatedTopKTestSpec(unittest.TestCase): + def setUp(self): + self.spark = SparkContextForTest.spark + + def runTest(self): + data = self.spark.createDataFrame([ + [1, """Preheat the oven to 220°C/ fan200°C/gas 7. Trim the lamb fillet of fat and cut into slices the thickness + of a chop. Cut the kidneys in half and snip out the white core. Melt a knob of dripping or 2 tablespoons + of vegetable oil in a heavy large pan. Fry the lamb fillet in batches for 3-4 minutes, turning once, until + browned. Set aside. Fry the kidneys and cook for 1-2 minutes, turning once, until browned. Set aside. + Wipe the pan with kitchen paper, then add the butter. Add the onions and fry for about 10 minutes until + softened. Sprinkle in the flour and stir well for 1 minute. Gradually pour in the stock, stirring all the + time to avoid lumps. Add the herbs. Stir the lamb and kidneys into the onions. Season well. Transfer to a + large 2.5-litre casserole. Slice the peeled potatoes thinly and arrange on top in overlapping rows. Brush + with melted butter and season. Cover and bake for 30 minutes. Reduce the oven temperature to 160°C + /fan140°C/gas 3 and cook for a further 2 hours. Then increase the oven temperature to 200°C/ fan180°C/gas 6, + uncover, and brush the potatoes with more butter. Cook uncovered for 15-20 minutes, or until golden. + """.strip().replace("\n", " ")]]).toDF("id", "text") + + document_assembler = DocumentAssembler() \ + .setInputCol("text") \ + .setOutputCol("documents") + + bart = BartTransformer.pretrained("bart_large_cnn") \ + .setTask("summarize:") \ + .setMaxOutputLength(50) \ + .setDoSample(True) \ + .setInputCols(["documents"]) \ + .setOutputCol("summaries") \ + .setTopK(0) + + pipeline = Pipeline().setStages([document_assembler, bart]) + results = pipeline.fit(data).transform(data) + + results.select("summaries.result").show(truncate=False) + + +@pytest.mark.slow +class BartTransformerSummaryWithSamplingAndTemperatureTestSpec(unittest.TestCase): + def setUp(self): + self.spark = SparkContextForTest.spark + + def runTest(self): + data = self.spark.createDataFrame([ + [1, """Preheat the oven to 220°C/ fan200°C/gas 7. Trim the lamb fillet of fat and cut into slices the thickness + of a chop. Cut the kidneys in half and snip out the white core. Melt a knob of dripping or 2 tablespoons + of vegetable oil in a heavy large pan. Fry the lamb fillet in batches for 3-4 minutes, turning once, until + browned. Set aside. Fry the kidneys and cook for 1-2 minutes, turning once, until browned. Set aside. + Wipe the pan with kitchen paper, then add the butter. Add the onions and fry for about 10 minutes until + softened. Sprinkle in the flour and stir well for 1 minute. Gradually pour in the stock, stirring all the + time to avoid lumps. Add the herbs. Stir the lamb and kidneys into the onions. Season well. Transfer to a + large 2.5-litre casserole. Slice the peeled potatoes thinly and arrange on top in overlapping rows. Brush + with melted butter and season. Cover and bake for 30 minutes. Reduce the oven temperature to 160°C + /fan140°C/gas 3 and cook for a further 2 hours. Then increase the oven temperature to 200°C/ fan180°C/gas 6, + uncover, and brush the potatoes with more butter. Cook uncovered for 15-20 minutes, or until golden. + """.strip().replace("\n", " ")]]).toDF("id", "text") + + document_assembler = DocumentAssembler() \ + .setInputCol("text") \ + .setOutputCol("documents") + + bart = BartTransformer.pretrained("bart_large_cnn") \ + .setTask("summarize:") \ + .setMaxOutputLength(50) \ + .setDoSample(True) \ + .setInputCols(["documents"]) \ + .setOutputCol("summaries") \ + .setTopK(50) \ + .setTemperature(0.7) + + pipeline = Pipeline().setStages([document_assembler, bart]) + results = pipeline.fit(data).transform(data) + + results.select("summaries.result").show(truncate=False) + + +@pytest.mark.slow +class BartTransformerSummaryWithSamplingAndTopPTestSpec(unittest.TestCase): + def setUp(self): + self.spark = SparkContextForTest.spark + + def runTest(self): + data = self.spark.createDataFrame([ + [1, """Preheat the oven to 220°C/ fan200°C/gas 7. Trim the lamb fillet of fat and cut into slices the thickness + of a chop. Cut the kidneys in half and snip out the white core. Melt a knob of dripping or 2 tablespoons + of vegetable oil in a heavy large pan. Fry the lamb fillet in batches for 3-4 minutes, turning once, until + browned. Set aside. Fry the kidneys and cook for 1-2 minutes, turning once, until browned. Set aside. + Wipe the pan with kitchen paper, then add the butter. Add the onions and fry for about 10 minutes until + softened. Sprinkle in the flour and stir well for 1 minute. Gradually pour in the stock, stirring all the + time to avoid lumps. Add the herbs. Stir the lamb and kidneys into the onions. Season well. Transfer to a + large 2.5-litre casserole. Slice the peeled potatoes thinly and arrange on top in overlapping rows. Brush + with melted butter and season. Cover and bake for 30 minutes. Reduce the oven temperature to 160°C + /fan140°C/gas 3 and cook for a further 2 hours. Then increase the oven temperature to 200°C/ fan180°C/gas 6, + uncover, and brush the potatoes with more butter. Cook uncovered for 15-20 minutes, or until golden. + """.strip().replace("\n", " ")]]).toDF("id", "text") + + document_assembler = DocumentAssembler() \ + .setInputCol("text") \ + .setOutputCol("documents") + + bart = BartTransformer.pretrained("bart_large_cnn")\ + .setTask("summarize:") \ + .setMaxOutputLength(50) \ + .setDoSample(True) \ + .setInputCols(["documents"]) \ + .setOutputCol("summaries") \ + .setTopK(0) \ + .setTopP(0.7) + + pipeline = Pipeline().setStages([document_assembler, bart]) + results = pipeline.fit(data).transform(data) + + results.select("summaries.result").show(truncate=False) + + +@pytest.mark.slow +class BartTransformerSummaryWithSamplingTestSpec(unittest.TestCase): + def setUp(self): + self.spark = SparkContextForTest.spark + + def runTest(self): + data = self.spark.createDataFrame([ + [1, """Preheat the oven to 220°C/ fan200°C/gas 7. Trim the lamb fillet of fat and cut into slices the thickness + of a chop. Cut the kidneys in half and snip out the white core. Melt a knob of dripping or 2 tablespoons + of vegetable oil in a heavy large pan. Fry the lamb fillet in batches for 3-4 minutes, turning once, until + browned. Set aside. Fry the kidneys and cook for 1-2 minutes, turning once, until browned. Set aside. + Wipe the pan with kitchen paper, then add the butter. Add the onions and fry for about 10 minutes until + softened. Sprinkle in the flour and stir well for 1 minute. Gradually pour in the stock, stirring all the + time to avoid lumps. Add the herbs. Stir the lamb and kidneys into the onions. Season well. Transfer to a + large 2.5-litre casserole. Slice the peeled potatoes thinly and arrange on top in overlapping rows. Brush + with melted butter and season. Cover and bake for 30 minutes. Reduce the oven temperature to 160°C + /fan140°C/gas 3 and cook for a further 2 hours. Then increase the oven temperature to 200°C/ fan180°C/gas 6, + uncover, and brush the potatoes with more butter. Cook uncovered for 15-20 minutes, or until golden. + """.strip().replace("\n", " ")]]).toDF("id", "text") + + document_assembler = DocumentAssembler() \ + .setInputCol("text") \ + .setOutputCol("documents") + + bart = BartTransformer.pretrained("bart_large_cnn") \ + .setTask("summarize:") \ + .setMaxOutputLength(50) \ + .setDoSample(True) \ + .setInputCols(["documents"]) \ + .setOutputCol("summaries") + + pipeline = Pipeline().setStages([document_assembler, bart]) + results = pipeline.fit(data).transform(data) + + results.select("summaries.result").show(truncate=False) + diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/Bart.scala b/src/main/scala/com/johnsnowlabs/ml/ai/Bart.scala new file mode 100644 index 000000000000..9ba7c6b8ffe5 --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/ml/ai/Bart.scala @@ -0,0 +1,853 @@ +/* + * Copyright 2017 - 2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.ml.ai + +import com.johnsnowlabs.ml.ai.util.Generation.Generate +import com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitProcess.{ + MinLengthLogitProcessor, + NoRepeatNgramsLogitProcessor, + RepetitionPenaltyLogitProcessor +} +import com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitProcessorList +import com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitWarper.{ + TemperatureLogitWarper, + TopKLogitWarper, + TopPLogitWarper +} +import com.johnsnowlabs.ml.ai.util.Generation.Search.BeamSearchScorer +import com.johnsnowlabs.ml.tensorflow.sign.{ModelSignatureConstants, ModelSignatureManager} +import com.johnsnowlabs.ml.tensorflow.{TensorResources, TensorflowWrapper} +import com.johnsnowlabs.nlp.annotators.tokenizer.bpe.{BpeTokenizer, BartTokenizer} +import com.johnsnowlabs.nlp.annotators.common.SentenceSplit +import com.johnsnowlabs.nlp.{Annotation, AnnotatorType} +import org.tensorflow.{Session, Tensor} + +import scala.collection.JavaConverters._ +import scala.collection.mutable + +/** This class is used to run Bart model for For Sequence Batches of WordpieceTokenizedSentence. + * Input for this model must be tokenized with a SentencePieceModel, + * + * @param tensorflow + * BART Model wrapper with TensorFlowWrapper + * @param bpeTokenizer + * BART Byte-Pair Encoder model with BPEWrapper + * @param configProtoBytes + * Configuration for TensorFlow session + */ + +private[johnsnowlabs] class Bart( + val tensorflow: TensorflowWrapper, + configProtoBytes: Option[Array[Byte]] = None, + signatures: Option[Map[String, String]] = None, + merges: Map[(String, String), Int], + vocabulary: Map[String, Int]) + extends Serializable + with Generate { + + private val _tfBartSignatures: Map[String, String] = + signatures.getOrElse(ModelSignatureManager.apply()) + + val bpeTokenizer: BartTokenizer = BpeTokenizer + .forModel("bart", merges = merges, vocab = vocabulary, padWithSentenceTokens = false) + .asInstanceOf[BartTokenizer] + + private val paddingTokenId = 1L + private val eosTokenId = 2L + private val vocab_size = 50264 + + private def sessionWarmup(): Unit = { + val dummyInput = Array.fill(1)(0L) ++ Array(eosTokenId) + tag( + Seq(dummyInput), + minOutputLength = 0, + maxOutputLength = 1, + doSample = false, + temperature = 0f, + topK = 0, + topP = 0f, + repetitionPenalty = 0f, + noRepeatNgramSize = 0, + randomSeed = Option(0L), + ignoreTokenIds = Array(0), + beamSize = 1) + } + + sessionWarmup() + + def tag( + batch: Seq[Array[Long]], + minOutputLength: Int, + maxOutputLength: Int, + doSample: Boolean, + temperature: Double, + topK: Int, + topP: Double, + repetitionPenalty: Double, + noRepeatNgramSize: Int, + randomSeed: Option[Long], + ignoreTokenIds: Array[Int] = Array(), + beamSize: Int): Array[Array[Long]] = { + val ignoreTokenIdsInt = ignoreTokenIds.map(_.toLong) + val expandedEncoderInputIdsVals = batch.flatMap(x => List.fill(beamSize)(x)) +// val expandedEncoderInputIdsVals = batch + val sequencesLength = expandedEncoderInputIdsVals.map(x => x.length).toArray + val maxSentenceLength = sequencesLength.max // - curLen + + val numReturn_sequences = 1 + // from config + + var effectiveBatch_size = 1 + var effectiveBatch_mult = 1 + + // set effective batch size and effective batch multiplier according to do_sample + if (doSample) { + effectiveBatch_size = expandedEncoderInputIdsVals.length * numReturn_sequences + effectiveBatch_mult = numReturn_sequences + } else { + effectiveBatch_size = expandedEncoderInputIdsVals.length + effectiveBatch_mult = 1 + } + + // Run encoder + val tensorEncoder = new TensorResources() + val inputDim = expandedEncoderInputIdsVals.length * maxSentenceLength + + val encoderInputBuffers = tensorEncoder.createLongBuffer(inputDim) + val encoderAttentionMaskBuffers = tensorEncoder.createLongBuffer(inputDim) + + val shape = Array(expandedEncoderInputIdsVals.length.toLong, maxSentenceLength) + + expandedEncoderInputIdsVals.zipWithIndex.foreach { case (tokenIds, idx) => + val offset = idx * maxSentenceLength + val diff = maxSentenceLength - tokenIds.length + + val s = tokenIds.take(maxSentenceLength) ++ Array.fill[Long](diff)(this.paddingTokenId) + encoderInputBuffers.offset(offset).write(s) + val mask = s.map(x => if (x != this.paddingTokenId) 1L else 0L) + encoderAttentionMaskBuffers.offset(offset).write(mask) + } + + val session = tensorflow.getTFSessionWithSignature( + configProtoBytes = configProtoBytes, + initAllTables = false, + savedSignatures = signatures) + + val encoderInputTensors = tensorEncoder.createLongBufferTensor(shape, encoderInputBuffers) + val encoderAttentionMaskTensors = + tensorEncoder.createLongBufferTensor(shape, encoderAttentionMaskBuffers) + + val runner = session.runner + runner + .feed( + _tfBartSignatures.getOrElse( + ModelSignatureConstants.EncoderInputIds.key, + "missing_encoder_input_ids"), + encoderInputTensors) + .feed( + _tfBartSignatures.getOrElse( + ModelSignatureConstants.EncoderAttentionMask.key, + "missing_encoder_attention_mask"), + encoderAttentionMaskTensors) + .fetch(_tfBartSignatures + .getOrElse(ModelSignatureConstants.EncoderOutput.key, "missing_last_hidden_state")) + + val encoderOuts = runner.run().asScala + val encoderOutsFloats = TensorResources.extractFloats(encoderOuts.head) + val dim = encoderOutsFloats.length / inputDim + val encoderOutsBatch = + encoderOutsFloats.grouped(dim).toArray.grouped(maxSentenceLength).toArray + + encoderOuts.foreach(_.close()) + + // Run decoder + val decoderEncoderStateTensorResources = new TensorResources() + val decoderEncoderStateBuffers = + decoderEncoderStateTensorResources.createFloatBuffer( + expandedEncoderInputIdsVals.length * maxSentenceLength * dim) + expandedEncoderInputIdsVals.zipWithIndex.foreach { case (_, index) => + var offset = index * maxSentenceLength * dim + encoderOutsBatch(index).foreach(encoderOutput => { + decoderEncoderStateBuffers.offset(offset).write(encoderOutput) + offset += dim + }) + } + + val decoderEncoderStateTensors = tensorEncoder.createFloatBufferTensor( + Array(expandedEncoderInputIdsVals.length.toLong, maxSentenceLength, dim), + decoderEncoderStateBuffers) + +// val modelOutputs = generateNoBeamSearch( +// batch, +// decoderEncoderStateTensors, +// encoderAttentionMaskTensors, +// maxOutputLength, +// minOutputLength, +// doSample, +// temperature, +// topK, +// topP, +// repetitionPenalty, +// noRepeatNgramSize, +// randomSeed, +// ignoreTokenIds, +// session) + + val modelOutputs = generateBeamSearch( + batch, + decoderEncoderStateTensors, + encoderAttentionMaskTensors, + maxOutputLength, + minOutputLength, + doSample, + beamSize, + 1, + temperature, + topK, + topP, + repetitionPenalty, + noRepeatNgramSize, + randomSeed, + ignoreTokenIdsInt, + session) + + tensorEncoder.clearTensors() + tensorEncoder.clearSession(encoderOuts) + modelOutputs + + } + + def generateBeamSearch( + inputIds: Seq[Array[Long]], + decoderEncoderStateTensors: Tensor, + encoderAttentionMaskTensors: Tensor, + maxOutputLength: Int, + minOutputLength: Int, + doSample: Boolean, + beamSize: Int, + numReturnSequences: Int, + temperature: Double, + topK: Int, + topP: Double, + repetitionPenalty: Double, + noRepeatNgramSize: Int, + randomSeed: Option[Long], + ignoreTokenIds: Array[Long] = Array(), + session: Session): Array[Array[Long]] = { + + var decoderInputs = inputIds.map(_ => Array(this.eosTokenId)).toArray + + var logitProcessorList = new LogitProcessorList() + + logitProcessorList.addProcess(new RepetitionPenaltyLogitProcessor(repetitionPenalty)) + + logitProcessorList.addProcess( + new NoRepeatNgramsLogitProcessor( + noRepeatNgramSize = noRepeatNgramSize, + vocabSize = this.vocab_size)) + + logitProcessorList.addProcess( + new MinLengthLogitProcessor(this.eosTokenId, minOutputLength, this.vocab_size)) + + logitProcessorList.addProcess(new TemperatureLogitWarper(temperature)) + + logitProcessorList.addProcess(new TopKLogitWarper(topK)) + + logitProcessorList.addProcess(new TopPLogitWarper(topP)) + + val beamSearchScorer = new BeamSearchScorer( + beamSize = beamSize, + batchSize = inputIds.length, + lengthPenalty = repetitionPenalty.toFloat, + doEarlyStopping = false, + numBeamHypothesisToKeep = numReturnSequences, + maxLength = maxOutputLength) + + this.beamSearch( + inputIds, + decoderInputs, + decoderEncoderStateTensors, + encoderAttentionMaskTensors, + beamSearchScorer, + logitProcessorList, + maxOutputLength, + this.paddingTokenId, + this.eosTokenId, + doSample, + randomSeed, + session) + } + + def generateNoBeamSearch( + inputIds: Seq[Array[Long]], + decoderEncoderStateTensors: Tensor, + encoderAttentionMaskTensors: Tensor, + maxOutputLength: Int, + minOutputLength: Int, + doSample: Boolean, + temperature: Double, + topK: Int, + topP: Double, + repetitionPenalty: Double, + noRepeatNgramSize: Int, + randomSeed: Option[Long], + ignoreTokenIds: Array[Int] = Array(), + session: Session): Array[Array[Long]] = { + + /** Generate sequences for each example without beam search (numBeams == 1). All returned + * sequence are generated independently. + */ + + /* Actual size of each sentence to skip padding in the TF model */ + val sequencesLength = inputIds.map(x => x.length).toArray + val maxSentenceLength = sequencesLength.max // - curLen + + val numReturn_sequences = 1 + // from config + var effectiveBatch_size = 1 + var effectiveBatch_mult = 1 + + // set effective batch size and effective batch multiplier according to do_sample + if (doSample) { + effectiveBatch_size = inputIds.length * numReturn_sequences + effectiveBatch_mult = numReturn_sequences + } else { + effectiveBatch_size = inputIds.length + effectiveBatch_mult = 1 + } + + var decoderInputs = inputIds.map(_ => Array(this.eosTokenId)).toArray + + val batch_size = effectiveBatch_size + var curLen = decoderInputs(0).length + + var stopDecoder = false + + // length of generated sentences / unfinished sentences + var unfinishedSents = List.fill(decoderInputs.length)(1) + var sentLengths = List.fill(decoderInputs.length)(maxOutputLength) + + while (!stopDecoder) { + val decoderInputLength = decoderInputs.head.length + val tensorDecoder = new TensorResources() + + val decoderInputBuffers = + tensorDecoder.createLongBuffer(decoderInputs.length * decoderInputLength) + val decoderAttentionBuffers = + tensorDecoder.createLongBuffer(decoderInputs.length * decoderInputLength) + + decoderInputs.zipWithIndex.foreach { case (pieceIds, idx) => + val offset = idx * decoderInputLength + decoderInputBuffers.offset(offset).write(pieceIds) + val paddingMasks = pieceIds.map(_ => 1L) + decoderAttentionBuffers.offset(offset).write(paddingMasks) + } + + val decoderInputTensors = tensorDecoder.createLongBufferTensor( + Array(decoderInputs.length.toLong, decoderInputLength), + decoderInputBuffers) + val decoderAttentionMaskTensors = tensorDecoder.createLongBufferTensor( + Array(decoderInputs.length.toLong, decoderInputLength), + decoderAttentionBuffers) + + val runner = session.runner + + // TODO add past to the model and use cache + runner + .feed( + _tfBartSignatures.getOrElse( + ModelSignatureConstants.DecoderInputIds.key, + "missing_decoder_input_ids"), + decoderInputTensors) + .feed( + _tfBartSignatures.getOrElse( + ModelSignatureConstants.DecoderAttentionMask.key, + "missing_encoder_attention_mask"), + decoderAttentionMaskTensors) + .feed( + _tfBartSignatures.getOrElse( + ModelSignatureConstants.DecoderEncoderInputIds.key, + "missing_encoder_state"), + decoderEncoderStateTensors) + .feed( + _tfBartSignatures.getOrElse( + ModelSignatureConstants.DecoderEncoderAttentionMask.key, + "missing_decoder_encoder_attention_mask"), + encoderAttentionMaskTensors) + .fetch(_tfBartSignatures + .getOrElse(ModelSignatureConstants.DecoderOutput.key, "missing_output_0")) + + val decoderOuts = runner.run().asScala + val decoderOutputs = TensorResources + .extractFloats(decoderOuts.head) + .grouped(vocab_size) + .toArray + .grouped(decoderInputLength) + .toArray + var nextTokenLogits = for (decoderOutput <- decoderOutputs) yield decoderOutput.last + + nextTokenLogits = nextTokenLogits.map(logits => { + logits.indices + .map(i => { + if (ignoreTokenIds.contains(i)) Float.MinValue else logits(i) + }) + .toArray + }) + + // repetition penalty from CTRL paper (https://arxiv.org/abs/1909.05858) + if (repetitionPenalty != 1.0) { + nextTokenLogits = + createNextTokenLogitsPenalties(decoderInputs, nextTokenLogits, repetitionPenalty) + } + + if (noRepeatNgramSize > 0) { + // calculate a list of banned tokens to prevent repetitively generating the same ngrams + // from fairseq: https://github.com/pytorch/fairseq/blob/a07cb6f40480928c9e0548b737aadd36ee66ac76/fairseq/sequence_generator.py#L345 + val bannedTokens = + calcBannedNgramTokens(decoderInputs, batch_size, noRepeatNgramSize, curLen) + // create bannedTokens boolean mask + var bannedTokensIndicesMask = Array.empty[IndexedSeq[Boolean]] + for (bannedTokensSlice <- bannedTokens) { + bannedTokensIndicesMask = bannedTokensIndicesMask :+ + (for (token <- 0 until vocab_size) + yield if (bannedTokensSlice.contains(token)) true else false) + } + if (!bannedTokensIndicesMask.isEmpty) + nextTokenLogits = + for ((nextTokenLogit, bannedTokensIndexMask) <- nextTokenLogits.zip( + bannedTokensIndicesMask)) + yield setTensorByIndicesToValue( + nextTokenLogit, + bannedTokensIndexMask, + Float.NegativeInfinity) + } + + // set eos token prob to zero if minLength is not reached + if (!eosTokenId.isNaN && curLen < minOutputLength) { + // create eosTokenId boolean mask + val isTokenLogit_eosToken = + for (token <- 0 until vocab_size) + yield if (token == eosTokenId) true else false + + val eosTokenIndices_mask = Array.fill(batch_size)(isTokenLogit_eosToken) + + nextTokenLogits = + for ((nextTokenLogit, bannedTokensIndex_mask) <- nextTokenLogits.zip( + eosTokenIndices_mask)) + yield setTensorByIndicesToValue( + nextTokenLogit, + bannedTokensIndex_mask, + Float.NegativeInfinity) + } + + var nextToken = Array.ofDim[Long](decoderInputs.length) + + if (doSample) { + // Temperature (higher temperature => more likely to sample low probability tokens) + if (temperature != 1.0) + nextTokenLogits = + for (nextTokenLogit <- nextTokenLogits) + yield nextTokenLogit.map(_ / temperature.toFloat) + // Top-p/top-k filtering + nextTokenLogits = topKTopPFiltering(nextTokenLogits, topK, topP) + // Sample + nextToken = nextTokenLogits.map(input => categoricalSample(input, randomSeed)) + } else { + // Greedy decoding + nextToken = nextTokenLogits.map(input => input.indexOf(input.max).toLong) + } + var tokensToAdd = Array.ofDim[Long](decoderInputs.length) + + // update generations and finished sentences + if (!eosTokenId.isNaN) + // pad finished sentences if eos_token_id exist + tokensToAdd = + nextToken.zip(unfinishedSents).map(x => x._1 * x._2 + paddingTokenId * (1 - x._2)) + else + tokensToAdd = nextToken + + decoderInputs = decoderInputs + .zip(tokensToAdd) + .map(x => { + x._1 ++ Array(x._2) + }) + decoderOuts.foreach(_.close()) + + curLen += 1 + + if (!eosTokenId.isNaN) { + val eosInSents = tokensToAdd.zipWithIndex.map { case (x, ind) => + if (x == eosTokenId && ind != 0) 1 else 0 + } + // if sentence is unfinished and the token to add is eos, sent_lengths is filled with current length + val isSentsUnfinishedAndTokenToAddIsEos = + unfinishedSents.zip(eosInSents).map(x => x._1 * x._2) + + sentLengths = sentLengths + .zip(isSentsUnfinishedAndTokenToAddIsEos) + .map(x => x._1 * (1 - x._2) + curLen * x._2) + + // unfinishedSents is set to zero if eos in sentence + unfinishedSents = + unfinishedSents.zip(isSentsUnfinishedAndTokenToAddIsEos).map(x => x._1 - x._2) + } + + tensorDecoder.clearTensors() + tensorDecoder.clearSession(decoderOuts) + decoderInputTensors.close() + + // stop when there is a eos in each sentence, or if we exceed the maximum length + // stopDecoder = curLen < maxOutputLength || unfinishedSents.max == 0 + stopDecoder = (!decoderInputs.exists(o => !(o.count(_ == this.eosTokenId) == 2)) + || (decoderInputs.head.length > maxOutputLength)) + + } +// tensorEncoder.clearTensors() + decoderInputs + } + + def createNextTokenLogitsPenalties( + inputIds: Seq[Array[Long]], + logits: Array[Array[Float]], + repetitionPenalty: Double): Array[Array[Float]] = { + // create logit penalties for already seen inputIds + val nextTokenLogits = Array.ofDim[Array[Float]](logits.length) + + for (i <- logits.indices) { + var nextTokenLogit = logits(i) + val prevInputIds = inputIds.head.distinct + for ((prevInputId, _) <- prevInputIds.zipWithIndex) { + var logitPenalty = 1.0 + if (logits(i)(prevInputId.toInt) < 0) { + logitPenalty = repetitionPenalty + } else { + logitPenalty = 1 / repetitionPenalty + } + nextTokenLogit = nextTokenLogit.updated( + prevInputId.toInt, + (logitPenalty * nextTokenLogit(prevInputId.toInt)).toFloat) + } + nextTokenLogits(i) = nextTokenLogit + } + nextTokenLogits + } + + private def calcBannedNgramTokens( + prevInputIds: Seq[Array[Long]], + numHypos: Int, + noRepeatNgramSize: Int, + curLen: Int): Array[Array[Long]] = { + // based on fairseq for noRepeatNgram in beam_search + if (curLen + 1 < noRepeatNgramSize) + // return no banned tokens if we haven't generated noRepeatNgram_size tokens yet + return Array.ofDim[Long](numHypos, 0) + val generatedNgrams = + Array.tabulate(numHypos)(_ => mutable.Map.empty[IndexedSeq[Long], List[Long]]) + for (idx <- 0 until numHypos) { + val genTokens = prevInputIds(idx) + val generatedNgram = generatedNgrams(idx) + val ngramArrays = for (e <- 0 until noRepeatNgramSize) yield genTokens.drop(e) + for (ngramInd <- ngramArrays.last.indices) { + val ngram = for (e <- ngramArrays) yield e(ngramInd) + val prevNgramTuple = ngram.dropRight(1) + generatedNgram(prevNgramTuple) = + generatedNgram.getOrElse(prevNgramTuple, List.empty[Long]) :+ ngram.last + } + } + (for (hypoIdx <- 0 until numHypos) + yield getGeneratedNgrams( + prevInputIds, + generatedNgrams, + hypoIdx, + curLen, + noRepeatNgramSize)).toArray + } + + def getGeneratedNgrams( + prevInputIds: Seq[Array[Long]], + generatedNgrams: Array[mutable.Map[IndexedSeq[Long], List[Long]]], + hypoIdx: Int, + curLen: Int, + noRepeatNgramSize: Int): Array[Long] = { + // Before decoding the next token, prevent decoding of ngrams that have already appeared + val startIdx = curLen + 1 - noRepeatNgramSize + val ngramIdx = prevInputIds(hypoIdx).slice(startIdx, curLen) + generatedNgrams(hypoIdx).getOrElse(ngramIdx, List.empty[Long]).toArray + } + + private def topKTopPFiltering( + logits: Array[Array[Float]], + topK: Int, + topP: Double, + filterValue: Float = Float.NegativeInfinity, + minTokensToKeep: Int = 1): Array[Array[Float]] = { + + /** Filter a distribution of logits using top-k and/or nucleus (top-p) filtering * Args: + * logits: logits distribution shape (batch size, vocabulary size) if topK > 0: keep only top + * k tokens with highest probability (top-k filtering). if topP < 1.0: keep the top tokens + * with cumulative probability >= topP (nucleus filtering). Nucleus filtering is described in + * Holtzman et al. (http://arxiv.org/abs/1904.09751) Make sure we keep at least + * minTokensToKeep per batch example in the output From: + * https://gist.github.com/thomwolf/1a5a29f6962089e871b94cbd09daf317 + */ + var logitsUpd = logits + val logitsShape = Array(logits.length, logits(0).length) + + if (topK > 0) { + val topKup = topK.max(minTokensToKeep).min(logitsShape.last) // Safety check + + /** Remove all tokens with a probability less than the last token of the top-k */ + val removeLimit = logits(0).sortWith(_ > _).take(topKup).min + val indicesToRemove = + for (logit <- logits) + yield for (elem <- logit) yield if (elem < removeLimit) true else false + + logitsUpd = + for ((nextTokenLogit, indexToRemove) <- logits.zip(indicesToRemove)) + yield setTensorByIndicesToValue(nextTokenLogit, indexToRemove, Float.NegativeInfinity) + } + if (topP < 1.0) { + val (sortedLogits, sortedIndices) = logits(0).zipWithIndex.sorted.reverse.unzip + + val cumulativeProbs = scanLeft(softmax(sortedLogits))(0.0)(_ + _).drop(1) + + /** Remove tokens with cumulative probability above the threshold (token with 0 are kept) */ + var sortedIndicesToRemove = + for (prob <- cumulativeProbs) + yield if (prob > topP) true else false + + if (minTokensToKeep > 1) { + + /** Keep at least minTokensToKeep (set to minTokensToKeep-1 because we add the first one + * below) + */ + sortedIndicesToRemove = List.fill(sortedIndicesToRemove.take(minTokensToKeep).length)( + false) ++ sortedIndicesToRemove.drop(minTokensToKeep) + } + + /** Shift the indices to the right to keep also the first token above the threshold */ + sortedIndicesToRemove = sortedIndicesToRemove.takeRight(1) ++ sortedIndicesToRemove + .dropRight(1) + sortedIndicesToRemove = + List.fill(sortedIndicesToRemove.take(1).length)(false) ++ sortedIndicesToRemove + .drop(1) + + /** scatter sorted tensors to original indexing */ + val indicesToRemove = scatterValuesOnBatchIndices(sortedIndicesToRemove, sortedIndices) + logitsUpd = + for ((nextTokenLogit, indexToRemove) <- logits.zip( + IndexedSeq.fill(logits.length)(indicesToRemove))) + yield setTensorByIndicesToValue( + nextTokenLogit, + indexToRemove.toIndexedSeq, + Float.NegativeInfinity) + } + logitsUpd + } + + private def scanLeft[a, b](xs: Iterable[a])(s: b)(f: (b, a) => b) = + xs.foldLeft(List(s))((acc, x) => f(acc.head, x) :: acc).reverse + + private def scatterValuesOnBatchIndices( + values: List[Boolean], + batchIndices: Array[Int]): List[Boolean] = { + // scatter values to pair indices + val (_, initArray) = batchIndices.zip(values).sorted.unzip + initArray.toList + } + + private def setTensorByIndicesToValue( + prevInputIds: Array[Float], + indices: IndexedSeq[Boolean], + value: Float): Array[Float] = { + for ((inputId, index) <- prevInputIds.zip(indices)) yield if (index) value else inputId + } + + private def categoricalSample(dist: Array[Float], randomSeed: Option[Long]): Long = { + val (distFiltered, indices) = + dist.zipWithIndex.filter { case (elem, index) => !elem.isInfinite }.sorted.unzip + + if (distFiltered.length == 1) + return indices(0) + + val normalized = softmax(distFiltered) + + var randomDouble = 0.0 + if (randomSeed.isDefined) + randomDouble = new scala.util.Random(randomSeed.get).nextDouble() + else + randomDouble = scala.util.Random.nextDouble() + + var accum = 0.0 + for ((itemProb, i) <- normalized.zip(indices)) { + accum += itemProb + if (accum >= randomDouble) { + return i + } + } + indices(0) + } + + def decode(sentences: Array[Array[Long]]): Seq[String] = { + sentences.map(s => bpeTokenizer.decodeTokens(s.map(_.toInt))) + } + + def encode(sentences: Seq[Annotation], task: String): Seq[Array[Long]] = { + SentenceSplit + .unpack(sentences) + .map(s => { + val sentWithTask = + if (task.nonEmpty) s +// new Sentence( +// content = task.concat(" ").concat(s.content), +// start = s.start, +// end = s.end + task.length + 1, +// index = s.index, +// metadata = s.metadata) + else s + bpeTokenizer + .tokenize(sentWithTask) + .map(bpeTokenizer.encode) + .flatMap(_.map(_.pieceId.toLong)) + }) + } + + def predict( + sentences: Seq[Annotation], + batchSize: Int, + minOutputLength: Int, + maxOutputLength: Int, + doSample: Boolean, + temperature: Double, + topK: Int, + topP: Double, + repetitionPenalty: Double, + noRepeatNgramSize: Int, + task: String, + randomSeed: Option[Long] = None, + ignoreTokenIds: Array[Int] = Array(), + beamSize: Int): Seq[Annotation] = { + + val batchDecoder = sentences.grouped(batchSize).toArray.flatMap { batch => + val batchSP = encode(batch, task) + val spIds = tag( + batchSP, + minOutputLength, + maxOutputLength, + doSample, + temperature, + topK, + topP, + repetitionPenalty, + noRepeatNgramSize, + randomSeed, + ignoreTokenIds, + beamSize) + + decode(spIds) + + } + + var sentBegin, nextSentEnd = 0 + batchDecoder.zip(sentences).map { case (content, sent) => + nextSentEnd += content.length - 1 + val annots = new Annotation( + annotatorType = AnnotatorType.DOCUMENT, + begin = sentBegin, + end = nextSentEnd, + result = content, + metadata = sent.metadata) + sentBegin += nextSentEnd + 1 + annots + } + } + + override def getModelOutput( + encoderInputIds: Seq[Array[Long]], + decoderInputIds: Seq[Array[Long]], + decoderEncoderStateTensors: Tensor, + encoderAttentionMaskTensors: Tensor, + maxLength: Int, + session: Session): Array[Array[Float]] = { + val sequencesLength = encoderInputIds.map(x => x.length).toArray + var maxSentenceLength = sequencesLength.max // - curLen + maxSentenceLength = Math.max(maxSentenceLength, maxLength) + val vocab_size = this.vocab_size + + val decoderInputLength = decoderInputIds.head.length + val tensorDecoder = new TensorResources() + + val decoderInputBuffers = + tensorDecoder.createLongBuffer(decoderInputIds.length * decoderInputLength) + val decoderAttentionBuffers = + tensorDecoder.createLongBuffer(decoderInputIds.length * decoderInputLength) + + decoderInputIds.zipWithIndex.foreach { case (pieceIds, idx) => + val offset = idx * decoderInputLength + decoderInputBuffers.offset(offset).write(pieceIds) + val paddingMasks = pieceIds.map(_ => 1L) + decoderAttentionBuffers.offset(offset).write(paddingMasks) + } + + val decoderInputTensors = tensorDecoder.createLongBufferTensor( + Array(decoderInputIds.length.toLong, decoderInputLength), + decoderInputBuffers) + val decoderAttentionMaskTensors = tensorDecoder.createLongBufferTensor( + Array(decoderInputIds.length.toLong, decoderInputLength), + decoderAttentionBuffers) + + val runner = session.runner + + // TODO add past to the model and use cache + runner + .feed( + _tfBartSignatures.getOrElse( + ModelSignatureConstants.DecoderInputIds.key, + "missing_decoder_input_ids"), + decoderInputTensors) + .feed( + _tfBartSignatures.getOrElse( + ModelSignatureConstants.DecoderAttentionMask.key, + "missing_encoder_attention_mask"), + decoderAttentionMaskTensors) + .feed( + _tfBartSignatures.getOrElse( + ModelSignatureConstants.DecoderEncoderInputIds.key, + "missing_encoder_state"), + decoderEncoderStateTensors) + .feed( + _tfBartSignatures.getOrElse( + ModelSignatureConstants.DecoderEncoderAttentionMask.key, + "missing_decoder_encoder_attention_mask"), + encoderAttentionMaskTensors) + .fetch(_tfBartSignatures + .getOrElse(ModelSignatureConstants.DecoderOutput.key, "missing_output_0")) + + val decoderOuts = runner.run().asScala + val decoderOutputs = TensorResources + .extractFloats(decoderOuts.head) + .grouped(vocab_size) + .toArray + .grouped(decoderInputLength) + .toArray + val nextTokenLogits = for (decoderOutput <- decoderOutputs) yield decoderOutput.last + tensorDecoder.clearTensors() + tensorDecoder.clearSession(decoderOuts) + decoderInputTensors.close() + nextTokenLogits + } +} diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Generate.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Generate.scala new file mode 100644 index 000000000000..6432043b0231 --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Generate.scala @@ -0,0 +1,279 @@ +/* + * Copyright 2017 - 2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.ml.ai.util.Generation +import com.johnsnowlabs.ml.ai.util.Generation.Search.BeamScorer +import com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitProcessorList +import scala.math._ +import scala.util.control.Breaks._ +import scala.util.Random +import org.tensorflow.{Session, Tensor} + +trait Generate { + def beamSearch( + encoderInputIdsVals: Seq[Array[Long]], + inputIdsVal: Seq[Array[Long]], + decoderEncoderStateTensors: Tensor, + encoderAttentionMaskTensors: Tensor, + beamScorer: BeamScorer, + logitProcessor: LogitProcessorList, + maxLength: Int, + padTokenId: Long, + eosTokenId: Long, + doSample: Boolean, + randomSeed: Option[Long], + session: Session): Array[Array[Long]] = { + var inputIds = inputIdsVal + val batchSize = beamScorer.getBeamHypothesesSeq.length + val numBeams = beamScorer.getNumBeams + val batchBeamSize = batchSize * numBeams + var currentLength = inputIds.head.length + + var beamScores = Array.ofDim[Float](batchSize * numBeams) + beamScores = beamScores.zipWithIndex.map { case (_, ind) => + if (ind % numBeams == 0) 0 else (-1e-9).toFloat + } + var beamIndices = Seq.fill(batchBeamSize)(Array[Long]()) + var nextIndices = Array[Array[Long]]() + var nextTokens = Array[Array[Long]]() + var expandedInputs = inputIds.flatMap(x => List.fill(numBeams)(x)) + val expandedEncoderInputIdsVals = encoderInputIdsVals.flatMap(x => List.fill(numBeams)(x)) + breakable { + while (true) { + + // Feed the encoder input ids and decoder input ids to the model and get the output + // return shape (beamSize,vocabSize) + val nextTokenLogits = + this.getModelOutput( + expandedEncoderInputIdsVals, + expandedInputs, + decoderEncoderStateTensors, + encoderAttentionMaskTensors, + maxLength, + session) + + // Apply log softmax to model outputs + var nextTokenScores = nextTokenLogits.map(logSoftmax) + + // Process the logits by defined logit processors + val nextTokenScoresProcessed = + logitProcessor.process(expandedInputs, nextTokenScores, currentLength) + + // Add previous beam scores to the output + nextTokenScores = nextTokenScoresProcessed.zipWithIndex.map { case (x, ind1) => + x.zipWithIndex.map { case (y, _) => + y + beamScores(ind1) + } + } + // Process the logits by defined logit warpers + if (doSample) { + nextTokenScores = logitProcessor.warp(expandedInputs, nextTokenScores, currentLength) + } + // Reshape next token score to (batchSize, vocabSize * numBeams) + val vocabSize = nextTokenScores.head.length + val reshapedNextTokenScores = + reshapeArray(nextTokenScores, batchSize, vocabSize * numBeams) + + nextTokenScores = reshapedNextTokenScores + + var nextKTopTokenScores: Array[Array[Float]] = Array[Array[Float]]() + var nextKTopTokens: Array[Array[Long]] = Array[Array[Long]]() + + if (doSample) { + val nextKIndices = nextTokenScores.map(x => { + multinomialSampling(x, 2 * numBeams, randomSeed) + }) + nextKTopTokenScores = Array.ofDim[Float](nextKIndices.length, nextKIndices.head.length) + for (i <- nextKIndices.indices) { + for (j <- nextKIndices(i).indices) { + nextKTopTokenScores(i)(j) = nextTokenScores(i)(nextKIndices(i)(j).toInt) + } + } + nextKTopTokenScores = + nextKTopTokenScores.map(x => x.zipWithIndex.sortWith(_._1 > _._1).map(_._1)) + val tempNextKInd = + nextKTopTokenScores.map(x => x.zipWithIndex.sortWith(_._1 > _._1).map(_._2)) + nextKTopTokens = Array.ofDim[Long](nextKIndices.length, nextKIndices.head.length) + + for (i <- tempNextKInd.indices) { + for (j <- tempNextKInd(i).indices) { + nextKTopTokens(i)(j) = nextKIndices(i)(tempNextKInd(i)(j)) + } + } + } else { + nextKTopTokenScores = nextTokenScores.map(x => + x.zipWithIndex.sortWith(_._1 > _._1).take(2 * numBeams).map(_._1)) + nextKTopTokens = nextTokenScores.map(x => + x.zipWithIndex.sortWith(_._1 > _._1).take(2 * numBeams).map(_._2.toLong)) + } + nextIndices = nextKTopTokens.map(y => y.map(x => x / vocabSize)) + nextTokens = nextKTopTokens.map(y => y.map(x => x % vocabSize)) + + val beamOutputs = beamScorer.process( + expandedInputs, + nextKTopTokenScores, + nextTokens, + nextIndices, + padTokenId, + eosTokenId, + beamIndices, + currentLength) + val newBeamScores = beamOutputs._1.flatMap(_.toList) + val beamNextTokens = beamOutputs._2.flatMap(_.toList) + val beamIdx = beamOutputs._3.flatMap(_.toList) + var newInputIds = Seq[Array[Long]]() + + for ((i, ind) <- beamIdx.zipWithIndex) { + val tempInput = expandedInputs(i.toInt) :+ beamNextTokens(ind) + newInputIds = newInputIds :+ (tempInput) + } + expandedInputs = newInputIds + beamScores = newBeamScores + beamIndices = beamIndices.indices.map { elem => + beamIndices(beamIdx(elem).toInt) :+ beamIdx(elem) + } + currentLength = currentLength + 1 + if (beamScorer.isDone || (expandedInputs.head.length >= maxLength)) { + break + + } + } + } + + val sequenceOutputs = beamScorer.finalize( + inputIds = expandedInputs, + finalBeamScores = beamScores, + finalBeamTokens = nextTokens.flatMap(_.toList), + finalBeamIndices = nextIndices.flatMap(_.toList), + maxLength = maxLength, + padTokenId = padTokenId, + eosTokenId = eosTokenId, + beamIndices = beamIndices) + sequenceOutputs._1 + } + + def getModelOutput( + encoderInputIds: Seq[Array[Long]], + decoderInputIds: Seq[Array[Long]], + decoderEncoderStateTensors: Tensor, + encoderAttentionMaskTensors: Tensor, + maxLength: Int, + session: Session): Array[Array[Float]] + + def logSoftmax(values: Array[Float]): Array[Float] = { + val c = values.max + val expElem = values.map(x => exp(x - c)) + val logSumExp = log(expElem.sum) + values.map(x => (x - c - logSumExp).toFloat) + } + + def reshapeArray( + inputArray: Array[Array[Float]], + numRows: Int, + numCols: Int): Array[Array[Float]] = { + if (inputArray.length * inputArray(0).length != numRows * numCols) { + throw new IllegalArgumentException( + "Number of elements in input array does not match desired shape") + } + + val flatArray = inputArray.flatten // Flatten the input array into a 1D array + val outputArray = Array.ofDim[Float](numRows, numCols) // Initialize the output array + + // Loop through the output array and fill it with elements from the flat array + for (i <- 0 until numRows) { + for (j <- 0 until numCols) { + outputArray(i)(j) = flatArray(i * numCols + j) + } + } + + outputArray // Return the reshaped array + } + + def sample(logits: Seq[Float], k: Int, seed: Long = 42): Array[Long] = { + val maxLogit = logits.max + val logitsExp = logits.map(logit => math.exp(logit - maxLogit)) + val sumExp = logitsExp.sum + val probs = logitsExp.map(exp => exp / sumExp) + val SeededRandom = new scala.util.Random(seed) + val randSeq = Seq.fill(k)(SeededRandom.nextDouble()) + var cumProb = 0.0 + var index = 0 + var results = Seq[Int]() + for (rand <- randSeq) { + while (index < probs.length - 1 && cumProb + probs(index) < rand) { + cumProb += probs(index) + index += 1 + } + results :+= index + } + results.map(_.toLong).toArray + } + + def multinomialSampling(logitValues: Array[Float], k: Int, seed: Option[Long]): Array[Long] = { + val (distFiltered, indices) = + logitValues.zipWithIndex.filter { case (elem, index) => !elem.isInfinite }.sorted.unzip + + val maxLogit = distFiltered.max + val expLogitValues = distFiltered.map(logit => math.exp(logit - maxLogit)) + val sumExpLogitValues = expLogitValues.sum + val probabilities = expLogitValues.map(_ / sumExpLogitValues) + +// val indices = Array.range(0, logitValues.length) + val selectedIndices = new Array[Long](k) + var seededRandom = new scala.util.Random() + if (seed.isDefined) { + seededRandom = new scala.util.Random(seed.get) + } + for (i <- 0 until k) { + var rand = scala.util.Random.nextDouble() + if (seed.isDefined) { + rand = new scala.util.Random(seed.get).nextDouble() + } + var cumProb = 0.0 + var j = 0 + while (j < probabilities.length - i) { + cumProb += probabilities(j) + if (rand < cumProb) { + selectedIndices(i) = indices(j) + probabilities(j) = 0.0 + indices(j) = indices(indices.length - i - 1) + j = probabilities.length + } + j += 1 + } + } + + selectedIndices + } + + def softmax(logitValues: Array[Float]): Array[Float] = { + val maxLogit = logitValues.max + val logitsExp = logitValues.map(l => Math.exp(l - maxLogit)) + val expSum = logitsExp.sum + logitsExp.map(exp => (exp / expSum).toFloat) + } + + def getCDF(probs: Array[Float]): Array[Float] = { + val cdf = Array.ofDim[Float](probs.length) + var sum = 0.0 + for (i <- probs.indices) { + sum += probs(i) + cdf(i) = sum.toFloat + } + cdf + } + +} diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/Logit.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/Logit.scala new file mode 100644 index 000000000000..832ba60bbe4f --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/Logit.scala @@ -0,0 +1,31 @@ +/* + * Copyright 2017 - 2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.ml.ai.util.Generation.Logit + +abstract class Logit { + def call( + inputIds: Seq[Array[Long]], + scores: Array[Array[Float]], + currentLength: Int): Array[Array[Float]] + + protected def setTensorByIndicesToValue( + prevInputIds: Array[Float], + indices: IndexedSeq[Boolean], + value: Float): Array[Float] = { + for ((inputId, index) <- prevInputIds.zip(indices)) yield if (index) value else inputId + } +} diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/LogitProcessor.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/LogitProcessor.scala new file mode 100644 index 000000000000..bda73e477ead --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/LogitProcessor.scala @@ -0,0 +1,19 @@ +/* + * Copyright 2017 - 2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitProcess +import com.johnsnowlabs.ml.ai.util.Generation.Logit.Logit +abstract class LogitProcessor extends Logit diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/MinLengthLogitProcessor.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/MinLengthLogitProcessor.scala new file mode 100644 index 000000000000..614ddc0f17ea --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/MinLengthLogitProcessor.scala @@ -0,0 +1,45 @@ +/* + * Copyright 2017 - 2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitProcess + +class MinLengthLogitProcessor(val eosTokenId: Long, val minLength: Int, val vocabSize: Int) + extends LogitProcessor { + override def call( + inputIds: Seq[Array[Long]], + scores: Array[Array[Float]], + currentLength: Int): Array[Array[Float]] = { + if (!eosTokenId.isNaN && currentLength < this.minLength) { + // create eosTokenId boolean mask + val isTokenLogit_eosToken = + for (token <- 0 until this.vocabSize) + yield if (token == eosTokenId) true else false + + val eosTokenIndices_mask = Array.fill(scores.length)(isTokenLogit_eosToken) + + val newScores = + for ((nextTokenLogit, bannedTokensIndex_mask) <- scores.zip(eosTokenIndices_mask)) + yield this.setTensorByIndicesToValue( + nextTokenLogit, + bannedTokensIndex_mask, + Float.NegativeInfinity) + newScores + } else { + scores + } + + } +} diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/NoRepeatNgramsLogitProcessor.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/NoRepeatNgramsLogitProcessor.scala new file mode 100644 index 000000000000..e83c7107376f --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/NoRepeatNgramsLogitProcessor.scala @@ -0,0 +1,95 @@ +/* + * Copyright 2017 - 2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitProcess +import scala.collection.mutable + +class NoRepeatNgramsLogitProcessor(val noRepeatNgramSize: Int, val vocabSize: Int) + extends LogitProcessor { + override def call( + inputIds: Seq[Array[Long]], + scores: Array[Array[Float]], + currentLength: Int): Array[Array[Float]] = { + if (noRepeatNgramSize > 0) { + + val bannedTokens = + calcBannedNgramTokens(inputIds, inputIds.length, this.noRepeatNgramSize, currentLength) + // create bannedTokens boolean mask + var bannedTokensIndicesMask = Array.empty[IndexedSeq[Boolean]] + for (bannedTokensSlice <- bannedTokens) { + bannedTokensIndicesMask = bannedTokensIndicesMask :+ + (for (token <- 0 until this.vocabSize) + yield if (bannedTokensSlice.contains(token)) true else false) + } + if (!bannedTokensIndicesMask.isEmpty) { + val nextTokenLogits = + for ((nextTokenLogit, bannedTokensIndexMask) <- scores.zip(bannedTokensIndicesMask)) + yield setTensorByIndicesToValue( + nextTokenLogit, + bannedTokensIndexMask, + Float.NegativeInfinity) + nextTokenLogits + } else { + scores + } + } else { + scores + } + } + + private def calcBannedNgramTokens( + prevInputIds: Seq[Array[Long]], + numHypos: Int, + noRepeatNgramSize: Int, + curLen: Int): Array[Array[Long]] = { + // based on fairseq for noRepeatNgram in beam_search + if (curLen + 1 < noRepeatNgramSize) + // return no banned tokens if we haven't generated noRepeatNgram_size tokens yet + return Array.ofDim[Long](numHypos, 0) + val generatedNgrams = + Array.tabulate(numHypos)(_ => mutable.Map.empty[IndexedSeq[Long], List[Long]]) + for (idx <- 0 until numHypos) { + val genTokens = prevInputIds(idx) + val generatedNgram = generatedNgrams(idx) + val ngramArrays = for (e <- 0 until noRepeatNgramSize) yield genTokens.drop(e) + for (ngramInd <- ngramArrays.last.indices) { + val ngram = for (e <- ngramArrays) yield e(ngramInd) + val prevNgramTuple = ngram.dropRight(1) + generatedNgram(prevNgramTuple) = + generatedNgram.getOrElse(prevNgramTuple, List.empty[Long]) :+ ngram.last + } + } + (for (hypoIdx <- 0 until numHypos) + yield getGeneratedNgrams( + prevInputIds, + generatedNgrams, + hypoIdx, + curLen, + noRepeatNgramSize)).toArray + } + + private def getGeneratedNgrams( + prevInputIds: Seq[Array[Long]], + generatedNgrams: Array[mutable.Map[IndexedSeq[Long], List[Long]]], + hypoIdx: Int, + curLen: Int, + noRepeatNgramSize: Int): Array[Long] = { + // Before decoding the next token, prevent decoding of ngrams that have already appeared + val startIdx = curLen + 1 - noRepeatNgramSize + val ngramIdx = prevInputIds(hypoIdx).slice(startIdx, curLen) + generatedNgrams(hypoIdx).getOrElse(ngramIdx, List.empty[Long]).toArray + } +} diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/RepetitionPenaltyLogitProcessor.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/RepetitionPenaltyLogitProcessor.scala new file mode 100644 index 000000000000..1d2222967b75 --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/RepetitionPenaltyLogitProcessor.scala @@ -0,0 +1,48 @@ +/* + * Copyright 2017 - 2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitProcess + +class RepetitionPenaltyLogitProcessor(val penalty: Double) extends LogitProcessor { + override def call( + inputIds: Seq[Array[Long]], + scores: Array[Array[Float]], + currentLength: Int): Array[Array[Float]] = { + if (penalty != 1.0) { + val nextTokenscores = Array.ofDim[Array[Float]](scores.length) + + for (i <- scores.indices) { + var nextTokenLogit = scores(i) + val prevInputIds = inputIds.head.distinct + for ((prevInputId, _) <- prevInputIds.zipWithIndex) { + var logitPenalty = 1.0 + if (scores(i)(prevInputId.toInt) < 0) { + logitPenalty = this.penalty + } else { + logitPenalty = 1 / this.penalty + } + nextTokenLogit = nextTokenLogit.updated( + prevInputId.toInt, + (logitPenalty * nextTokenLogit(prevInputId.toInt)).toFloat) + } + nextTokenscores(i) = nextTokenLogit + } + nextTokenscores + } else { + scores + } + } +} diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcessorList.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcessorList.scala new file mode 100644 index 000000000000..fe8be1edfce8 --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcessorList.scala @@ -0,0 +1,52 @@ +/* + * Copyright 2017 - 2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.ml.ai.util.Generation.Logit +import com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitProcess.LogitProcessor +import com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitWarper.LogitWarper +class LogitProcessorList { + private var logitProcesses: List[Logit] = List() + + def addProcess(process: Logit): Unit = { + logitProcesses = logitProcesses :+ process + } + + def process( + inputIds: Seq[Array[Long]], + scores: Array[Array[Float]], + currentLength: Int): Array[Array[Float]] = { + var tempScores = scores + logitProcesses.foreach(p => { + if (p.isInstanceOf[LogitProcessor]) { + tempScores = p.call(inputIds, tempScores, currentLength) + } + }) + tempScores + } + + def warp( + inputIds: Seq[Array[Long]], + scores: Array[Array[Float]], + currentLength: Int): Array[Array[Float]] = { + var tempScores = scores + logitProcesses.foreach(p => { + if (p.isInstanceOf[LogitWarper]) { + tempScores = p.call(inputIds, tempScores, currentLength) + } + }) + tempScores + } +} diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/LogitWarper.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/LogitWarper.scala new file mode 100644 index 000000000000..2ede60e0344e --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/LogitWarper.scala @@ -0,0 +1,38 @@ +/* + * Copyright 2017 - 2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitWarper +import scala.math._ +import com.johnsnowlabs.ml.ai.util.Generation.Logit.Logit +abstract class LogitWarper extends Logit { + + protected def scanLeft[a, b](xs: Iterable[a])(s: b)(f: (b, a) => b): Seq[b] = + xs.foldLeft(List(s))((acc, x) => f(acc.head, x) :: acc).reverse + + protected def softmax(values: Array[Float]): Array[Float] = { + val expElem = values.map(exp(_)) + val total = expElem.sum + expElem.map(_ / total).map(_.toFloat) + } + + protected def scatterValuesOnBatchIndices( + values: List[Boolean], + batchIndices: Array[Int]): List[Boolean] = { + // scatter values to pair indices + val (_, initArray) = batchIndices.zip(values).sorted.unzip + initArray.toList + } +} diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TemperatureLogitWarper.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TemperatureLogitWarper.scala new file mode 100644 index 000000000000..611ceb699aa6 --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TemperatureLogitWarper.scala @@ -0,0 +1,31 @@ +/* + * Copyright 2017 - 2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitWarper + +class TemperatureLogitWarper(val temperature: Double) extends LogitWarper { + override def call( + inputIds: Seq[Array[Long]], + scores: Array[Array[Float]], + currentLength: Int): Array[Array[Float]] = { + if (temperature > 0 && temperature <= 1) { + scores.map(_.map(x => (x / temperature.toFloat))) + } else { + scores + } + + } +} diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopKLogitWarper.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopKLogitWarper.scala new file mode 100644 index 000000000000..937033d368aa --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopKLogitWarper.scala @@ -0,0 +1,60 @@ +/* + * Copyright 2017 - 2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitWarper +import scala.collection.mutable.ArrayBuffer + +class TopKLogitWarper( + val k: Int, + val filterValue: Float = Float.NegativeInfinity, + val minTokensToKeep: Int = 1) + extends LogitWarper { + override def call( + inputIds: Seq[Array[Long]], + scores: Array[Array[Float]], + currentLength: Int): Array[Array[Float]] = { + var logitsUpd = scores + val logitsShape = Array(scores.length, scores(0).length) + if (k > 0) { + val topKup = k.max(minTokensToKeep).min(logitsShape.last) // Safety check + + /** Remove all tokens with a probability less than the last token of the top-k */ + + val topKLogits = new ArrayBuffer[Array[Float]]() + for (logits <- scores) { + val topKIndices = getTopKIndices(logits, topKup) + val maskedValues = maskNotTopKValues(logits, topKIndices) + topKLogits += maskedValues + } + topKLogits.toArray + } + logitsUpd + } + + private def getTopKIndices(logits: Array[Float], k: Int): Array[Int] = { + logits.indices.sortBy(logits(_)).reverse.take(k).toArray + } + + private def maskNotTopKValues(logits: Array[Float], topKIndices: Array[Int]): Array[Float] = { + val maskedValues = logits.clone() + for (i <- logits.indices) { + if (!topKIndices.contains(i)) { + maskedValues(i) = this.filterValue + } + } + maskedValues + } +} diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopPLogitWarper.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopPLogitWarper.scala new file mode 100644 index 000000000000..2b74e3284b6d --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopPLogitWarper.scala @@ -0,0 +1,66 @@ +/* + * Copyright 2017 - 2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitWarper + +class TopPLogitWarper(val p: Double, val minTokensToKeep: Int = 1) extends LogitWarper { + override def call( + inputIds: Seq[Array[Long]], + scores: Array[Array[Float]], + currentLength: Int): Array[Array[Float]] = { + var scoresUpd = scores + val scoresShape = Array(scores.length, scores(0).length) + if (this.p < 1.0) { + val (sortedscores, sortedIndices) = scores(0).zipWithIndex.sorted.reverse.unzip + + val cumulativeProbs = this.scanLeft(this.softmax(sortedscores))(0.0)(_ + _).drop(1) + + /** Remove tokens with cumulative probability above the threshold (token with 0 are kept) */ + var sortedIndicesToRemove = + for (prob <- cumulativeProbs) + yield if (prob > this.p) true else false + + if (minTokensToKeep > 1) { + + /** Keep at least minTokensToKeep (set to minTokensToKeep-1 because we add the first one + * below) + */ + sortedIndicesToRemove = List.fill(sortedIndicesToRemove.take(minTokensToKeep).length)( + false) ++ sortedIndicesToRemove.drop(minTokensToKeep) + } + + /** Shift the indices to the right to keep also the first token above the threshold */ + sortedIndicesToRemove = sortedIndicesToRemove.takeRight(1) ++ sortedIndicesToRemove + .dropRight(1) + sortedIndicesToRemove = + List.fill(sortedIndicesToRemove.take(1).length)(false) ++ sortedIndicesToRemove + .drop(1) + + /** scatter sorted tensors to original indexing */ + val indicesToRemove = + this.scatterValuesOnBatchIndices(sortedIndicesToRemove.toList, sortedIndices) + scoresUpd = + for ((nextTokenLogit, indexToRemove) <- scores.zip( + IndexedSeq.fill(scores.length)(indicesToRemove))) + yield setTensorByIndicesToValue( + nextTokenLogit, + indexToRemove.toIndexedSeq, + Float.NegativeInfinity) + } + scoresUpd + } + +} diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamHypotheses.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamHypotheses.scala new file mode 100644 index 000000000000..04c1b7c1c037 --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamHypotheses.scala @@ -0,0 +1,85 @@ +/* + * Copyright 2017 - 2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.ml.ai.util.Generation.Search + +class BeamHypotheses( + var lengthPenalty: Double, + var numBeams: Int, + var earlyStopping: Boolean = false, + var maxLength: Int) { + private var beams: Seq[(Double, Array[Long], Array[Long])] = Seq() + private var worstScore: Double = 1e9 + + def length(): Int = { + beams.length + } + + def getBeams: Seq[(Double, Array[Long], Array[Long])] = { + this.beams + } + + /** Add a new hypotheses to the list + * @param hypotheses + * Hypothesis + * @param sumLogProbs + * Sum of Log Probabilities + * @param beamIndices + * Beam Indices + */ + def add(hypotheses: Array[Long], sumLogProbs: Double, beamIndices: Array[Long]): Unit = { + val score = sumLogProbs / Math.pow(hypotheses.length, this.lengthPenalty) + if (this.beams.length < this.numBeams || score > this.worstScore) { + this.beams = beams :+ (score, hypotheses, beamIndices) + if (this.beams.length > this.numBeams) { + val sortedNextScores = this.beams.zipWithIndex.sortBy(_._1._1) + + this.beams = this.beams.zipWithIndex.filter(_._2 != sortedNextScores.head._2).map(_._1) + this.worstScore = sortedNextScores(1)._1._1 + } else { + this.worstScore = Math.min(score, this.worstScore) + } + } + } + + /** If there are enough hypotheses and that none of the hypotheses being generated can become + * better than the worst one in the heap, then we are done with this sentence. + * + * @param bestSumLogProbs + * Best Sum of Log Probabilities + * @param currentLength + * Current Length + * @return + * Status of the sentence + */ + def isDone(bestSumLogProbs: Double, currentLength: Long): Boolean = { + if (this.beams.length < this.numBeams) { + false + } else if (this.earlyStopping) { + true + } else if (!this.earlyStopping) { + val currentScore = bestSumLogProbs / Math.pow(currentLength, this.lengthPenalty) + this.worstScore >= currentScore + } else { + if (this.lengthPenalty > 0) { + this.worstScore >= (bestSumLogProbs / Math.pow(this.maxLength, this.lengthPenalty)) + } else { + val currentScore = bestSumLogProbs / Math.pow(currentLength, this.lengthPenalty) + this.worstScore >= currentScore + } + } + } +} diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamScorer.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamScorer.scala new file mode 100644 index 000000000000..43471fd28e45 --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamScorer.scala @@ -0,0 +1,43 @@ +/* + * Copyright 2017 - 2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.ml.ai.util.Generation.Search + +abstract class BeamScorer() { + + def process( + inputIds: Seq[Array[Long]], + nextScores: Seq[Array[Float]], + nextTokens: Seq[Array[Long]], + nextIndices: Seq[Array[Long]], + padTokenId: Long, + eosTokenId: Long, + beamIndices: Seq[Array[Long]], + currentLength: Long): (Array[Array[Float]], Array[Array[Long]], Array[Array[Long]]) + + def finalize( + inputIds: Seq[Array[Long]], + finalBeamScores: Array[Float], + finalBeamTokens: Array[Long], + finalBeamIndices: Array[Long], + maxLength: Long, + padTokenId: Long, + eosTokenId: Long, + beamIndices: Seq[Array[Long]]): (Array[Array[Long]], Array[Float], Array[Array[Long]]) + def getBeamHypothesesSeq: Seq[BeamHypotheses] + def getNumBeams: Int + def isDone: Boolean +} diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamSearchScorer.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamSearchScorer.scala new file mode 100644 index 000000000000..afce9389f850 --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamSearchScorer.scala @@ -0,0 +1,176 @@ +/* + * Copyright 2017 - 2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.ml.ai.util.Generation.Search + +import scala.util.control.Breaks._ + +class BeamSearchScorer( + var beamSize: Int, + var batchSize: Int, + var lengthPenalty: Float = 1.0f, + var doEarlyStopping: Boolean = false, + var numBeamHypothesisToKeep: Int = 1, + var maxLength: Int) + extends BeamScorer { + + val numBeams: Int = beamSize + private var beamHypothesesSeq: Seq[BeamHypotheses] = Seq.empty[BeamHypotheses] + (1 to batchSize) foreach (i => + beamHypothesesSeq = beamHypothesesSeq :+ new BeamHypotheses( + lengthPenalty = lengthPenalty, + numBeams = beamSize, + earlyStopping = doEarlyStopping, + maxLength = maxLength)) + + override def getBeamHypothesesSeq: Seq[BeamHypotheses] = { + beamHypothesesSeq + } + + override def getNumBeams: Int = numBeams + private val done: Array[Boolean] = Array.fill(batchSize)(false) + + override def process( + inputIds: Seq[Array[Long]], + nextScores: Seq[Array[Float]], + nextTokens: Seq[Array[Long]], + nextIndices: Seq[Array[Long]], + padTokenId: Long, + eosTokenId: Long, + beamIndices: Seq[Array[Long]], + currentLength: Long): (Array[Array[Float]], Array[Array[Long]], Array[Array[Long]]) = { +// val currentLength = inputIds.length + val batchSize = this.beamHypothesesSeq.length + val nextBeamScores = Array.ofDim[Float](batchSize, this.beamSize) + val nextBeamTokens = Array.ofDim[Long](batchSize, this.beamSize) + val nextBeamIndices = Array.ofDim[Long](batchSize, this.beamSize) + + this.beamHypothesesSeq.zipWithIndex.foreach { case (hypotheses, batchIdx) => + breakable { + if (this.done(batchIdx)) { + nextBeamScores(batchIdx) = nextBeamScores(batchIdx).map(_ => 0.0f) + nextBeamTokens(batchIdx) = nextBeamTokens(batchIdx).map(_ => padTokenId) + nextBeamIndices(batchIdx) = nextBeamIndices(batchIdx).map(_ => 0L) + break + } + var beamIdx = 0 + var beamTokenRank = 0 + while (beamTokenRank < nextScores(batchIdx).length && beamIdx < this.beamSize) { + + val nextScore = nextScores(batchIdx)(beamTokenRank) + val nextToken = nextTokens(batchIdx)(beamTokenRank) + val nextIndex = nextIndices(batchIdx)(beamTokenRank) + val batchBeamIdx = batchIdx * this.beamSize + nextIndex + + if (eosTokenId == nextToken) { + if (beamTokenRank >= this.beamSize) { + break + } + var beamIndex = Array[Long]() + if (beamIndices.nonEmpty) { + beamIndex = beamIndices(batchBeamIdx.toInt) + beamIndex = beamIndex.map(i => i + batchBeamIdx) + } + + hypotheses.add(inputIds(batchBeamIdx.toInt), nextScore, beamIndex) + } else { + nextBeamScores(batchIdx)(beamIdx) = nextScore + nextBeamTokens(batchIdx)(beamIdx) = nextToken + nextBeamIndices(batchIdx)(beamIdx) = batchBeamIdx + beamIdx += 1 + } + beamTokenRank += 1 + } + this.done(batchIdx) = + this.done(batchIdx) || hypotheses.isDone(nextScores(batchIdx).max, currentLength) + } + } + (nextBeamScores, nextBeamTokens, nextBeamIndices) + } + + override def finalize( + inputIds: Seq[Array[Long]], + finalBeamScores: Array[Float], + finalBeamTokens: Array[Long], + finalBeamIndices: Array[Long], + maxLength: Long, + padTokenId: Long, + eosTokenId: Long, + beamIndices: Seq[Array[Long]]): (Array[Array[Long]], Array[Float], Array[Array[Long]]) = { + val batchSize = this.beamHypothesesSeq.length + this.beamHypothesesSeq.zipWithIndex.foreach { case (hypotheses, batchIdx) => + breakable { + if (!this.done.contains(false)) { + break + } + for (beamId <- 0 until this.beamSize) { + var batchBeamIdx = batchIdx * this.beamSize + beamId + var finalScore = finalBeamScores(batchBeamIdx) + var finalTokens = inputIds(batchBeamIdx) + var beamIndex = Array[Long]() + if (beamIndices.nonEmpty) { + beamIndex = beamIndices(batchBeamIdx) + } + hypotheses.add(finalTokens, finalScore, beamIndex) + } + } + } + val sentLengths = Array.ofDim[Long](batchSize * this.numBeamHypothesisToKeep) + var best = Seq[Array[Long]]() + var bestIndices = Seq[Array[Long]]() + val bestScores = Array.ofDim[Float](batchSize * this.numBeamHypothesisToKeep) + this.beamHypothesesSeq.zipWithIndex.foreach { case (hypotheses, i) => + breakable { + var sortedHypotheses = hypotheses.getBeams.sortWith(_._1 < _._1) + for (j <- 0 until this.numBeamHypothesisToKeep) { + val bestHypothesisTuple = sortedHypotheses.last + val bestScore = bestHypothesisTuple._1 + val bestHypothesis = bestHypothesisTuple._2 + val bestIndex = bestHypothesisTuple._3 + sentLengths(this.numBeamHypothesisToKeep * i + j) = bestHypothesis.length + best = best :+ bestHypothesis + bestIndices = bestIndices :+ bestIndex + bestScores(i * this.numBeamHypothesisToKeep + j) = bestScore.toFloat + sortedHypotheses = sortedHypotheses.dropRight(1) + } + } + } + val sentLengthMax = sentLengths.max + 1 + val sentMaxLength = Math.min(sentLengthMax, maxLength) + 1 + var decoded = Array.ofDim[Long](batchSize * this.numBeamHypothesisToKeep, sentMaxLength.toInt) + var indices = Array.ofDim[Long](batchSize * this.numBeamHypothesisToKeep, sentMaxLength.toInt) + + if (sentLengths.min != sentLengths.max) { + decoded = decoded.map(each => each.map(_ => padTokenId)) + } + indices = indices.map(each => each.map(_ => -1L)) + for (i <- best.indices) { + val hypo = best(i) + val bestIdx = bestIndices(i) + for (j <- 0 until sentLengths(i).toInt) { + decoded(i)(j) = hypo(j) +// indices(i)(j) = bestIdx(j) + } + if (sentLengths(i) < sentMaxLength) { + decoded(i)(sentLengths(i).toInt) = eosTokenId + } + } + (decoded, bestScores, indices) + + } + + override def isDone: Boolean = !this.done.contains(false) +} diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotator.scala b/src/main/scala/com/johnsnowlabs/nlp/annotator.scala index 6ba09e517050..33cd0da4f951 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotator.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotator.scala @@ -674,13 +674,19 @@ package object annotator { type Date2Chunk = com.johnsnowlabs.nlp.annotators.Date2Chunk object Date2Chunk extends DefaultParamsReadable[Date2Chunk] - + type Chunk2Doc = com.johnsnowlabs.nlp.annotators.Chunk2Doc object Chunk2Doc extends DefaultParamsReadable[Chunk2Doc] + type BartTransformer = com.johnsnowlabs.nlp.annotators.seq2seq.BartTransformer + + object BartTransformer + extends ReadablePretrainedBartTransformerModel + with ReadBartTransformerDLModel + type BertForZeroShotClassification = - com.johnsnowlabs.nlp.annotators.classifier.dl.BertForZeroShotClassification + com.johnsnowlabs.nlp.annotators.classifier.dl.BertForZeroShotClassification object BertForZeroShotClassification extends ReadablePretrainedBertForZeroShotModel diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala new file mode 100644 index 000000000000..c59408f117db --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala @@ -0,0 +1,608 @@ +/* + * Copyright 2017-2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.nlp.annotators.seq2seq + +import com.johnsnowlabs.ml.ai.Bart +import com.johnsnowlabs.ml.tensorflow.{ + ReadTensorflowModel, + TensorflowWrapper, + WriteTensorflowModel +} +import com.johnsnowlabs.ml.util.LoadExternalModel.{ + loadTextAsset, + modelSanityCheck, + notSupportedEngineError +} +import com.johnsnowlabs.ml.util.ModelEngine +import com.johnsnowlabs.nlp.AnnotatorType.DOCUMENT +import com.johnsnowlabs.nlp._ +import com.johnsnowlabs.nlp.serialization.MapFeature +import org.apache.spark.broadcast.Broadcast +import org.apache.spark.ml.param._ +import org.apache.spark.ml.util.Identifiable +import org.apache.spark.sql.SparkSession + +/** BART: Denoising Sequence-to-Sequence Pre-training for Natural Language Generation, + * Translation, and Comprehension Transformer + * + * The Facebook BART (Bidirectional and Auto-Regressive Transformer) model is a state-of-the-art + * language generation model that was introduced by Facebook AI in 2019. It is based on the + * transformer architecture and is designed to handle a wide range of natural language processing + * tasks such as text generation, summarization, and machine translation. + * + * BART is unique in that it is both bidirectional and auto-regressive, meaning that it can + * generate text both from left-to-right and from right-to-left. This allows it to capture + * contextual information from both past and future tokens in a sentence,resulting in more + * accurate and natural language generation. + * + * The model was trained on a large corpus of text data using a combination of unsupervised and + * supervised learning techniques. It incorporates pretraining and fine-tuning phases, where the + * model is first trained on a large unlabeled corpus of text, and then fine-tuned on specific + * downstream tasks. + * + * BART has achieved state-of-the-art performance on a wide range of NLP tasks, including + * summarization, question-answering, and language translation. Its ability to handle multiple + * tasks and its high performance on each of these tasks make it a versatile and valuable tool + * for natural language processing applications. + * + * Pretrained models can be loaded with `pretrained` of the companion object: + * {{{ + * val bart = BartTransformer.pretrained() + * .setInputCols("document") + * .setOutputCol("generation") + * }}} + * The default model is `"bart_large_cnn"`, if no name is provided. For available pretrained + * models please see the [[https://nlp.johnsnowlabs.com/models?q=bart Models Hub]]. + * + * For extended examples of usage, see + * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTestSpec.scala BartTestSpec]]. + * + * '''References:''' + * - [[https://aclanthology.org/2020.acl-main.703.pdf BART: Denoising Sequence-to-Sequence Pre-training for Natural Language Generation, Translation, and Comprehension]] + * - [[https://github.com/pytorch/fairseq]] + * + * '''Paper Abstract:''' + * + * '' We present BART, a denoising autoencoder for pretraining sequence-to-sequence models. BART + * is trained by (1) corrupting text with an arbitrary noising function, and (2) learning a model + * to reconstruct the original text. It uses a standard Tranformer-based neural machine + * translation architecture which, despite its simplicity, can be seen as generalizing BERT (due + * to the bidirectional encoder), GPT (with the left-to-right decoder), and other recent + * pretraining schemes. We evaluate a number of noising approaches, finding the best performance + * by both randomly shuffling the order of sentences and using a novel in-filling scheme, where + * spans of text are replaced with a single mask token. BART is particularly effective when fine + * tuned for text generation but also works well for comprehension tasks. It matches the + * performance of RoBERTa on GLUE and SQuAD, and achieves new stateof-the-art results on a range + * of abstractive dialogue, question answering, and summarization tasks, with gains of up to 3.5 + * ROUGE. BART also provides a 1.1 BLEU increase over a back-translation system for machine + * translation, with only target language pretraining. We also replicate other pretraining + * schemes within the BART framework, to understand their effect on end-task performance '' + * + * '''Note:''' + * + * This is a very computationally expensive module especially on larger sequence. The use of an + * accelerator such as GPU is recommended. + * + * ==Example== + * {{{ + * import spark.implicits._ + * import com.johnsnowlabs.nlp.base.DocumentAssembler + * import com.johnsnowlabs.nlp.annotators.seq2seq.GPT2Transformer + * import org.apache.spark.ml.Pipeline + * + * val documentAssembler = new DocumentAssembler() + * .setInputCol("text") + * .setOutputCol("documents") + * + * val bart = BartTransformer.pretrained("bart_large_cnn") + * .setInputCols(Array("documents")) + * .setMinOutputLength(10) + * .setMaxOutputLength(30) + * .setDoSample(true) + * .setTopK(50) + * .setOutputCol("generation") + * + * val pipeline = new Pipeline().setStages(Array(documentAssembler, bart)) + * + * val data = Seq( + * "PG&E stated it scheduled the blackouts in response to forecasts for high winds " + + * "amid dry conditions. The aim is to reduce the risk of wildfires. Nearly 800 thousand customers were " + + * "scheduled to be affected by the shutoffs which were expected to last through at least midday tomorrow." + * ).toDF("text") + * val result = pipeline.fit(data).transform(data) + * + * results.select("generation.result").show(truncate = false) + * +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + * |result | + * +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + * |[Nearly 800 thousand customers were affected by the shutoffs.]| + * +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + * }}} + * + * @param uid + * required uid for storing annotator to disk + * @groupname anno Annotator types + * @groupdesc anno + * Required input and expected output annotator types + * @groupname Ungrouped Members + * @groupname param Parameters + * @groupname setParam Parameter setters + * @groupname getParam Parameter getters + * @groupname Ungrouped Members + * @groupprio param 1 + * @groupprio anno 2 + * @groupprio Ungrouped 3 + * @groupprio setParam 4 + * @groupprio getParam 5 + * @groupdesc param + * A list of (hyper-)parameter keys this annotator can take. Users can set and get the + * parameter values through setters and getters, respectively. + */ +class BartTransformer(override val uid: String) + extends AnnotatorModel[BartTransformer] + with HasBatchedAnnotate[BartTransformer] + with ParamsAndFeaturesWritable + with WriteTensorflowModel + with HasEngine { + + def this() = this(Identifiable.randomUID("BartTRANSFORMER")) + + /** Input annotator type : DOCUMENT + * + * @group param + */ + override val inputAnnotatorTypes: Array[AnnotatorType] = Array(DOCUMENT) + + /** Output annotator type : DOCUMENT + * + * @group param + */ + override val outputAnnotatorType: String = DOCUMENT + + /** Set transformer task, e.g. `"summarize:"` (Default: `""`). + * + * @group param + */ + val task = new Param[String](this, "task", "Set transformer task, e.g. 'summarize'") + + /** @group setParam */ + def setTask(value: String): BartTransformer.this.type = { + if (get(task).isEmpty) + set(task, value) + this + } + + /** Minimum length of the sequence to be generated (Default: `0`) + * + * @group param + */ + val minOutputLength = + new IntParam(this, "minOutputLength", "Minimum length of the sequence to be generated") + + /** @group setParam */ + def setMinOutputLength(value: Int): BartTransformer.this.type = { + set(minOutputLength, value) + this + } + + /** @group getParam */ + def getMinOutputLength: Int = $(this.minOutputLength) + + /** Maximum length of the sequence to be generated (Default: `20`) + * + * @group param + */ + val maxOutputLength = + new IntParam(this, "maxOutputLength", "Maximum length of the sequence to be generated") + + /** @group setParam */ + def setMaxOutputLength(value: Int): BartTransformer.this.type = { + set(maxOutputLength, value) + this + } + + /** @group getParam */ + def getMaxOutputLength: Int = $(this.maxOutputLength) + + /** Whether or not to use sampling, use greedy decoding otherwise (Default: `false`) + * + * @group param + */ + val doSample = new BooleanParam( + this, + "doSample", + "Whether or not to use sampling; use greedy decoding otherwise") + + /** @group setParam */ + def setDoSample(value: Boolean): BartTransformer.this.type = { + set(doSample, value) + this + } + + /** @group getParam */ + def getDoSample: Boolean = $(this.doSample) + + /** The value used to module the next token probabilities (Default: `1.0`) + * + * @group param + */ + val temperature = + new DoubleParam(this, "temperature", "The value used to module the next token probabilities") + + /** @group setParam */ + def setTemperature(value: Double): BartTransformer.this.type = { + set(temperature, value) + this + } + + /** @group getParam */ + def getTemperature: Double = $(this.temperature) + + /** The number of highest probability vocabulary tokens to keep for top-k-filtering (Default: + * `50`) + * + * @group param + */ + val topK = new IntParam( + this, + "topK", + "The number of highest probability vocabulary tokens to keep for top-k-filtering") + + /** @group setParam */ + def setTopK(value: Int): BartTransformer.this.type = { + set(topK, value) + this + } + + /** @group getParam */ + def getTopK: Int = $(this.topK) + + /** If set to float < `1.0`, only the most probable tokens with probabilities that add up to + * `topP` or higher are kept for generation (Default: `1.0`) + * + * @group param + */ + val topP = new DoubleParam( + this, + "topP", + "If set to float < 1, only the most probable tokens with probabilities that add up to ``top_p`` or higher are kept for generation") + + /** @group setParam */ + def setTopP(value: Double): BartTransformer.this.type = { + set(topP, value) + this + } + + /** @group getParam */ + def getTopP: Double = $(this.topP) + + /** The parameter for repetition penalty (Default: `1.0`). `1.0` means no penalty. See + * [[https://arxiv.org/pdf/1909.05858.pdf this paper]] for more details. + * + * @group param + */ + val repetitionPenalty = new DoubleParam( + this, + "repetitionPenalty", + "The parameter for repetition penalty. 1.0 means no penalty.") + + /** @group setParam */ + def setRepetitionPenalty(value: Double): BartTransformer.this.type = { + set(repetitionPenalty, value) + this + } + + /** @group getParam */ + def getRepetitionPenalty: Double = $(this.repetitionPenalty) + + /** If set to int > `0`, all ngrams of that size can only occur once (Default: `0`) + * + * @group param + */ + val noRepeatNgramSize = new IntParam( + this, + "noRepeatNgramSize", + "If set to int > 0, all ngrams of that size can only occur once") + + /** @group setParam */ + def setNoRepeatNgramSize(value: Int): BartTransformer.this.type = { + set(noRepeatNgramSize, value) + this + } + + /** @group getParam */ + def getNoRepeatNgramSize: Int = $(this.noRepeatNgramSize) + + /** Optional Random seed for the model. Needs to be of type `Int`. + * + * @group param + */ + var randomSeed: Option[Long] = None + + /** @group setParam */ + def setRandomSeed(value: Long): BartTransformer.this.type = { + if (randomSeed.isEmpty) { + this.randomSeed = Some(value) + } + this + } + + /** @group getParam */ + def getRandomSeed: Option[Long] = this.randomSeed + + /** A list of token ids which are ignored in the decoder's output (Default: `Array()`) + * + * @group param + */ + var ignoreTokenIds = new IntArrayParam( + this, + "ignoreTokenIds", + "A list of token ids which are ignored in the decoder's output") + + /** @group setParam */ + def setIgnoreTokenIds(tokenIds: Array[Int]): BartTransformer.this.type = { + set(ignoreTokenIds, tokenIds) + } + + /** @group getParam */ + def getIgnoreTokenIds: Array[Int] = $(ignoreTokenIds) + + /** Beam size for the beam search algorithm (Default: `4`) + * + * @group param + */ + var beamSize = new IntParam(this, "beamSize", "Number of beams for beam search.") + + /** @group setParam */ + def setBeamSize(beamNum: Int): BartTransformer.this.type = { + set(beamSize, beamNum) + } + + /** @group getParam */ + def getBeamSize: Int = $(beamSize) + + /** ConfigProto from tensorflow, serialized into byte array. Get with + * config_proto.SerializeToString() + * + * @group param + */ + val configProtoBytes = new IntArrayParam( + this, + "configProtoBytes", + "ConfigProto from tensorflow, serialized into byte array. Get with config_proto.SerializeToString()") + + /** @group setParam */ + def setConfigProtoBytes(bytes: Array[Int]): BartTransformer.this.type = + set(this.configProtoBytes, bytes) + + /** @group getParam */ + def getConfigProtoBytes: Option[Array[Byte]] = get(this.configProtoBytes).map(_.map(_.toByte)) + + /** It contains TF model signatures for the laded saved model + * + * @group param + */ + val signatures = new MapFeature[String, String](model = this, name = "signatures") + + /** @group setParam */ + def setSignatures(value: Map[String, String]): this.type = { + if (get(signatures).isEmpty) + set(signatures, value) + this + } + + /** @group getParam */ + def getSignatures: Option[Map[String, String]] = get(this.signatures) + private var _tfModel: Option[Broadcast[Bart]] = None + + /** Vocabulary used to encode the words to ids with bpeTokenizer.encode + * + * @group param + */ + val vocabulary: MapFeature[String, Int] = new MapFeature(this, "vocabulary") + + /** @group setParam */ + def setVocabulary(value: Map[String, Int]): this.type = set(vocabulary, value) + + /** Holding merges.txt coming from RoBERTa model + * + * @group param + */ + val merges: MapFeature[(String, String), Int] = new MapFeature(this, "merges") + + /** @group setParam */ + def setMerges(value: Map[(String, String), Int]): this.type = set(merges, value) + + /** @group setParam */ + def setModelIfNotSet(spark: SparkSession, tfWrapper: TensorflowWrapper): this.type = { + if (_tfModel.isEmpty) { + + _tfModel = Some( + spark.sparkContext.broadcast( + new Bart( + tfWrapper, + configProtoBytes = getConfigProtoBytes, + signatures = getSignatures, + $$(merges), + $$(vocabulary)))) + } + this + } + + /** @group getParam */ + def getModelIfNotSet: Bart = _tfModel.get.value + + setDefault( + task -> "", + minOutputLength -> 0, + maxOutputLength -> 20, + doSample -> false, + temperature -> 1.0, + topK -> 50, + topP -> 1.0, + repetitionPenalty -> 1.0, + noRepeatNgramSize -> 0, + ignoreTokenIds -> Array(), + batchSize -> 1, + beamSize -> 4) + + override def batchAnnotate(batchedAnnotations: Seq[Array[Annotation]]): Seq[Seq[Annotation]] = { + + val allAnnotations = batchedAnnotations + .filter(_.nonEmpty) + .zipWithIndex + .flatMap { case (annotations, i) => + annotations.filter(_.result.nonEmpty).map(x => (x, i)) + } + + val processedAnnotations = if (allAnnotations.nonEmpty) { + this.getModelIfNotSet.predict( + sentences = allAnnotations.map(_._1), + batchSize = $(batchSize), + minOutputLength = $(minOutputLength), + maxOutputLength = $(maxOutputLength), + doSample = $(doSample), + temperature = $(temperature), + topK = $(topK), + topP = $(topP), + repetitionPenalty = $(repetitionPenalty), + noRepeatNgramSize = $(noRepeatNgramSize), + task = $(task), + randomSeed = this.randomSeed, + ignoreTokenIds = $(ignoreTokenIds), + beamSize = $(beamSize)) + } else { + Seq() + } + + // Group resulting annotations by rows. If there are not sentences in a given row, return empty sequence + batchedAnnotations.indices.map(rowIndex => { + val rowAnnotations = processedAnnotations + // zip each annotation with its corresponding row index + .zip(allAnnotations) + // select the sentences belonging to the current row + .filter(_._2._2 == rowIndex) + // leave the annotation only + .map(_._1) + + if (rowAnnotations.nonEmpty) + rowAnnotations + else + Seq.empty[Annotation] + }) + } + + override def onWrite(path: String, spark: SparkSession): Unit = { + super.onWrite(path, spark) + writeTensorflowModelV2( + path, + spark, + getModelIfNotSet.tensorflow, + "_bart", + BartTransformer.tfFile, + configProtoBytes = getConfigProtoBytes, + savedSignatures = getSignatures) + } +} + +trait ReadablePretrainedBartTransformerModel + extends ParamsAndFeaturesReadable[BartTransformer] + with HasPretrained[BartTransformer] { + override val defaultModelName: Some[String] = Some("bart") + + /** Java compliant-overrides */ + override def pretrained(): BartTransformer = super.pretrained() + + override def pretrained(name: String): BartTransformer = super.pretrained(name) + + override def pretrained(name: String, lang: String): BartTransformer = + super.pretrained(name, lang) + + override def pretrained(name: String, lang: String, remoteLoc: String): BartTransformer = + super.pretrained(name, lang, remoteLoc) +} + +trait ReadBartTransformerDLModel extends ReadTensorflowModel { + this: ParamsAndFeaturesReadable[BartTransformer] => + + override val tfFile: String = "bart_tensorflow" + + def readModel(instance: BartTransformer, path: String, spark: SparkSession): Unit = { + val tf = readTensorflowModel( + path, + spark, + "_bart_tf", + savedSignatures = instance.getSignatures, + initAllTables = false) + instance.setModelIfNotSet(spark, tf) + } + + addReader(readModel) + + def loadSavedModel(modelPath: String, spark: SparkSession): BartTransformer = { + + val (localModelPath, detectedEngine) = modelSanityCheck(modelPath) + + val vocabs = loadTextAsset(localModelPath, "vocab.txt").zipWithIndex.toMap + + val bytePairs = loadTextAsset(localModelPath, "merges.txt") + .map(_.split(" ")) + .filter(w => w.length == 2) + .map { case Array(c1, c2) => (c1, c2) } + .zipWithIndex + .toMap + + /*Universal parameters for all engines*/ + val annotatorModel = new BartTransformer() + .setVocabulary(vocabs) + .setMerges(bytePairs) + + annotatorModel.set(annotatorModel.engine, detectedEngine) + + detectedEngine match { + case ModelEngine.tensorflow => + val (wrapper, signatures) = + TensorflowWrapper.read( + localModelPath, + zipped = false, + useBundle = true, + tags = Array("serve")) + + val _signatures = signatures match { + case Some(s) => s + case None => throw new Exception("Cannot load signature definitions from model!") + } + + /** the order of setSignatures is important if we use getSignatures inside + * setModelIfNotSet + */ + annotatorModel + .setSignatures(_signatures) + .setModelIfNotSet(spark, wrapper) + + case _ => + throw new Exception(notSupportedEngineError) + } + + annotatorModel + } + +} + +object BartTransformer + extends ReadablePretrainedBartTransformerModel + with ReadBartTransformerDLModel diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BartTokenizer.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BartTokenizer.scala new file mode 100644 index 000000000000..c5b250578ec8 --- /dev/null +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BartTokenizer.scala @@ -0,0 +1,31 @@ +/* + * Copyright 2017-2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.nlp.annotators.tokenizer.bpe + +class BartTokenizer( + merges: Map[(String, String), Int], + vocab: Map[String, Int], + specialTokens: SpecialTokens, + padWithSentenceTokens: Boolean = false, + addPrefixSpace: Boolean = false) + extends Gpt2Tokenizer( + merges, + vocab, + specialTokens, + padWithSentenceTokens, + prependString = "Ġ", + addPrefixSpace) diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BpeSpecialTokens.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BpeSpecialTokens.scala index 96f33148ad1a..ccfb69118eec 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BpeSpecialTokens.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BpeSpecialTokens.scala @@ -90,6 +90,15 @@ private[nlp] object SpecialTokens { "", "", "")) + case "bart" => + new SpecialTokens( + vocab, + startTokenString = "", + endTokenString = "", + unkTokenString = "", + maskTokenString = "", + padTokenString = "") + } } diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BpeTokenizer.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BpeTokenizer.scala index 080f26413cd5..c777d12f475a 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BpeTokenizer.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BpeTokenizer.scala @@ -313,7 +313,7 @@ object BpeTokenizer { padWithSentenceTokens: Boolean = false, addPrefixSpace: Boolean = false, specialTokens: Option[SpecialTokens] = None): BpeTokenizer = { - val availableModels = Array("roberta", "xlm", "gpt2") + val availableModels = Array("roberta", "xlm", "gpt2", "bart") require( availableModels.contains(modelType), "Model type \"" + modelType + "\" not supported yet.") @@ -341,6 +341,14 @@ object BpeTokenizer { padWithSentenceTokens, addPrefixSpace = addPrefixSpace) + case "bart" => + new BartTokenizer( + merges, + vocab, + modelSpecialTokens, + padWithSentenceTokens, + addPrefixSpace = addPrefixSpace) + } } } diff --git a/src/main/scala/com/johnsnowlabs/nlp/pretrained/ResourceDownloader.scala b/src/main/scala/com/johnsnowlabs/nlp/pretrained/ResourceDownloader.scala index 9b016c15be42..96618415fc37 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/pretrained/ResourceDownloader.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/pretrained/ResourceDownloader.scala @@ -37,7 +37,12 @@ import com.johnsnowlabs.nlp.annotators.sbd.pragmatic.SentenceDetector import com.johnsnowlabs.nlp.annotators.sda.pragmatic.SentimentDetectorModel import com.johnsnowlabs.nlp.annotators.sda.vivekn.ViveknSentimentModel import com.johnsnowlabs.nlp.annotators.sentence_detector_dl.SentenceDetectorDLModel -import com.johnsnowlabs.nlp.annotators.seq2seq.{GPT2Transformer, MarianTransformer, T5Transformer} +import com.johnsnowlabs.nlp.annotators.seq2seq.{ + BartTransformer, + GPT2Transformer, + MarianTransformer, + T5Transformer +} import com.johnsnowlabs.nlp.annotators.spell.context.ContextSpellCheckerModel import com.johnsnowlabs.nlp.annotators.spell.norvig.NorvigSweetingModel import com.johnsnowlabs.nlp.annotators.spell.symmetric.SymmetricDeleteModel @@ -721,6 +726,7 @@ object PythonResourceDownloader { "CamemBertForSequenceClassification" -> CamemBertForSequenceClassification, "CamemBertForQuestionAnswering" -> CamemBertForQuestionAnswering, "ZeroShotNerModel" -> ZeroShotNerModel, + "BartTransformer" -> BartTransformer, "BertForZeroShotClassification" -> BertForZeroShotClassification) // List pairs of types such as the one with key type can load a pretrained model from the value type diff --git a/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTestSpec.scala b/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTestSpec.scala new file mode 100644 index 000000000000..d10fdf5386ef --- /dev/null +++ b/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTestSpec.scala @@ -0,0 +1,206 @@ +/* + * Copyright 2017-2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.nlp.annotators.seq2seq + +import com.johnsnowlabs.nlp.base.DocumentAssembler +import com.johnsnowlabs.nlp.util.io.ResourceHelper +import com.johnsnowlabs.tags.SlowTest +import com.johnsnowlabs.util.Benchmark +import org.apache.spark.ml.Pipeline +import org.scalatest.flatspec.AnyFlatSpec + +class BartTestSpec extends AnyFlatSpec { + + "bart-large-cnn" should "should handle temperature=0 correctly and not crash when predicting more than 1 element with doSample=True" taggedAs SlowTest in { + // Even tough the Paper states temperature in interval [0,1), using temperature=0 will result in division by 0 error. + // Also DoSample=True may result in infinities being generated and distFiltered.length==0 which results in exception if we don't return 0 instead internally. + val testData = ResourceHelper.spark + .createDataFrame( + Seq( + ( + 1, + "PG&E stated it scheduled the blackouts in response to forecasts for high winds " + + "amid dry conditions. The aim is to reduce the risk of wildfires. Nearly 800 thousand customers were " + + "scheduled to be affected by the shutoffs which were expected to last through at least midday tomorrow."))) + .toDF("id", "text") + .repartition(1) + val documentAssembler = new DocumentAssembler() + .setInputCol("text") + .setOutputCol("documents") + + val bart = BartTransformer + .pretrained("bart_large_cnn") + .setTask("summarize:") + .setInputCols(Array("documents")) + .setDoSample(true) + .setMaxOutputLength(30) + .setOutputCol("generation") + new Pipeline() + .setStages(Array(documentAssembler, bart)) + .fit(testData) + .transform(testData) + .show(truncate = false) + + } + "bart-large-cnn" should "run SparkNLP pipeline with maxLength=130 and doSample=true" taggedAs SlowTest in { + val testData = ResourceHelper.spark + .createDataFrame( + Seq(( + 1, + "New York (CNN)When Liana Barrientos was 23 years old, she got married in Westchester County, New York.\nA " + + "year later, she got married again in Westchester County, but to a different man and without divorcing her first husband." + + "\nOnly 18 days after that marriage, she got hitched yet again. Then, Barrientos declared \"I do\" five more times, sometimes " + + "only within two weeks of each other.\nIn 2010, she married once more, this time in the Bronx. In an application for a marriage " + + "license, she stated it was her \"first and only\" marriage.\nBarrientos, now 39, is facing two criminal counts of \"offering a " + + "false instrument for filing in the first degree,\" referring to her false statements on the\n2010 marriage license application, " + + "according to court documents.\nProsecutors said the marriages were part of an immigration scam.\nOn Friday, she pleaded not guilty " + + "at State Supreme Court in the Bronx, according to her attorney, Christopher Wright, who declined to comment further.\nAfter leaving court, " + + "Barrientos was arrested and charged with theft of service and criminal trespass for allegedly sneaking into the New York subway through an " + + "emergency exit, said Detective\nAnnette Markowski, a police spokeswoman. In total, Barrientos has been married 10 times, with nine of her " + + "marriages occurring between 1999 and 2002.\nAll occurred either in Westchester County, Long Island, New Jersey or the Bronx. She is believed to" + + " still be married to four men, and at one time, she was married to eight men at once, prosecutors say.\nProsecutors said the immigration scam involved " + + "some of her husbands, who filed for permanent residence status shortly after the marriages.\nAny divorces happened only after such filings were" + + " approved. It was unclear whether any of the men will be prosecuted.\nThe case was referred to the Bronx District Attorney\\'s Office " + + "by Immigration and Customs Enforcement and the Department of Homeland Security\\'s\nInvestigation Division. Seven of the men are from so-called" + + " \"red-flagged\" countries, including Egypt, Turkey, Georgia, Pakistan and Mali."))) + .toDF("id", "text") + + val documentAssembler = new DocumentAssembler() + .setInputCol("text") + .setOutputCol("documents") + + val bart = BartTransformer + .pretrained("bart_large_cnn") + .setTask("summarize:") + .setInputCols(Array("documents")) + .setMaxOutputLength(70) + .setMinOutputLength(30) + .setDoSample(true) + .setOutputCol("summaries") + + val pipeline = new Pipeline().setStages(Array(documentAssembler, bart)) + + val model = pipeline.fit(testData) + val results = model.transform(testData) + + results.select("summaries.result").show(truncate = false) +// val dataframe = results.select("summaries.result").collect() +// val result = dataframe.toSeq.head.getAs[Seq[String]](0).head +// println(result) + // assert( + // result == "a knob of dripping or 2 tablespoons of vegetable oil in a large large pan . cut the kidneys in half and snip out the white core . heat the pan for 1-2 minutes, turning once, until browned .") + } + "bart-large-cnn" should "run SparkNLP pipeline with maxLength=100 " taggedAs SlowTest in { + val testData = ResourceHelper.spark + .createDataFrame( + Seq( + ( + 1, + "Preheat the oven to 220°C/ fan200°C/gas 7. Trim the lamb fillet of fat and cut into slices the thickness" + + " of a chop. Cut the kidneys in half and snip out the white core. Melt a knob of dripping or 2 tablespoons " + + "of vegetable oil in a heavy large pan. Fry the lamb fillet in batches for 3-4 minutes, turning once, until " + + "browned. Set aside. Fry the kidneys and cook for 1-2 minutes, turning once, until browned. Set aside." + + "Wipe the pan with kitchen paper, then add the butter. Add the onions and fry for about 10 minutes until " + + "softened. Sprinkle in the flour and stir well for 1 minute. Gradually pour in the stock, stirring all the " + + "time to avoid lumps. Add the herbs. Stir the lamb and kidneys into the onions. Season well. Transfer to a" + + " large 2.5-litre casserole. Slice the peeled potatoes thinly and arrange on top in overlapping rows. Brush " + + "with melted butter and season. Cover and bake for 30 minutes. Reduce the oven temperature to 160°C" + + "/fan140°C/gas 3 and cook for a further 2 hours. Then increase the oven temperature to 200°C/ fan180°C/gas 6," + + " uncover, and brush the potatoes with more butter. Cook uncovered for 15-20 minutes, or until golden."))) + .toDF("id", "text") + + val documentAssembler = new DocumentAssembler() + .setInputCol("text") + .setOutputCol("documents") + + val bart = BartTransformer + .pretrained("bart_large_cnn") + .setTask("summarize:") + .setInputCols(Array("documents")) + .setMaxOutputLength(100) + .setOutputCol("summaries") + + val pipeline = new Pipeline().setStages(Array(documentAssembler, bart)) + + val model = pipeline.fit(testData) + val results = model.transform(testData) + + results.select("summaries.result").show(truncate = false) + val dataframe = results.select("summaries.result").collect() + val result = dataframe.toSeq.head.getAs[Seq[String]](0).head + println(result) +// assert( +// result == "a knob of dripping or 2 tablespoons of vegetable oil in a large large pan . cut the kidneys in half and snip out the white core . heat the pan for 1-2 minutes, turning once, until browned .") + } + "bart-large-cnn" should "run SparkNLP pipeline with doSample=true " taggedAs SlowTest in { + val testData = ResourceHelper.spark + .createDataFrame( + Seq( + ( + 1, + "Preheat the oven to 220°C/ fan200°C/gas 7. Trim the lamb fillet of fat and cut into slices the thickness" + + " of a chop. Cut the kidneys in half and snip out the white core. Melt a knob of dripping or 2 tablespoons " + + "of vegetable oil in a heavy large pan. Fry the lamb fillet in batches for 3-4 minutes, turning once, until " + + "browned. Set aside. Fry the kidneys and cook for 1-2 minutes, turning once, until browned. Set aside." + + "Wipe the pan with kitchen paper, then add the butter. Add the onions and fry for about 10 minutes until " + + "softened. Sprinkle in the flour and stir well for 1 minute. Gradually pour in the stock, stirring all the " + + "time to avoid lumps. Add the herbs. Stir the lamb and kidneys into the onions. Season well. Transfer to a" + + " large 2.5-litre casserole. Slice the peeled potatoes thinly and arrange on top in overlapping rows. Brush " + + "with melted butter and season. Cover and bake for 30 minutes. Reduce the oven temperature to 160°C" + + "/fan140°C/gas 3 and cook for a further 2 hours. Then increase the oven temperature to 200°C/ fan180°C/gas 6," + + " uncover, and brush the potatoes with more butter. Cook uncovered for 15-20 minutes, or until golden."))) + .toDF("id", "text") + + val documentAssembler = new DocumentAssembler() + .setInputCol("text") + .setOutputCol("documents") + + val bart = BartTransformer + .pretrained("bart_large_cnn") + .setTask("summarize:") + .setInputCols(Array("documents")) + .setDoSample(true) + .setRandomSeed(56) + .setMaxOutputLength(50) + .setOutputCol("summaries") + + val pipeline = new Pipeline().setStages(Array(documentAssembler, bart)) + + val model = pipeline.fit(testData) + + val dataframe1 = model + .transform(testData) + .select("summaries.result") + .collect() + .toSeq + .head + .getAs[Seq[String]](0) + .head + println(dataframe1) + val dataframe2 = model + .transform(testData) + .select("summaries.result") + .collect() + .toSeq + .head + .getAs[Seq[String]](0) + .head + println(dataframe2) + + assert(dataframe1.equals(dataframe2)) + } +} diff --git a/src/test/scala/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BartTokenizerTestSpec.scala b/src/test/scala/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BartTokenizerTestSpec.scala new file mode 100644 index 000000000000..f6407968b297 --- /dev/null +++ b/src/test/scala/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BartTokenizerTestSpec.scala @@ -0,0 +1,92 @@ +/* + * Copyright 2017-2023 John Snow Labs + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.johnsnowlabs.nlp.annotators.tokenizer.bpe + +import org.scalatest.flatspec.AnyFlatSpec + +class BartTokenizerTestSpec extends AnyFlatSpec with BpeTokenizerBehaviours { + val vocab: Map[String, Int] = + Array( + "", + "", + "", + "ĠI", + "Ġunamb", + "ig", + "ou", + "os", + "ly", + "Ġgood", + "Ġ3", + "ĠAs", + "d", + "Ġ!", + "", + "", + "I").zipWithIndex.toMap + + val merges: Map[(String, String), Int] = Array( + "o u", + "l y", + "Ġ g", + "a m", + "i g", + "Ġ u", + "o d", + "u n", + "o s", + "Ġg o", + "Ġu n", + "o od", + "A s", + "m b", + "g o", + "o o", + "n a", + "am b", + "s l", + "n am", + "b i", + "b ig", + "u o", + "s d", + "Ġun amb", + "Ġgo od", + "Ġ 3").map(_.split(" ")).map { case Array(c1, c2) => (c1, c2) }.zipWithIndex.toMap + + override val modelType = "bart" + + override val replaceCharBeforeAssertion: Some[String] = Some("Ġ") + + "RobertaTokenizer" should behave like correctBpeTokenizer( + text = "I unambigouosly good 3Asd!", + Array("I", "Ġunamb", "ig", "ou", "os", "ly", "Ġgood", "Ġ3", "As", "d", "!"), + Array(16, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13)) + + "RobertaTokenizer" should behave like correctBpeTokenizerWithAddedPrefixSpace( + text = "I unambigouosly good 3Asd!", + Array("I", "Ġunamb", "ig", "ou", "os", "ly", "Ġgood", "Ġ3", "As", "d", "!"), + Array(3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13)) + + it should behave like correctBpeTokenizerInFringeSituations() + + it should behave like correctBpeTokenizerSpecialTokens( + text = "I unambigouosly good 3Asd ", + expected = + Array("I", "Ġunamb", "ig", "ou", "os", "ly", "", "Ġgood", "Ġ3", "As", "d", ""), + expectedIds = Array(16, 4, 5, 6, 7, 8, 2, 9, 10, 11, 12, 2)) +} From 7080915e7ae74bf4f913d30a2a9a0de5e9453b6d Mon Sep 17 00:00:00 2001 From: Maziyar Panahi Date: Thu, 6 Apr 2023 20:53:11 +0200 Subject: [PATCH 09/26] Bump version to 4.4.0 --- README.md | 114 +++++++++--------- build.sbt | 2 +- docs/demos/mental_health.md | 71 ----------- .../understand_financial_entities_context.md | 84 ------------- .../understand_legal_entities_context.md | 48 -------- docs/en/concepts.md | 2 +- docs/en/examples.md | 4 +- docs/en/hardware_acceleration.md | 2 +- docs/en/install.md | 54 ++++----- docs/en/spark_nlp.md | 2 +- examples/docker/README.md | 4 +- examples/util/Training_Helpers.ipynb | 4 +- python/README.md | 114 +++++++++--------- python/docs/conf.py | 2 +- python/setup.py | 2 +- python/sparknlp/__init__.py | 4 +- scripts/colab_setup.sh | 2 +- scripts/kaggle_setup.sh | 2 +- scripts/sagemaker_setup.sh | 2 +- .../scala/com/johnsnowlabs/nlp/SparkNLP.scala | 2 +- .../scala/com/johnsnowlabs/util/Build.scala | 2 +- 21 files changed, 162 insertions(+), 361 deletions(-) delete mode 100644 docs/demos/mental_health.md delete mode 100644 docs/demos/understand_financial_entities_context.md delete mode 100644 docs/demos/understand_legal_entities_context.md diff --git a/README.md b/README.md index 418e62ea9fa7..14da5a95cec1 100644 --- a/README.md +++ b/README.md @@ -162,7 +162,7 @@ To use Spark NLP you need the following requirements: **GPU (optional):** -Spark NLP 4.3.2 is built with TensorFlow 2.7.1 and the following NVIDIA® software are only required for GPU support: +Spark NLP 4.4.0 is built with TensorFlow 2.7.1 and the following NVIDIA® software are only required for GPU support: - NVIDIA® GPU drivers version 450.80.02 or higher - CUDA® Toolkit 11.2 @@ -178,7 +178,7 @@ $ java -version $ conda create -n sparknlp python=3.7 -y $ conda activate sparknlp # spark-nlp by default is based on pyspark 3.x -$ pip install spark-nlp==4.3.2 pyspark==3.3.1 +$ pip install spark-nlp==4.4.0 pyspark==3.3.1 ``` In Python console or Jupyter `Python3` kernel: @@ -223,11 +223,12 @@ For more examples, you can visit our dedicated [examples](https://github.com/Joh ## Apache Spark Support -Spark NLP *4.3.2* has been built on top of Apache Spark 3.2 while fully supports Apache Spark 3.0.x, 3.1.x, 3.2.x, and +Spark NLP *4.4.0* has been built on top of Apache Spark 3.2 while fully supports Apache Spark 3.0.x, 3.1.x, 3.2.x, and 3.3.x: | Spark NLP | Apache Spark 2.3.x | Apache Spark 2.4.x | Apache Spark 3.0.x | Apache Spark 3.1.x | Apache Spark 3.2.x | Apache Spark 3.3.x | |-----------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------| +| 4.4.x | NO | NO | YES | YES | YES | YES | | 4.3.x | NO | NO | YES | YES | YES | YES | | 4.2.x | NO | NO | YES | YES | YES | YES | | 4.1.x | NO | NO | YES | YES | YES | YES | @@ -246,22 +247,23 @@ Find out more about `Spark NLP` versions from our [release notes](https://github ## Scala and Python Support -| Spark NLP | Python 3.6 | Python 3.7 | Python 3.8 | Python 3.9 | Scala 2.11 | Scala 2.12 | -|-----------|------------|------------|------------|------------|------------|------------| -| 4.3.x | YES | YES | YES | YES | NO | YES | -| 4.2.x | YES | YES | YES | YES | NO | YES | -| 4.1.x | YES | YES | YES | YES | NO | YES | -| 4.0.x | YES | YES | YES | YES | NO | YES | -| 3.4.x | YES | YES | YES | YES | YES | YES | -| 3.3.x | YES | YES | YES | NO | YES | YES | -| 3.2.x | YES | YES | YES | NO | YES | YES | -| 3.1.x | YES | YES | YES | NO | YES | YES | -| 3.0.x | YES | YES | YES | NO | YES | YES | -| 2.7.x | YES | YES | NO | NO | YES | NO | +| Spark NLP | Python 3.6 | Python 3.7 | Python 3.8 | Python 3.9 | Python 3.10| Scala 2.11 | Scala 2.12 | +|-----------|------------|------------|------------|------------|------------|------------|------------| +| 4.4.x | NO | YES | YES | YES | YES | NO | YES | +| 4.3.x | YES | YES | YES | YES | YES | NO | YES | +| 4.2.x | YES | YES | YES | YES | YES | NO | YES | +| 4.1.x | YES | YES | YES | YES | NO | NO | YES | +| 4.0.x | YES | YES | YES | YES | NO | NO | YES | +| 3.4.x | YES | YES | YES | YES | NO | YES | YES | +| 3.3.x | YES | YES | YES | NO | NO | YES | YES | +| 3.2.x | YES | YES | YES | NO | NO | YES | YES | +| 3.1.x | YES | YES | YES | NO | NO | YES | YES | +| 3.0.x | YES | YES | YES | NO | NO | YES | YES | +| 2.7.x | YES | YES | NO | NO | NO | YES | NO | ## Databricks Support -Spark NLP 4.3.2 has been tested and is compatible with the following runtimes: +Spark NLP 4.4.0 has been tested and is compatible with the following runtimes: **CPU:** @@ -315,7 +317,7 @@ runtimes supporting CUDA 11 are 9.x and above as listed under GPU. ## EMR Support -Spark NLP 4.3.2 has been tested and is compatible with the following EMR releases: +Spark NLP 4.4.0 has been tested and is compatible with the following EMR releases: - emr-6.2.0 - emr-6.3.0 @@ -359,11 +361,11 @@ Spark NLP supports all major releases of Apache Spark 3.0.x, Apache Spark 3.1.x, ```sh # CPU -spark-shell --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 +spark-shell --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 -pyspark --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 +pyspark --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 -spark-submit --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 +spark-submit --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 ``` The `spark-nlp` has been published to @@ -372,11 +374,11 @@ the [Maven Repository](https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/s ```sh # GPU -spark-shell --packages com.johnsnowlabs.nlp:spark-nlp-gpu_2.12:4.3.2 +spark-shell --packages com.johnsnowlabs.nlp:spark-nlp-gpu_2.12:4.4.0 -pyspark --packages com.johnsnowlabs.nlp:spark-nlp-gpu_2.12:4.3.2 +pyspark --packages com.johnsnowlabs.nlp:spark-nlp-gpu_2.12:4.4.0 -spark-submit --packages com.johnsnowlabs.nlp:spark-nlp-gpu_2.12:4.3.2 +spark-submit --packages com.johnsnowlabs.nlp:spark-nlp-gpu_2.12:4.4.0 ``` @@ -386,11 +388,11 @@ the [Maven Repository](https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/s ```sh # AArch64 -spark-shell --packages com.johnsnowlabs.nlp:spark-nlp-aarch64_2.12:4.3.2 +spark-shell --packages com.johnsnowlabs.nlp:spark-nlp-aarch64_2.12:4.4.0 -pyspark --packages com.johnsnowlabs.nlp:spark-nlp-aarch64_2.12:4.3.2 +pyspark --packages com.johnsnowlabs.nlp:spark-nlp-aarch64_2.12:4.4.0 -spark-submit --packages com.johnsnowlabs.nlp:spark-nlp-aarch64_2.12:4.3.2 +spark-submit --packages com.johnsnowlabs.nlp:spark-nlp-aarch64_2.12:4.4.0 ``` @@ -400,11 +402,11 @@ the [Maven Repository](https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/s ```sh # M1/M2 (Apple Silicon) -spark-shell --packages com.johnsnowlabs.nlp:spark-nlp-silicon_2.12:4.3.2 +spark-shell --packages com.johnsnowlabs.nlp:spark-nlp-silicon_2.12:4.4.0 -pyspark --packages com.johnsnowlabs.nlp:spark-nlp-silicon_2.12:4.3.2 +pyspark --packages com.johnsnowlabs.nlp:spark-nlp-silicon_2.12:4.4.0 -spark-submit --packages com.johnsnowlabs.nlp:spark-nlp-silicon_2.12:4.3.2 +spark-submit --packages com.johnsnowlabs.nlp:spark-nlp-silicon_2.12:4.4.0 ``` @@ -418,7 +420,7 @@ set in your SparkSession: spark-shell \ --driver-memory 16g \ --conf spark.kryoserializer.buffer.max=2000M \ - --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 + --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 ``` ## Scala @@ -436,7 +438,7 @@ coordinates: com.johnsnowlabs.nlp spark-nlp_2.12 - 4.3.2 + 4.4.0 ``` @@ -447,7 +449,7 @@ coordinates: com.johnsnowlabs.nlp spark-nlp-gpu_2.12 - 4.3.2 + 4.4.0 ``` @@ -458,7 +460,7 @@ coordinates: com.johnsnowlabs.nlp spark-nlp-aarch64_2.12 - 4.3.2 + 4.4.0 ``` @@ -469,7 +471,7 @@ coordinates: com.johnsnowlabs.nlp spark-nlp-silicon_2.12 - 4.3.2 + 4.4.0 ``` @@ -479,28 +481,28 @@ coordinates: ```sbtshell // https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/spark-nlp -libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp" % "4.3.2" +libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp" % "4.4.0" ``` **spark-nlp-gpu:** ```sbtshell // https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/spark-nlp-gpu -libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-gpu" % "4.3.2" +libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-gpu" % "4.4.0" ``` **spark-nlp-aarch64:** ```sbtshell // https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/spark-nlp-aarch64 -libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-aarch64" % "4.3.2" +libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-aarch64" % "4.4.0" ``` **spark-nlp-silicon:** ```sbtshell // https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/spark-nlp-silicon -libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-silicon" % "4.3.2" +libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-silicon" % "4.4.0" ``` Maven @@ -522,7 +524,7 @@ If you installed pyspark through pip/conda, you can install `spark-nlp` through Pip: ```bash -pip install spark-nlp==4.3.2 +pip install spark-nlp==4.4.0 ``` Conda: @@ -551,7 +553,7 @@ spark = SparkSession.builder .config("spark.driver.memory", "16G") .config("spark.driver.maxResultSize", "0") .config("spark.kryoserializer.buffer.max", "2000M") - .config("spark.jars.packages", "com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2") + .config("spark.jars.packages", "com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0") .getOrCreate() ``` @@ -622,7 +624,7 @@ Use either one of the following options - Add the following Maven Coordinates to the interpreter's library list ```bash -com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 +com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 ``` - Add a path to pre-built jar from [here](#compiled-jars) in the interpreter's library list making sure the jar is @@ -633,7 +635,7 @@ com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 Apart from the previous step, install the python module through pip ```bash -pip install spark-nlp==4.3.2 +pip install spark-nlp==4.4.0 ``` Or you can install `spark-nlp` from inside Zeppelin by using Conda: @@ -661,7 +663,7 @@ launch the Jupyter from the same Python environment: $ conda create -n sparknlp python=3.8 -y $ conda activate sparknlp # spark-nlp by default is based on pyspark 3.x -$ pip install spark-nlp==4.3.2 pyspark==3.3.1 jupyter +$ pip install spark-nlp==4.4.0 pyspark==3.3.1 jupyter $ jupyter notebook ``` @@ -678,7 +680,7 @@ export PYSPARK_PYTHON=python3 export PYSPARK_DRIVER_PYTHON=jupyter export PYSPARK_DRIVER_PYTHON_OPTS=notebook -pyspark --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 +pyspark --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 ``` Alternatively, you can mix in using `--jars` option for pyspark + `pip install spark-nlp` @@ -705,7 +707,7 @@ This script comes with the two options to define `pyspark` and `spark-nlp` versi # -s is for spark-nlp # -g will enable upgrading libcudnn8 to 8.1.0 on Google Colab for GPU usage # by default they are set to the latest -!wget https://setup.johnsnowlabs.com/colab.sh -O - | bash /dev/stdin -p 3.2.3 -s 4.3.2 +!wget https://setup.johnsnowlabs.com/colab.sh -O - | bash /dev/stdin -p 3.2.3 -s 4.4.0 ``` [Spark NLP quick start on Google Colab](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/quick_start_google_colab.ipynb) @@ -728,7 +730,7 @@ This script comes with the two options to define `pyspark` and `spark-nlp` versi # -s is for spark-nlp # -g will enable upgrading libcudnn8 to 8.1.0 on Kaggle for GPU usage # by default they are set to the latest -!wget https://setup.johnsnowlabs.com/colab.sh -O - | bash /dev/stdin -p 3.2.3 -s 4.3.2 +!wget https://setup.johnsnowlabs.com/colab.sh -O - | bash /dev/stdin -p 3.2.3 -s 4.4.0 ``` [Spark NLP quick start on Kaggle Kernel](https://www.kaggle.com/mozzie/spark-nlp-named-entity-recognition) is a live @@ -747,9 +749,9 @@ demo on Kaggle Kernel that performs named entity recognitions by using Spark NLP 3. In `Libraries` tab inside your cluster you need to follow these steps: - 3.1. Install New -> PyPI -> `spark-nlp==4.3.2` -> Install + 3.1. Install New -> PyPI -> `spark-nlp==4.4.0` -> Install - 3.2. Install New -> Maven -> Coordinates -> `com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2` -> Install + 3.2. Install New -> Maven -> Coordinates -> `com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0` -> Install 4. Now you can attach your notebook to the cluster and use Spark NLP! @@ -800,7 +802,7 @@ A sample of your software configuration in JSON on S3 (must be public access): "spark.kryoserializer.buffer.max": "2000M", "spark.serializer": "org.apache.spark.serializer.KryoSerializer", "spark.driver.maxResultSize": "0", - "spark.jars.packages": "com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2" + "spark.jars.packages": "com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0" } }] ``` @@ -809,7 +811,7 @@ A sample of AWS CLI to launch EMR cluster: ```.sh aws emr create-cluster \ ---name "Spark NLP 4.3.2" \ +--name "Spark NLP 4.4.0" \ --release-label emr-6.2.0 \ --applications Name=Hadoop Name=Spark Name=Hive \ --instance-type m4.4xlarge \ @@ -873,7 +875,7 @@ gcloud dataproc clusters create ${CLUSTER_NAME} \ --enable-component-gateway \ --metadata 'PIP_PACKAGES=spark-nlp spark-nlp-display google-cloud-bigquery google-cloud-storage' \ --initialization-actions gs://goog-dataproc-initialization-actions-${REGION}/python/pip-install.sh \ - --properties spark:spark.serializer=org.apache.spark.serializer.KryoSerializer,spark:spark.driver.maxResultSize=0,spark:spark.kryoserializer.buffer.max=2000M,spark:spark.jars.packages=com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 + --properties spark:spark.serializer=org.apache.spark.serializer.KryoSerializer,spark:spark.driver.maxResultSize=0,spark:spark.kryoserializer.buffer.max=2000M,spark:spark.jars.packages=com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 ``` 2. On an existing one, you need to install spark-nlp and spark-nlp-display packages from PyPI. @@ -912,7 +914,7 @@ spark = SparkSession.builder .config("spark.kryoserializer.buffer.max", "2000m") .config("spark.jsl.settings.pretrained.cache_folder", "sample_data/pretrained") .config("spark.jsl.settings.storage.cluster_tmp_dir", "sample_data/storage") - .config("spark.jars.packages", "com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2") + .config("spark.jars.packages", "com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0") .getOrCreate() ``` @@ -926,7 +928,7 @@ spark-shell \ --conf spark.kryoserializer.buffer.max=2000M \ --conf spark.jsl.settings.pretrained.cache_folder="sample_data/pretrained" \ --conf spark.jsl.settings.storage.cluster_tmp_dir="sample_data/storage" \ - --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 + --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 ``` **pyspark:** @@ -939,7 +941,7 @@ pyspark \ --conf spark.kryoserializer.buffer.max=2000M \ --conf spark.jsl.settings.pretrained.cache_folder="sample_data/pretrained" \ --conf spark.jsl.settings.storage.cluster_tmp_dir="sample_data/storage" \ - --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 + --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 ``` **Databricks:** @@ -1211,7 +1213,7 @@ spark = SparkSession.builder .config("spark.driver.memory", "16G") .config("spark.driver.maxResultSize", "0") .config("spark.kryoserializer.buffer.max", "2000M") - .config("spark.jars", "/tmp/spark-nlp-assembly-4.3.2.jar") + .config("spark.jars", "/tmp/spark-nlp-assembly-4.4.0.jar") .getOrCreate() ``` @@ -1220,7 +1222,7 @@ spark = SparkSession.builder version (3.0.x, 3.1.x, 3.2.x, and 3.3.x) - If you are local, you can load the Fat JAR from your local FileSystem, however, if you are in a cluster setup you need to put the Fat JAR on a distributed FileSystem such as HDFS, DBFS, S3, etc. ( - i.e., `hdfs:///tmp/spark-nlp-assembly-4.3.2.jar`) + i.e., `hdfs:///tmp/spark-nlp-assembly-4.4.0.jar`) Example of using pretrained Models and Pipelines in offline: diff --git a/build.sbt b/build.sbt index 4a62fb8c806b..3e164402d0b8 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,7 @@ name := getPackageName(is_silicon, is_gpu, is_aarch64) organization := "com.johnsnowlabs.nlp" -version := "4.3.2" +version := "4.4.0" (ThisBuild / scalaVersion) := scalaVer diff --git a/docs/demos/mental_health.md b/docs/demos/mental_health.md deleted file mode 100644 index 68f2d9af04d7..000000000000 --- a/docs/demos/mental_health.md +++ /dev/null @@ -1,71 +0,0 @@ ---- -layout: demopagenew -title: Mental Health - Clinical NLP Demos & Notebooks -seotitle: 'Clinical NLP: Mental Health - John Snow Labs' -full_width: true -permalink: /mental_health -key: demo -nav_key: demo -article_header: - type: demo -license: false -mode: immersivebg -show_edit_on_github: false -show_date: false -data: - sections: - - secheader: yes - secheader: - - subtitle: Mental Health - Live Demos & Notebooks - activemenu: mental_health - source: yes - source: - - title: Identify Depression for Patient Posts - id: depression_classifier_tweets - image: - src: /assets/images/Depression_Classifier_for_Tweets.svg - excerpt: This demo shows a classifier that can classify whether tweets contain depressive text. - actions: - - text: Live Demo - type: normal - url: https://demo.johnsnowlabs.com/healthcare/MENTAL_HEALTH_DEPRESSION/ - - text: Colab - type: blue_btn - url: https://colab.research.google.com/github/JohnSnowLabs/spark-nlp-workshop/blob/master/tutorials/streamlit_notebooks/healthcare/MENTAL_HEALTH.ipynb - - title: Identify Intimate Partner Violence from Patient Posts - id: classify_intimate_partner_violence_tweet - image: - src: /assets/images/Classify_Intimate_Partner_Violence_Tweet.svg - excerpt: This model involves the detection the potential IPV victims on social media platforms (in English tweets). - actions: - - text: Live Demo - type: normal - url: https://demo.johnsnowlabs.com/healthcare/PUBLIC_HEALTH_PARTNER_VIOLENCE/ - - text: Colab - type: blue_btn - url: https://colab.research.google.com/github/JohnSnowLabs/spark-nlp-workshop/blob/master/tutorials/streamlit_notebooks/healthcare/PUBLIC_HEALTH_MB4SC.ipynb - - title: Identify Stress from Patient Posts - id: classify_stress_tweet - image: - src: /assets/images/Classify_Stress_Tweet.svg - excerpt: This model can identify stress in social media (Twitter) posts in the self-disclosure category. The model finds whether a person claims he/she is stressed or not. - actions: - - text: Live Demo - type: normal - url: https://demo.johnsnowlabs.com/healthcare/PUBLIC_HEALTH_STRESS/ - - text: Colab - type: blue_btn - url: https://colab.research.google.com/github/JohnSnowLabs/spark-nlp-workshop/blob/master/tutorials/streamlit_notebooks/healthcare/PUBLIC_HEALTH_MB4SC.ipynb - - title: Identify the Source of Stress from Patient Posts - id: identify_source_stress_patient_posts - image: - src: /assets/images/Identify_Source_Stress_Patient.svg - excerpt: This demo shows how to classify source of emotional stress in text. - actions: - - text: Live Demo - type: normal - url: https://demo.johnsnowlabs.com/healthcare/PUBLIC_HEALTH_SOURCE_OF_STRESS/ - - text: Colab - type: blue_btn - url: https://colab.research.google.com/github/JohnSnowLabs/spark-nlp-workshop/blob/master/tutorials/streamlit_notebooks/healthcare/PUBLIC_HEALTH_MB4SC.ipynb ---- diff --git a/docs/demos/understand_financial_entities_context.md b/docs/demos/understand_financial_entities_context.md deleted file mode 100644 index ae6704a2931f..000000000000 --- a/docs/demos/understand_financial_entities_context.md +++ /dev/null @@ -1,84 +0,0 @@ ---- -layout: demopagenew -title: Understand Entities in Context - Finance NLP Demos & Notebooks -seotitle: 'Finance NLP: Understand Entities in Context - John Snow Labs' -subtitle: Run 300+ live demos and notebooks -full_width: true -permalink: /understand_financial_entities_context -key: demo -nav_key: demo -article_header: - type: demo -license: false -mode: immersivebg -show_edit_on_github: false -show_date: false -data: - sections: - - secheader: yes - secheader: - - subtitle: Understand Entities in Context - Live Demos & Notebooks - activemenu: understand_financial_entities_context - source: yes - source: - - title: Identify Competitors in a text - id: identify_competitors_text - image: - src: /assets/images/Identify_Competitors_in_a_text.svg - excerpt: This model uses Assertion Status to identify if a PRODUCT or an ORG is mentioned to be a competitor. - actions: - - text: Live Demo - type: normal - url: https://demo.johnsnowlabs.com/finance/ASSERTIONDL_COMPETITORS - - text: Colab - type: blue_btn - url: - - title: Identify Past Work Experience - id: identify_past_work_experience - image: - src: /assets/images/Identify_Competitors_in_a_text.svg - excerpt: This model uses Assertion Status to identify if a mention to an Organization, Job Title or Date is about the past. - actions: - - text: Live Demo - type: normal - url: https://demo.johnsnowlabs.com/finance/ASSERTIONDL_PAST_ROLES/ - - text: Colab - type: blue_btn - url: - - title: Detect Temporality and Certainty in Financial texts - id: detect_temporality_certainty_financial_texts - image: - src: /assets/images/Detect_Temporality_and_Certainty.svg - excerpt: This demo shows how to use Assertion Status to identify if financial information is described to happen in present, past, future or it’s just possible. - actions: - - text: Live Demo - type: normal - url: https://demo.johnsnowlabs.com/finance/FINASSERTION_TEMPORALITY/ - - text: Colab - type: blue_btn - url: - - title: Financial Assertion Status (Negation) - id: financial_assertion_status_negation - image: - src: /assets/images/Financial_Assertion_Status_Negation.svg - excerpt: This is a Financial Negation model, aimed to identify if an NER entity is mentioned in the context to be negated or not. - actions: - - text: Live Demo - type: normal - url: https://demo.johnsnowlabs.com/finance/NEGATION_DETECTION_IN_FINANCIAL_TEXTS/ - - text: Colab - type: blue_btn - url: - - title: Understand Increased or Decreased Amounts and Percentages in Context - id: understand_increased_decreased_amounts_percentages_context - image: - src: /assets/images/Understand_Increased_or_Decreased_Amounts_and_Percentages_in_Context.svg - excerpt: This demo shows how to use the Assertion Status model to identify if a mentioned amount or percentage is stated to be increased or decreased in context. - actions: - - text: Live Demo - type: normal - url: https://demo.johnsnowlabs.com/finance/FINASSERTION_INCREASE_DECREASE/ - - text: Colab - type: blue_btn - url: ---- \ No newline at end of file diff --git a/docs/demos/understand_legal_entities_context.md b/docs/demos/understand_legal_entities_context.md deleted file mode 100644 index 1553748a4207..000000000000 --- a/docs/demos/understand_legal_entities_context.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -layout: demopagenew -title: Understand Entities in Context - Spark NLP Demos & Notebooks -seotitle: 'Spark NLP: Understand Entities in Context - John Snow Labs' -subtitle: Run 300+ live demos and notebooks -full_width: true -permalink: /understand_legal_entities_context -key: demo -nav_key: demo -article_header: - type: demo -license: false -mode: immersivebg -show_edit_on_github: false -show_date: false -data: - sections: - - secheader: yes - secheader: - - subtitle: Understand Entities in Context - Live Demos & Notebooks - activemenu: understand_legal_entities_context - source: yes - source: - - title: Detect Temporality and Certainty in Legal texts - id: detect_temporality_certainty_legal_texts - image: - src: /assets/images/Detect_Temporality.svg - excerpt: This demo shows how to use Assertion Status to identify if legal information is described to happen in the present, past, future or if it’s just possible. - actions: - - text: Live Demo - type: normal - url: https://demo.johnsnowlabs.com/legal/LEGASSERTION_TEMPORALITY/ - - text: Colab - type: blue_btn - url: - - title: Legal Assertion Status (Negation) - id: legal_assertion_status_negation - image: - src: /assets/images/Legal_Assertion_Status_Negation.svg - excerpt: This is a Legal Negation model, aimed to identify if an NER entity is mentioned in the context to be negated or not. - actions: - - text: Live Demo - type: normal - url: https://demo.johnsnowlabs.com/finance/NEGATION_DETECTION_IN_FINANCIAL_TEXTS/ - - text: Colab - type: blue_btn - url: ---- diff --git a/docs/en/concepts.md b/docs/en/concepts.md index e8eb559c62f4..35a12232444c 100644 --- a/docs/en/concepts.md +++ b/docs/en/concepts.md @@ -62,7 +62,7 @@ $ java -version $ conda create -n sparknlp python=3.7 -y $ conda activate sparknlp # spark-nlp by default is based on pyspark 3.x -$ pip install spark-nlp==4.3.2 pyspark==3.3.1 jupyter +$ pip install spark-nlp==4.4.0 pyspark==3.3.1 jupyter $ jupyter notebook ``` diff --git a/docs/en/examples.md b/docs/en/examples.md index 881729ac9b69..3923b36c66bc 100644 --- a/docs/en/examples.md +++ b/docs/en/examples.md @@ -16,7 +16,7 @@ $ java -version # should be Java 8 (Oracle or OpenJDK) $ conda create -n sparknlp python=3.7 -y $ conda activate sparknlp -$ pip install spark-nlp==4.3.2 pyspark==3.3.1 +$ pip install spark-nlp==4.4.0 pyspark==3.3.1 ``` ## Google Colab Notebook @@ -36,7 +36,7 @@ This script comes with the two options to define `pyspark` and `spark-nlp` versi # -p is for pyspark # -s is for spark-nlp # by default they are set to the latest -!bash colab.sh -p 3.2.3 -s 4.3.2 +!bash colab.sh -p 3.2.3 -s 4.4.0 ``` [Spark NLP quick start on Google Colab](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/quick_start_google_colab.ipynb) is a live demo on Google Colab that performs named entity recognitions and sentiment analysis by using Spark NLP pretrained pipelines. diff --git a/docs/en/hardware_acceleration.md b/docs/en/hardware_acceleration.md index 3bdf36b0faae..4a93b374e2b5 100644 --- a/docs/en/hardware_acceleration.md +++ b/docs/en/hardware_acceleration.md @@ -49,7 +49,7 @@ Since the new Transformer models such as BERT for Word and Sentence embeddings a | DeBERTa Large | +477%(5.8x) | | Longformer Base | +52%(1.5x) | -Spark NLP 4.3.2 is built with TensorFlow 2.7.1 and the following NVIDIA® software are only required for GPU support: +Spark NLP 4.4.0 is built with TensorFlow 2.7.1 and the following NVIDIA® software are only required for GPU support: - NVIDIA® GPU drivers version 450.80.02 or higher - CUDA® Toolkit 11.2 diff --git a/docs/en/install.md b/docs/en/install.md index 629db45c8e73..4de942cecae4 100644 --- a/docs/en/install.md +++ b/docs/en/install.md @@ -15,22 +15,22 @@ sidebar: ```bash # Install Spark NLP from PyPI -pip install spark-nlp==4.3.2 +pip install spark-nlp==4.4.0 # Install Spark NLP from Anacodna/Conda conda install -c johnsnowlabs spark-nlp # Load Spark NLP with Spark Shell -spark-shell --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 +spark-shell --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 # Load Spark NLP with PySpark -pyspark --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 +pyspark --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 # Load Spark NLP with Spark Submit -spark-submit --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 +spark-submit --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 # Load Spark NLP as external JAR after compiling and building Spark NLP by `sbt assembly` -spark-shell --jars spark-nlp-assembly-4.3.2.jar +spark-shell --jars spark-nlp-assembly-4.4.0.jar ``` ## Python @@ -49,7 +49,7 @@ $ java -version # should be Java 8 (Oracle or OpenJDK) $ conda create -n sparknlp python=3.8 -y $ conda activate sparknlp -$ pip install spark-nlp==4.3.2 pyspark==3.3.1 +$ pip install spark-nlp==4.4.0 pyspark==3.3.1 ``` Of course you will need to have jupyter installed in your system: @@ -76,7 +76,7 @@ spark = SparkSession.builder \ .config("spark.driver.memory","16G")\ .config("spark.driver.maxResultSize", "0") \ .config("spark.kryoserializer.buffer.max", "2000M")\ - .config("spark.jars.packages", "com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2")\ + .config("spark.jars.packages", "com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0")\ .getOrCreate() ``` @@ -91,7 +91,7 @@ spark = SparkSession.builder \ com.johnsnowlabs.nlp spark-nlp_2.12 - 4.3.2 + 4.4.0 ``` @@ -102,7 +102,7 @@ spark = SparkSession.builder \ com.johnsnowlabs.nlp spark-nlp-gpu_2.12 - 4.3.2 + 4.4.0 ``` @@ -113,7 +113,7 @@ spark = SparkSession.builder \ com.johnsnowlabs.nlp spark-nlp-m1_2.12 - 4.3.2 + 4.4.0 ``` @@ -124,7 +124,7 @@ spark = SparkSession.builder \ com.johnsnowlabs.nlp spark-nlp-aarch64_2.12 - 4.3.2 + 4.4.0 ``` @@ -134,28 +134,28 @@ spark = SparkSession.builder \ ```scala // https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/spark-nlp -libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp" % "4.3.2" +libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp" % "4.4.0" ``` **spark-nlp-gpu:** ```scala // https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/spark-nlp-gpu -libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-gpu" % "4.3.2" +libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-gpu" % "4.4.0" ``` **spark-nlp-m1:** ```scala // https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/spark-nlp-m1 -libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-m1" % "4.3.2" +libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-m1" % "4.4.0" ``` **spark-nlp-aarch64:** ```scala // https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/spark-nlp-aarch64 -libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-aarch64" % "4.3.2" +libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-aarch64" % "4.4.0" ``` Maven Central: [https://mvnrepository.com/artifact/com.johnsnowlabs.nlp](https://mvnrepository.com/artifact/com.johnsnowlabs.nlp) @@ -233,7 +233,7 @@ maven coordinates like these: com.johnsnowlabs.nlp spark-nlp-m1_2.12 - 4.3.2 + 4.4.0 ``` @@ -241,7 +241,7 @@ or in case of sbt: ```scala // https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/spark-nlp -libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-m1" % "4.3.2" +libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-m1" % "4.4.0" ``` If everything went well, you can now start Spark NLP with the `m1` flag set to `true`: @@ -274,7 +274,7 @@ spark = sparknlp.start(m1=True) ## Installation for Linux Aarch64 Systems -Starting from version 4.3.2, Spark NLP supports Linux systems running on an aarch64 +Starting from version 4.4.0, Spark NLP supports Linux systems running on an aarch64 processor architecture. The necessary dependencies have been built on Ubuntu 16.04, so a recent system with an environment of at least that will be needed. @@ -318,7 +318,7 @@ This script comes with the two options to define `pyspark` and `spark-nlp` versi # -p is for pyspark # -s is for spark-nlp # by default they are set to the latest -!wget http://setup.johnsnowlabs.com/colab.sh -O - | bash /dev/stdin -p 3.2.3 -s 4.3.2 +!wget http://setup.johnsnowlabs.com/colab.sh -O - | bash /dev/stdin -p 3.2.3 -s 4.4.0 ``` [Spark NLP quick start on Google Colab](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp-workshop/blob/master/jupyter/quick_start_google_colab.ipynb) is a live demo on Google Colab that performs named entity recognitions and sentiment analysis by using Spark NLP pretrained pipelines. @@ -337,7 +337,7 @@ Run the following code in Kaggle Kernel and start using spark-nlp right away. ## Databricks Support -Spark NLP 4.3.2 has been tested and is compatible with the following runtimes: +Spark NLP 4.4.0 has been tested and is compatible with the following runtimes: **CPU:** @@ -403,7 +403,7 @@ NOTE: Spark NLP 4.0.x is based on TensorFlow 2.7.x which is compatible with CUDA 3.1. Install New -> PyPI -> `spark-nlp` -> Install - 3.2. Install New -> Maven -> Coordinates -> `com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2` -> Install + 3.2. Install New -> Maven -> Coordinates -> `com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0` -> Install 4. Now you can attach your notebook to the cluster and use Spark NLP! @@ -419,7 +419,7 @@ Note: You can import these notebooks by using their URLs. ## EMR Support -Spark NLP 4.3.2 has been tested and is compatible with the following EMR releases: +Spark NLP 4.4.0 has been tested and is compatible with the following EMR releases: - emr-6.2.0 - emr-6.3.0 @@ -477,7 +477,7 @@ A sample of your software configuration in JSON on S3 (must be public access): "spark.kryoserializer.buffer.max": "2000M", "spark.serializer": "org.apache.spark.serializer.KryoSerializer", "spark.driver.maxResultSize": "0", - "spark.jars.packages": "com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2" + "spark.jars.packages": "com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0" } } ] @@ -487,7 +487,7 @@ A sample of AWS CLI to launch EMR cluster: ```sh aws emr create-cluster \ ---name "Spark NLP 4.3.2" \ +--name "Spark NLP 4.4.0" \ --release-label emr-6.2.0 \ --applications Name=Hadoop Name=Spark Name=Hive \ --instance-type m4.4xlarge \ @@ -741,7 +741,7 @@ We recommend using `conda` to manage your Python environment on Windows. Now you can use the downloaded binary by navigating to `%SPARK_HOME%\bin` and running -Either create a conda env for python 3.6, install *pyspark==3.3.1 spark-nlp numpy* and use Jupyter/python console, or in the same conda env you can go to spark bin for *pyspark --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2*. +Either create a conda env for python 3.6, install *pyspark==3.3.1 spark-nlp numpy* and use Jupyter/python console, or in the same conda env you can go to spark bin for *pyspark --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0*. @@ -767,12 +767,12 @@ spark = SparkSession.builder \ .config("spark.driver.memory","16G")\ .config("spark.driver.maxResultSize", "0") \ .config("spark.kryoserializer.buffer.max", "2000M")\ - .config("spark.jars", "/tmp/spark-nlp-assembly-4.3.2.jar")\ + .config("spark.jars", "/tmp/spark-nlp-assembly-4.4.0.jar")\ .getOrCreate() ``` - You can download provided Fat JARs from each [release notes](https://github.com/JohnSnowLabs/spark-nlp/releases), please pay attention to pick the one that suits your environment depending on the device (CPU/GPU) and Apache Spark version (3.x) -- If you are local, you can load the Fat JAR from your local FileSystem, however, if you are in a cluster setup you need to put the Fat JAR on a distributed FileSystem such as HDFS, DBFS, S3, etc. (i.e., `hdfs:///tmp/spark-nlp-assembly-4.3.2.jar`) +- If you are local, you can load the Fat JAR from your local FileSystem, however, if you are in a cluster setup you need to put the Fat JAR on a distributed FileSystem such as HDFS, DBFS, S3, etc. (i.e., `hdfs:///tmp/spark-nlp-assembly-4.4.0.jar`) Example of using pretrained Models and Pipelines in offline: diff --git a/docs/en/spark_nlp.md b/docs/en/spark_nlp.md index e60d4f75ea13..b308fc05b843 100644 --- a/docs/en/spark_nlp.md +++ b/docs/en/spark_nlp.md @@ -25,7 +25,7 @@ Spark NLP is built on top of **Apache Spark 3.x**. For using Spark NLP you need: **GPU (optional):** -Spark NLP 4.3.2 is built with TensorFlow 2.7.1 and the following NVIDIA® software are only required for GPU support: +Spark NLP 4.4.0 is built with TensorFlow 2.7.1 and the following NVIDIA® software are only required for GPU support: - NVIDIA® GPU drivers version 450.80.02 or higher - CUDA® Toolkit 11.2 diff --git a/examples/docker/README.md b/examples/docker/README.md index a94cd58239d5..758a10266956 100644 --- a/examples/docker/README.md +++ b/examples/docker/README.md @@ -73,7 +73,7 @@ docker run -it --name sparknlp-container \ --conf "spark.serializer"="org.apache.spark.serializer.KryoSerializer" \ --conf "spark.kryoserializer.buffer.max"="2000M" \ --conf "spark.driver.maxResultSize"="0" \ - --packages "com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2" + --packages "com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0" ``` To run the shell with GPU support, we use the image from [Jupyter Notebook with GPU @@ -91,5 +91,5 @@ docker run -it --name sparknlp-container \ --conf "spark.serializer"="org.apache.spark.serializer.KryoSerializer" \ --conf "spark.kryoserializer.buffer.max"="2000M" \ --conf "spark.driver.maxResultSize"="0" \ - --packages "com.johnsnowlabs.nlp:spark-nlp-gpu_2.12:4.3.2" + --packages "com.johnsnowlabs.nlp:spark-nlp-gpu_2.12:4.4.0" ``` diff --git a/examples/util/Training_Helpers.ipynb b/examples/util/Training_Helpers.ipynb index d2eb474ed15e..03c9bc06d0a4 100644 --- a/examples/util/Training_Helpers.ipynb +++ b/examples/util/Training_Helpers.ipynb @@ -129,7 +129,7 @@ "id": "Jn3axMFZTaxV" }, "source": [ - "Starting at spark-nlp 4.3.2, you can also set an S3 URI. To configure this, it is necessary to set up the Spark session with the appropriate settings for both Spark NLP and Spark ML." + "Starting at spark-nlp 4.4.0, you can also set an S3 URI. To configure this, it is necessary to set up the Spark session with the appropriate settings for both Spark NLP and Spark ML." ] }, { @@ -246,7 +246,7 @@ " .config(\"spark.jsl.settings.aws.credentials.secret_access_key\", MY_SECRET_KEY) \\\n", " .config(\"spark.jsl.settings.aws.credentials.session_token\", MY_SESSION_KEY) \\\n", " .config(\"spark.jsl.settings.aws.region\", \"us-east-1\") \\\n", - " .config(\"spark.jars.packages\", \"com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2,org.apache.hadoop:hadoop-aws:3.3.1,com.amazonaws:aws-java-sdk:1.11.901\") \\\n", + " .config(\"spark.jars.packages\", \"com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0,org.apache.hadoop:hadoop-aws:3.3.1,com.amazonaws:aws-java-sdk:1.11.901\") \\\n", " .config(\"spark.hadoop.fs.s3a.impl\", \"org.apache.hadoop.fs.s3a.S3AFileSystem\") \\\n", " .config(\"spark.hadoop.fs.s3a.path.style.access\", \"true\") \\\n", " .getOrCreate()" diff --git a/python/README.md b/python/README.md index 418e62ea9fa7..14da5a95cec1 100644 --- a/python/README.md +++ b/python/README.md @@ -162,7 +162,7 @@ To use Spark NLP you need the following requirements: **GPU (optional):** -Spark NLP 4.3.2 is built with TensorFlow 2.7.1 and the following NVIDIA® software are only required for GPU support: +Spark NLP 4.4.0 is built with TensorFlow 2.7.1 and the following NVIDIA® software are only required for GPU support: - NVIDIA® GPU drivers version 450.80.02 or higher - CUDA® Toolkit 11.2 @@ -178,7 +178,7 @@ $ java -version $ conda create -n sparknlp python=3.7 -y $ conda activate sparknlp # spark-nlp by default is based on pyspark 3.x -$ pip install spark-nlp==4.3.2 pyspark==3.3.1 +$ pip install spark-nlp==4.4.0 pyspark==3.3.1 ``` In Python console or Jupyter `Python3` kernel: @@ -223,11 +223,12 @@ For more examples, you can visit our dedicated [examples](https://github.com/Joh ## Apache Spark Support -Spark NLP *4.3.2* has been built on top of Apache Spark 3.2 while fully supports Apache Spark 3.0.x, 3.1.x, 3.2.x, and +Spark NLP *4.4.0* has been built on top of Apache Spark 3.2 while fully supports Apache Spark 3.0.x, 3.1.x, 3.2.x, and 3.3.x: | Spark NLP | Apache Spark 2.3.x | Apache Spark 2.4.x | Apache Spark 3.0.x | Apache Spark 3.1.x | Apache Spark 3.2.x | Apache Spark 3.3.x | |-----------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------| +| 4.4.x | NO | NO | YES | YES | YES | YES | | 4.3.x | NO | NO | YES | YES | YES | YES | | 4.2.x | NO | NO | YES | YES | YES | YES | | 4.1.x | NO | NO | YES | YES | YES | YES | @@ -246,22 +247,23 @@ Find out more about `Spark NLP` versions from our [release notes](https://github ## Scala and Python Support -| Spark NLP | Python 3.6 | Python 3.7 | Python 3.8 | Python 3.9 | Scala 2.11 | Scala 2.12 | -|-----------|------------|------------|------------|------------|------------|------------| -| 4.3.x | YES | YES | YES | YES | NO | YES | -| 4.2.x | YES | YES | YES | YES | NO | YES | -| 4.1.x | YES | YES | YES | YES | NO | YES | -| 4.0.x | YES | YES | YES | YES | NO | YES | -| 3.4.x | YES | YES | YES | YES | YES | YES | -| 3.3.x | YES | YES | YES | NO | YES | YES | -| 3.2.x | YES | YES | YES | NO | YES | YES | -| 3.1.x | YES | YES | YES | NO | YES | YES | -| 3.0.x | YES | YES | YES | NO | YES | YES | -| 2.7.x | YES | YES | NO | NO | YES | NO | +| Spark NLP | Python 3.6 | Python 3.7 | Python 3.8 | Python 3.9 | Python 3.10| Scala 2.11 | Scala 2.12 | +|-----------|------------|------------|------------|------------|------------|------------|------------| +| 4.4.x | NO | YES | YES | YES | YES | NO | YES | +| 4.3.x | YES | YES | YES | YES | YES | NO | YES | +| 4.2.x | YES | YES | YES | YES | YES | NO | YES | +| 4.1.x | YES | YES | YES | YES | NO | NO | YES | +| 4.0.x | YES | YES | YES | YES | NO | NO | YES | +| 3.4.x | YES | YES | YES | YES | NO | YES | YES | +| 3.3.x | YES | YES | YES | NO | NO | YES | YES | +| 3.2.x | YES | YES | YES | NO | NO | YES | YES | +| 3.1.x | YES | YES | YES | NO | NO | YES | YES | +| 3.0.x | YES | YES | YES | NO | NO | YES | YES | +| 2.7.x | YES | YES | NO | NO | NO | YES | NO | ## Databricks Support -Spark NLP 4.3.2 has been tested and is compatible with the following runtimes: +Spark NLP 4.4.0 has been tested and is compatible with the following runtimes: **CPU:** @@ -315,7 +317,7 @@ runtimes supporting CUDA 11 are 9.x and above as listed under GPU. ## EMR Support -Spark NLP 4.3.2 has been tested and is compatible with the following EMR releases: +Spark NLP 4.4.0 has been tested and is compatible with the following EMR releases: - emr-6.2.0 - emr-6.3.0 @@ -359,11 +361,11 @@ Spark NLP supports all major releases of Apache Spark 3.0.x, Apache Spark 3.1.x, ```sh # CPU -spark-shell --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 +spark-shell --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 -pyspark --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 +pyspark --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 -spark-submit --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 +spark-submit --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 ``` The `spark-nlp` has been published to @@ -372,11 +374,11 @@ the [Maven Repository](https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/s ```sh # GPU -spark-shell --packages com.johnsnowlabs.nlp:spark-nlp-gpu_2.12:4.3.2 +spark-shell --packages com.johnsnowlabs.nlp:spark-nlp-gpu_2.12:4.4.0 -pyspark --packages com.johnsnowlabs.nlp:spark-nlp-gpu_2.12:4.3.2 +pyspark --packages com.johnsnowlabs.nlp:spark-nlp-gpu_2.12:4.4.0 -spark-submit --packages com.johnsnowlabs.nlp:spark-nlp-gpu_2.12:4.3.2 +spark-submit --packages com.johnsnowlabs.nlp:spark-nlp-gpu_2.12:4.4.0 ``` @@ -386,11 +388,11 @@ the [Maven Repository](https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/s ```sh # AArch64 -spark-shell --packages com.johnsnowlabs.nlp:spark-nlp-aarch64_2.12:4.3.2 +spark-shell --packages com.johnsnowlabs.nlp:spark-nlp-aarch64_2.12:4.4.0 -pyspark --packages com.johnsnowlabs.nlp:spark-nlp-aarch64_2.12:4.3.2 +pyspark --packages com.johnsnowlabs.nlp:spark-nlp-aarch64_2.12:4.4.0 -spark-submit --packages com.johnsnowlabs.nlp:spark-nlp-aarch64_2.12:4.3.2 +spark-submit --packages com.johnsnowlabs.nlp:spark-nlp-aarch64_2.12:4.4.0 ``` @@ -400,11 +402,11 @@ the [Maven Repository](https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/s ```sh # M1/M2 (Apple Silicon) -spark-shell --packages com.johnsnowlabs.nlp:spark-nlp-silicon_2.12:4.3.2 +spark-shell --packages com.johnsnowlabs.nlp:spark-nlp-silicon_2.12:4.4.0 -pyspark --packages com.johnsnowlabs.nlp:spark-nlp-silicon_2.12:4.3.2 +pyspark --packages com.johnsnowlabs.nlp:spark-nlp-silicon_2.12:4.4.0 -spark-submit --packages com.johnsnowlabs.nlp:spark-nlp-silicon_2.12:4.3.2 +spark-submit --packages com.johnsnowlabs.nlp:spark-nlp-silicon_2.12:4.4.0 ``` @@ -418,7 +420,7 @@ set in your SparkSession: spark-shell \ --driver-memory 16g \ --conf spark.kryoserializer.buffer.max=2000M \ - --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 + --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 ``` ## Scala @@ -436,7 +438,7 @@ coordinates: com.johnsnowlabs.nlp spark-nlp_2.12 - 4.3.2 + 4.4.0 ``` @@ -447,7 +449,7 @@ coordinates: com.johnsnowlabs.nlp spark-nlp-gpu_2.12 - 4.3.2 + 4.4.0 ``` @@ -458,7 +460,7 @@ coordinates: com.johnsnowlabs.nlp spark-nlp-aarch64_2.12 - 4.3.2 + 4.4.0 ``` @@ -469,7 +471,7 @@ coordinates: com.johnsnowlabs.nlp spark-nlp-silicon_2.12 - 4.3.2 + 4.4.0 ``` @@ -479,28 +481,28 @@ coordinates: ```sbtshell // https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/spark-nlp -libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp" % "4.3.2" +libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp" % "4.4.0" ``` **spark-nlp-gpu:** ```sbtshell // https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/spark-nlp-gpu -libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-gpu" % "4.3.2" +libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-gpu" % "4.4.0" ``` **spark-nlp-aarch64:** ```sbtshell // https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/spark-nlp-aarch64 -libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-aarch64" % "4.3.2" +libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-aarch64" % "4.4.0" ``` **spark-nlp-silicon:** ```sbtshell // https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/spark-nlp-silicon -libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-silicon" % "4.3.2" +libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-silicon" % "4.4.0" ``` Maven @@ -522,7 +524,7 @@ If you installed pyspark through pip/conda, you can install `spark-nlp` through Pip: ```bash -pip install spark-nlp==4.3.2 +pip install spark-nlp==4.4.0 ``` Conda: @@ -551,7 +553,7 @@ spark = SparkSession.builder .config("spark.driver.memory", "16G") .config("spark.driver.maxResultSize", "0") .config("spark.kryoserializer.buffer.max", "2000M") - .config("spark.jars.packages", "com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2") + .config("spark.jars.packages", "com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0") .getOrCreate() ``` @@ -622,7 +624,7 @@ Use either one of the following options - Add the following Maven Coordinates to the interpreter's library list ```bash -com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 +com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 ``` - Add a path to pre-built jar from [here](#compiled-jars) in the interpreter's library list making sure the jar is @@ -633,7 +635,7 @@ com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 Apart from the previous step, install the python module through pip ```bash -pip install spark-nlp==4.3.2 +pip install spark-nlp==4.4.0 ``` Or you can install `spark-nlp` from inside Zeppelin by using Conda: @@ -661,7 +663,7 @@ launch the Jupyter from the same Python environment: $ conda create -n sparknlp python=3.8 -y $ conda activate sparknlp # spark-nlp by default is based on pyspark 3.x -$ pip install spark-nlp==4.3.2 pyspark==3.3.1 jupyter +$ pip install spark-nlp==4.4.0 pyspark==3.3.1 jupyter $ jupyter notebook ``` @@ -678,7 +680,7 @@ export PYSPARK_PYTHON=python3 export PYSPARK_DRIVER_PYTHON=jupyter export PYSPARK_DRIVER_PYTHON_OPTS=notebook -pyspark --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 +pyspark --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 ``` Alternatively, you can mix in using `--jars` option for pyspark + `pip install spark-nlp` @@ -705,7 +707,7 @@ This script comes with the two options to define `pyspark` and `spark-nlp` versi # -s is for spark-nlp # -g will enable upgrading libcudnn8 to 8.1.0 on Google Colab for GPU usage # by default they are set to the latest -!wget https://setup.johnsnowlabs.com/colab.sh -O - | bash /dev/stdin -p 3.2.3 -s 4.3.2 +!wget https://setup.johnsnowlabs.com/colab.sh -O - | bash /dev/stdin -p 3.2.3 -s 4.4.0 ``` [Spark NLP quick start on Google Colab](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/quick_start_google_colab.ipynb) @@ -728,7 +730,7 @@ This script comes with the two options to define `pyspark` and `spark-nlp` versi # -s is for spark-nlp # -g will enable upgrading libcudnn8 to 8.1.0 on Kaggle for GPU usage # by default they are set to the latest -!wget https://setup.johnsnowlabs.com/colab.sh -O - | bash /dev/stdin -p 3.2.3 -s 4.3.2 +!wget https://setup.johnsnowlabs.com/colab.sh -O - | bash /dev/stdin -p 3.2.3 -s 4.4.0 ``` [Spark NLP quick start on Kaggle Kernel](https://www.kaggle.com/mozzie/spark-nlp-named-entity-recognition) is a live @@ -747,9 +749,9 @@ demo on Kaggle Kernel that performs named entity recognitions by using Spark NLP 3. In `Libraries` tab inside your cluster you need to follow these steps: - 3.1. Install New -> PyPI -> `spark-nlp==4.3.2` -> Install + 3.1. Install New -> PyPI -> `spark-nlp==4.4.0` -> Install - 3.2. Install New -> Maven -> Coordinates -> `com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2` -> Install + 3.2. Install New -> Maven -> Coordinates -> `com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0` -> Install 4. Now you can attach your notebook to the cluster and use Spark NLP! @@ -800,7 +802,7 @@ A sample of your software configuration in JSON on S3 (must be public access): "spark.kryoserializer.buffer.max": "2000M", "spark.serializer": "org.apache.spark.serializer.KryoSerializer", "spark.driver.maxResultSize": "0", - "spark.jars.packages": "com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2" + "spark.jars.packages": "com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0" } }] ``` @@ -809,7 +811,7 @@ A sample of AWS CLI to launch EMR cluster: ```.sh aws emr create-cluster \ ---name "Spark NLP 4.3.2" \ +--name "Spark NLP 4.4.0" \ --release-label emr-6.2.0 \ --applications Name=Hadoop Name=Spark Name=Hive \ --instance-type m4.4xlarge \ @@ -873,7 +875,7 @@ gcloud dataproc clusters create ${CLUSTER_NAME} \ --enable-component-gateway \ --metadata 'PIP_PACKAGES=spark-nlp spark-nlp-display google-cloud-bigquery google-cloud-storage' \ --initialization-actions gs://goog-dataproc-initialization-actions-${REGION}/python/pip-install.sh \ - --properties spark:spark.serializer=org.apache.spark.serializer.KryoSerializer,spark:spark.driver.maxResultSize=0,spark:spark.kryoserializer.buffer.max=2000M,spark:spark.jars.packages=com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 + --properties spark:spark.serializer=org.apache.spark.serializer.KryoSerializer,spark:spark.driver.maxResultSize=0,spark:spark.kryoserializer.buffer.max=2000M,spark:spark.jars.packages=com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 ``` 2. On an existing one, you need to install spark-nlp and spark-nlp-display packages from PyPI. @@ -912,7 +914,7 @@ spark = SparkSession.builder .config("spark.kryoserializer.buffer.max", "2000m") .config("spark.jsl.settings.pretrained.cache_folder", "sample_data/pretrained") .config("spark.jsl.settings.storage.cluster_tmp_dir", "sample_data/storage") - .config("spark.jars.packages", "com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2") + .config("spark.jars.packages", "com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0") .getOrCreate() ``` @@ -926,7 +928,7 @@ spark-shell \ --conf spark.kryoserializer.buffer.max=2000M \ --conf spark.jsl.settings.pretrained.cache_folder="sample_data/pretrained" \ --conf spark.jsl.settings.storage.cluster_tmp_dir="sample_data/storage" \ - --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 + --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 ``` **pyspark:** @@ -939,7 +941,7 @@ pyspark \ --conf spark.kryoserializer.buffer.max=2000M \ --conf spark.jsl.settings.pretrained.cache_folder="sample_data/pretrained" \ --conf spark.jsl.settings.storage.cluster_tmp_dir="sample_data/storage" \ - --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 + --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 ``` **Databricks:** @@ -1211,7 +1213,7 @@ spark = SparkSession.builder .config("spark.driver.memory", "16G") .config("spark.driver.maxResultSize", "0") .config("spark.kryoserializer.buffer.max", "2000M") - .config("spark.jars", "/tmp/spark-nlp-assembly-4.3.2.jar") + .config("spark.jars", "/tmp/spark-nlp-assembly-4.4.0.jar") .getOrCreate() ``` @@ -1220,7 +1222,7 @@ spark = SparkSession.builder version (3.0.x, 3.1.x, 3.2.x, and 3.3.x) - If you are local, you can load the Fat JAR from your local FileSystem, however, if you are in a cluster setup you need to put the Fat JAR on a distributed FileSystem such as HDFS, DBFS, S3, etc. ( - i.e., `hdfs:///tmp/spark-nlp-assembly-4.3.2.jar`) + i.e., `hdfs:///tmp/spark-nlp-assembly-4.4.0.jar`) Example of using pretrained Models and Pipelines in offline: diff --git a/python/docs/conf.py b/python/docs/conf.py index 028615dbe872..06ebf3cdb6a8 100644 --- a/python/docs/conf.py +++ b/python/docs/conf.py @@ -23,7 +23,7 @@ author = "John Snow Labs" # The full version, including alpha/beta/rc tags -release = "4.3.2" +release = "4.4.0" pyspark_version = "3.2.3" # -- General configuration --------------------------------------------------- diff --git a/python/setup.py b/python/setup.py index 31dca66a73cf..b0bb5695f537 100644 --- a/python/setup.py +++ b/python/setup.py @@ -41,7 +41,7 @@ # project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='4.3.2', # Required + version='4.4.0', # Required # This is a one-line description or tagline of what your project does. This # corresponds to the 'Summary' metadata field: diff --git a/python/sparknlp/__init__.py b/python/sparknlp/__init__.py index ede23d2fd859..562f6b8eb9c5 100644 --- a/python/sparknlp/__init__.py +++ b/python/sparknlp/__init__.py @@ -128,7 +128,7 @@ def start(gpu=False, The initiated Spark session. """ - current_version = "4.3.2" + current_version = "4.4.0" if params is None: params = {} @@ -298,4 +298,4 @@ def version(): str The current Spark NLP version. """ - return '4.3.2' + return '4.4.0' diff --git a/scripts/colab_setup.sh b/scripts/colab_setup.sh index a23017c2df5e..bd91295c8dd4 100644 --- a/scripts/colab_setup.sh +++ b/scripts/colab_setup.sh @@ -1,7 +1,7 @@ #!/bin/bash #default values for pyspark, spark-nlp, and SPARK_HOME -SPARKNLP="4.3.2" +SPARKNLP="4.4.0" PYSPARK="3.2.3" while getopts s:p:g option diff --git a/scripts/kaggle_setup.sh b/scripts/kaggle_setup.sh index 492365c31d2a..33b7fb3c7cad 100644 --- a/scripts/kaggle_setup.sh +++ b/scripts/kaggle_setup.sh @@ -1,7 +1,7 @@ #!/bin/bash #default values for pyspark, spark-nlp, and SPARK_HOME -SPARKNLP="4.3.2" +SPARKNLP="4.4.0" PYSPARK="3.2.3" while getopts s:p:g option diff --git a/scripts/sagemaker_setup.sh b/scripts/sagemaker_setup.sh index fba7d9f80a6a..29828875db87 100644 --- a/scripts/sagemaker_setup.sh +++ b/scripts/sagemaker_setup.sh @@ -1,7 +1,7 @@ #!/bin/bash # Default values for pyspark, spark-nlp, and SPARK_HOME -SPARKNLP="4.3.2" +SPARKNLP="4.4.0" PYSPARK="3.2.3" echo "Setup SageMaker for PySpark $PYSPARK and Spark NLP $SPARKNLP" diff --git a/src/main/scala/com/johnsnowlabs/nlp/SparkNLP.scala b/src/main/scala/com/johnsnowlabs/nlp/SparkNLP.scala index 98f4b6e6d9e9..608a5003b87c 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/SparkNLP.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/SparkNLP.scala @@ -20,7 +20,7 @@ import org.apache.spark.sql.SparkSession object SparkNLP { - val currentVersion = "4.3.2" + val currentVersion = "4.4.0" val MavenSpark3 = s"com.johnsnowlabs.nlp:spark-nlp_2.12:$currentVersion" val MavenGpuSpark3 = s"com.johnsnowlabs.nlp:spark-nlp-gpu_2.12:$currentVersion" val MavenSparkSilicon = s"com.johnsnowlabs.nlp:spark-nlp-silicon_2.12:$currentVersion" diff --git a/src/main/scala/com/johnsnowlabs/util/Build.scala b/src/main/scala/com/johnsnowlabs/util/Build.scala index aa56594894b4..23922a8c8bb0 100644 --- a/src/main/scala/com/johnsnowlabs/util/Build.scala +++ b/src/main/scala/com/johnsnowlabs/util/Build.scala @@ -17,5 +17,5 @@ package com.johnsnowlabs.util object Build { - val version: String = "4.3.2" + val version: String = "4.4.0" } From be12a9b53b11977f2f7bc9628aa234866770b11e Mon Sep 17 00:00:00 2001 From: Maziyar Panahi Date: Fri, 7 Apr 2023 08:17:38 +0000 Subject: [PATCH 10/26] Update doc style and fix unit test [skip test] Signed-off-by: Maziyar Panahi --- src/main/scala/com/johnsnowlabs/nlp/annotator.scala | 4 ++-- .../johnsnowlabs/nlp/annotators/er/EntityRulerApproach.scala | 1 - .../classifier/dl/BertForZeroShotClassificationTestSpec.scala | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotator.scala b/src/main/scala/com/johnsnowlabs/nlp/annotator.scala index 33cd0da4f951..8a8e510cf99e 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotator.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotator.scala @@ -674,7 +674,7 @@ package object annotator { type Date2Chunk = com.johnsnowlabs.nlp.annotators.Date2Chunk object Date2Chunk extends DefaultParamsReadable[Date2Chunk] - + type Chunk2Doc = com.johnsnowlabs.nlp.annotators.Chunk2Doc object Chunk2Doc extends DefaultParamsReadable[Chunk2Doc] @@ -686,7 +686,7 @@ package object annotator { with ReadBartTransformerDLModel type BertForZeroShotClassification = - com.johnsnowlabs.nlp.annotators.classifier.dl.BertForZeroShotClassification + com.johnsnowlabs.nlp.annotators.classifier.dl.BertForZeroShotClassification object BertForZeroShotClassification extends ReadablePretrainedBertForZeroShotModel diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/er/EntityRulerApproach.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/er/EntityRulerApproach.scala index 19efe6bdad5a..acb2effa519c 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/er/EntityRulerApproach.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/er/EntityRulerApproach.scala @@ -44,7 +44,6 @@ import scala.io.Source * `setPatternsResource`. The file format needs to be set as the "format" field in the `option` * parameter map and depending on the file type, additional parameters might need to be set. * - * * If the file is in a JSON format, then the rule definitions need to be given in a list with the * fields "id", "label" and "patterns": * {{{ diff --git a/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassificationTestSpec.scala b/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassificationTestSpec.scala index dbd181263442..b1709e732e29 100644 --- a/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassificationTestSpec.scala +++ b/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassificationTestSpec.scala @@ -61,8 +61,7 @@ class BertForZeroShotClassificationTestSpec extends AnyFlatSpec { .setCoalesceSentences(true) .setCandidateLabels(candidateLabels) - val pipeline = new Pipeline().setStages( - Array(document, tokenizer, tokenClassifier)) + val pipeline = new Pipeline().setStages(Array(document, tokenizer, tokenClassifier)) val pipelineModel = pipeline.fit(ddd) val pipelineDF = pipelineModel.transform(ddd) From 47d8e516d5678e19a469c36439b50d842332ae72 Mon Sep 17 00:00:00 2001 From: Devin Ha Date: Fri, 7 Apr 2023 10:30:53 +0200 Subject: [PATCH 11/26] SPARKNLP-605: Fix parameter eval for vit tests --- .../nlp/annotators/cv/ViTImageClassificationTestSpec.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/ViTImageClassificationTestSpec.scala b/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/ViTImageClassificationTestSpec.scala index da5441f820c5..fdf2e43b574a 100644 --- a/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/ViTImageClassificationTestSpec.scala +++ b/src/test/scala/com/johnsnowlabs/nlp/annotators/cv/ViTImageClassificationTestSpec.scala @@ -38,9 +38,9 @@ trait ViTForImageClassificationBehaviors { this: AnyFlatSpec => .setOutputCol("image_assembler") def behaviorsViTForImageClassification[M <: ViTForImageClassification]( - loadModelFunction: String => M, - vitClassifier: ViTForImageClassification, - expectedPredictions: Map[String, String]): Unit = { + loadModelFunction: => String => M, + vitClassifier: => ViTForImageClassification, + expectedPredictions: => Map[String, String]): Unit = { def setUpImageClassifierPipeline(): Pipeline = { val imageClassifier: ViTForImageClassification = vitClassifier From 02c079c0dbc93e32175f1738cfd75d21ef4de7fe Mon Sep 17 00:00:00 2001 From: Prabod Rathnayaka Date: Fri, 7 Apr 2023 21:01:19 +1000 Subject: [PATCH 12/26] Update default model name (#13744) --- python/sparknlp/annotator/seq2seq/bart_transformer.py | 4 ++-- .../johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/python/sparknlp/annotator/seq2seq/bart_transformer.py b/python/sparknlp/annotator/seq2seq/bart_transformer.py index f717cc4bf049..bd7c25cf7ff9 100755 --- a/python/sparknlp/annotator/seq2seq/bart_transformer.py +++ b/python/sparknlp/annotator/seq2seq/bart_transformer.py @@ -380,13 +380,13 @@ def loadSavedModel(folder, spark_session): return BartTransformer(java_model=jModel) @staticmethod - def pretrained(name="t5_small", lang="en", remote_loc=None): + def pretrained(name="bart_large_cnn", lang="en", remote_loc=None): """Downloads and loads a pretrained model. Parameters ---------- name : str, optional - Name of the pretrained model, by default "t5_small" + Name of the pretrained model, by default "bart_large_cnn" lang : str, optional Language of the pretrained model, by default "en" remote_loc : str, optional diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala index c59408f117db..65ddcb2ae616 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala @@ -522,7 +522,7 @@ class BartTransformer(override val uid: String) trait ReadablePretrainedBartTransformerModel extends ParamsAndFeaturesReadable[BartTransformer] with HasPretrained[BartTransformer] { - override val defaultModelName: Some[String] = Some("bart") + override val defaultModelName: Some[String] = Some("bart_large_cnn") /** Java compliant-overrides */ override def pretrained(): BartTransformer = super.pretrained() From 07d5da88baec697a92576747d9e27272c37f0d95 Mon Sep 17 00:00:00 2001 From: Maziyar Panahi Date: Fri, 7 Apr 2023 13:53:58 +0200 Subject: [PATCH 13/26] SPARKNLP-796 Creating a new `nerHasNoSchema` param (#13745) * Adding missing CPUvsGPUbenchmark page * SPARKNLP-796 Creating a new `nerHasNoSchema` param Signed-off-by: Maziyar Panahi --------- Signed-off-by: Maziyar Panahi --- docs/en/CPUvsGPUbenchmark.md | 269 ++++++++++++++++++ .../sparknlp/annotator/ner/ner_converter.py | 18 ++ .../nlp/annotators/ner/NerConverter.scala | 21 +- .../nlp/annotators/ner/NerTagsEncoding.scala | 12 +- 4 files changed, 312 insertions(+), 8 deletions(-) create mode 100644 docs/en/CPUvsGPUbenchmark.md diff --git a/docs/en/CPUvsGPUbenchmark.md b/docs/en/CPUvsGPUbenchmark.md new file mode 100644 index 000000000000..96e3491232cf --- /dev/null +++ b/docs/en/CPUvsGPUbenchmark.md @@ -0,0 +1,269 @@ +--- +layout: docs +header: true +title: GPU vs CPU benchmark +permalink: /docs/en/CPUvsGPUbenchmark +key: docs-concepts +modify_date: "2023-04-06" +use_language_switcher: "Python-Scala" +show_nav: true +sidebar: + nav: sparknlp +--- + +

+
+ +### Machine specs + +#### CPU +An AWS `m5.8xlarge` machine was used for the CPU benchmarking. This machine consists of `32 vCPUs` and `128 GB of RAM`, as you can check in the official specification webpage available [here](https://aws.amazon.com/ec2/instance-types/m5/) + +#### GPU +A `Tesla V100 SXM2` GPU with `32GB` of memory was used to calculate the GPU benchmarking. + +
+
+ +### Versions +The benchmarking was carried out with the following Spark NLP versions: + +Spark version: `3.0.2` + +Hadoop version: `3.2.0` + +SparkNLP version: `3.3.4` + +Spark nodes: 1 + +
+
+ +### Benchmark on classifierDLApproach() + +This experiment consisted of training a Deep Learning Binary Classifier (Question vs Statement classes) at sentence-level, using a fully connected CNN and Bert Sentence Embeddings. Only 1 Spark node was usd for the training. + +We used the Spark NLP class `ClassifierDL` and it's method `Approach()` as described in the [documentation](https://nlp.johnsnowlabs.com/docs/en/annotators#classifierdl). + +The pipeline looks as follows: +![](/assets/images/gpu_v2_pic3.png) + +
+
+ +#### Dataset +The size of the dataset was relatively small (200K), consisting of: + +Training (rows): `162250` + +Test (rows): `40301` + +
+
+ +#### Training params +Different batch sizes were tested to demonstrate how GPU performance improves with bigger batches compared to CPU, for a constant number of epochs and learning rate. + +Epochs: `10` + +Learning rate: `0.003` + +Batch sizes: `32`, `64`, `256`, `1024` + +
+
+ +#### Results +Even for this average-sized dataset, we can observe that GPU is able to beat the CPU machine by a `76%` in both `training` and `inference` times. + +
+
+ +#### Training times depending on batch (in minutes) + +![](/assets/images/gpu_v2_pic1.png) + + +{:.table-model-big} +| Batch size | CPU | GPU | +| :---: | :---: | :--: | +| 32 | 66 | 16.1 | +| 64 | 65 | 15.3 | +| 256 | 64 | 14.5 | +| 1024 | 64 | 14 | + +
+
+ +#### Inference times (in minutes) +The average inference time remained more or less constant regardless the batch size: +CPU: `8.7 min` +GPU: `2 min` + +![](/assets/images/gpu_v2_pic5.png) + +
+
+ +#### Performance metrics +A weighted F1-score of 0.88 was achieved, with a 0.90 score for question detection and 0.83 for statements. + +![](/assets/images/gpu_v2_pic2.png) + +
+
+ +### Benchmark on NerDLApproach() + +This experiment consisted of training a Name Entity Recognition model (token-level), using our class NerDLApproach(), using Bert Word Embeddings and a Char-CNN-BiLSTM Neural Network. Only 1 Spark node was used for the training. + +We used the Spark NLP class `NerDL` and it's method `Approach()` as described in the [documentation](https://nlp.johnsnowlabs.com/docs/en/annotators#nerdl). + +The pipeline looks as follows: +![](/assets/images/gpu_v2_pic4.png) + +
+
+ +#### Dataset +The size of the dataset was small (17K), consisting of: + +Training (rows): `14041` + +Test (rows): `3250` + +
+
+ +#### Training params +Different batch sizes were tested to demonstrate how GPU performance improves with bigger batches compared to CPU, for a constant number of epochs and learning rate. + +Epochs: `10` + +Learning rate: `0.003` + +Batch sizes: `32`, `64`, `256`, `512`, `1024`, `2048` + +
+
+ +#### Results +Even for this small dataset, we can observe that GPU is able to beat the CPU machine by a `62%` in `training` time and a `68%` in `inference` times. It's important to mention that the batch size is very relevant when using GPU, since CPU scales much worse with bigger batch sizes than GPU. + +
+
+ +#### Training times depending on batch (in minutes) + +![](/assets/images/gpu_v2_pic6.png) + +{:.table-model-big} +| Batch size | CPU | GPU | +| :---: | :---: | :--: | +| 32 | 9.5 | 10 | +| 64 | 8.1 | 6.5 | +| 256 | 6.9 | 3.5 | +| 512 | 6.7 | 3 | +| 1024 | 6.5 | 2.5 | +| 2048 | 6.5 | 2.5 | + +
+
+ +#### Inference times (in minutes) +Although CPU times in inference remain more or less constant regardless the batch sizes, GPU time experiment good improvements the bigger the batch size is. + +CPU times: `~29 min` + +{:.table-model-big} +| Batch size | GPU | +| :---: | :--: | +| 32 | 10 | +| 64 | 6.5 | +| 256 | 3.5 | +| 512 | 3 | +| 1024 | 2.5 | +| 2048 | 2.5 | + +![](/assets/images/gpu_v2_pic7.png) + +
+
+ +#### Performance metrics +A macro F1-score of about `0.92` (`0.90` in micro) was achieved, with the following charts extracted from the `NERDLApproach()` logs: + +![](/assets/images/gpu_v2_pic8.png) + +
+
+ +### Inference benchmark on BertSentenceEmbeddings() + +This experiment consisted of benchmarking the improvement obtained in inference by using GPU on BertSentenceEmbeddings(). + +We used the Spark NLP class `BertSentenceEmbeddings()` described in the Transformers [documentation](https://nlp.johnsnowlabs.com/docs/en/transformers#bertsentenceembeddings). + +The pipeline contains only two components and looks as follows: +![](/assets/images/gpu_v2_pic9.png) + +
+
+ +#### Dataset +The size of the dataset was bigger than the previous ones, with `417735` rows for inference. + +
+
+ +#### Results +We have observed in previous experiments, using BertSentenceEmbeddings (classifierDL) and also BertEmbeddings (NerDL) how GPU improved both training and inference times. In this case, we observe again big improvements in inference, what is already pointing that one of the main reasons of why GPU improves so much over CPU is the better management of Embeddings (word, sentence level) and bigger batch sizes. + +Batch sizes: `32`, `64`, `256`, `1024` + +
+
+ +#### Inference times depending on batch (in minutes) +![](/assets/images/gpu_v2_pic10.png) + +{:.table-model-big} +| Batch size | CPU | GPU | +| :---: | :---: | :--: | +| 32 | 80 | 9.9 | +| 64 | 77 | 9.8 | +| 256 | 63 | 9.4 | +| 1024 | 62 | 9.1 | + +
+
+ +### Takeaways: How to get the best of the GPU +You will experiment big GPU improvements in the following cases: + +{:.list1} +1. Embeddings and Transformers are used in your pipeline. Take into consideration that GPU will performance very well in Embeddings / Transformer components, but other components of your pipeline may not leverage as well GPU capabilities; +2. Bigger batch sizes get the best of GPU, while CPU does not scale with bigger batch sizes; +3. Bigger dataset sizes get the best of GPU, while may be a bottleneck while running in CPU and lead to performance drops; + +
+
+ +### MultiGPU training +Right now, we don't support multigpu training (1 model in different GPUs in parallel), but you can train different models in different GPU. + +
+
+ +### Where to look for more information about Training +Please, take a look at the [Spark NLP](https://nlp.johnsnowlabs.com/docs/en/training) and [Spark NLP for Healthcare](https://nlp.johnsnowlabs.com/docs/en/licensed_training) Training sections, and feel free to reach us out in case you want to maximize the performance on your GPU. + +
\ No newline at end of file diff --git a/python/sparknlp/annotator/ner/ner_converter.py b/python/sparknlp/annotator/ner/ner_converter.py index 210a6cd2cbf2..b3b7780f05db 100644 --- a/python/sparknlp/annotator/ner/ner_converter.py +++ b/python/sparknlp/annotator/ner/ner_converter.py @@ -98,6 +98,13 @@ class on how to extract the entities. The output of the NerDLModel follows typeConverter=TypeConverters.toBoolean ) + nerHasNoSchema = Param( + Params._dummy(), + "nerHasNoSchema", + "set this to true if your NER tags coming from a model that does not have a IOB/IOB2 schema", + typeConverter=TypeConverters.toBoolean + ) + def setWhiteList(self, entities): """Sets list of entities to process. The rest will be ignored. @@ -124,6 +131,17 @@ def setPreservePosition(self, value): """ return self._set(preservePosition=value) + def setNerHasNoSchema(self, value): + """ + set this to true if your NER tags coming from a model that does not have a IOB/IOB2 schema + + Parameters + ---------- + value : bool + set this to true if your NER tags coming from a model that does not have a IOB/IOB2 schema + """ + return self._set(nerHasNoSchema=value) + @keyword_only def __init__(self): super(NerConverter, self).__init__( diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/NerConverter.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/NerConverter.scala index 7aa8efc87bf1..0f51cb56ced4 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/NerConverter.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/NerConverter.scala @@ -141,7 +141,19 @@ class NerConverter(override val uid: String) */ def setPreservePosition(value: Boolean): this.type = set(preservePosition, value) - setDefault(preservePosition -> true) + /** set this to true if your NER tags coming from a model that does not have a IOB/IOB2 schema + * + * @group param + */ + val nerHasNoSchema: BooleanParam = new BooleanParam( + this, + "nerHasNoSchema", + "set this to true if your NER tags coming from a model that does not have a IOB/IOB2 schema") + + /** @group setParam */ + def setNerHasNoSchema(value: Boolean): this.type = set(nerHasNoSchema, value) + + setDefault(preservePosition -> true, nerHasNoSchema -> false) override def annotate(annotations: Seq[Annotation]): Seq[Annotation] = { val sentences = NerTagged.unpack(annotations) @@ -150,7 +162,12 @@ class NerConverter(override val uid: String) b.indexedTaggedWords.exists(c => c.begin >= a.begin && c.end <= a.end))) val entities = sentences.zip(docs.zipWithIndex).flatMap { case (sentence, doc) => - NerTagsEncoding.fromIOB(sentence, doc._1, sentenceIndex = doc._2, $(preservePosition)) + NerTagsEncoding.fromIOB( + sentence, + doc._1, + sentenceIndex = doc._2, + originalOffset = $(preservePosition), + nerHasNoSchema = $(nerHasNoSchema)) } entities diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/NerTagsEncoding.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/NerTagsEncoding.scala index 0925357c4283..f9bf0090f77a 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/NerTagsEncoding.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/NerTagsEncoding.scala @@ -37,6 +37,7 @@ object NerTagsEncoding { doc: Annotation, sentenceIndex: Int = 0, originalOffset: Boolean = true, + nerHasNoSchema: Boolean = false, includeNoneEntities: Boolean = false, format: String = "IOB2"): Seq[NamedEntity] = { @@ -87,9 +88,9 @@ object NerTagsEncoding { } - def getTag(tag: String, startsWithSchema: Boolean = true): Option[String] = { + def getTag(tag: String): Option[String] = { try { - lastTag = Some(if (startsWithSchema) tag.substring(2) else tag) + lastTag = Some(if (nerHasNoSchema) tag else tag.substring(2)) } catch { case e: StringIndexOutOfBoundsException => require( @@ -101,17 +102,16 @@ object NerTagsEncoding { for (i <- 0 until words) { val tag = sentence.tags(i) - val hasSchema = tag.startsWith(beginningTagChunk) - if (lastTag.isDefined && (hasSchema || tag == noChunk)) { + if (lastTag.isDefined && (tag.startsWith(beginningTagChunk) || tag == noChunk)) { flushEntity(lastTagStart, i - 1) } if (includeNoneEntities && lastTag.isEmpty) { - lastTag = if (tag == noChunk) Some(tag) else getTag(tag, hasSchema) + lastTag = if (tag == noChunk) Some(tag) else getTag(tag) lastTagStart = i } else { if (lastTag.isEmpty && tag != noChunk) { - lastTag = getTag(tag, hasSchema) + lastTag = getTag(tag) lastTagStart = i } } From e92d21bef28df88151d5eaf5924cf37dcaf5ba69 Mon Sep 17 00:00:00 2001 From: Maziyar Panahi Date: Fri, 7 Apr 2023 12:16:07 +0000 Subject: [PATCH 14/26] Change default model for BART to distilbart-xsum-12-6 Signed-off-by: Maziyar Panahi --- python/sparknlp/annotator/seq2seq/bart_transformer.py | 8 ++++---- .../nlp/annotators/seq2seq/BartTransformer.scala | 6 +++--- .../nlp/annotators/seq2seq/BartTestSpec.scala | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/python/sparknlp/annotator/seq2seq/bart_transformer.py b/python/sparknlp/annotator/seq2seq/bart_transformer.py index bd7c25cf7ff9..2c0bf3eac55e 100755 --- a/python/sparknlp/annotator/seq2seq/bart_transformer.py +++ b/python/sparknlp/annotator/seq2seq/bart_transformer.py @@ -50,7 +50,7 @@ class BartTransformer(AnnotatorModel, HasBatchedAnnotate, HasEngine): ... .setOutputCol("summaries") - The default model is ``"bart_large_cnn"``, if no name is provided. For available + The default model is ``"distilbart-xsum-12-6"``, if no name is provided. For available pretrained models please see the `Models Hub `__. @@ -131,7 +131,7 @@ class BartTransformer(AnnotatorModel, HasBatchedAnnotate, HasEngine): >>> documentAssembler = DocumentAssembler() \\ ... .setInputCol("text") \\ ... .setOutputCol("documents") - >>> bart = BartTransformer.pretrained("bart_large_cnn") \\ + >>> bart = BartTransformer.pretrained("distilbart-xsum-12-6") \\ ... .setTask("summarize:") \\ ... .setInputCols(["documents"]) \\ ... .setMaxOutputLength(200) \\ @@ -380,13 +380,13 @@ def loadSavedModel(folder, spark_session): return BartTransformer(java_model=jModel) @staticmethod - def pretrained(name="bart_large_cnn", lang="en", remote_loc=None): + def pretrained(name="distilbart-xsum-12-6", lang="en", remote_loc=None): """Downloads and loads a pretrained model. Parameters ---------- name : str, optional - Name of the pretrained model, by default "bart_large_cnn" + Name of the pretrained model, by default "distilbart-xsum-12-6" lang : str, optional Language of the pretrained model, by default "en" remote_loc : str, optional diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala index 65ddcb2ae616..51b19ce97b7c 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala @@ -65,7 +65,7 @@ import org.apache.spark.sql.SparkSession * .setInputCols("document") * .setOutputCol("generation") * }}} - * The default model is `"bart_large_cnn"`, if no name is provided. For available pretrained + * The default model is `"distilbart-xsum-12-6"`, if no name is provided. For available pretrained * models please see the [[https://nlp.johnsnowlabs.com/models?q=bart Models Hub]]. * * For extended examples of usage, see @@ -108,7 +108,7 @@ import org.apache.spark.sql.SparkSession * .setInputCol("text") * .setOutputCol("documents") * - * val bart = BartTransformer.pretrained("bart_large_cnn") + * val bart = BartTransformer.pretrained("distilbart-xsum-12-6") * .setInputCols(Array("documents")) * .setMinOutputLength(10) * .setMaxOutputLength(30) @@ -522,7 +522,7 @@ class BartTransformer(override val uid: String) trait ReadablePretrainedBartTransformerModel extends ParamsAndFeaturesReadable[BartTransformer] with HasPretrained[BartTransformer] { - override val defaultModelName: Some[String] = Some("bart_large_cnn") + override val defaultModelName: Some[String] = Some("distilbart-xsum-12-6") /** Java compliant-overrides */ override def pretrained(): BartTransformer = super.pretrained() diff --git a/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTestSpec.scala b/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTestSpec.scala index d10fdf5386ef..252e4dbb1feb 100644 --- a/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTestSpec.scala +++ b/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTestSpec.scala @@ -43,7 +43,7 @@ class BartTestSpec extends AnyFlatSpec { .setOutputCol("documents") val bart = BartTransformer - .pretrained("bart_large_cnn") + .pretrained("distilbart-xsum-12-6") .setTask("summarize:") .setInputCols(Array("documents")) .setDoSample(true) @@ -84,7 +84,7 @@ class BartTestSpec extends AnyFlatSpec { .setOutputCol("documents") val bart = BartTransformer - .pretrained("bart_large_cnn") + .pretrained("distilbart-xsum-12-6") .setTask("summarize:") .setInputCols(Array("documents")) .setMaxOutputLength(70) @@ -128,7 +128,7 @@ class BartTestSpec extends AnyFlatSpec { .setOutputCol("documents") val bart = BartTransformer - .pretrained("bart_large_cnn") + .pretrained("distilbart-xsum-12-6") .setTask("summarize:") .setInputCols(Array("documents")) .setMaxOutputLength(100) @@ -170,7 +170,7 @@ class BartTestSpec extends AnyFlatSpec { .setOutputCol("documents") val bart = BartTransformer - .pretrained("bart_large_cnn") + .pretrained("distilbart-xsum-12-6") .setTask("summarize:") .setInputCols(Array("documents")) .setDoSample(true) From 1676c6f10e58b34563564e6df05abb62a008bcc3 Mon Sep 17 00:00:00 2001 From: Maziyar Panahi Date: Fri, 7 Apr 2023 13:57:54 +0000 Subject: [PATCH 15/26] Change default model for BART to distilbart_xsum_12_6 Signed-off-by: Maziyar Panahi --- .../sparknlp/annotator/seq2seq/bart_transformer.py | 8 ++++---- .../annotator/seq2seq/bart_transformer_test.py | 14 +++++++------- .../nlp/annotators/seq2seq/BartTransformer.scala | 8 ++++---- .../nlp/annotators/seq2seq/BartTestSpec.scala | 8 ++++---- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/python/sparknlp/annotator/seq2seq/bart_transformer.py b/python/sparknlp/annotator/seq2seq/bart_transformer.py index 2c0bf3eac55e..35cb40d13fe9 100755 --- a/python/sparknlp/annotator/seq2seq/bart_transformer.py +++ b/python/sparknlp/annotator/seq2seq/bart_transformer.py @@ -50,7 +50,7 @@ class BartTransformer(AnnotatorModel, HasBatchedAnnotate, HasEngine): ... .setOutputCol("summaries") - The default model is ``"distilbart-xsum-12-6"``, if no name is provided. For available + The default model is ``"distilbart_xsum_12_6"``, if no name is provided. For available pretrained models please see the `Models Hub `__. @@ -131,7 +131,7 @@ class BartTransformer(AnnotatorModel, HasBatchedAnnotate, HasEngine): >>> documentAssembler = DocumentAssembler() \\ ... .setInputCol("text") \\ ... .setOutputCol("documents") - >>> bart = BartTransformer.pretrained("distilbart-xsum-12-6") \\ + >>> bart = BartTransformer.pretrained("distilbart_xsum_12_6") \\ ... .setTask("summarize:") \\ ... .setInputCols(["documents"]) \\ ... .setMaxOutputLength(200) \\ @@ -380,13 +380,13 @@ def loadSavedModel(folder, spark_session): return BartTransformer(java_model=jModel) @staticmethod - def pretrained(name="distilbart-xsum-12-6", lang="en", remote_loc=None): + def pretrained(name="distilbart_xsum_12_6", lang="en", remote_loc=None): """Downloads and loads a pretrained model. Parameters ---------- name : str, optional - Name of the pretrained model, by default "distilbart-xsum-12-6" + Name of the pretrained model, by default "distilbart_xsum_12_6" lang : str, optional Language of the pretrained model, by default "en" remote_loc : str, optional diff --git a/python/test/annotator/seq2seq/bart_transformer_test.py b/python/test/annotator/seq2seq/bart_transformer_test.py index 955b6b9041c9..c2637a853ae2 100644 --- a/python/test/annotator/seq2seq/bart_transformer_test.py +++ b/python/test/annotator/seq2seq/bart_transformer_test.py @@ -37,7 +37,7 @@ def runTest(self): .setInputCol("text") \ .setOutputCol("documents") - bart = BartTransformer.pretrained("bart_large_cnn") \ + bart = BartTransformer.pretrained("distilbart_xsum_12_6") \ .setInputCols(["documents"]) \ .setOutputCol("answers") @@ -77,7 +77,7 @@ def runTest(self): .setInputCol("text") \ .setOutputCol("documents") - bart = BartTransformer.pretrained("bart_large_cnn") \ + bart = BartTransformer.pretrained("distilbart_xsum_12_6") \ .setTask("summarize:") \ .setMaxOutputLength(200) \ .setInputCols(["documents"]) \ @@ -113,7 +113,7 @@ def runTest(self): .setInputCol("text") \ .setOutputCol("documents") - bart = BartTransformer.pretrained("bart_large_cnn") \ + bart = BartTransformer.pretrained("distilbart_xsum_12_6") \ .setTask("summarize:") \ .setMaxOutputLength(50) \ .setInputCols(["documents"]) \ @@ -150,7 +150,7 @@ def runTest(self): .setInputCol("text") \ .setOutputCol("documents") - bart = BartTransformer.pretrained("bart_large_cnn") \ + bart = BartTransformer.pretrained("distilbart_xsum_12_6") \ .setTask("summarize:") \ .setMaxOutputLength(50) \ .setDoSample(True) \ @@ -188,7 +188,7 @@ def runTest(self): .setInputCol("text") \ .setOutputCol("documents") - bart = BartTransformer.pretrained("bart_large_cnn") \ + bart = BartTransformer.pretrained("distilbart_xsum_12_6") \ .setTask("summarize:") \ .setMaxOutputLength(50) \ .setDoSample(True) \ @@ -227,7 +227,7 @@ def runTest(self): .setInputCol("text") \ .setOutputCol("documents") - bart = BartTransformer.pretrained("bart_large_cnn")\ + bart = BartTransformer.pretrained("distilbart_xsum_12_6")\ .setTask("summarize:") \ .setMaxOutputLength(50) \ .setDoSample(True) \ @@ -266,7 +266,7 @@ def runTest(self): .setInputCol("text") \ .setOutputCol("documents") - bart = BartTransformer.pretrained("bart_large_cnn") \ + bart = BartTransformer.pretrained("distilbart_xsum_12_6") \ .setTask("summarize:") \ .setMaxOutputLength(50) \ .setDoSample(True) \ diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala index 51b19ce97b7c..b7f878f8e781 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala @@ -65,8 +65,8 @@ import org.apache.spark.sql.SparkSession * .setInputCols("document") * .setOutputCol("generation") * }}} - * The default model is `"distilbart-xsum-12-6"`, if no name is provided. For available pretrained - * models please see the [[https://nlp.johnsnowlabs.com/models?q=bart Models Hub]]. + * The default model is `"distilbart_xsum_12_6"`, if no name is provided. For available + * pretrained models please see the [[https://nlp.johnsnowlabs.com/models?q=bart Models Hub]]. * * For extended examples of usage, see * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTestSpec.scala BartTestSpec]]. @@ -108,7 +108,7 @@ import org.apache.spark.sql.SparkSession * .setInputCol("text") * .setOutputCol("documents") * - * val bart = BartTransformer.pretrained("distilbart-xsum-12-6") + * val bart = BartTransformer.pretrained("distilbart_xsum_12_6") * .setInputCols(Array("documents")) * .setMinOutputLength(10) * .setMaxOutputLength(30) @@ -522,7 +522,7 @@ class BartTransformer(override val uid: String) trait ReadablePretrainedBartTransformerModel extends ParamsAndFeaturesReadable[BartTransformer] with HasPretrained[BartTransformer] { - override val defaultModelName: Some[String] = Some("distilbart-xsum-12-6") + override val defaultModelName: Some[String] = Some("distilbart_xsum_12_6") /** Java compliant-overrides */ override def pretrained(): BartTransformer = super.pretrained() diff --git a/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTestSpec.scala b/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTestSpec.scala index 252e4dbb1feb..11b5e8d768aa 100644 --- a/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTestSpec.scala +++ b/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTestSpec.scala @@ -43,7 +43,7 @@ class BartTestSpec extends AnyFlatSpec { .setOutputCol("documents") val bart = BartTransformer - .pretrained("distilbart-xsum-12-6") + .pretrained("distilbart_xsum_12_6") .setTask("summarize:") .setInputCols(Array("documents")) .setDoSample(true) @@ -84,7 +84,7 @@ class BartTestSpec extends AnyFlatSpec { .setOutputCol("documents") val bart = BartTransformer - .pretrained("distilbart-xsum-12-6") + .pretrained("distilbart_xsum_12_6") .setTask("summarize:") .setInputCols(Array("documents")) .setMaxOutputLength(70) @@ -128,7 +128,7 @@ class BartTestSpec extends AnyFlatSpec { .setOutputCol("documents") val bart = BartTransformer - .pretrained("distilbart-xsum-12-6") + .pretrained("distilbart_xsum_12_6") .setTask("summarize:") .setInputCols(Array("documents")) .setMaxOutputLength(100) @@ -170,7 +170,7 @@ class BartTestSpec extends AnyFlatSpec { .setOutputCol("documents") val bart = BartTransformer - .pretrained("distilbart-xsum-12-6") + .pretrained("distilbart_xsum_12_6") .setTask("summarize:") .setInputCols(Array("documents")) .setDoSample(true) From dc149647c00d219a8193239947ac4c42e5b305d4 Mon Sep 17 00:00:00 2001 From: Maziyar Panahi Date: Fri, 7 Apr 2023 16:21:03 +0200 Subject: [PATCH 16/26] Replace nlp with sparknlp.org website --- .github/ISSUE_TEMPLATE/config.yml | 4 +- CHANGELOG | 2 +- README.md | 10 +- build.sbt | 2 +- docs/en/CPUvsGPUbenchmark.md | 8 +- docs/en/annotator_entries/ClassifierDL.md | 2 +- .../annotator_entries/ContextSpellChecker.md | 2 +- docs/en/annotator_entries/DateMatcher.md | 2 +- docs/en/annotator_entries/DependencyParser.md | 2 +- docs/en/annotator_entries/Doc2Vec.md | 2 +- .../annotator_entries/LanguageDetectorDL.md | 2 +- docs/en/annotator_entries/Lemmatizer.md | 4 +- .../en/annotator_entries/MultiClassifierDL.md | 2 +- docs/en/annotator_entries/NerCrf.md | 2 +- docs/en/annotator_entries/NerDL.md | 4 +- docs/en/annotator_entries/NorvigSweeting.md | 2 +- docs/en/annotator_entries/Perceptron.md | 4 +- docs/en/annotator_entries/RegexMatcher.md | 2 +- .../annotator_entries/SentenceDetectorDL.md | 2 +- docs/en/annotator_entries/SentimentDL.md | 2 +- docs/en/annotator_entries/StopWordsCleaner.md | 4 +- docs/en/annotator_entries/SymmetricDelete.md | 2 +- .../TypedDependencyParser.md | 2 +- docs/en/annotator_entries/Word2Vec.md | 2 +- docs/en/annotator_entries/WordEmbeddings.md | 2 +- docs/en/annotator_entries/WordSegmenter.md | 2 +- docs/en/best_practices_pretrained_models.md | 304 ------- docs/en/display.md | 2 +- docs/en/graph.md | 2 +- docs/en/hardware_acceleration.md | 2 +- docs/en/install.md | 2 +- docs/en/mlflow.md | 2 +- .../release_notes_0_4_0.md | 2 +- docs/en/pipelines.md | 2 +- docs/en/production-readiness.md | 860 ------------------ docs/en/quickstart.md | 8 +- ...ing_spark_nlp_via_api_databricks_mlflow.md | 10 +- docs/en/spark_nlp.md | 8 +- docs/en/training.md | 2 +- .../AlbertForQuestionAnswering.md | 2 +- .../AlbertForSequenceClassification.md | 4 +- .../AlbertForTokenClassification.md | 2 +- docs/en/transformer_entries/BertEmbeddings.md | 2 +- .../BertForQuestionAnswering.md | 2 +- .../BertForSequenceClassification.md | 4 +- .../BertForTokenClassification.md | 2 +- .../BertSentenceEmbeddings.md | 2 +- .../CamemBertEmbeddings.md | 2 +- .../CamemBertForSequenceClassification.md | 2 +- .../CamemBertForTokenClassification.md | 4 +- .../ConvNextForImageClassification.md | 2 +- .../DeBertaForQuestionAnswering.md | 2 +- .../DistilBertEmbeddings.md | 2 +- .../DistilBertForQuestionAnswering.md | 2 +- .../DistilBertForSequenceClassification.md | 4 +- .../DistilBertForTokenClassification.md | 2 +- docs/en/transformer_entries/ElmoEmbeddings.md | 2 +- .../en/transformer_entries/GPT2Transformer.md | 2 +- docs/en/transformer_entries/HubertForCTC.md | 2 +- .../LongformerEmbeddings.md | 2 +- .../LongformerForQuestionAnswering.md | 2 +- .../LongformerForSequenceClassification.md | 4 +- .../LongformerForTokenClassification.md | 2 +- .../transformer_entries/MarianTransformer.md | 2 +- .../transformer_entries/RoBertaEmbeddings.md | 2 +- .../RoBertaForQuestionAnswering.md | 2 +- .../RoBertaForSequenceClassification.md | 2 +- .../RoBertaForTokenClassification.md | 2 +- .../RoBertaSentenceEmbeddings.md | 2 +- docs/en/transformer_entries/SpanBertCoref.md | 2 +- .../SwinForImageClassification.md | 2 +- docs/en/transformer_entries/T5Transformer.md | 2 +- .../TapasForQuestionAnswering.md | 2 +- .../UniversalSentenceEncoder.md | 2 +- .../ViTForImageClassification.md | 2 +- docs/en/transformer_entries/Wav2Vec2ForCTC.md | 2 +- .../XlmRoBertaEmbeddings.md | 2 +- .../XlmRoBertaForQuestionAnswering.md | 2 +- .../XlmRoBertaForSequenceClassification.md | 4 +- .../XlmRoBertaForTokenClassification.md | 2 +- .../XlmRoBertaSentenceEmbeddings.md | 2 +- .../XlnetForSequenceClassification.md | 4 +- .../XlnetForTokenClassification.md | 2 +- docs/en/transformer_entries/ZeroShotNer.md | 2 +- ...ecognition_Wav2Vec2_(Wav2Vec2ForCTC).ipynb | 6 +- .../image/ViTForImageClassification.ipynb | 2 +- .../words_segmenter_demo.ipynb | 2 +- .../MultiDateMatcherMultiLanguage_en.ipynb | 2 +- .../Text_Preprocessing_with_SparkNLP.ipynb | 2 +- .../Chunk_Extraction_with_Chunker.ipynb | 2 +- .../english/chunking/NgramGenerator.ipynb | 4 +- ...ing_Documents_With_DocumentAssembler.ipynb | 2 +- .../Loading_Multiple_Documents.ipynb | 2 +- .../document_normalizer_notebook.ipynb | 2 +- .../english/embeddings/ChunkEmbeddings.ipynb | 2 +- .../graph-extraction/graph_extraction.ipynb | 2 +- .../graph_extraction_explode_entities.ipynb | 2 +- .../graph_extraction_helper_display.ipynb | 2 +- .../graph_extraction_intro.ipynb | 2 +- .../graph_extraction_roots_paths.ipynb | 2 +- .../Keyword_Extraction_YAKE.ipynb | 2 +- ...nguage_Detection_and_Indentification.ipynb | 4 +- .../Create custom pipeline - NerDL.ipynb | 2 +- .../ModelDownloaderExample.ipynb | 2 +- ...Named entity recognition - OntoNotes.ipynb | 2 +- .../ZeroShot_NER.ipynb | 2 +- .../Explain Document DL.ipynb | 2 +- .../Pretrained-MatchDateTime-Pipeline.ipynb | 2 +- .../Pretrained-MatchPattern-Pipeline.ipynb | 2 +- .../explain_document_ml.ipynb | 2 +- ..._Answering_and_Summarization_with_T5.ipynb | 22 +- .../Matching_Text_with_RegexMatcher.ipynb | 2 +- .../regex_tokenizer_examples.ipynb | 2 +- .../SentenceDetector_advanced_examples.ipynb | 4 +- .../sentiment-detection/sentiment_rb.ipynb | 2 +- .../playground-dataFrames.ipynb | 2 +- .../spark_nlp_basics_functions.ipynb | 2 +- .../Pretrained-SpellCheckML-Pipeline.ipynb | 2 +- .../stemmer/Word_Stemming_with_Stemmer.ipynb | 2 +- .../english/stop-words/StopWordsCleaner.ipynb | 2 +- .../text-matcher-pipeline/extractor.ipynb | 2 +- .../Spark_NLP_Spark_ML_Text_Similarity.ipynb | 2 +- .../Assembling_Tokens_to_Documents.ipynb | 2 +- .../MultiDateMatcherMultiLanguage_fr.ipynb | 2 +- .../date_matcher_multi_language_fr.ipynb | 2 +- .../MultiDateMatcherMultiLanguage_de.ipynb | 2 +- .../date_matcher_multi_language_de.ipynb | 2 +- .../german/pretrained_german_models.ipynb | 2 +- .../MultiDateMatcherMultiLanguage_it.ipynb | 2 +- .../date_matcher_multi_language_it.ipynb | 2 +- .../multilingual/SentenceDetectorDL.ipynb | 2 +- .../multilingual/Translation_Marian.ipynb | 6 +- .../WordSegmenterMultilingual.ipynb | 6 +- .../MultiDateMatcherMultiLanguage_pt.ipynb | 2 +- .../date_matcher_multi_language_pt.ipynb | 2 +- .../MultiDateMatcherMultiLanguage_es.ipynb | 2 +- .../date_matcher_multi_language_es.ipynb | 2 +- examples/python/quick_start.ipynb | 2 +- .../python/quick_start_google_colab.ipynb | 4 +- ...Segmenter_train_chinese_segmentation.ipynb | 4 +- .../ClassifierDL_Train_and_Evaluate.ipynb | 2 +- ...multi_class_news_category_classifier.ipynb | 2 +- ...MultiClassifierDL_Train_and_Evaluate.ipynb | 2 +- ...multi_label_E2E_challenge_classifier.ipynb | 2 +- ...L_train_multi_label_toxic_classifier.ipynb | 2 +- .../SentimentDL_Train_and_Evaluate.ipynb | 2 +- ...rain_multiclass_sentiment_classifier.ipynb | 2 +- .../training/english/crf-ner/ner_dl_crf.ipynb | 2 +- .../english/dl-ner/mfa_ner_graphs_s3.ipynb | 2 +- .../training/english/dl-ner/ner_albert.ipynb | 2 +- .../training/english/dl-ner/ner_bert.ipynb | 2 +- .../training/english/dl-ner/ner_dl.ipynb | 2 +- .../training/english/dl-ner/ner_elmo.ipynb | 2 +- .../english/dl-ner/ner_graph_builder.ipynb | 2 +- .../training/english/dl-ner/ner_logs.ipynb | 2 +- .../training/english/dl-ner/ner_xlnet.ipynb | 2 +- ...rain_Doc2Vec_and_Text_Classification.ipynb | 2 +- .../english/entity-ruler/EntityRuler.ipynb | 2 +- .../entity-ruler/EntityRuler_Alphabet.ipynb | 2 +- .../EntityRuler_LightPipeline.ipynb | 2 +- .../EntityRuler_Without_Storage.ipynb | 2 +- .../RuleBasedSentiment.ipynb | 2 +- .../VivekNarayanSentimentApproach.ipynb | 2 +- ...ord2Vec_and_Named_Entity_Recognition.ipynb | 2 +- .../french/Train-Perceptron-French.ipynb | 2 +- .../italian/Train-Lemmatizer-Italian.ipynb | 2 +- .../Train-SentimentDetector-Italian.ipynb | 2 +- ...aining_Context_Spell_Checker_Italian.ipynb | 2 +- .../HuggingFace in Spark NLP - ALBERT.ipynb | 2 +- ...ark NLP - AlbertForQuestionAnswering.ipynb | 2 +- ...LP - AlbertForSequenceClassification.ipynb | 2 +- ...k NLP - AlbertForTokenClassification.ipynb | 2 +- ...ingFace in Spark NLP - BERT Sentence.ipynb | 2 +- .../HuggingFace in Spark NLP - BERT.ipynb | 2 +- ...Spark NLP - BertForQuestionAnswering.ipynb | 2 +- ... NLP - BertForSequenceClassification.ipynb | 2 +- ...ark NLP - BertForTokenClassification.ipynb | 2 +- ...HuggingFace in Spark NLP - CamemBERT.ipynb | 2 +- ... NLP - CamemBertForQuestionAnswering.ipynb | 2 +- ...- CamemBertForSequenceClassification.ipynb | 2 +- ...LP - CamemBertForTokenClassification.ipynb | 2 +- .../HuggingFace in Spark NLP - DeBERTa.ipynb | 2 +- ...rk NLP - DeBertaForQuestionAnswering.ipynb | 2 +- ...uggingFace in Spark NLP - DistilBERT.ipynb | 2 +- ...NLP - DistilBertForQuestionAnswering.ipynb | 2 +- ... DistilBertForSequenceClassification.ipynb | 2 +- ...P - DistilBertForTokenClassification.ipynb | 2 +- ...uggingFace in Spark NLP - Longformer.ipynb | 2 +- ...NLP - LongformerForQuestionAnswering.ipynb | 2 +- .../HuggingFace in Spark NLP - RoBERTa.ipynb | 2 +- ...rk NLP - RoBertaForQuestionAnswering.ipynb | 2 +- ...P - RoBertaForSequenceClassification.ipynb | 2 +- ... NLP - RoBertaForTokenClassification.ipynb | 2 +- ...park NLP - ViTForImageClassification.ipynb | 2 +- ...ggingFace in Spark NLP - XLM-RoBERTa.ipynb | 2 +- .../HuggingFace in Spark NLP - XLNet.ipynb | 2 +- ... XlmRoBertaForSequenceClassification.ipynb | 2 +- ...P - XlmRoBertaForTokenClassification.ipynb | 2 +- ...NLP - XlmRobertaForQuestionAnswering.ipynb | 2 +- ...NLP - XlnetForSequenceClassification.ipynb | 2 +- ...ernal SavedModel From Remote Storage.ipynb | 2 +- .../TF Hub in Spark NLP - ALBERT.ipynb | 2 +- .../TF Hub in Spark NLP - BERT Sentence.ipynb | 2 +- .../TF Hub in Spark NLP - BERT.ipynb | 2 +- examples/scala/training/NerDL/win/README.md | 2 +- .../CustomForNerDLPipeline.java | 2 +- examples/util/Load_Model_From_S3.ipynb | 2 +- .../util/Load_Model_from_GCP_Storage.ipynb | 2 +- examples/util/Training_Helpers.ipynb | 2 +- python/README.md | 10 +- python/docs/index.rst | 2 +- python/docs/user_guide/annotators.rst | 2 +- python/docs/user_guide/index.rst | 2 +- .../docs/user_guide/pretrained_pipelines.rst | 2 +- .../annotator/audio/hubert_for_ctc.py | 2 +- .../annotator/audio/wav2vec2_for_ctc.py | 28 +- .../albert_for_question_answering.py | 2 +- .../albert_for_sequence_classification.py | 4 +- .../albert_for_token_classification.py | 2 +- .../bert_for_question_answering.py | 2 +- .../bert_for_sequence_classification.py | 2 +- .../bert_for_token_classification.py | 2 +- .../bert_for_zero_shot_classification.py | 2 +- .../camembert_for_question_answering.py | 2 +- .../camembert_for_sequence_classification.py | 2 +- .../camembert_for_token_classification.py | 2 +- .../annotator/classifier_dl/classifier_dl.py | 2 +- .../deberta_for_question_answering.py | 2 +- .../deberta_for_sequence_classification.py | 4 +- .../deberta_for_token_classification.py | 2 +- .../distil_bert_for_question_answering.py | 2 +- ...distil_bert_for_sequence_classification.py | 4 +- .../distil_bert_for_token_classification.py | 2 +- .../longformer_for_question_answering.py | 2 +- .../longformer_for_sequence_classification.py | 4 +- .../longformer_for_token_classification.py | 2 +- .../classifier_dl/multi_classifier_dl.py | 2 +- .../roberta_for_question_answering.py | 2 +- .../roberta_for_sequence_classification.py | 4 +- .../roberta_for_token_classification.py | 2 +- .../annotator/classifier_dl/sentiment_dl.py | 2 +- .../tapas_for_question_answering.py | 2 +- .../xlm_roberta_for_question_answering.py | 2 +- ...xlm_roberta_for_sequence_classification.py | 4 +- .../xlm_roberta_for_token_classification.py | 2 +- .../xlnet_for_sequence_classification.py | 4 +- .../xlnet_for_token_classification.py | 2 +- .../annotator/coref/spanbert_coref.py | 2 +- .../cv/convnext_for_image_classification.py | 2 +- .../cv/swin_for_image_classification.py | 2 +- .../cv/vit_for_image_classification.py | 2 +- .../annotator/dependency/dependency_parser.py | 2 +- .../dependency/typed_dependency_parser.py | 2 +- .../annotator/embeddings/bert_embeddings.py | 2 +- .../embeddings/bert_sentence_embeddings.py | 2 +- .../embeddings/camembert_embeddings.py | 2 +- .../embeddings/distil_bert_embeddings.py | 2 +- .../sparknlp/annotator/embeddings/doc2vec.py | 2 +- .../annotator/embeddings/elmo_embeddings.py | 2 +- .../embeddings/longformer_embeddings.py | 2 +- .../embeddings/roberta_embeddings.py | 2 +- .../embeddings/roberta_sentence_embeddings.py | 2 +- .../embeddings/universal_sentence_encoder.py | 2 +- .../sparknlp/annotator/embeddings/word2vec.py | 2 +- .../annotator/embeddings/word_embeddings.py | 2 +- .../embeddings/xlm_roberta_embeddings.py | 2 +- .../xlm_roberta_sentence_embeddings.py | 2 +- .../annotator/ld_dl/language_detector_dl.py | 2 +- python/sparknlp/annotator/lemmatizer.py | 4 +- .../annotator/matcher/date_matcher.py | 2 +- .../annotator/matcher/regex_matcher.py | 2 +- python/sparknlp/annotator/ner/ner_crf.py | 2 +- python/sparknlp/annotator/ner/ner_dl.py | 4 +- python/sparknlp/annotator/pos/perceptron.py | 4 +- .../sentence/sentence_detector_dl.py | 2 +- .../annotator/seq2seq/bart_transformer.py | 10 +- .../annotator/seq2seq/gpt2_transformer.py | 2 +- .../annotator/seq2seq/marian_transformer.py | 2 +- .../annotator/seq2seq/t5_transformer.py | 2 +- .../spell_check/context_spell_checker.py | 8 +- .../annotator/spell_check/norvig_sweeting.py | 2 +- .../annotator/spell_check/symmetric_delete.py | 2 +- .../sparknlp/annotator/stop_words_cleaner.py | 2 +- .../sparknlp/annotator/ws/word_segmenter.py | 2 +- .../pretrained/pretrained_pipeline.py | 2 +- .../nlp/annotators/DateMatcher.scala | 2 +- .../nlp/annotators/Lemmatizer.scala | 2 +- .../nlp/annotators/LemmatizerModel.scala | 2 +- .../nlp/annotators/RegexMatcher.scala | 2 +- .../nlp/annotators/StopWordsCleaner.scala | 2 +- .../nlp/annotators/audio/HubertForCTC.scala | 2 +- .../nlp/annotators/audio/Wav2Vec2ForCTC.scala | 2 +- .../dl/AlbertForQuestionAnswering.scala | 4 +- .../dl/AlbertForSequenceClassification.scala | 4 +- .../dl/AlbertForTokenClassification.scala | 4 +- .../dl/BertForQuestionAnswering.scala | 4 +- .../dl/BertForSequenceClassification.scala | 4 +- .../dl/BertForTokenClassification.scala | 4 +- .../dl/BertForZeroShotClassification.scala | 6 +- .../dl/CamemBertForQuestionAnswering.scala | 4 +- .../CamemBertForSequenceClassification.scala | 4 +- .../dl/CamemBertForTokenClassification.scala | 4 +- .../classifier/dl/ClassifierDLModel.scala | 2 +- .../dl/DeBertaForQuestionAnswering.scala | 4 +- .../dl/DeBertaForSequenceClassification.scala | 4 +- .../dl/DeBertaForTokenClassification.scala | 4 +- .../dl/DistilBertForQuestionAnswering.scala | 4 +- .../DistilBertForSequenceClassification.scala | 4 +- .../dl/DistilBertForTokenClassification.scala | 4 +- .../dl/LongformerForQuestionAnswering.scala | 4 +- .../LongformerForSequenceClassification.scala | 4 +- .../dl/LongformerForTokenClassification.scala | 4 +- .../dl/MultiClassifierDLModel.scala | 2 +- .../dl/RoBertaForQuestionAnswering.scala | 4 +- .../dl/RoBertaForSequenceClassification.scala | 4 +- .../dl/RoBertaForTokenClassification.scala | 4 +- .../classifier/dl/SentimentDLModel.scala | 2 +- .../dl/TapasForQuestionAnswering.scala | 4 +- .../dl/XlmRoBertaForQuestionAnswering.scala | 4 +- .../XlmRoBertaForSequenceClassification.scala | 4 +- .../dl/XlmRoBertaForTokenClassification.scala | 4 +- .../dl/XlnetForSequenceClassification.scala | 4 +- .../dl/XlnetForTokenClassification.scala | 4 +- .../annotators/coref/SpanBertCorefModel.scala | 2 +- .../cv/ConvNextForImageClassification.scala | 2 +- .../cv/SwinForImageClassification.scala | 2 +- .../cv/ViTForImageClassification.scala | 2 +- .../annotators/ld/dl/LanguageDetectorDL.scala | 2 +- .../nlp/annotators/ner/crf/NerCrfModel.scala | 2 +- .../nlp/annotators/ner/dl/NerDLApproach.scala | 6 +- .../nlp/annotators/ner/dl/NerDLModel.scala | 4 +- .../annotators/ner/dl/ZeroShotNerModel.scala | 2 +- .../parser/dep/DependencyParserModel.scala | 2 +- .../typdep/TypedDependencyParserModel.scala | 2 +- .../pos/perceptron/PerceptronModel.scala | 4 +- .../SentenceDetectorDLModel.scala | 2 +- .../annotators/seq2seq/BartTransformer.scala | 2 +- .../annotators/seq2seq/GPT2Transformer.scala | 2 +- .../seq2seq/MarianTransformer.scala | 2 +- .../annotators/seq2seq/T5Transformer.scala | 2 +- .../context/ContextSpellCheckerModel.scala | 2 +- .../spell/norvig/NorvigSweetingModel.scala | 2 +- .../symmetric/SymmetricDeleteModel.scala | 2 +- .../annotators/ws/WordSegmenterModel.scala | 2 +- .../nlp/embeddings/AlbertEmbeddings.scala | 2 +- .../nlp/embeddings/BertEmbeddings.scala | 4 +- .../embeddings/BertSentenceEmbeddings.scala | 4 +- .../nlp/embeddings/CamemBertEmbeddings.scala | 4 +- .../nlp/embeddings/DeBertaEmbeddings.scala | 2 +- .../nlp/embeddings/DistilBertEmbeddings.scala | 4 +- .../nlp/embeddings/Doc2VecModel.scala | 2 +- .../nlp/embeddings/ElmoEmbeddings.scala | 4 +- .../nlp/embeddings/LongformerEmbeddings.scala | 4 +- .../nlp/embeddings/RoBertaEmbeddings.scala | 4 +- .../RoBertaSentenceEmbeddings.scala | 4 +- .../embeddings/UniversalSentenceEncoder.scala | 4 +- .../nlp/embeddings/Word2VecModel.scala | 2 +- .../nlp/embeddings/WordEmbeddings.scala | 2 +- .../nlp/embeddings/WordEmbeddingsModel.scala | 4 +- .../nlp/embeddings/XlmRoBertaEmbeddings.scala | 4 +- .../XlmRoBertaSentenceEmbeddings.scala | 4 +- .../nlp/embeddings/XlnetEmbeddings.scala | 2 +- .../nlp/pretrained/PretrainedPipeline.scala | 2 +- 363 files changed, 490 insertions(+), 1654 deletions(-) delete mode 100644 docs/en/best_practices_pretrained_models.md delete mode 100644 docs/en/production-readiness.md diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 8d04672dd9d1..dfa9fabe971d 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -5,5 +5,5 @@ contact_links: url: https://github.com/JohnSnowLabs/spark-nlp/discussions/5669 about: Discussion about importing models from other libraries - name: Want to contribute a model? Visit the NLP Models Hub to upload your model. - url: https://nlp.johnsnowlabs.com/models - about: A place for sharing and discovering Spark NLP models and pipelines + url: https://sparknlp.org/models + about: A place for sharing and discovering Spark NLP models and pipelines diff --git a/CHANGELOG b/CHANGELOG index 60862dd626fd..8a87d011587c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -798,7 +798,7 @@ New Features Backward compatibility ---------------- -* We have updated our MarianTransformer annotator to be compatible with TF v2 models. This change is not compatible with previous models/pipelines. However, we have updated and uploaded all the models and pipelines for `3.1.x` release. You can either use `MarianTransformer.pretrained(MODEL_NAME)` and it will automatically download the compatible model or you can visit [Models Hub](https://nlp.johnsnowlabs.com/models) to download the compatible models for offline use via `MarianTransformer.load(PATH)` +* We have updated our MarianTransformer annotator to be compatible with TF v2 models. This change is not compatible with previous models/pipelines. However, we have updated and uploaded all the models and pipelines for `3.1.x` release. You can either use `MarianTransformer.pretrained(MODEL_NAME)` and it will automatically download the compatible model or you can visit [Models Hub](https://sparknlp.org/models) to download the compatible models for offline use via `MarianTransformer.load(PATH)` ======== 3.0.3 diff --git a/README.md b/README.md index 14da5a95cec1..fa5682b3092c 100644 --- a/README.md +++ b/README.md @@ -1100,7 +1100,7 @@ ResourceDownloader.showPublicPipelines(lang = "en", version = "3.1.0") */ ``` -#### Please check out our Models Hub for the full list of [pre-trained pipelines](https://nlp.johnsnowlabs.com/models) with examples, demos, benchmarks, and more +#### Please check out our Models Hub for the full list of [pre-trained pipelines](https://sparknlp.org/models) with examples, demos, benchmarks, and more ### Models @@ -1190,7 +1190,7 @@ XlnetEmbeddings */ ``` -#### Please check out our Models Hub for the full list of [pre-trained models](https://nlp.johnsnowlabs.com/models) with examples, demo, benchmark, and more +#### Please check out our Models Hub for the full list of [pre-trained models](https://sparknlp.org/models) with examples, demo, benchmark, and more ## Offline @@ -1201,7 +1201,7 @@ any limitations offline: - Instead of using the Maven package, you need to load our Fat JAR - Instead of using PretrainedPipeline for pretrained pipelines or the `.pretrained()` function to download pretrained - models, you will need to manually download your pipeline/model from [Models Hub](https://nlp.johnsnowlabs.com/models), + models, you will need to manually download your pipeline/model from [Models Hub](https://sparknlp.org/models), extract it, and load it. Example of `SparkSession` with Fat JAR to have Spark NLP offline: @@ -1252,13 +1252,13 @@ PipelineModel.load("/tmp/explain_document_dl_en_2.0.2_2.4_1556530585689/") Need more **examples**? Check out our dedicated [Spark NLP Examples](https://github.com/JohnSnowLabs/spark-nlp/tree/master/examples) repository to showcase all Spark NLP use cases! -Also, don't forget to check [Spark NLP in Action](https://nlp.johnsnowlabs.com/demo) built by Streamlit. +Also, don't forget to check [Spark NLP in Action](https://sparknlp.org/demo) built by Streamlit. ### All examples: [spark-nlp/examples](https://github.com/JohnSnowLabs/spark-nlp/tree/master/examples) ## FAQ -[Check our Articles and Videos page here](https://nlp.johnsnowlabs.com/learn) +[Check our Articles and Videos page here](https://sparknlp.org/learn) ## Citation diff --git a/build.sbt b/build.sbt index 3e164402d0b8..bba94df39d9e 100644 --- a/build.sbt +++ b/build.sbt @@ -54,7 +54,7 @@ publishTo := { else Some("releases" at nexus + "service/local/staging/deploy/maven2") } -homepage := Some(url("https://nlp.johnsnowlabs.com")) +homepage := Some(url("https://sparknlp.org")) scmInfo := Some( ScmInfo( diff --git a/docs/en/CPUvsGPUbenchmark.md b/docs/en/CPUvsGPUbenchmark.md index 96e3491232cf..5da2ca4984f9 100644 --- a/docs/en/CPUvsGPUbenchmark.md +++ b/docs/en/CPUvsGPUbenchmark.md @@ -51,7 +51,7 @@ Spark nodes: 1 This experiment consisted of training a Deep Learning Binary Classifier (Question vs Statement classes) at sentence-level, using a fully connected CNN and Bert Sentence Embeddings. Only 1 Spark node was usd for the training. -We used the Spark NLP class `ClassifierDL` and it's method `Approach()` as described in the [documentation](https://nlp.johnsnowlabs.com/docs/en/annotators#classifierdl). +We used the Spark NLP class `ClassifierDL` and it's method `Approach()` as described in the [documentation](https://sparknlp.org/docs/en/annotators#classifierdl). The pipeline looks as follows: ![](/assets/images/gpu_v2_pic3.png) @@ -125,7 +125,7 @@ A weighted F1-score of 0.88 was achieved, with a 0.90 score for question detecti This experiment consisted of training a Name Entity Recognition model (token-level), using our class NerDLApproach(), using Bert Word Embeddings and a Char-CNN-BiLSTM Neural Network. Only 1 Spark node was used for the training. -We used the Spark NLP class `NerDL` and it's method `Approach()` as described in the [documentation](https://nlp.johnsnowlabs.com/docs/en/annotators#nerdl). +We used the Spark NLP class `NerDL` and it's method `Approach()` as described in the [documentation](https://sparknlp.org/docs/en/annotators#nerdl). The pipeline looks as follows: ![](/assets/images/gpu_v2_pic4.png) @@ -210,7 +210,7 @@ A macro F1-score of about `0.92` (`0.90` in micro) was achieved, with the follow This experiment consisted of benchmarking the improvement obtained in inference by using GPU on BertSentenceEmbeddings(). -We used the Spark NLP class `BertSentenceEmbeddings()` described in the Transformers [documentation](https://nlp.johnsnowlabs.com/docs/en/transformers#bertsentenceembeddings). +We used the Spark NLP class `BertSentenceEmbeddings()` described in the Transformers [documentation](https://sparknlp.org/docs/en/transformers#bertsentenceembeddings). The pipeline contains only two components and looks as follows: ![](/assets/images/gpu_v2_pic9.png) @@ -264,6 +264,6 @@ Right now, we don't support multigpu training (1 model in different GPUs in para
### Where to look for more information about Training -Please, take a look at the [Spark NLP](https://nlp.johnsnowlabs.com/docs/en/training) and [Spark NLP for Healthcare](https://nlp.johnsnowlabs.com/docs/en/licensed_training) Training sections, and feel free to reach us out in case you want to maximize the performance on your GPU. +Please, take a look at the [Spark NLP](https://sparknlp.org/docs/en/training) and [Spark NLP for Healthcare](https://sparknlp.org/docs/en/licensed_training) Training sections, and feel free to reach us out in case you want to maximize the performance on your GPU.
\ No newline at end of file diff --git a/docs/en/annotator_entries/ClassifierDL.md b/docs/en/annotator_entries/ClassifierDL.md index a4e468d1a7dd..7ea3a3640667 100644 --- a/docs/en/annotator_entries/ClassifierDL.md +++ b/docs/en/annotator_entries/ClassifierDL.md @@ -21,7 +21,7 @@ val classifierDL = ClassifierDLModel.pretrained() The default model is `"classifierdl_use_trec6"`, if no name is provided. It uses embeddings from the [UniversalSentenceEncoder](/docs/en/transformers#universalsentenceencoder) and is trained on the [TREC-6](https://deepai.org/dataset/trec-6#:~:text=The%20TREC%20dataset%20is%20dataset,50%20has%20finer%2Dgrained%20labels) dataset. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Text+Classification). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Text+Classification). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/classification/ClassifierDL_Train_multi_class_news_category_classifier.ipynb) diff --git a/docs/en/annotator_entries/ContextSpellChecker.md b/docs/en/annotator_entries/ContextSpellChecker.md index e3a0a074ae5a..3fe8ea7e2cfa 100644 --- a/docs/en/annotator_entries/ContextSpellChecker.md +++ b/docs/en/annotator_entries/ContextSpellChecker.md @@ -24,7 +24,7 @@ val spellChecker = ContextSpellCheckerModel.pretrained() .setOutputCol("checked") ``` The default model is `"spellcheck_dl"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Spell+Check). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Spell+Check). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/italian/Training_Context_Spell_Checker_Italian.ipynb) and the [ContextSpellCheckerTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/spell/context/ContextSpellCheckerTestSpec.scala). diff --git a/docs/en/annotator_entries/DateMatcher.md b/docs/en/annotator_entries/DateMatcher.md index 14302090ec3b..98ab7512943d 100644 --- a/docs/en/annotator_entries/DateMatcher.md +++ b/docs/en/annotator_entries/DateMatcher.md @@ -21,7 +21,7 @@ Reads the following kind of dates: For example `"The 31st of April in the year 2008"` will be converted into `2008/04/31`. -Pretrained pipelines are available for this module, see [Pipelines](https://nlp.johnsnowlabs.com/docs/en/pipelines). +Pretrained pipelines are available for this module, see [Pipelines](https://sparknlp.org/docs/en/pipelines). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/MultiDateMatcherMultiLanguage_en.ipynb) and the [DateMatcherTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/DateMatcherTestSpec.scala). diff --git a/docs/en/annotator_entries/DependencyParser.md b/docs/en/annotator_entries/DependencyParser.md index 12b1e449bee3..b0365bac05a5 100644 --- a/docs/en/annotator_entries/DependencyParser.md +++ b/docs/en/annotator_entries/DependencyParser.md @@ -19,7 +19,7 @@ val dependencyParserApproach = DependencyParserModel.pretrained() .setOutputCol("dependency") ``` The default model is `"dependency_conllu"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/graph-extraction/graph_extraction_intro.ipynb) and the [DependencyParserApproachTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/parser/dep/DependencyParserApproachTestSpec.scala). diff --git a/docs/en/annotator_entries/Doc2Vec.md b/docs/en/annotator_entries/Doc2Vec.md index 579b1626b125..ee91d5cf2e89 100644 --- a/docs/en/annotator_entries/Doc2Vec.md +++ b/docs/en/annotator_entries/Doc2Vec.md @@ -24,7 +24,7 @@ val embeddings = Doc2VecModel.pretrained() ``` The default model is `"doc2vec_gigaword_300"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models). **Sources** : diff --git a/docs/en/annotator_entries/LanguageDetectorDL.md b/docs/en/annotator_entries/LanguageDetectorDL.md index 0168f3926d8c..22242221053b 100644 --- a/docs/en/annotator_entries/LanguageDetectorDL.md +++ b/docs/en/annotator_entries/LanguageDetectorDL.md @@ -19,7 +19,7 @@ Val languageDetector = LanguageDetectorDL.pretrained() ``` The default model is `"ld_wiki_tatoeba_cnn_21"`, default language is `"xx"` (meaning multi-lingual), if no values are provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Language+Detection). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Language+Detection). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/language-detection/Language_Detection_and_Indentification.ipynb) And the [LanguageDetectorDLTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/ld/dl/LanguageDetectorDLTestSpec.scala). diff --git a/docs/en/annotator_entries/Lemmatizer.md b/docs/en/annotator_entries/Lemmatizer.md index 4e0a9fc37236..8933dec26ca8 100644 --- a/docs/en/annotator_entries/Lemmatizer.md +++ b/docs/en/annotator_entries/Lemmatizer.md @@ -4,7 +4,7 @@ Lemmatizer {%- capture model_description -%} Instantiated Model of the Lemmatizer. For usage and examples, please see the documentation of that class. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Lemmatization). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Lemmatization). {%- endcapture -%} {%- capture model_input_anno -%} @@ -53,7 +53,7 @@ Retrieves the significant part of a word. A dictionary of predefined lemmas must The dictionary can be set as a delimited text file. Pretrained models can be loaded with `LemmatizerModel.pretrained`. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Lemmatization). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Lemmatization). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/italian/Train-Lemmatizer-Italian.ipynb). {%- endcapture -%} diff --git a/docs/en/annotator_entries/MultiClassifierDL.md b/docs/en/annotator_entries/MultiClassifierDL.md index 07ece4dfd29b..3a21c50a30c2 100644 --- a/docs/en/annotator_entries/MultiClassifierDL.md +++ b/docs/en/annotator_entries/MultiClassifierDL.md @@ -24,7 +24,7 @@ The default model is `"multiclassifierdl_use_toxic"`, if no name is provided. It [UniversalSentenceEncoder](/docs/en/transformers#universalsentenceencoder) and classifies toxic comments. The data is based on the [Jigsaw Toxic Comment Classification Challenge](https://www.kaggle.com/c/jigsaw-toxic-comment-classification-challenge/overview). -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Text+Classification). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Text+Classification). In machine learning, multi-label classification and the strongly related problem of multi-output classification are variants of the classification problem where multiple labels may be assigned to each instance. Multi-label diff --git a/docs/en/annotator_entries/NerCrf.md b/docs/en/annotator_entries/NerCrf.md index ce6f637409e2..3d7dca81f647 100644 --- a/docs/en/annotator_entries/NerCrf.md +++ b/docs/en/annotator_entries/NerCrf.md @@ -22,7 +22,7 @@ val nerTagger = NerCrfModel.pretrained() .setOutputCol("ner" ``` The default model is `"ner_crf"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Named+Entity+Recognition). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/crf-ner/ner_dl_crf.ipynb). {%- endcapture -%} diff --git a/docs/en/annotator_entries/NerDL.md b/docs/en/annotator_entries/NerDL.md index 670db27d4fce..ded6c656cf5b 100644 --- a/docs/en/annotator_entries/NerDL.md +++ b/docs/en/annotator_entries/NerDL.md @@ -18,8 +18,8 @@ val nerModel = NerDLModel.pretrained() ``` The default model is `"ner_dl"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition). -Additionally, pretrained pipelines are available for this module, see [Pipelines](https://nlp.johnsnowlabs.com/docs/en/pipelines). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Named+Entity+Recognition). +Additionally, pretrained pipelines are available for this module, see [Pipelines](https://sparknlp.org/docs/en/pipelines). Note that some pretrained models require specific types of embeddings, depending on which they were trained on. For example, the default model `"ner_dl"` requires the diff --git a/docs/en/annotator_entries/NorvigSweeting.md b/docs/en/annotator_entries/NorvigSweeting.md index 91a12010cdd9..7a1e45ec192f 100644 --- a/docs/en/annotator_entries/NorvigSweeting.md +++ b/docs/en/annotator_entries/NorvigSweeting.md @@ -21,7 +21,7 @@ val spellChecker = NorvigSweetingModel.pretrained() .setDoubleVariants(true) ``` The default model is `"spellcheck_norvig"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Spell+Check). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Spell+Check). For extended examples of see the [NorvigSweetingTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/spell/norvig/NorvigSweetingTestSpec.scala). diff --git a/docs/en/annotator_entries/Perceptron.md b/docs/en/annotator_entries/Perceptron.md index 6467c4df3732..8a32acf6e7ab 100644 --- a/docs/en/annotator_entries/Perceptron.md +++ b/docs/en/annotator_entries/Perceptron.md @@ -17,8 +17,8 @@ val posTagger = PerceptronModel.pretrained() ``` The default model is `"pos_anc"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Part+of+Speech+Tagging). -Additionally, pretrained pipelines are available for this module, see [Pipelines](https://nlp.johnsnowlabs.com/docs/en/pipelines). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Part+of+Speech+Tagging). +Additionally, pretrained pipelines are available for this module, see [Pipelines](https://sparknlp.org/docs/en/pipelines). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/french/Train-Perceptron-French.ipynb). {%- endcapture -%} diff --git a/docs/en/annotator_entries/RegexMatcher.md b/docs/en/annotator_entries/RegexMatcher.md index 893d0ca790f0..2a5c659938ba 100644 --- a/docs/en/annotator_entries/RegexMatcher.md +++ b/docs/en/annotator_entries/RegexMatcher.md @@ -40,7 +40,7 @@ Rules must be provided by either `setRules` (followed by `setDelimiter`) or an e To use an external file, a dictionary of predefined regular expressions must be provided with `setExternalRules`. The dictionary can be set as a delimited text file. -Pretrained pipelines are available for this module, see [Pipelines](https://nlp.johnsnowlabs.com/docs/en/pipelines). +Pretrained pipelines are available for this module, see [Pipelines](https://sparknlp.org/docs/en/pipelines). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/regex-matcher/Matching_Text_with_RegexMatcher.ipynb) and the [RegexMatcherTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/RegexMatcherTestSpec.scala). diff --git a/docs/en/annotator_entries/SentenceDetectorDL.md b/docs/en/annotator_entries/SentenceDetectorDL.md index b66c495aad8c..4c93b0b0c175 100644 --- a/docs/en/annotator_entries/SentenceDetectorDL.md +++ b/docs/en/annotator_entries/SentenceDetectorDL.md @@ -15,7 +15,7 @@ val sentenceDL = SentenceDetectorDLModel.pretrained() .setOutputCol("sentencesDL") ``` The default model is `"sentence_detector_dl"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Sentence+Detection). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Sentence+Detection). Each extracted sentence can be returned in an Array or exploded to separate rows, if `explodeSentences` is set to `true`. diff --git a/docs/en/annotator_entries/SentimentDL.md b/docs/en/annotator_entries/SentimentDL.md index 166793c57099..2e641375c6e3 100644 --- a/docs/en/annotator_entries/SentimentDL.md +++ b/docs/en/annotator_entries/SentimentDL.md @@ -19,7 +19,7 @@ val sentiment = SentimentDLModel.pretrained() ``` The default model is `"sentimentdl_use_imdb"`, if no name is provided. It is english sentiment analysis trained on the IMDB dataset. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Sentiment+Analysis). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Sentiment+Analysis). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/classification/SentimentDL_train_multiclass_sentiment_classifier.ipynb) and the [SentimentDLTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/SentimentDLTestSpec.scala). diff --git a/docs/en/annotator_entries/StopWordsCleaner.md b/docs/en/annotator_entries/StopWordsCleaner.md index 03e760e5bb5c..3cd3d9426257 100644 --- a/docs/en/annotator_entries/StopWordsCleaner.md +++ b/docs/en/annotator_entries/StopWordsCleaner.md @@ -17,7 +17,7 @@ val stopWords = StopWordsCleaner.pretrained() .setCaseSensitive(false) // will load the default pretrained model `"stopwords_en"`. ``` -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Stop+Words+Removal). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Stop+Words+Removal). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/stop-words/StopWordsCleaner.ipynb) and [StopWordsCleanerTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/StopWordsCleanerTestSpec.scala). @@ -64,7 +64,7 @@ val stopWordsCleaner = new StopWordsCleaner() val stopWordsCleaner = StopWordsCleaner.pretrained() .setInputCols("token") .setOutputCol("cleanTokens") - .setCaseSensitive(false) + .setCaseSensitive(false) ``` {%- endcapture -%} diff --git a/docs/en/annotator_entries/SymmetricDelete.md b/docs/en/annotator_entries/SymmetricDelete.md index 2eb9eb269e21..991636e0a2ac 100644 --- a/docs/en/annotator_entries/SymmetricDelete.md +++ b/docs/en/annotator_entries/SymmetricDelete.md @@ -18,7 +18,7 @@ val spell = SymmetricDeleteModel.pretrained() .setOutputCol("spell") ``` The default model is `"spellcheck_sd"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Spell+Check). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Spell+Check). See [SymmetricDeleteModelTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/spell/symmetric/SymmetricDeleteModelTestSpec.scala) for further reference. {%- endcapture -%} diff --git a/docs/en/annotator_entries/TypedDependencyParser.md b/docs/en/annotator_entries/TypedDependencyParser.md index a260b32df309..94c21b490476 100644 --- a/docs/en/annotator_entries/TypedDependencyParser.md +++ b/docs/en/annotator_entries/TypedDependencyParser.md @@ -19,7 +19,7 @@ val typedDependencyParser = TypedDependencyParserModel.pretrained() .setOutputCol("dependency_type") ``` The default model is `"dependency_typed_conllu"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/graph-extraction/graph_extraction_intro.ipynb) and the [TypedDependencyModelTestSpec](https://github.com/JohnSnowLabs/spark-nlp/tree/master/src/test/scala/com/johnsnowlabs/nlp/annotators/parser/typdep/TypedDependencyModelTestSpec.scala). diff --git a/docs/en/annotator_entries/Word2Vec.md b/docs/en/annotator_entries/Word2Vec.md index 54411cefb44c..e63177ed501a 100644 --- a/docs/en/annotator_entries/Word2Vec.md +++ b/docs/en/annotator_entries/Word2Vec.md @@ -24,7 +24,7 @@ val embeddings = Word2VecModel.pretrained() ``` The default model is `"word2vec_gigaword_300"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models). **Sources** : diff --git a/docs/en/annotator_entries/WordEmbeddings.md b/docs/en/annotator_entries/WordEmbeddings.md index d140159af55f..ee241513a7e1 100644 --- a/docs/en/annotator_entries/WordEmbeddings.md +++ b/docs/en/annotator_entries/WordEmbeddings.md @@ -14,7 +14,7 @@ val embeddings = WordEmbeddingsModel.pretrained() .setOutputCol("embeddings") ``` The default model is `"glove_100d"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Embeddings). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Embeddings). There are also two convenient functions to retrieve the embeddings coverage with respect to the transformed dataset: - `withCoverageColumn(dataset, embeddingsCol, outputCol)`: diff --git a/docs/en/annotator_entries/WordSegmenter.md b/docs/en/annotator_entries/WordSegmenter.md index 6abf58c7f003..e0e2ab771206 100644 --- a/docs/en/annotator_entries/WordSegmenter.md +++ b/docs/en/annotator_entries/WordSegmenter.md @@ -40,7 +40,7 @@ val wordSegmenter = WordSegmenterModel.pretrained() The default model is `"wordseg_pku"`, default language is `"zh"`, if no values are provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models?task=Word+Segmentation). +[Models Hub](https://sparknlp.org/models?task=Word+Segmentation). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/jupyter/annotation/chinese/word_segmentation/words_segmenter_demo.ipynb) and the [WordSegmenterTest](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/WordSegmenterTest.scala). diff --git a/docs/en/best_practices_pretrained_models.md b/docs/en/best_practices_pretrained_models.md deleted file mode 100644 index 685b198d790a..000000000000 --- a/docs/en/best_practices_pretrained_models.md +++ /dev/null @@ -1,304 +0,0 @@ ---- -layout: docs -header: true -title: Best Practices Using Pretrained Models Together -permalink: /docs/en/best_practices_pretrained_models -key: docs-concepts -modify_date: "2021-08-31" -use_language_switcher: "Python-Scala" -show_nav: true -sidebar: - nav: sparknlp-healthcare ---- - -
- -## Entity Resolver Models and Features - -In the table below, all **Entity Resolver** models, their features, appropriate **embeddings**, and AUX info are illustrated. - -For instance, features of `sbertresolve_ner_model_finder` are under **FEATURES** column and it is trained using `sbert_jsl_medium_uncased` embeddings. Auxiliary info can be found under the **AUX** column if it is present. - -*NOTE*: This table is shared just to give you a rough idea about which pretrained models can be used together. You can get better or worse performance by playing out with different models. - -
-
- - -{:.table-model-big.db} -| NO |
MODEL NAME
|
FEATURES
|
EMBEDDINGS
|
LANGUAGE
|
AUX
| -| -- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------ | -------- | -------------------------------------------------------------------------------------------- | -| 1 | [sbertresolve\_ner\_model\_finder](https://nlp.johnsnowlabs.com/2021/11/24/sbertresolve_ner_model_finder_en.html) | • Maps clinical entities (NER) to the most appropriate NER model
• sbert\_jsl\_medium\_uncased embeddings
• Returns a list of pretrained NER models | sbert\_jsl\_medium\_uncased | EN | | -| 2 | [sbiobertresolve\_clinical\_abbreviation\_acronym](https://nlp.johnsnowlabs.com/2022/01/03/sbiobertresolve_clinical_abbreviation_acronym_en.html) | • Maps  clinical abbreviations and acronyms to their meanings
• sbiobert\_base\_cased\_mli embeddings | sbiobert\_base\_cased\_mli | EN | | -| 3 | [sbiobertresolve\_cpt](https://nlp.johnsnowlabs.com/2021/05/16/sbiobertresolve_cpt_en.html) | • CPT Codes
• sbiobert\_base\_cased\_mli embeddings | sbiobert\_base\_cased\_mli | EN | | -| 4 | [sbiobertresolve\_cpt\_augmented](https://nlp.johnsnowlabs.com/2021/05/30/sbiobertresolve_cpt_augmented_en.html) | • Augmented version of sbiobertresolve\_cpt model
• sbiobert\_base\_cased\_mli embeddings | sbiobert\_base\_cased\_mli | EN | | -| 5 | [sbiobertresolve\_cpt\_procedures\_augmented](https://nlp.johnsnowlabs.com/2021/06/15/sbiobertresolve_cpt_procedures_augmented_en.html) | • Procedures to CPT Codes
• sbiobert\_base\_cased\_mli embeddings | sbiobert\_base\_cased\_mli | EN | | -| 6 | [sbiobertresolve\_cpt\_procedures\_measurements\_augmented](https://nlp.johnsnowlabs.com/2021/07/02/sbiobertresolve_cpt_procedures_measurements_augmented_en.html) | • Procedure and Measurements to CPT Codes
• sbiobert\_base\_cased\_mli embeddings | sbiobert\_base\_cased\_mli | EN | | -| 7 | [sbiobertresolve\_hcc\_augmented](https://nlp.johnsnowlabs.com/2021/05/30/sbiobertresolve_hcc_augmented_en.html) | • HCC Codes
• sbiobert\_base\_cased\_mli embeddings | sbiobert\_base\_cased\_mli | EN | | -| 8 | [sbiobertresolve\_icd10cm](https://nlp.johnsnowlabs.com/2020/11/27/sbiobertresolve_icd10cm_en.html) | • ICD-10-CM codes
• sbiobert\_base\_cased\_mli embeddings | sbiobert\_base\_cased\_mli | EN | | -| 9 | [sbertresolve\_icd10gm](https://nlp.johnsnowlabs.com/2021/09/16/sbertresolve_icd10gm_de.html) | • German ICD10-GM Codes
• sent\_bert\_base\_cased (DE) | sent\_bert\_base\_cased (DE) | DE | | -| 10 | [sbiobertresolve\_icd10cm\_augmented](https://nlp.johnsnowlabs.com/2021/10/31/sbiobertresolve_icd10cm_augmented_en.html) | • ICD-10-CM codes
• sbiobert\_base\_cased\_mli embeddings
• Augmented version of sbiobertresolve\_icd10cm model with synonyms, four times richer. | sbiobert\_base\_cased\_mli | EN | | -| 11 | [sbiobertresolve\_icd10cm\_augmented\_billable\_hcc](https://nlp.johnsnowlabs.com/2021/11/01/sbiobertresolve_icd10cm_augmented_billable_hcc_en.html) | • ICD-10-CM codes
• sbiobert\_base\_cased\_mli embeddings
• Provides HCC information of the codes in all\_k\_aux\_labels column
• This column can be divided to get further details: billable status - hcc status - hcc score. | sbiobert\_base\_cased\_mli | EN | HCC and Billable Information | -| 12 | [sbiobertresolve\_icd10cm\_generalised](https://nlp.johnsnowlabs.com/2021/09/29/sbiobertresolve_icd10cm_generalised_en.html) | • ICD-10-CM codes up to 3 Characters (general type of injury or disease)
• sbiobert\_base\_cased\_mli embeddings | sbiobert\_base\_cased\_mli | EN | | -| 13 | [sbiobertresolve\_icd10cm\_slim\_billable\_hcc](https://nlp.johnsnowlabs.com/2021/08/26/sbiobertresolve_icd10cm_slim_billable_hcc_en.html) | • ICD-10-CM codes
• sbiobert\_base\_cased\_mli embeddings
• Slim version (synonyms having low cosine similarity to unnormalized terms are dropped)
• Provides  the official resolution text within the brackets
• Provides  HCC information of the codes in all\_k\_aux\_labels column.
• This column can be divided to get further details: billable status - hcc status - hcc score. | sbiobert\_base\_cased\_mli | EN | HCC and Billable Information | -| 14 | [sbertresolve\_icd10cm\_slim\_billable\_hcc\_med](https://nlp.johnsnowlabs.com/2021/08/26/sbertresolve_icd10cm_slim_billable_hcc_med_en.html) | • ICD-10-CM codes
• sbert\_jsl\_medium\_uncased embeddings
• Slim version (synonyms having low cosine similarity to unnormalized terms are dropped)
• Provides  the official resolution text within the brackets inside the metadata.
• Provides  HCC information of the codes in all\_k\_aux\_labels column
• This column can be divided to get further details: billable status - hcc status - hcc score. | sbert\_jsl\_medium\_uncased | EN | HCC and Billable Information | -| 15 | [sbiobertresolve\_icd10cm\_slim\_normalized](https://nlp.johnsnowlabs.com/2021/05/17/sbiobertresolve_icd10cm_slim_normalized_en.html) | • ICD-10-CM codes
• sbiobert\_base\_cased\_mli embeddings
• Slim version (synonyms having low cosine similarity to unnormalized terms are dropped)
• Provides  the official resolution text within the brackets inside the metadata. | sbiobert\_base\_cased\_mli | EN | | -| 16 | [sbiobertresolve\_icd10pcs](https://nlp.johnsnowlabs.com/2021/05/16/sbiobertresolve_icd10pcs_en.html) | • ICD-10-PCS codes
• sbiobert\_base\_cased\_mli embeddings | sbiobert\_base\_cased\_mli | EN | | -| 17 | [sbiobertresolve\_icdo](https://nlp.johnsnowlabs.com/2021/05/16/sbiobertresolve_icdo_en.html) | • ICD-O Codes (International Classification of Diseases for Oncology code)
• Provides topography codes and morphology codes comprising of Histology and Behavior codes in all\_k\_aux\_labels columns
• sbiobert\_base\_cased\_mli embeddings
• More granularity with respect to body parts | sbiobert\_base\_cased\_mli | EN | Topography codes, Morphology codes comprising of Histology and Behavior codes | -| 18 | [sbiobertresolve\_icdo\_base](https://nlp.johnsnowlabs.com/2021/07/02/sbiobertresolve_icdo_base_en.html) | • ICD-O Codes (International Classification of Diseases for Oncology code)
• Provides topography codes and morphology codes comprising of Histology and Behavior codes in all\_k\_aux\_labels columns
• sbiobert\_base\_cased\_mli embeddings
• More granularity with respect to body parts | sbiobert\_base\_cased\_mli | EN | Topography codes, Morphology codes comprising of Histology and Behavior codes | -| 19 | [sbiobertresolve\_icdo\_augmented](https://nlp.johnsnowlabs.com/2021/06/22/sbiobertresolve_icdo_augmented_en.html) | • ICD-O Codes (International Classification of Diseases for Oncology code)
• Provides topography codes and morphology codes comprising of Histology and Behavior codes in all\_k\_aux\_labels columns
• sbiobert\_base\_cased\_mli embeddings
• More granularity with respect to body parts
• Augmented using the site information coming from ICD10 and synonyms coming from SNOMED vocabularies. | sbiobert\_base\_cased\_mli | EN | Topography codes, Morphology codes comprising of Histology and Behavior codes | -| 20 | [sbiobertresolve\_rxnorm](https://nlp.johnsnowlabs.com/2021/05/16/sbiobertresolve_rxnorm_en.html) | • RxNorm Codes for Drugs/ Ingredients
• sbiobert\_base\_cased\_mli  embeddings | sbiobert\_base\_cased\_mli | EN | | -| 21 | [sbiobertresolve\_rxnorm\_augmented](https://nlp.johnsnowlabs.com/2022/01/03/sbiobertresolve_rxnorm_augmented_en.html) | • RxNorm Codes for Drugs/ Ingredients
• sbiobert\_base\_cased\_mli  embeddings
• Provides concept classes of the drugs in all\_k\_aux\_labels column.
• Augmented version of sbiobertresolve\_rxnorm model | sbiobert\_base\_cased\_mli | EN | Concept classes of the drugs | -| 22 | [sbiobertresolve\_rxnorm\_augmented\_cased](https://nlp.johnsnowlabs.com/2021/12/28/sbiobertresolve_rxnorm_augmented_cased_en.html) | • RxNorm Codes for Drugs/ Ingredients
• sbiobert\_base\_cased\_mli  embeddings
• Provides concept classes of the drugs in all\_k\_aux\_labels column.
• Cased (unlowered) concept names
• Augmented version of sbiobertresolve\_rxnorm model | sbiobert\_base\_cased\_mli | EN | Concept classes of the drugs | -| 23 | [sbiobertresolve\_rxnorm\_disposition](https://nlp.johnsnowlabs.com/2021/08/12/sbiobertresolve_rxnorm_disposition_en.html) | • RxNorm Codes for Drugs/ Ingredients
• sbiobert\_base\_cased\_mli  embeddings
• Provides dispositions of the RxNorm codes in all\_k\_aux\_labels column. | sbiobert\_base\_cased\_mli | EN | Provides dispositions of the RxNorm codes in all\_k\_aux\_labels column. | -| 24 | [sbertresolve\_rxnorm\_disposition](https://nlp.johnsnowlabs.com/2021/08/28/sbertresolve_rxnorm_disposition_en.html) | • Medication entities (like drugs/ingredients) to RxNorm codes
• Provides the dispositions of the codes in all\_k\_aux\_labels column
• sbert\_jsl\_medium\_uncased embeddings (light) | sbert\_jsl\_medium\_uncased | EN | Disposition Information | -| 25 | [sbiobertresolve\_jsl\_rxnorm\_augmented](https://nlp.johnsnowlabs.com/2021/12/27/sbiobertresolve_jsl_rxnorm_augmented_en.html) | • RxNorm Codes for Drugs/ Ingredients
• sbiobert\_jsl\_rxnorm\_cased  embeddings
• Provides concept classes of the drugs in all\_k\_aux\_labels column.
• Augmented version of sbiobertresolve\_rxnorm model | sbiobert\_jsl\_rxnorm\_cased | EN | Concept classes of the drugs | -| 26 | [sbluebertresolve\_rxnorm\_augmented\_uncased](https://nlp.johnsnowlabs.com/2021/12/28/sbluebertresolve_rxnorm_augmented_uncased_en.html) | • RxNorm Codes for Drugs/ Ingredients
• sbluebert\_base\_uncased\_mli  embeddings
• Provides concept classes of the drugs in all\_k\_aux\_labels column.
• Augmented version of sbiobertresolve\_rxnorm model | sbluebert\_base\_uncased\_mli | EN | Concept classes of the drugs | -| 27 | [sbertresolve\_jsl\_rxnorm\_augmented\_med](https://nlp.johnsnowlabs.com/2021/12/28/sbertresolve_jsl_rxnorm_augmented_med_en.html) | • RxNorm Codes for Drugs/ Ingredients
• sbert\_jsl\_medium\_rxnorm\_uncased  embeddings
• Provides concept classes of the drugs in all\_k\_aux\_labels column.
• Augmented version of sbiobertresolve\_rxnorm model | sbert\_jsl\_medium\_rxnorm\_uncased | EN | Concept classes of the drugs | -| 28 | [sbiobertresolve\_rxcui](https://nlp.johnsnowlabs.com/2021/05/16/sbiobertresolve_rxcui_en.html) | • RxCUI Codes
• sbiobert\_base\_cased\_mli  embeddings | sbiobert\_base\_cased\_mli | EN | | -| 29 | [sbluebertresolve\_loinc](https://nlp.johnsnowlabs.com/2021/04/29/sbluebertresolve_loinc_en.html) | • LOINC Codes
• sbluebert\_base\_uncased\_mli  embeddings | sbluebert\_base\_uncased\_mli | EN | | -| 30 | [sbiobertresolve\_loinc](https://nlp.johnsnowlabs.com/2021/05/16/sbiobertresolve_loinc_en.html) | • LOINC Codes
• sbiobert\_base\_cased\_mli  embeddings | sbiobert\_base\_cased\_mli | EN | | -| 31 | [sbiobertresolve\_loinc\_augmented](https://nlp.johnsnowlabs.com/2021/11/23/sbiobertresolve_loinc_augmented_en.html) | • LOINC Codes
• sbiobert\_base\_cased\_mli  embeddings
• Augmented version of sbiobertresolve\_loinc | sbiobert\_base\_cased\_mli | EN | | -| 32 | [sbiobertresolve\_loinc\_cased](https://nlp.johnsnowlabs.com/2021/12/24/sbiobertresolve_loinc_cased_en.html) | • LOINC Codes
• sbiobert\_base\_cased\_mli  embeddings
• Cased (unlowered) concept names
• Augmented version of sbiobertresolve\_loinc | sbiobert\_base\_cased\_mli | EN | | -| 33 | [sbluebertresolve\_loinc\_uncased](https://nlp.johnsnowlabs.com/2021/12/31/sbluebertresolve_loinc_uncased_en.html) | • LOINC Codes
• sbluebert\_base\_uncased\_mli  embeddings
• Uncased (lowercased) concept names
• Augmented version of sbiobertresolve\_loinc | sbluebert\_base\_uncased\_mli | EN | | -| 34 | [sbiobertresolve\_mesh](https://nlp.johnsnowlabs.com/2021/11/14/sbiobertresolve_mesh_en.html) | • MeSH Codes
• sbiobert\_base\_cased\_mli  embeddings | sbiobert\_base\_cased\_mli | EN | | -| 35 | [sbiobertresolve\_ndc](https://nlp.johnsnowlabs.com/2021/11/27/sbiobertresolve_ndc_en.html) | • NDC Codes
• sbiobert\_base\_cased\_mli  embeddings
• If a drug has more than one NDC code, it returns all other codes in the all\_k\_aux\_label column | sbiobert\_base\_cased\_mli | EN | If drugs have multiple NDC code, it returns all other codes in the all\_k\_aux\_label column | -| 36 | [sbiobertresolve\_hcpcs](https://nlp.johnsnowlabs.com/2021/09/29/sbiobertresolve_hcpcs_en.html) | • HCPCS Codes
• sbiobert\_base\_cased\_mli  embeddings | sbiobert\_base\_cased\_mli | EN | Domain Information | -| 37 | [sbiobertresolve\_HPO](https://nlp.johnsnowlabs.com/2021/05/16/sbiobertresolve_HPO_en.html) | • Maps phenotypic abnormalities encountered in human diseases to Human Phenotype Ontology (HPO)
• Provides associated codes from the following vocabularies for each HPO code: - MeSH (Medical Subject Headings)- SNOMED- UMLS (Unified Medical Language System ) - ORPHA (international reference resource for information on rare diseases and orphan drugs) - OMIM (Online Mendelian Inheritance in Man) in all\_k\_aux\_labels column | sbiobert\_base\_cased\_mli | EN | SNOMED, MeSH, UMLS, ORPHA, OMIM Codes | -| 38 | [sbiobertresolve\_snomed\_auxConcepts](https://nlp.johnsnowlabs.com/2021/05/16/sbiobertresolve_snomed_auxConcepts_en.html) | • SNOMED Codes
• sbiobert\_base\_cased\_mli  embeddings
• Capable of extracting Morph Abnormality, Procedure, Substance, Physical Object, and Body Structure concepts of Snomed codes | sbiobert\_base\_cased\_mli | EN | | -| 39 | [sbiobertresolve\_snomed\_auxConcepts\_int](https://nlp.johnsnowlabs.com/2021/05/16/sbiobertresolve_snomed_auxConcepts_int_en.html) | • SNOMED Codes (INT Version)
• sbiobert\_base\_cased\_mli  embeddings
• Capable of extracting Morph Abnormality, Procedure, Substance, Physical Object, and Body Structure concepts of Snomed codes | sbiobert\_base\_cased\_mli | EN | | -| 40 | [sbiobertresolve\_snomed\_bodyStructure](https://nlp.johnsnowlabs.com/2021/07/08/sbiobertresolve_snomed_bodyStructure_en.html) | • SNOMED Codes for body structure
• sbiobert\_base\_cased\_mli  embeddings
• Anatomical structures to body structure SNOMED codes | sbiobert\_base\_cased\_mli | EN | | -| 41 | [sbertresolve\_snomed\_bodyStructure\_med](https://nlp.johnsnowlabs.com/2021/07/08/sbertresolve_snomed_bodyStructure_med_en.html) | • SNOMED Codes for body structure
• sbert\_jsl\_medium\_uncased  embeddings
• Anatomical structures to body structure SNOMED codes | sbert\_jsl\_medium\_uncased | EN | | -| 42 | [sbiobertresolve\_snomed\_drug](https://nlp.johnsnowlabs.com/2022/01/01/sbiobertresolve_snomed_drug_en.html) | • SNOMED Codes (drug version)
• sbiobert\_base\_cased\_mli  embeddings
• Drug entities to SNOMED codes | sbiobert\_base\_cased\_mli | EN | | -| 43 | [sbiobertresolve\_snomed\_findings](https://nlp.johnsnowlabs.com/2021/06/15/sbiobertresolve_snomed_findings_en.html) | • SNOMED Codes (CT version)
• sbiobert\_base\_cased\_mli  embeddings | sbiobert\_base\_cased\_mli | EN | | -| 44 | [sbiobertresolve\_snomed\_findings\_int](https://nlp.johnsnowlabs.com/2021/05/16/sbiobertresolve_snomed_findings_int_en.html) | • SNOMED Codes (INT version)
• sbiobert\_base\_cased\_mli  embeddings | sbiobert\_base\_cased\_mli | EN | | -| 45 | [sbiobertresolve\_snomed\_findings\_aux\_concepts](https://nlp.johnsnowlabs.com/2021/07/14/sbiobertresolve_snomed_findings_aux_concepts_en.html) | • SNOMED Codes
• sbiobert\_base\_cased\_mli  embeddings
• Capable of extracting Morph Abnormality, Procedure, Substance, Physical Object, and Body Structure concepts of Snomed codes
• Both Aux and CT versions together | sbiobert\_base\_cased\_mli | EN | | -| 46 | [sbiobertresolve\_snomed\_procedures\_measurements](https://nlp.johnsnowlabs.com/2021/11/11/sbiobertresolve_snomed_procedures_measurements_en.html) | • SNOMED Codes for procedure and measurements
• sbiobert\_base\_cased\_mli  embeddings | sbiobert\_base\_cased\_mli | EN | | -| 47 | [sbiobertresolve\_clinical\_snomed\_procedures\_measurements](https://nlp.johnsnowlabs.com/2021/11/15/sbiobertresolve_clinical_snomed_procedures_measurements_en.html) | • SNOMED Codes for procedure and measurements
• sbiobert\_base\_cased\_mli  embeddings | sent\_biobert\_clinical\_base\_cased | EN | | -| 48 | [sbertresolve\_snomed\_conditions](https://nlp.johnsnowlabs.com/2021/08/28/sbertresolve_snomed_conditions_en.html) | • Conditions to SNOMED Codes
• sbert\_jsl\_medium\_uncased embeddings | sbert\_jsl\_medium\_uncased | EN | | -| 49 | [robertaresolve\_snomed](https://nlp.johnsnowlabs.com/2021/11/03/robertaresolve_snomed_es.html) | • Spanish SNOMED Codes
• Roberta Clinical Word Embeddings (roberta\_base\_biomedical\_es)
• averaged with SentenceEmbeddings. | roberta\_base\_biomedical\_es | ES | | -| 50 | [sbertresolve\_snomed](https://nlp.johnsnowlabs.com/2021/09/16/sbertresolve_snomed_de.html) | • German SNOMED Codes
• sent\_bert\_base\_cased (DE) | sent\_bert\_base\_cased (DE) | DE | | -| 51 | [sbiobertresolve\_umls\_clinical\_drugs](https://nlp.johnsnowlabs.com/2021/10/11/sbiobertresolve_umls_clinical_drugs_en.html) | • UMLS CUI Codes for Clinical Drugs
• sbiobert\_base\_cased\_mli  embeddings | sbiobert\_base\_cased\_mli | EN | | -| 52 | [sbiobertresolve\_umls\_disease\_syndrome](https://nlp.johnsnowlabs.com/2021/10/11/sbiobertresolve_umls_disease_syndrome_en.html) | • UMLS CUI Codes for Disease and Syndrom entities
• sbiobert\_base\_cased\_mli  embeddings | sbiobert\_base\_cased\_mli | EN | | -| 53 | [sbiobertresolve\_umls\_drug\_substance](https://nlp.johnsnowlabs.com/2021/12/06/sbiobertresolve_umls_drug_substance_en.html) | • UMLS CUI Codes for Drug and Substance entities
• sbiobert\_base\_cased\_mli  embeddings
• Clinical Drugs, Pharmacologic Substance, Antibiotic, Hazardous or Poisonous Substance to UMLS CUI Codes | sbiobert\_base\_cased\_mli | EN | | -| 54 | [sbiobertresolve\_umls\_findings](https://nlp.johnsnowlabs.com/2021/10/03/sbiobertresolve_umls_findings_en.html) | • UMLS CUI Codes for clinical entities and concepts
• sbiobert\_base\_cased\_mli  embeddings
• 4 major categories of UMLS CUI codes | sbiobert\_base\_cased\_mli | EN | | -| 55 | [sbiobertresolve\_umls\_major\_concepts](https://nlp.johnsnowlabs.com/2021/10/03/sbiobertresolve_umls_major_concepts_en.html) | • UMLS CUI Codes for clinical entities and concepts
• sbiobert\_base\_cased\_mli  embeddings
• 4 major categories (Clinical Findings, Medical Devices, Anatomical Structures, and Injuries & Poisoning terms) of UMLS CUI codes | sbiobert\_base\_cased\_mli | EN | | - | - -
-
- -## Entity Resolver Model and NER Model Pairs - -In the table below, you can find **Entity Resolver** models as well as its appropriate **NER** models and labels, that can return optimal results. - -For instance, `sbiobertresolve_hcc_augmented` resolver model must be used with `sbiobert_base_cased_mli` as **embeddings**, `ner_clinical` as **NER model**, `PROBLEM` set in **setWhiteList()**. - -*NOTE*: This table is shared just to give you a rough idea about which pretrained models can be used together. You can get better or worse performance by playing out with different models. - -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ENTITY RESOLVER MODELSENTENCE EMBEDDINGSNER MODELNER MODEL WHITELIST LABELMERGE CHUNKS (ChunkMergeApproach)
sbiobertresolve_HPOsbiobert_base_cased_mliner_human_phenotype_gene_clinicalNo need to set whiteList
sbiobertresolve_cpt_procedures_measurements_augmentedsbiobert_base_cased_mliner_jslProcedureMerge ner_jsl and ner_measurements_clinical model chunks
ner_measurements_clinicalMeasurements
sbiobertresolve_hcc_augmentedsbiobert_base_cased_mliner_clinicalPROBLEM
sbiobertresolve_hcpcssbiobert_base_cased_mliner_jslProcedure
sbiobertresolve_icd10cm_augmented_billable_hccsbiobert_base_cased_mliner_clinicalPROBLEM
sbiobertresolve_icd10cm_generalisedsbiobert_base_cased_mliner_clinicalPROBLEM
sbiobertresolve_icd10pcssbiobert_base_cased_mliner_jslProcedure
sbiobertresolve_icdo_basesbiobert_base_cased_mliner_jslOncological
sbiobertresolve_loinc_augmentedsbiobert_base_cased_mliner_jslTest
BMI
HDL
LDL
Medical_Device
Temperature
Total_Cholesterol
Triglycerides
Blood_Pressure

sbiobertresolve_meshsbiobert_base_cased_mliner_clinicalNo need to set whiteList
sbiobertresolve_rxcuisbiobert_base_cased_mliner_posologyDRUG
sbiobertresolve_rxnorm_augmentedsbiobert_base_cased_mliner_posologyDRUG
sbiobertresolve_rxnorm_dispositionsbiobert_base_cased_mliner_posologyDRUG
sbiobertresolve_snomed_bodyStructuresbiobert_base_cased_mliner_jslDisease_Syndrome_Disorder
External_body_part_or_region
Merge ner_jsl and ner_anatomy_coarse model chunks
ner_anatomy_coarseNo need to set whiteList
sbiobertresolve_snomed_procedures_measurementssbiobert_base_cased_mliner_jslProcedure
Test
BMI
HDL
LDL
Temperature
Total_Cholesterol
Triglycerides
Blood_Pressure
Merge ner_jsl and ner_measurements_clinical model chunks
ner_measurements_clinicalMeasurements
sbiobertresolve_snomed_findingssbiobert_base_cased_mliner_clinicalNo need to set whiteList
sbiobertresolve_umls_disease_syndromesbiobert_base_cased_mliner_jslCerebrovascular_Disease
Communicable_Disease
Diabetes
Disease_Syndrome_Disorder
Heart_Disease
Hyperlipidemia
Hypertension
Injury_or_Poisoning
Kidney_Disease
Obesity
Oncological
Overweight
Psychological_Condition
Symptom
VS_Finding
ImagingFindings
EKG_Findings

sbiobertresolve_umls_clinical_drugssbiobert_base_cased_mliner_posologyDRUG
sbiobertresolve_umls_major_conceptssbiobert_base_cased_mliner_jslCerebrovascular_Disease
Communicable_Disease
Diabetes
Disease_Syndrome_Disorder
Heart_Disease
Hyperlipidemia
Hypertension
Injury_or_Poisoning
Kidney_Disease
Medical-Device
Obesity
Oncological
Overweight
Psychological_Condition
Symptom
VS_Finding
ImagingFindings
EKG_Findings

sbiobertresolve_ndcsbiobert_base_cased_mliner_posology_greedyDRUG
- -
-
- -## Relation Extraction Models and Relation Pairs Table - -In the table below, available **Relation Extraction** models, its labels, optimal **NER model**, and meaningful relation pairs are illustrated. - -For instance, `re_bodypart_proceduretest` RE model returns **(0,1)** labels (binary), works optimally with `ner_jsl` NER model, and outputs relation pairs under the **RE PAIRS** column. - -*NOTE*: This table is shared just to give you a rough idea about which pretrained models can be used together. You can get better or worse performance by playing out with different models. - -
-
- - -{:.table-model-big.db} -| NO | RE MODEL | RE MODEL LABELS | NER MODEL | RE PAIRS | -| -- | -------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| 1 | [re\_bodypart\_proceduretest](https://nlp.johnsnowlabs.com/2021/01/18/re_bodypart_proceduretest_en.html) | 0,1 | ner\_jsl | \["external\_body\_part\_or\_region-test",
 "test-external\_body\_part\_or\_region",
"internal\_organ\_or\_component-test",
"test-internal\_organ\_or\_component",
"external\_body\_part\_or\_region-procedure",
"procedure-external\_body\_part\_or\_region",
"procedure-internal\_organ\_or\_component",
"internal\_organ\_or\_component-procedure"\] | -| 2 | [re\_ade\_clinical](https://nlp.johnsnowlabs.com/2021/07/12/re_ade_clinical_en.html) | 0,1 | ner\_ade\_clinical | \["ade-drug",
 "drug-ade"\] | -| 3 | [redl\_chemprot\_biobert](https://nlp.johnsnowlabs.com/2021/07/24/redl_chemprot_biobert_en.html) | CPR:1, CPR:2, CPR:3, CPR:4, CPR:5, CPR:6, CPR:7, CPR:8, CPR:9, CPR:10 | ner\_chemprot\_clinical | \["No need to set pairs."\] | -| 4 | [re\_human\_phenotype\_gene\_clinical](https://nlp.johnsnowlabs.com/2020/09/30/re_human_phenotype_gene_clinical_en.html) | 0,1 | ner\_human\_phenotype\_gene\_clinical | \["No need to set pairs."\] | -| 5 | [re\_bodypart\_directions](https://nlp.johnsnowlabs.com/2021/01/18/re_bodypart_directions_en.html) | 0,1 | ner\_jsl | \["direction-external\_body\_part\_or\_region",
"external\_body\_part\_or\_region-direction",
"direction-internal\_organ\_or\_component",
"internal\_organ\_or\_component-direction"\] | -| 6 | [re\_bodypart\_problem](https://nlp.johnsnowlabs.com/models?q=re_bodypart_problem&task=Relation+Extraction) | 0,1 | ner\_jsl | \["internal\_organ\_or\_component-cerebrovascular\_disease", "cerebrovascular\_disease-internal\_organ\_or\_component",
"internal\_organ\_or\_component-communicable\_disease", "communicable\_disease-internal\_organ\_or\_component",
"internal\_organ\_or\_component-diabetes", "diabetes-internal\_organ\_or\_component",
"internal\_organ\_or\_component-disease\_syndrome\_disorder", "disease\_syndrome\_disorder-internal\_organ\_or\_component",
"internal\_organ\_or\_component-ekg\_findings", "ekg\_findings-internal\_organ\_or\_component",
"internal\_organ\_or\_component-heart\_disease", "heart\_disease-internal\_organ\_or\_component",
"internal\_organ\_or\_component-hyperlipidemia", "hyperlipidemia-internal\_organ\_or\_component",
"internal\_organ\_or\_component-hypertension", "hypertension-internal\_organ\_or\_component",
"internal\_organ\_or\_component-imagingfindings", "imagingfindings-internal\_organ\_or\_component",
"internal\_organ\_or\_component-injury\_or\_poisoning", "injury\_or\_poisoning-internal\_organ\_or\_component",
"internal\_organ\_or\_component-kidney\_disease", "kidney\_disease-internal\_organ\_or\_component",
"internal\_organ\_or\_component-oncological", "oncological-internal\_organ\_or\_component",
"internal\_organ\_or\_component-psychological\_condition", "psychological\_condition-internal\_organ\_or\_component",
"internal\_organ\_or\_component-symptom", "symptom-internal\_organ\_or\_component",
"internal\_organ\_or\_component-vs\_finding", "vs\_finding-internal\_organ\_or\_component",
"external\_body\_part\_or\_region-communicable\_disease", "communicable\_disease-external\_body\_part\_or\_region",
"external\_body\_part\_or\_region-diabetes", "diabetes-external\_body\_part\_or\_region",
"external\_body\_part\_or\_region-disease\_syndrome\_disorder", "disease\_syndrome\_disorder-external\_body\_part\_or\_region",
"external\_body\_part\_or\_region-hypertension", "hypertension-external\_body\_part\_or\_region",
"external\_body\_part\_or\_region-imagingfindings", "imagingfindings-external\_body\_part\_or\_region",
"external\_body\_part\_or\_region-injury\_or\_poisoning", "injury\_or\_poisoning-external\_body\_part\_or\_region",
"external\_body\_part\_or\_region-obesity", "obesity-external\_body\_part\_or\_region",
"external\_body\_part\_or\_region-oncological", "oncological-external\_body\_part\_or\_region",
"external\_body\_part\_or\_region-overweight", "overweight-external\_body\_part\_or\_region",
"external\_body\_part\_or\_region-symptom", "symptom-external\_body\_part\_or\_region",
"external\_body\_part\_or\_region-vs\_finding", "vs\_finding-external\_body\_part\_or\_region"\] | -| 7 | [re\_drug\_drug\_interaction\_clinical](https://nlp.johnsnowlabs.com/2020/09/03/re_drug_drug_interaction_clinical_en.html) | DDI-advise, DDI-effect, DDI-mechanism, DDI-int, DDI-false | ner\_posology | \["drug-drug"\] | -| 8 | [re\_clinical](https://nlp.johnsnowlabs.com/2020/09/24/re_clinical_en.html) | TrIP, TrWP, TrCP, TrAP, TrAP, TeRP, TeCP, PIP | ner\_clinical | \["No need to set pairs."\] | -| 9 | [re\_temporal\_events\_clinical](https://nlp.johnsnowlabs.com/2020/09/28/re_temporal_events_clinical_en.html) | AFTER, BEFORE, OVERLAP | ner\_events\_clinical | \["No need to set pairs."\] | -| 10 | [re\_temporal\_events\_enriched\_clinical](https://nlp.johnsnowlabs.com/2020/09/28/re_temporal_events_enriched_clinical_en.html) | BEFORE, AFTER, SIMULTANEOUS, BEGUN\_BY, ENDED\_BY, DURING, BEFORE\_OVERLAP | ner\_events\_clinical | \["No need to set pairs."\] | -| 11 | [re\_test\_problem\_finding](https://nlp.johnsnowlabs.com/2021/04/19/re_test_problem_finding_en.html) | 0,1 | ner\_jsl | \["test-cerebrovascular\_disease", "cerebrovascular\_disease-test",
"test-communicable\_disease", "communicable\_disease-test",
"test-diabetes", "diabetes-test",
"test-disease\_syndrome\_disorder", "disease\_syndrome\_disorder-test",
"test-heart\_disease", "heart\_disease-test",
"test-hyperlipidemia", "hyperlipidemia-test",
"test-hypertension", "hypertension-test",
"test-injury\_or\_poisoning", "injury\_or\_poisoning-test",
"test-kidney\_disease", "kidney\_disease-test",
"test-obesity", "obesity-test",
"test-oncological", "oncological-test",
"test-psychological\_condition", "psychological\_condition-test",
"test-symptom", "symptom-test",
"ekg\_findings-disease\_syndrome\_disorder", "disease\_syndrome\_disorder-ekg\_findings",
"ekg\_findings-heart\_disease", "heart\_disease-ekg\_findings",
"ekg\_findings-symptom", "symptom-ekg\_findings",
"imagingfindings-cerebrovascular\_disease", "cerebrovascular\_disease-imagingfindings",
"imagingfindings-communicable\_disease", "communicable\_disease-imagingfindings",
"imagingfindings-disease\_syndrome\_disorder", "disease\_syndrome\_disorder-imagingfindings",
"imagingfindings-heart\_disease", "heart\_disease-imagingfindings",
"imagingfindings-hyperlipidemia", "hyperlipidemia-imagingfindings",
"imagingfindings-hypertension", "hypertension-imagingfindings",
"imagingfindings-injury\_or\_poisoning", "injury\_or\_poisoning-imagingfindings",
"imagingfindings-kidney\_disease", "kidney\_disease-imagingfindings",
"imagingfindings-oncological", "oncological-imagingfindings",
"imagingfindings-psychological\_condition", "psychological\_condition-imagingfindings",
"imagingfindings-symptom", "symptom-imagingfindings",
"vs\_finding-cerebrovascular\_disease", "cerebrovascular\_disease-vs\_finding",
"vs\_finding-communicable\_disease", "communicable\_disease-vs\_finding",
"vs\_finding-diabetes", "diabetes-vs\_finding",
"vs\_finding-disease\_syndrome\_disorder", "disease\_syndrome\_disorder-vs\_finding",
"vs\_finding-heart\_disease", "heart\_disease-vs\_finding",
"vs\_finding-hyperlipidemia", "hyperlipidemia-vs\_finding",
"vs\_finding-hypertension", "hypertension-vs\_finding",
"vs\_finding-injury\_or\_poisoning", "injury\_or\_poisoning-vs\_finding",
"vs\_finding-kidney\_disease", "kidney\_disease-vs\_finding",
"vs\_finding-obesity", "obesity-vs\_finding",
"vs\_finding-oncological", "oncological-vs\_finding",
"vs\_finding-overweight", "overweight-vs\_finding",
"vs\_finding-psychological\_condition", "psychological\_condition-vs\_finding",
"vs\_finding-symptom", "symptom-vs\_finding"\] | -| 12 | [re\_test\_result\_date](https://nlp.johnsnowlabs.com/2021/02/24/re_test_result_date_en.html) | is\_finding\_of, is\_result\_of, is\_date\_of, O | ner\_jsl | \["test-test\_result", "test\_result-test",
"test-date", "date-test",
"test-imagingfindings", "imagingfindings-test",
"test-ekg\_findings", "ekg\_findings-test",
"date-test\_result", "test\_result-date",
"date-imagingfindings", "imagingfindings-date",
"date-ekg\_findings", "ekg\_findings-date"\] | -| 13 | [re\_date\_clinical](https://nlp.johnsnowlabs.com/2021/01/18/re_date_clinical_en.html) | 0,1 | ner\_jsl | \["date-admission\_discharge", "admission\_discharge-date",
"date-alcohol", "alcohol-date",
"date-allergen", "allergen-date",
"date-bmi", "bmi-date",
"date-birth\_entity", "birth\_entity-date",
"date-blood\_pressure", "blood\_pressure-date",
"date-cerebrovascular\_disease", "cerebrovascular\_disease-date",
"date-clinical\_dept", "clinical\_dept-date",
"date-communicable\_disease", "communicable\_disease-date",
"date-death\_entity", "death\_entity-date",
"date-diabetes", "diabetes-date",
"date-diet", "diet-date",
"date-disease\_syndrome\_disorder", "disease\_syndrome\_disorder-date",
"date-drug\_brandname", "drug\_brandname-date",
"date-drug\_ingredient", "drug\_ingredient-date",
"date-ekg\_findings", "ekg\_findings-date",
"date-external\_body\_part\_or\_region", "external\_body\_part\_or\_region-date",
"date-fetus\_newborn", "fetus\_newborn-date",
"date-hdl", "hdl-date",
"date-heart\_disease", "heart\_disease-date",
"date-height", "height-date",
"date-hyperlipidemia", "hyperlipidemia-date",
"date-hypertension", "hypertension-date",
"date-imagingfindings", "imagingfindings-date",
"date-imaging\_technique", "imaging\_technique-date",
"date-injury\_or\_poisoning", "injury\_or\_poisoning-date",
"date-internal\_organ\_or\_component", "internal\_organ\_or\_component-date",
"date-kidney\_disease", "kidney\_disease-date",
"date-ldl", "ldl-date",
"date-modifier", "modifier-date",
"date-o2\_saturation", "o2\_saturation-date",
"date-obesity", "obesity-date",
"date-oncological", "oncological-date",
"date-overweight", "overweight-date",
"date-oxygen\_therapy", "oxygen\_therapy-date",
"date-pregnancy", "pregnancy-date",
"date-procedure", "procedure-date",
"date-psychological\_condition", "psychological\_condition-date",
"date-pulse", "pulse-date",
"date-respiration", "respiration-date",
"date-smoking", "smoking-date",
"date-substance", "substance-date",
"date-substance\_quantity", "substance\_quantity-date",
"date-symptom", "symptom-date",
"date-temperature", "temperature-date",
"date-test", "test-date",
"date-test\_result", "test\_result-date",
"date-total\_cholesterol", "total\_cholesterol-date",
"date-treatment", "treatment-date",
"date-triglycerides", "triglycerides-date",
"date-vs\_finding", "vs\_finding-date",
"date-vaccine", "vaccine-date",
"date-vital\_signs\_header", "vital\_signs\_header-date",
"date-weight", "weight-date",
"time-admission\_discharge", "admission\_discharge-time",
"time-alcohol", "alcohol-time",
"time-allergen", "allergen-time",
"time-bmi", "bmi-time",
"time-birth\_entity", "birth\_entity-time",
"time-blood\_pressure", "blood\_pressure-time",
"time-cerebrovascular\_disease", "cerebrovascular\_disease-time",
"time-clinical\_dept", "clinical\_dept-time",
"time-communicable\_disease", "communicable\_disease-time",
"time-death\_entity", "death\_entity-time",
"time-diabetes", "diabetes-time",
"time-diet", "diet-time",
"time-disease\_syndrome\_disorder", "disease\_syndrome\_disorder-time",
"time-drug\_brandname", "drug\_brandname-time",
"time-drug\_ingredient", "drug\_ingredient-time",
"time-ekg\_findings", "ekg\_findings-time",
"time-external\_body\_part\_or\_region", "external\_body\_part\_or\_region-time",
"time-fetus\_newborn", "fetus\_newborn-time",
"time-hdl", "hdl-time",
"time-heart\_disease", "heart\_disease-time",
"time-height", "height-time",
"time-hyperlipidemia", "hyperlipidemia-time",
"time-hypertension", "hypertension-time",
"time-imagingfindings", "imagingfindings-time",
"time-imaging\_technique", "imaging\_technique-time",
"time-injury\_or\_poisoning", "injury\_or\_poisoning-time",
"time-internal\_organ\_or\_component", "internal\_organ\_or\_component-time",
"time-kidney\_disease", "kidney\_disease-time",
"time-ldl", "ldl-time",
"time-modifier", "modifier-time",
"time-o2\_saturation", "o2\_saturation-time",
"time-obesity", "obesity-time",
"time-oncological", "oncological-time",
"time-overweight", "overweight-time",
"time-oxygen\_therapy", "oxygen\_therapy-time",
"time-pregnancy", "pregnancy-time",
"time-procedure", "procedure-time",
"time-psychological\_condition", "psychological\_condition-time",
"time-pulse", "pulse-time",
"time-respiration", "respiration-time",
"time-smoking", "smoking-time",
"time-substance", "substance-time",
"time-substance\_quantity", "substance\_quantity-time",
"time-symptom", "symptom-time",
"time-temperature", "temperature-time",
"time-test", "test-time",
"time-test\_result", "test\_result-time",
"time-total\_cholesterol", "total\_cholesterol-time",
"time-treatment", "treatment-time",
"time-triglycerides", "triglycerides-time",
"time-vs\_finding", "vs\_finding-time",
"time-vaccine", "vaccine-time",
"time-vital\_signs\_header", "vital\_signs\_header-time",
"time-weight", "weight-time",
"relativedate-admission\_discharge", "admission\_discharge-relativedate",
"relativedate-alcohol", "alcohol-relativedate",
"relativedate-allergen", "allergen-relativedate",
"relativedate-bmi", "bmi-relativedate",
"relativedate-birth\_entity", "birth\_entity-relativedate",
"relativedate-blood\_pressure", "blood\_pressure-relativedate",
"relativedate-cerebrovascular\_disease", "cerebrovascular\_disease-relativedate",
"relativedate-clinical\_dept", "clinical\_dept-relativedate",
"relativedate-communicable\_disease", "communicable\_disease-relativedate",
"relativedate-death\_entity", "death\_entity-relativedate",
"relativedate-diabetes", "diabetes-relativedate",
"relativedate-diet", "diet-relativedate",
"relativedate-disease\_syndrome\_disorder", "disease\_syndrome\_disorder-relativedate",
"relativedate-drug\_brandname", "drug\_brandname-relativedate",
"relativedate-drug\_ingredient", "drug\_ingredient-relativedate",
"relativedate-ekg\_findings", "ekg\_findings-relativedate",
"relativedate-external\_body\_part\_or\_region", "external\_body\_part\_or\_region-relativedate",
"relativedate-fetus\_newborn", "fetus\_newborn-relativedate",
"relativedate-hdl", "hdl-relativedate",
"relativedate-heart\_disease", "heart\_disease-relativedate",
"relativedate-height", "height-relativedate",
"relativedate-hyperlipidemia", "hyperlipidemia-relativedate",
"relativedate-hypertension", "hypertension-relativedate",
"relativedate-imagingfindings", "imagingfindings-relativedate",
"relativedate-imaging\_technique", "imaging\_technique-relativedate",
"relativedate-injury\_or\_poisoning", "injury\_or\_poisoning-relativedate",
"relativedate-internal\_organ\_or\_component", "internal\_organ\_or\_component-relativedate",
"relativedate-kidney\_disease", "kidney\_disease-relativedate",
"relativedate-ldl", "ldl-relativedate",
"relativedate-modifier", "modifier-relativedate",
"relativedate-o2\_saturation", "o2\_saturation-relativedate",
"relativedate-obesity", "obesity-relativedate",
"relativedate-oncological", "oncological-relativedate",
"relativedate-overweight", "overweight-relativedate",
"relativedate-oxygen\_therapy", "oxygen\_therapy-relativedate",
"relativedate-pregnancy", "pregnancy-relativedate",
"relativedate-procedure", "procedure-relativedate",
"relativedate-psychological\_condition", "psychological\_condition-relativedate",
"relativedate-pulse", "pulse-relativedate",
"relativedate-respiration", "respiration-relativedate",
"relativedate-smoking", "smoking-relativedate",
"relativedate-substance", "substance-relativedate",
"relativedate-substance\_quantity", "substance\_quantity-relativedate",
"relativedate-symptom", "symptom-relativedate",
"relativedate-temperature", "temperature-relativedate",
"relativedate-test", "test-relativedate",
"relativedate-test\_result", "test\_result-relativedate",
"relativedate-total\_cholesterol", "total\_cholesterol-relativedate",
"relativedate-treatment", "treatment-relativedate",
"relativedate-triglycerides", "triglycerides-relativedate",
"relativedate-vs\_finding", "vs\_finding-relativedate",
"relativedate-vaccine", "vaccine-relativedate",
"relativedate-vital\_signs\_header", "vital\_signs\_header-relativedate",
"relativedate-weight", "weight-relativedate",
"relativetime-admission\_discharge", "admission\_discharge-relativetime",
"relativetime-alcohol", "alcohol-relativetime",
"relativetime-allergen", "allergen-relativetime",
"relativetime-bmi", "bmi-relativetime",
"relativetime-birth\_entity", "birth\_entity-relativetime",
"relativetime-blood\_pressure", "blood\_pressure-relativetime",
"relativetime-cerebrovascular\_disease", "cerebrovascular\_disease-relativetime",
"relativetime-clinical\_dept", "clinical\_dept-relativetime",
"relativetime-communicable\_disease", "communicable\_disease-relativetime",
"relativetime-death\_entity", "death\_entity-relativetime",
"relativetime-diabetes", "diabetes-relativetime",
"relativetime-diet", "diet-relativetime",
"relativetime-disease\_syndrome\_disorder", "disease\_syndrome\_disorder-relativetime",
"relativetime-drug\_brandname", "drug\_brandname-relativetime",
"relativetime-drug\_ingredient", "drug\_ingredient-relativetime",
"relativetime-ekg\_findings", "ekg\_findings-relativetime",
"relativetime-external\_body\_part\_or\_region", "external\_body\_part\_or\_region-relativetime",
"relativetime-fetus\_newborn", "fetus\_newborn-relativetime",
"relativetime-hdl", "hdl-relativetime",
"relativetime-heart\_disease", "heart\_disease-relativetime",
"relativetime-height", "height-relativetime",
"relativetime-hyperlipidemia", "hyperlipidemia-relativetime",
"relativetime-hypertension", "hypertension-relativetime",
"relativetime-imagingfindings", "imagingfindings-relativetime",
"relativetime-imaging\_technique", "imaging\_technique-relativetime",
"relativetime-injury\_or\_poisoning", "injury\_or\_poisoning-relativetime",
"relativetime-internal\_organ\_or\_component", "internal\_organ\_or\_component-relativetime",
"relativetime-kidney\_disease", "kidney\_disease-relativetime",
"relativetime-ldl", "ldl-relativetime",
"relativetime-modifier", "modifier-relativetime",
"relativetime-o2\_saturation", "o2\_saturation-relativetime",
"relativetime-obesity", "obesity-relativetime",
"relativetime-oncological", "oncological-relativetime",
"relativetime-overweight", "overweight-relativetime",
"relativetime-oxygen\_therapy", "oxygen\_therapy-relativetime",
"relativetime-pregnancy", "pregnancy-relativetime",
"relativetime-procedure", "procedure-relativetime",
"relativetime-psychological\_condition", "psychological\_condition-relativetime",
"relativetime-pulse", "pulse-relativetime",
"relativetime-respiration", "respiration-relativetime",
"relativetime-smoking", "smoking-relativetime",
"relativetime-substance", "substance-relativetime",
"relativetime-substance\_quantity", "substance\_quantity-relativetime",
"relativetime-symptom", "symptom-relativetime",
"relativetime-temperature", "temperature-relativetime",
"relativetime-test", "test-relativetime",
"relativetime-test\_result", "test\_result-relativetime",
"relativetime-total\_cholesterol", "total\_cholesterol-relativetime",
"relativetime-treatment", "treatment-relativetime",
"relativetime-triglycerides", "triglycerides-relativetime",
"relativetime-vs\_finding", "vs\_finding-relativetime",
"relativetime-vaccine", "vaccine-relativetime",
"relativetime-vital\_signs\_header", "vital\_signs\_header-relativetime",
"relativetime-weight", "weight-relativetime"\] | -| 14 | [redl\_drugprot\_biobert ](https://nlp.johnsnowlabs.com/2022/01/05/redl_drugprot_biobert_en.html) | INHIBITOR, DIRECT-REGULATOR, SUBSTRATE, ACTIVATOR, INDIRECT-UPREGULATOR, INDIRECT-DOWNREGULATOR, ANTAGONIST, PRODUCT-OF, PART-OF, AGONIST | ner\_drugprot\_clinical | \["checmical-gene", "chemical-gene\_and\_chemical", "gene\_and\_chemical-gene"\] | -| 15 | [re\_drugprot\_clinical ](https://nlp.johnsnowlabs.com/2022/01/05/re_drugprot_clinical_en.html) | INHIBITOR, DIRECT-REGULATOR, SUBSTRATE, ACTIVATOR, INDIRECT-UPREGULATOR, INDIRECT-DOWNREGULATOR, ANTAGONIST, PRODUCT-OF, PART-OF, AGONIST | ner\_drugprot\_clinical | \["checmical-gene", "chemical-gene\_and\_chemical", "gene\_and\_chemical-gene"\] | -| 16 | [redl\_nihss\_biobert](https://nlp.johnsnowlabs.com/2021/11/16/redl_nihss_biobert_en.html) | Has\_Value, 0 | ner\_nihss | \["No need to set pairs."\] | - -
diff --git a/docs/en/display.md b/docs/en/display.md index b99fbd0e2cdc..4391cdc96077 100644 --- a/docs/en/display.md +++ b/docs/en/display.md @@ -43,7 +43,7 @@ A complete guideline on how to use the Spark NLP Display library is available
DependencyParserApproach you can use the following code. +For visualizing a dependency trees generated with DependencyParserApproach you can use the following code. ```bash diff --git a/docs/en/graph.md b/docs/en/graph.md index aef11382b1a5..cda4287ee4f4 100644 --- a/docs/en/graph.md +++ b/docs/en/graph.md @@ -31,7 +31,7 @@ All of these graphs use an LSTM of size 128 and number of chars 100 In case, your train dataset has a different number of tags, embeddings dimension, number of chars and LSTM size combinations shown in the table above, `NerDLApproach` will raise an **IllegalArgumentException** exception during runtime with the message below: -*Graph [parameter] should be [value]: Could not find a suitable tensorflow graph for embeddings dim: [value] tags: [value] nChars: [value]. Check https://nlp.johnsnowlabs.com/docs/en/graph for instructions to generate the required graph.* +*Graph [parameter] should be [value]: Could not find a suitable tensorflow graph for embeddings dim: [value] tags: [value] nChars: [value]. Check https://sparknlp.org/docs/en/graph for instructions to generate the required graph.* To overcome this exception message we have to follow these steps: diff --git a/docs/en/hardware_acceleration.md b/docs/en/hardware_acceleration.md index 4a93b374e2b5..6ebe1d2c44b4 100644 --- a/docs/en/hardware_acceleration.md +++ b/docs/en/hardware_acceleration.md @@ -28,7 +28,7 @@ The following benchmarks have been done by using a single Dell Server with the f ### GPU -Perhaps the best and the easiest way in Spark NLP to massively improve a DL-based task(s) is to use GPU. Spark NLP comes with a zero-code change feature to run seamlessly on both CPU and GPU by simply enabling GPU via `sparknlp.start(gpu=True)` or using directly the Maven package that is for GPU `spark-nlp-gpu`. ([more details](https://nlp.johnsnowlabs.com/docs/en/install)) +Perhaps the best and the easiest way in Spark NLP to massively improve a DL-based task(s) is to use GPU. Spark NLP comes with a zero-code change feature to run seamlessly on both CPU and GPU by simply enabling GPU via `sparknlp.start(gpu=True)` or using directly the Maven package that is for GPU `spark-nlp-gpu`. ([more details](https://sparknlp.org/docs/en/install)) Since the new Transformer models such as BERT for Word and Sentence embeddings are the most computationally available downstream tasks in Spark NLP, we will show a benchmark for inference (prediction) to compare CPU (without any accelerations) to GPU: diff --git a/docs/en/install.md b/docs/en/install.md index 4de942cecae4..0a777d03bef0 100644 --- a/docs/en/install.md +++ b/docs/en/install.md @@ -756,7 +756,7 @@ Either create a conda env for python 3.6, install *pyspark==3.3.1 spark-nlp nump Spark NLP library and all the pre-trained models/pipelines can be used entirely offline with no access to the Internet. If you are behind a proxy or a firewall with no access to the Maven repository (to download packages) or/and no access to S3 (to automatically download models and pipelines), you can simply follow the instructions to have Spark NLP without any limitations offline: - Instead of using the Maven package, you need to load our Fat JAR -- Instead of using PretrainedPipeline for pretrained pipelines or the `.pretrained()` function to download pretrained models, you will need to manually download your pipeline/model from [Models Hub](https://nlp.johnsnowlabs.com/models), extract it, and load it. +- Instead of using PretrainedPipeline for pretrained pipelines or the `.pretrained()` function to download pretrained models, you will need to manually download your pipeline/model from [Models Hub](https://sparknlp.org/models), extract it, and load it. Example of `SparkSession` with Fat JAR to have Spark NLP offline: diff --git a/docs/en/mlflow.md b/docs/en/mlflow.md index 834bfba7c18e..31156de33bb1 100644 --- a/docs/en/mlflow.md +++ b/docs/en/mlflow.md @@ -62,7 +62,7 @@ We will also need MLFlow (this example was tested with version 1.21.0) `!pip install mlflow` -Finally, make sure you follow the Spark NLP installation, available [here](https://nlp.johnsnowlabs.com/docs/en/install#python) +Finally, make sure you follow the Spark NLP installation, available [here](https://sparknlp.org/docs/en/install#python)
diff --git a/docs/en/nlp_server/nlp_server_versions/release_notes_0_4_0.md b/docs/en/nlp_server/nlp_server_versions/release_notes_0_4_0.md index 73c32e6b0350..e1d987a9ec15 100644 --- a/docs/en/nlp_server/nlp_server_versions/release_notes_0_4_0.md +++ b/docs/en/nlp_server/nlp_server_versions/release_notes_0_4_0.md @@ -17,7 +17,7 @@ sidebar: ### Highlights -- This version of NLP Server offers support for licensed models and annotators. Users can now upload a Spark NLP for Healthcare license file and get access to a wide range of additional [annotators and transformers](https://nlp.johnsnowlabs.com/docs/en/licensed_annotators). A valid license key also gives access to more than [400 state-of-the-art healthcare models](https://nlp.johnsnowlabs.com/models?edition=Spark+NLP+for+Healthcare). Those can be used via easy to learn NLU spells or via API calls. +- This version of NLP Server offers support for licensed models and annotators. Users can now upload a Spark NLP for Healthcare license file and get access to a wide range of additional [annotators and transformers](https://sparknlp.org/docs/en/licensed_annotators). A valid license key also gives access to more than [400 state-of-the-art healthcare models](https://sparknlp.org/models?edition=Spark+NLP+for+Healthcare). Those can be used via easy to learn NLU spells or via API calls. - NLP Server now supports better handling of large amounts of data to quickly analyze via UI by offering support for uploading CSV files. - Support for floating licenses. Users can now take advantage of the floating license flexibility and use those inside of the NLP Server. diff --git a/docs/en/pipelines.md b/docs/en/pipelines.md index a22a7d9051bd..4322c4804d36 100644 --- a/docs/en/pipelines.md +++ b/docs/en/pipelines.md @@ -13,7 +13,7 @@ sidebar: Pretrained Pipelines have moved to Models Hub. Please follow this link for the updated list of all models and pipelines: -[Models Hub](https://nlp.johnsnowlabs.com/modelss) +[Models Hub](https://sparknlp.org/modelss) {:.success} {:.success} diff --git a/docs/en/production-readiness.md b/docs/en/production-readiness.md deleted file mode 100644 index 4b4ad6a3c0a5..000000000000 --- a/docs/en/production-readiness.md +++ /dev/null @@ -1,860 +0,0 @@ ---- -layout: docs -header: true -seotitle: Spark NLP - Production -title: Productionizing Spark NLP -permalink: /docs/en/production-readiness -key: docs-experiment_tracking -modify_date: "2021-11-21" -show_nav: true -sidebar: - nav: sparknlp ---- - -
- -## Productionizing Spark NLP in Databricks -This documentation page will describe how to use Databricks to run Spark NLP Pipelines for production purposes. - -
- -## About Databricks -Databricks is an enterprise software company founded by the creators of Apache Spark. The company has also created MLflow, the Serialization and Experiment tracking library you can use (inside or outside databricks), as described in the section "Experiment Tracking". - -Databricks develops a web-based platform for working with Spark, that provides automated cluster management and IPython-style notebooks. Their infrastructured is provided for training and production purposes, and is integrated in cloud platforms as Azure and AWS. - -Spark NLP is a proud partner of Databricks and we offer a seamless integration with them - see [Install on Databricks](https://www.johnsnowlabs.com/databricks/). All Spark NLP capabilities run in Databricks, including MLFlow serialization and Experiment tracking, what can be used for serving Spark NLP for production purposes. - -
- -## About MLFlow -MLFlow is a serialization and Experiment Tracking platform, which also natively suports Spark NLP. We have a documentation entry about MLFlow in the "Experiment Tracking" section. It's highly recommended that you take a look before moving forward in this document, since we will use some of the concepts explained there. - -We will use MLFlow serialization to serve our Spark NLP models. - -
- -## Creating a cluster in Databricks -As mentioned before, Spark NLP offers a seamless integration with Databricks. To create a cluster, please follow the instructions in [Install on Databricks](https://www.johnsnowlabs.com/databricks/). - -That cluster can be then replicated (cloned) for production purposes later on. - -
- -## Configuring Databricks for Spark NLP and MLFlow -In `Databricks Runtime Version`, select any **Standard** runtime, **not ML** ones.. These ones add their version of MLFlow, and some incompatibilities may arise. For this example, we have used `8.3 (includes Apache Spark 3.1.1, Scala 2.12)` - -The cluster instantiated is prepared to use Spark NLP, but to make it production-ready using MLFlow, we need to add the MLFlow jar, in addition to the Spark NLP jar, as shown in the "Experiment Tracking" section. - -In that case, we did it instantiating adding both jars (`"spark.jars.packages":" com.johnsnowlabs.nlp:spark-nlp_2.12:3.3.2,org.mlflow:mlflow-spark:1.21.0"`) into the SparkSession. However, in Databricks, you don't instantiate programatically a session, but you configure it in the Compute screen, selecting your Spark NLP cluster, and then going to `Configuration -> Advanced Options -> Sparl -> Spark Config`, as shown in the following image: - -![](/assets/images/production-readiness/db1.png) - -In addition to Spark Config, we need to add the Spark NLP and MLFlow libraries to the Cluster. You can do that by going to `Libraries` inside your cluster. Make sure you have `spark-nlp` and `mlflow`. If not, you can install them either using PyPI or Maven artifacts. In the image below you can see the PyPI alternative: - -![](/assets/images/production-readiness/db2.png) - -
- -## Creating a notebook -You are ready to create a notebook in Databricks and attach it to the recently created cluster. To do that, go to `Create - Notebook`, and select the cluster you want in the dropdown above your notebook. Make sure you have selected the cluster with the right Spark NLP + MLFlow configuration. - -To check everything is ok, run the following lines: -1) To check the session is running: -``` -spark -``` -2) To check jars are in the session: -``` -spark.sparkContext.getConf().get('spark.jars.packages') -``` - -You should see the following output from the last line (versions may differ depending on which ones you used to configure your cluster) -``` -Out[2]: 'com.johnsnowlabs.nlp:spark-nlp_2.12:3.3.2,org.mlflow:mlflow-spark:1.21.0' -``` - -
- -## Logging the experiment in Databricks using MLFlow -As explained in the "Experiment Tracking" section, MLFlow can log Spark MLLib / NLP Pipelines as experiments, to carry out runs on them, track versions, etc. - -MLFlow is natively integrated in Databricks, so we can leverage the `mlflow.spark.log_model()` function of the Spark flavour of MLFlow, to start tracking our Spark NLP pipelines. - -Let's first import our libraries... -``` -import mlflow -import sparknlp -from sparknlp.base import * -from sparknlp.annotator import * -from pyspark.ml import Pipeline -import pandas as pd -from sparknlp.training import CoNLL -import pyspark -from pyspark.sql import SparkSession -``` - -Then, create a Lemmatization pipeline: -``` -documentAssembler = DocumentAssembler()\ - .setInputCol("text")\ - .setOutputCol("document") - -tokenizer = Tokenizer() \ - .setInputCols(["document"]) \ - .setOutputCol("token") - -lemmatizer = LemmatizerModel.pretrained() \ - .setInputCols(["token"]) \ - .setOutputCol("prediction") # It's mandatory to call it prediction - -pipeline = Pipeline(stages=[ - documentAssembler, - tokenizer, - lemmatizer - ]) -``` - -IMPORTANT: Last output column of the last component in the pipeline should be called **prediction**. - -Finally, let's log the experiment. In the "Experiment Tracking" section, we used the `pip_requirements` parameter in the `log_model()` function to set the required libraries: - -![](/assets/images/production-readiness/db5.png) - -But we mentioned using conda is also available. Let's use conda in this example: - -``` -conda_env = { - 'channels': ['conda-forge'], - 'dependencies': [ - 'python=3.8.8', - { - "pip": [ - 'pyspark==3.1.1', - 'mlflow==1.21.0', - 'spark-nlp==3.3.2' - ] - } - ], - 'name': 'mlflow-env' -} -``` - -With this conda environment, we are ready to log our pipeline: - -``` -mlflow.spark.log_model(p_model, "lemmatizer", conda_env=conda_env) -``` - -You should see an output similar to this one: -``` -(6) Spark Jobs -(1) MLflow run -Logged 1 run to an experiment in MLflow. Learn more -``` - -
- -## Experiment UI -On the top right corner of your notebook, you will see the Experiment widget, and inside, as shown in the image below. - -![](/assets/images/production-readiness/db3.png) - -You can also access Experiments UI if you switch your environment from "Data Science & Engineering" to "Machine Learning", on the left panel... - -![](/assets/images/production-readiness/db4.png) - - -... or clicking on the "experiment" word in the cell output (it's a link!) - -Once in the experiment UI, you will see the following screen, where your experiments are tracked. - -![](/assets/images/production-readiness/MicrosoftTeams-image.png) - -If you click on the Start Time cell of your experiment, you will reach the registered MLFlow run. - -![](/assets/images/production-readiness/db7.png) - -On the left panel you will see the MLFlow model and some other artifacts, as the `conda.yml` and `pip_requirements.txt` that manage the dependencies of your models. - -On the right panel, you will see two snippets, about how to call to the model for inference internally from Databricks. - -1) Snippet for calling with a Pandas Dataframe: -``` -import mlflow -logged_model = 'runs:/a8cf070528564792bbf66d82211db0a0/lemmatizer' - -# Load model as a Spark UDF. -loaded_model = mlflow.pyfunc.spark_udf(spark, model_uri=logged_model) - -# Predict on a Spark DataFrame. -columns = list(df.columns) -df.withColumn('predictions', loaded_model(*columns)).collect() -``` - -2) Snippet for calling with a Spark Dataframe. We won't include it in this documentation because that snippet does not include SPark NLP specificities. To make it work, the correct snippet should be: -``` -import mlflow -logged_model = 'runs:/a8cf070528564792bbf66d82211db0a0/lemmatizer' - -loaded_model = mlflow.pyfunc.load_model(model_uri=logged_model) - -# Predict on a Spark DataFrame. -res_spark = loaded_model.predict(df_1_spark.rdd) -``` - -IMPORTANT: You will only get the last column (`prediction`) results, which is a list of Rows of Annotation Types. To convert the result list into a Spark Dataframe, use the following schema: - -``` -import pyspark.sql.types as T -import pyspark.sql.functions as f - -annotationType = T.StructType([ - T.StructField('annotatorType', T.StringType(), False), - T.StructField('begin', T.IntegerType(), False), - T.StructField('end', T.IntegerType(), False), - T.StructField('result', T.StringType(), False), - T.StructField('metadata', T.MapType(T.StringType(), T.StringType()), False), - T.StructField('embeddings', T.ArrayType(T.FloatType()), False) - ]) -``` - -And then, get the results (for example, in `res_spark`) and apply the schema: - -``` -spark_res = spark.createDataFrame(res_pandas[0], schema=annotationType) -``` - -
- -## Calling the experiment for production purposes - -### 1. Internally, if the data is in Databricks -If your data lies in Datalake, in Spark Tables, or any other internal storage in Databricks, you just need to use the previous snippets (depending if you want to use Pandas or Spark Dataframes), and you are ready to go. Example for Spark Dataframes: - -![](/assets/images/production-readiness/db8.png) - -Try to use Spark Dataframes by default, since converting from Spark Dataframes into Pandas triggers a `collect()` first, removing all the parallelism capabilities of Spark Dataframes. - -The next logical step is to create Notebooks to be called programatically using the snippets above, running into production clusters. There are two ways to do this: using Batch Inference or using Jobs. - -### 2. Internally, using Batch Inference (with Spark Tables) -If we come back to the experiment ui, you will see, above the Pandas and Spark snippets, a button with the text "Register Model". If you do that, you will register the experiment to be called externally, either for Batch Inference or with a REST API (we will get there!). - -After clicking the Register Model button, you will see a link instead of the button, that will enabled after some seconds. By clicking that link, you will be redirected to the Model Inference screen. - -![](/assets/images/production-readiness/db10.png) - -This new screen has a button on the top right, that says "Use model for inference". By clicking on it, you will see two options: Batch Inference or REST API. Batch inference requires a Spark Table for input, and another for output, and after configuring them, what you will see is an auto-generated notebook to be executed on-demand, programatically or with crons, that is prepared to load the environment and do the inference, getting the text fron the input table and storing the results in the output table. - -This is an example of how the notebook looks like: - -![](/assets/images/production-readiness/db9.png) - -### 3. Externally, with the MLFlow Serve REST API -Instead of chosing a Batch Inference, you can select REST API. This will lead you to another screen, when the model will be loaded for production purposes in an independent cluster. Once deployed, you will be able to: -1) Check the endpoint URL to consume the model externally; -2) Test the endpoint writing a json (in our example, 'text' is our first input col of the pipeline, so it shoud look similar to: -``` -{"text": "This is a test of how the lemmatizer works"} -``` -You can see the response in the same screen. -3) Check what is the Python code or cURL command to do that very same thing programatically. - -![](/assets/images/production-readiness/db12.gif) - -By just using that Python code, you can already consume it for production purposes from any external web app. - -IMPORTANT: As per 26/11/2021, there is an issue being studied by Databricks team, regarding the creation on the fly of job clusters to serve MLFlow models. There is not a way to configure the Spark Session, so the jars are not loaded and the model fails to start. This will be fixed in later versions of Databricks. In the meantime, see a workaround in point 4. - -### 4. Databricks Jobs asynchronous REST API -#### Creating the notebook for the job -And last, but not least, another approach to consume models for production purposes. the Jobs API. - -Databricks has its own API for managing jobs, that allows you to instantiate any notebook or script as a job, run it, stop it, and manage all the life cycle. And you can configure the cluster where this job will run before hand, what prevents having the issue described in point 3. - -To do that: -1) Create a new production cluster, as described before, cloning you training environment but adapting it to your needs for production purposes. Make sure the Spark Config is right, as described at the beginning of this documentation. -2) Create a new notebook. -Always check that the jars are in the session: - -``` -spark.sparkContext.getConf().get('spark.jars.packages') -``` -3) Add the Spark NLP imports. -``` -import mlflow -import sparknlp -from sparknlp.base import * -from sparknlp.annotator import * -from pyspark.ml import Pipeline -import pandas as pd -from sparknlp.training import CoNLL -import pyspark -from pyspark.sql import SparkSession -import pyspark.sql.types as T -import pyspark.sql.functions as f -import json -``` -4) Let's define that an input param called `text` will be sent in the request. Let's get the text from that parameter using `dbutils`. -``` -input = "" -try: - input = dbutils.widgets.get("text") - print('"text" input found: ' + input) -except: - print('Unable to run: dbutils.widgets.get("text"). Setting it to NOT_SET') - input = "NOT_SET" -``` - -Right now, the input text will be in `input` var. You can trigger an exception or set the input to some default value if the parameter does not come in the request. - -5) Let's create a Spark Dataframe with the input -``` -df = spark.createDataFrame([[input]]).toDF('text') -``` - -6) And now, we just need to use the snippet for Spark Dataframe to consume MLFlow models, described above: -``` -import mlflow -logged_model = 'runs:/a8cf070528564792bbf66d82211db0a0/lemmatizer' - -loaded_model = mlflow.pyfunc.load_model(model_uri=logged_model) - -# Predict on a Spark DataFrame. -res_spark = loaded_model.predict(df_1_spark.rdd) - -import pyspark.sql.types as T -import pyspark.sql.functions as f - -annotationType = T.StructType([ - T.StructField('annotatorType', T.StringType(), False), - T.StructField('begin', T.IntegerType(), False), - T.StructField('end', T.IntegerType(), False), - T.StructField('result', T.StringType(), False), - T.StructField('metadata', T.MapType(T.StringType(), T.StringType()), False), - T.StructField('embeddings', T.ArrayType(T.FloatType()), False) - ]) - -spark_res = spark.createDataFrame(res_spark[0], schema=annotationType) -``` - -7) Let's transform our lemmatized tokens from the Dataframe into a list of strings: -``` -l = spark_res.select("result").collect() -txt_results = [x['result'] for x in l] -``` - -8) And finally, let's use again `dbutils` to tell Databricks to spin off the run and return an exit parameter: the list of token strings. - -``` -dbutils.notebook.exit(json.dumps({ - "status": "OK", - "results": txt_results -})) -``` -#### Configuring the job - -Last, but not least. We need to precreate the job, so that we run it from the API. We could do that using the API as well, but we will show you how to do it using the UI. - -On the left panel, go to `Jobs` and then `Create Job`. - -![](/assets/images/production-readiness/db11.png) - -In the jobs screen, you will see you job created. It's not running, it's prepared to be called on demand, programatically or in the interface, with a `text` input param. Let's see how to do that: - -#### Running the job - -1) In the jobs screen, if you click on the job, you will enter the Job screen, and be able to set your `text` input parameter and run the job manually. - -![](/assets/images/production-readiness/db13.png) - -You can use this for testing purpores, but the interesting part is calling it externally, using the Databricks Jobs API. - -2) Using the Databricks Jobs API, from for example, Postman. -``` -POST HTTP request -URL: https://[your_databricks_instance]/api/2.1/jobs/run-now -Authorization: [use Bearer Token. You can get it from Databricks, Settings, User Settings, Generate New Token.] -Body: -{ - "job_id": [job_id, check it in the Jobs screen], - "notebook_params": {"text": "This is an example of how well the lemmatizer works"} -} -``` - -As it's an asynchronous call, it will return the number a number of run, but no results. You will need to query for results using the number of the run and the following url https://[your_databricks_instance]/2.1/jobs/runs/get-output - -You will get a big json, but the most relevant info, the output, will be up to the end: - -``` -{"notebook_output": { - "status": "OK", - "results": ["This", "is", "a", "example", "of", "how", "lemmatizer", "work"] -}} -``` - -The notebook will be prepared in the job, but `idle`, until you call it programatically, what will instantiate a run. - -Check the Jobs [API](https://docs.databricks.com/dev-tools/api/latest/jobs.html) for more information about what you can do with it and how to adapt it to your solutions for production purposes. - -
-
- -## Productionizing Spark NLP using Synapse ML - -![Rest API for John Snow Labs’ Spark NLP](https://cdn-images-1.medium.com/max/2118/1*I_lIG3imZDUAkS8aM4i4yA.png) - -This is the first article of the “Serving Spark NLP via API” series, showcasing how to serve Sparkl NLP using Synapse ML and Fast API. There is another article in this series, that showcases how to serve Spark NLP using [Databricks ](https://databricks.com/)Jobs and [MLFlow ](https://mlflow.org/)Rest APIs, available here. - -
- -## Background - -[Spark NLP](https://towardsdatascience.com/introduction-to-spark-nlp-foundations-and-basic-components-part-i-c83b7629ed59) is a Natural Language Understanding Library built on top of Apache Spark, leveranging Spark MLLib pipelines, that allows you to run NLP models at scale, including SOTA Transformers. Therefore, it’s the only production-ready NLP platform that allows you to go from a simple PoC on 1 driver node, to scale to multiple nodes in a cluster, to process big amounts of data, in a matter of minutes. - -Before starting, if you want to know more about all the advantages of using Spark NLP (as the ability to work at scale on [air-gapped environments](https://nlp.johnsnowlabs.com/docs/en/install#offline), for instance) we recommend you to take a look at the following resources: - -* [John Snow Labs webpage](https://www.johnsnowlabs.com/); - -* The official [technical documentation of Spark NLP](https://nlp.johnsnowlabs.com/); - -* [Spark NLP channel on Medium](https://medium.com/spark-nlp); - -* Also, follow [Veysel Kocaman](https://vkocaman.medium.com/), Data Scientist Lead and Head of Spark NLP for Healthcare, for the latests tips. - -
- -## Motivation - -Spark NLP is server-agnostic, what means it does not come with an integrated API server, but offers a lot of options to serve NLP models using Rest APIs. - -This is first of a series of 2 articles that explain four options you can use to serve Spark NLP models via Rest API: - - 1. **Using Microsoft’s Synapse ML;** - - 2. **Using FastAPI and LightPipelines;** - - 3. Using Databricks Batch API (see Part 2/2 here); - - 4. Using MLFlow serve API in Databricks (see Part 2/2 here); - -All of them have their Strengths and weaknesses, so let’s go over them in detail. - -
- -## Microsoft’s Synapse ML - -![SynapseML serving of Spark NLP pipelines](https://cdn-images-1.medium.com/max/5120/1*kMSVrOL2fTq4AX93lIOPZQ.jpeg) - -[Synapse ML](https://microsoft.github.io/SynapseML/docs/about/) (previously named SparkMML) is, as they state in their official webpage: -> … an ecosystem of tools aimed towards expanding the distributed computing framework [Apache Spark](https://github.com/apache/spark) in several new directions. - -They offer a seamless integratation with OpenCV, LightGBM, Microsoft Cognitive Tool and, the most relevant for our use case, *Spark Serving*, an extension of *Spark Streaming *with an integrated server and a Load Balancer, that can attend multiple requests via Rest API, balance and attend them leveraging the capabilities of a Spark Cluster. That means that you can sin up a server and attend requests that will be distributed transparently over a Spark NLP cluster, in a very effortless way. - -
- -### Strengths - -* *Ready-to-use server* - -* *Includes a Load Balancer* - -* *Distributes the work over a Spark Cluster* - -* *Can be used for both Spark NLP and Spark OCR* - -
- -### Weaknesses - -* *For small use cases that don’t require big cluster processing, other approaches may be faster (as FastAPI using LightPipelines)* - -* *Requires using an external Framework* - -* *This approach does not allow you to customize your endpoints, it uses Synapse ML ones* - -
- -### How to set up Synapse ML to serve Spark NLP pipelines - -We will skip here how to install Spark NLP. If you need to do that, please follow this official webpage about how to install [Spark NLP](https://nlp.johnsnowlabs.com/docs/en/install) or, if [Spark NLP for Healthcare](https://nlp.johnsnowlabs.com/docs/en/licensed_install) if you are using the Healthcare library. - -Synapse ML recommends using at least Spark 3.2, so first of all, let’s configure the Spark Session with the required jars packages(both for Synapse ML and Spark) with the the proper Spark version (take a look at the suffix spark-nlp-spark**32**) and also, very important, add to jars.repository the Maven repository for SynapseML. - - **sparknlpjsl_jar =** "spark-nlp-jsl.jar" - - **from** pyspark.sql **import** SparkSession - - **spark =** *SparkSession***.**builder \ - **.**appName("Spark") \ - **.**master("local[*]") \ - **.***config*("spark.driver.memory", "16G") \ - **.***config*("spark.serializer", "org.apache.spark.serializer.KryoSerializer") \ - **.***config*("spark.kryoserializer.buffer.max", "2000M") \ - **.***config*("**spark.jars.packages**", "com.microsoft.azure:synapseml_2.12:0.9.5,com.johnsnowlabs.nlp:spark-nlp-spark32_2.12:3.4.0")\ - **.***config*("**spark.jars**", sparknlpjsl_jar)\ - **.***config*("**spark.jars.repositories**", "https://mmlspark.azureedge.net/maven")\ - **.**getOrCreate() - -After the initialization, add your required imports (Spark NLP) and add to them the SynapseML-specific ones: - - **import** sparknlp - **import** sparknlp_jsl - ... - - **import** synapse.ml - **from** synapse.ml.io **import** ***** - -Now, let’s create a Spark NLP for Healthcare pipeline to carry out Entity Resolution. - - **document_assembler =** *DocumentAssembler*()\ - **.**setInputCol("text")\ - **.**setOutputCol("document") - - **sentenceDetectorDL =** *SentenceDetectorDLModel***.**pretrained("sentence_detector_dl_healthcare", "en", 'clinical/models') \ - **.**setInputCols(["document"]) \ - **.**setOutputCol("sentence") - - **tokenizer =** *Tokenizer*()\ - **.**setInputCols(["sentence"])\ - **.**setOutputCol("token") - - **word_embeddings =** *WordEmbeddingsModel***.**pretrained("embeddings_clinical", "en", "clinical/models")\ - **.**setInputCols(["sentence", "token"])\ - **.**setOutputCol("word_embeddings") - - **clinical_ner =** *MedicalNerModel***.**pretrained("ner_clinical", "en", "clinical/models") \ - **.**setInputCols(["sentence", "token", "word_embeddings"]) \ - **.**setOutputCol("ner") - - **ner_converter_icd =** *NerConverterInternal*() \ - **.**setInputCols(["sentence", "token", "ner"]) \ - **.**setOutputCol("ner_chunk")\ - **.**setWhiteList(['PROBLEM'])\ - **.**setPreservePosition(**False**) - - **c2doc =** *Chunk2Doc*()\ - **.**setInputCols("ner_chunk")\ - **.**setOutputCol("ner_chunk_doc") - - **sbert_embedder =** *BertSentenceEmbeddings***.**pretrained('sbiobert_base_cased_mli', 'en','clinical/models')\ - **.**setInputCols(["ner_chunk_doc"])\ - **.**setOutputCol("sentence_embeddings")\ - **.**setCaseSensitive(**False**) - - **icd_resolver =** *SentenceEntityResolverModel***.**pretrained("sbiobertresolve_icd10cm_augmented_billable_hcc","en", "clinical/models") \ - **.**setInputCols(["ner_chunk", "sentence_embeddings"]) \ - **.**setOutputCol("icd10cm_code")\ - **.**setDistanceFunction("EUCLIDEAN") - - **resolver_pipeline =** *Pipeline*( - stages **=** [ - document_assembler, - sentenceDetectorDL, - tokenizer, - word_embeddings, - clinical_ner, - ner_converter_icd, - c2doc, - sbert_embedder, - icd_resolver - ]) - -Let’s use a clinical note to test Synapse ML. - - **clinical_note =** """A 28-year-old female with a history of gestational diabetes mellitus diagnosed eight years prior to presentation and subsequent type two diabetes mellitus (T2DM), one prior episode of HTG-induced pancreatitis three years prior to presentation, associated with an acute hepatitis, and obesity with a body mass index (BMI) of 33.5 kg/m2, presented with a one-week history of polyuria, polydipsia, poor appetite, and vomiting. Two weeks prior to presentation, she was treated with a five-day course of amoxicillin for a respiratory tract infection. She was on metformin, glipizide, and dapagliflozin for T2DM and atorvastatin and gemfibrozil for HTG. She had been on dapagliflozin for six months at the time of presentation. Physical examination on presentation was significant for dry oral mucosa; significantly, her abdominal examination was benign with no tenderness, guarding, or rigidity.""" - -Since SynapseML serves a RestAPI, we will be sending JSON requests. Let’s define a simple json with the clinical note: - - **data_json =** {"*text*": clinical_note } - -Now, let’s spin up a server using Synapse ML Spark Serving. It will consist of: - - 1. a streaming server that will receive a json and transform it into a Spark Dataframe - - 2. a call to Spark NLP transform on the dataframe, using the pipeline - - 3. a write operation returning the output also in json format. - - **#1: Creating the streaming server and transforming json to Spark Dataframe** - **serving_input =** spark**.**readStream**.**server() \ - **.**address("localhost", 9999, "benchmark_api") \ - **.**option("name", "benchmark_api") \ - **.**load() \ - **.**parseRequest("benchmark_api", data**.**schema) - - - **#2: Applying transform to the dataframe using our Spark NLP pipeline - serving_output =** resolver_p_model**.**transform(serving_input) \ - **.**makeReply("icd10cm_code") - - - **#3: Returning the response in json format** - **server =** serving_output**.**writeStream \ - **.**server() \ - **.**replyTo("benchmark_api") \ - **.**queryName("benchmark_query") \ - **.**option("checkpointLocation", "file:///tmp/checkpoints-{}"**.**format(uuid**.**uuid1())) \ - **.**start() - -And we are ready to test the endpoint using the requests library. - - **import** requests - res **=** requests**.**post("http://localhost:9999/benchmark_api", data= json**.**dumps(data_json)) - -And last, but not least, let’s check the results: - - **for** i **in** range (0, len(response_list**.**json())): - print(response_list**.**json()[i]['result']) - - >>O2441 O2411 P702 K8520 B159 E669 Z6841 R35 R631 R630 R111... - -
- -## Productionizing Spark NLP using FastAPI and LightPipelines - -![Fast API serving of Spark NLP pipelines](https://cdn-images-1.medium.com/max/2046/1*du7p50wS_fIsaC_lR18qsg.png) - -[FastAPI](https://fastapi.tiangolo.com/) is, as defined by the creators… -> …a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based on standard Python type hints. - -FastAPI provides with a very good latency and response times that, all along witht the good performance of Spark NLP LightPipelines, makes this option the quickest one of the four described in the article. - -Read more about the performance advantages of using *LightPipelines *in [this article](https://medium.com/spark-nlp/spark-nlp-101-lightpipeline-a544e93f20f1) created by John Snow Labs Data Scientist Lead [Veysel Kocaman](https://vkocaman.medium.com/). - -
- -### Strengths - -* *Quickest approach* - -* *Adds flexibility to build and adapt a custom API for your models* - -
- -### **Weaknesses** - -* *LightPipelines are executed sequentially and don’t leverage the distributed computation that Spark Clusters provide.* - -* *As an alternative, you can use FastAPI with default pipelines and a custom LoadBalancer, to distribute the calls over your cluster nodes.* - -You can serve SparkNLP + FastAPI on Docker. To do that, we will create a project with the following files: - -* Dockerfile: Image for creating a SparkNLP + FastAPI Docker image - -* requirements.txt: PIP Requirements - -* entrypoint.sh: Dockerfile entrypoint - -* content/: folder containing FastAPI webapp and SparkNLP keys - -* content/main.py: FastAPI webapp, entrypoint - -* content/sparknlp_keys.json: SparkNLP keys (for Healthcare or OCR) - -
- -### Dockerfile - -The aim of this file is to create a suitable Docker Image with all the OS and Python libraries required to run SparkNLP. Also, adds a entry endpoint for the FastAPI server (see below) and a main folder containing the actual code to run a pipeline on an input text and return the expected values. - - **FROM **ubuntu:18.04 - **RUN **apt-get update && apt-get -y update - - **RUN **apt-get -y update \ - && apt-get install -y wget \ - && apt-get install -y jq \ - && apt-get install -y lsb-release \ - && apt-get install -y openjdk-8-jdk-headless \ - && apt-get install -y build-essential python3-pip \ - && pip3 -q install pip --upgrade \ - && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \ - /usr/share/man /usr/share/doc /usr/share/doc-base - - **ENV **PYSPARK_DRIVER_PYTHON=python3 - **ENV **PYSPARK_PYTHON=python3 - - **ENV **LC_ALL=C.UTF-8 - **ENV **LANG=C.UTF-8 - - **# We expose the FastAPI default port 8515** - **EXPOSE **8515 - - **# Install all Python required libraries** - **COPY **requirements.txt / - **RUN **pip install -r /requirements.txt - - **# Adds the entrypoint to the FastAPI server** - **COPY **entrypoint.sh / - **RUN **chmod +x /entrypoint.sh - - **# In /content folder we will have our main.py and the license files - COPY **./content/ /content/ - **WORKDIR **content/ - - **# We tell Docker to run this file when a container is instantiated** - **ENTRYPOINT **["/entrypoint.sh"] - -
- -### requirements.txt - -This file describes which Python libraries will be required when creating the Docker image to run Spark NLP on FastAPI. - - **pyspark**==3.1.2 - **fastapi**==0.70.1 - **uvicorn**==0.16 - **wget**==3.2 - **pandas**==1.4.1 - -
- -### entrypoint.sh - -This file is the entry point of our Docker container, which carries out the following actions: - - 1. Takes the sparknlp_keys.json and exports its values as environment variables, as required by Spark NLP for Healthcare. - - 2. Installs the proper version of Spark NLP for Healthcare, getting the values from the license keys we have just exported in the previous step. - - 3. Runs the main.py file, that will load the pipelines and create and endpoint to serve them. - - *#!/bin/bash* - - **# Load the license from sparknlp_keys.json and export the values as OS variables - ***export_json* () { - for s in $(echo $values | jq -r 'to_entries|map("\(.key)=\(.value|tostring)")|.[]' $1 ); do - export $s - done - } - - **export_json **"/content/sparknlp_keys.json" - - - **# Installs the proper version of Spark NLP for Healthcare - pip install **--upgrade spark-nlp-jsl==$JSL_VERSION --user --extra-index-url https://pypi.johnsnowlabs.com/$SECRET - - if [ $? != 0 ]; - then - exit 1 - fi - - **# Script to create FastAPI endpoints and preloading pipelines for inference - python3 **/content/main.py - -***content/main.py*: Serving 2 pipelines in a FastAPI endpoint** - -To maximize the performance and minimize the latency, we are going to store two Spark NLP pipelines in memory, so that we load only once (at server start) and we just use them everytime we get an API request to infer. - -To do this, let’s create a **content/main.py** Python script to download the required resources, store them in memory and serve them in Rest API endpoints. - -First, the import section - - **import** uvicorn, json, os - **from** fastapi **import** FastAPI - **from** sparknlp.annotator **import** ***** - **from **sparknlp_jsl.annotator **import ******* - **from** sparknlp.base **import** ***** - **import **sparknlp, sparknlp_jsl - **from **sparknlp.pretrained **import** PretrainedPipeline - - app **=** FastAPI() - pipelines **=** {} - -Then, let’s define the endpoint to serve the pipeline: - - **@app.get("/benchmark/pipeline")** - **async** **def** get_one_sequential_pipeline_result(modelname, text**=**''): - **return** pipelines[modelname]**.**annotate(text) - -Then, the startup event to preload the pipelines and start a Spark NLP Session: - - **@app.on_event("startup")** - **async** **def** startup_event(): - **with** open('/content/sparknlp_keys.json', 'r') **as** f: - license_keys **=** json**.**load(f) - - ** spark =** sparknlp_jsl**.**start(secret**=**license_keys['SECRE - - **pipelines**['ner_profiling_clinical'] **=** *PretrainedPipeline*('ner_profiling_clinical', 'en', 'clinical/models') - - **pipelines**['clinical_deidentification'] **=** *PretrainedPipeline*("clinical_deidentification", "en", "clinical/models") - -Finally, let’s run a uvicorn server, listening on port 8515 to the endpoints declared before: - - **if __name__ == "__main__":** - uvicorn**.**run('main:app', host**=**'0.0.0.0', port**=**8515) - -**content/sparknlp_keys.json** - -For using Spark NLP for Healthcare, please add your Spark NLP for Healthcare license keys to content/sparknlp_keys.jsonDThe file is ready, you only need to fulfill with your own values taken from the json file John Snow Labs has provided you with. - - { - "**AWS_ACCESS_KEY_ID**": "", - "**AWS_SECRET_ACCESS_KEY**": "", - "**SECRET**": "", - "**SPARK_NLP_LICENSE**": "", - "**JSL_VERSION**": "", - "**PUBLIC_VERSION**": "" - } - -And now, let’s run the server! - - 1. **Creating the Docker image and running the container** - - **docker build** -t johnsnowlabs/sparknlp:sparknlp_api . - - **docker run **-v jsl_keys.json:/content/sparknlp_keys.json -p 8515:8515 -it johnsnowlabs/sparknlp:sparknlp_api - -**2. Consuming the API using a Python script** - -Lets import some libraries - - **import** requests - **import** time - -Then, let’s create a clinical note - - **ner_text =** """ - *A 28-year-old female with a history of gestational diabetes mellitus diagnosed eight years prior to presentation and subsequent type two diabetes mellitus ( T2DM ), one prior episode of HTG-induced pancreatitis three years prior to presentation , associated with an acute hepatitis , and obesity with a body mass index ( BMI ) of 33.5 kg/m2 , presented with a one-week history of polyuria , polydipsia , poor appetite , and vomiting. The patient was prescribed 1 capsule of Advil 10 mg for 5 days and magnesium hydroxide 100mg/1ml suspension PO. - He was seen by the endocrinology service and she was discharged on 40 units of insulin glargine at night , 12 units of insulin lispro with meals , and metformin 1000 mg two times a day.* - """ - -We have preloaded and served two Pretrained Pipelines: clinical_deidentification and ner_profiling_clinical . In *modelname*, let’s set which one we want to check - - # Change this line to execute any of the two pipelines - **modelname =** '*clinical_deidentification*' - *# modelname = 'ner_profiling_clinical'* - -And finally, let’s use the requestslibrary to send a test request to the endpoint and get the results. - - **query =** f"?modelname={modelname}&text={ner_text}" - **url =** f"http://localhost:8515/benchmark/pipeline{query}" - - **print**(requests**.**get(url)) - - >> {'sentence': ..., 'masked': ..., 'ner_chunk': ..., } - -You can also prettify the json using the following function with the result of the annotate() function: - - **def explode_annotate(ann_result):** - ''' - Function to convert result object to json - input: raw result - output: processed result dictionary - ''' - result = {} - for column, ann in ann_result[0].items(): - result[column] = [] - for lines in ann: - content = { - "result": lines.result, - "begin": lines.begin, - "end": lines.end, - "metadata": dict(lines.metadata), - } - result[column].append(content) - return result - -
diff --git a/docs/en/quickstart.md b/docs/en/quickstart.md index 04ff8a3de94c..b9492dd1711c 100644 --- a/docs/en/quickstart.md +++ b/docs/en/quickstart.md @@ -31,10 +31,10 @@ Please refer to Spark [documentation](http://spark.apache.org/docs/latest/index. Install Spark NLP in {:.btn-list} -* [Python](https://nlp.johnsnowlabs.com/docs/en/install#python) -* [Scala and Java](https://nlp.johnsnowlabs.com/docs/en/install#scala-and-java) -* [Databricks](https://nlp.johnsnowlabs.com/docs/en/install#databricks-support) -* [EMR](https://nlp.johnsnowlabs.com/docs/en/install#emr-support) +* [Python](https://sparknlp.org/docs/en/install#python) +* [Scala and Java](https://sparknlp.org/docs/en/install#scala-and-java) +* [Databricks](https://sparknlp.org/docs/en/install#databricks-support) +* [EMR](https://sparknlp.org/docs/en/install#emr-support)
diff --git a/docs/en/serving_spark_nlp_via_api_databricks_mlflow.md b/docs/en/serving_spark_nlp_via_api_databricks_mlflow.md index beb3b097c30f..d70332560e9e 100644 --- a/docs/en/serving_spark_nlp_via_api_databricks_mlflow.md +++ b/docs/en/serving_spark_nlp_via_api_databricks_mlflow.md @@ -14,18 +14,18 @@ sidebar:
This is the first article of the “Serving Spark NLP via API” series, showcasing how to serve Spark NLP using [Databricks](https://databricks.com/) Jobs and [MLFlow](https://www.mlflow.org/) Serve APIs. -You can find two more approaches (first, using FastAPI and second, using SynapseML) in the Spark NLP for Healthcare [documentation](https://nlp.johnsnowlabs.com/docs/en/licensed_install) page. +You can find two more approaches (first, using FastAPI and second, using SynapseML) in the Spark NLP for Healthcare [documentation](https://sparknlp.org/docs/en/licensed_install) page.
## Background [Spark NLP](https://towardsdatascience.com/introduction-to-spark-nlp-foundations-and-basic-components-part-i-c83b7629ed59) is a Natural Language Understanding Library built on top of Apache Spark, leveranging Spark MLLib pipelines, that allows you to run NLP models at scale, including SOTA Transformers. Therefore, it’s the only production-ready NLP platform that allows you to go from a simple PoC on 1 driver node, to scale to multiple nodes in a cluster, to process big amounts of data, in a matter of minutes. -Before starting, if you want to know more about all the advantages of using Spark NLP (as the ability to work at scale on [air-gapped environments](https://nlp.johnsnowlabs.com/docs/en/install#offline), for instance) we recommend you to take a look at the following resources: +Before starting, if you want to know more about all the advantages of using Spark NLP (as the ability to work at scale on [air-gapped environments](https://sparknlp.org/docs/en/install#offline), for instance) we recommend you to take a look at the following resources: * [John Snow Labs webpage](https://www.johnsnowlabs.com/); -* The official [technical documentation of Spark NLP](https://nlp.johnsnowlabs.com/); +* The official [technical documentation of Spark NLP](https://sparknlp.org/); * [Spark NLP channel on Medium](https://medium.com/spark-nlp); @@ -448,9 +448,9 @@ Check the Jobs [API](https://docs.databricks.com/dev-tools/api/latest/jobs.html) ## Do you want to know more? -* Check how to productionize Spark NLP in our official documentation [here](https://nlp.johnsnowlabs.com/docs/en/production-readiness) +* Check how to productionize Spark NLP in our official documentation [here](https://sparknlp.org/docs/en/production-readiness) -* Visit [John Snow Labs](https://www.johnsnowlabs.com/) and [Spark NLP Technical Documentation](https://nlp.johnsnowlabs.com/) websites +* Visit [John Snow Labs](https://www.johnsnowlabs.com/) and [Spark NLP Technical Documentation](https://sparknlp.org/) websites * Follow us on Medium: [Spark NLP](https://medium.com/spark-nlp) and [Veysel Kocaman](https://vkocaman.medium.com/) diff --git a/docs/en/spark_nlp.md b/docs/en/spark_nlp.md index b308fc05b843..64c5dfde2a6b 100644 --- a/docs/en/spark_nlp.md +++ b/docs/en/spark_nlp.md @@ -39,10 +39,10 @@ Please refer to Spark [documentation](http://spark.apache.org/docs/latest/index. Install Spark NLP in {:.btn-list} -* [Python](https://nlp.johnsnowlabs.com/docs/en/install#python) -* [Scala and Java](https://nlp.johnsnowlabs.com/docs/en/install#scala-and-java) -* [Databricks](https://nlp.johnsnowlabs.com/docs/en/install#databricks-support) -* [EMR](https://nlp.johnsnowlabs.com/docs/en/install#emr-support) +* [Python](https://sparknlp.org/docs/en/install#python) +* [Scala and Java](https://sparknlp.org/docs/en/install#scala-and-java) +* [Databricks](https://sparknlp.org/docs/en/install#databricks-support) +* [EMR](https://sparknlp.org/docs/en/install#emr-support)
diff --git a/docs/en/training.md b/docs/en/training.md index e675bfb71cc9..e3319e31096e 100644 --- a/docs/en/training.md +++ b/docs/en/training.md @@ -125,7 +125,7 @@ All of these graphs use an LSTM of size 128 and number of chars 100 In case, your train dataset has a different number of tags, embeddings dimension, number of chars and LSTM size combinations shown in the table above, `NerDLApproach` will raise an **IllegalArgumentException** exception during runtime with the message below: -*Graph [parameter] should be [value]: Could not find a suitable tensorflow graph for embeddings dim: [value] tags: [value] nChars: [value]. Check https://nlp.johnsnowlabs.com/docs/en/graph for instructions to generate the required graph.* +*Graph [parameter] should be [value]: Could not find a suitable tensorflow graph for embeddings dim: [value] tags: [value] nChars: [value]. Check https://sparknlp.org/docs/en/graph for instructions to generate the required graph.* To overcome this exception message we have to follow these steps: diff --git a/docs/en/transformer_entries/AlbertForQuestionAnswering.md b/docs/en/transformer_entries/AlbertForQuestionAnswering.md index 1b2e1554f1e0..f4838bc89784 100644 --- a/docs/en/transformer_entries/AlbertForQuestionAnswering.md +++ b/docs/en/transformer_entries/AlbertForQuestionAnswering.md @@ -16,7 +16,7 @@ val spanClassifier = AlbertForQuestionAnswering.pretrained() The default model is `"albert_base_qa_squad2"`, if no name is provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models?task=Question+Answering). +[Models Hub](https://sparknlp.org/models?task=Question+Answering). To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669. and the diff --git a/docs/en/transformer_entries/AlbertForSequenceClassification.md b/docs/en/transformer_entries/AlbertForSequenceClassification.md index ef031ec72162..6ac4dac84cee 100644 --- a/docs/en/transformer_entries/AlbertForSequenceClassification.md +++ b/docs/en/transformer_entries/AlbertForSequenceClassification.md @@ -14,9 +14,9 @@ val sequenceClassifier = AlbertForSequenceClassification.pretrained() ``` The default model is `"albert_base_sequence_classifier_imdb"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Text+Classification). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Text+Classification). -Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are +Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669. and the [AlbertForSequenceClassification](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/AlbertForSequenceClassificationTestSpec.scala). {%- endcapture -%} diff --git a/docs/en/transformer_entries/AlbertForTokenClassification.md b/docs/en/transformer_entries/AlbertForTokenClassification.md index 455ae9e56ee9..4e8775c8f734 100644 --- a/docs/en/transformer_entries/AlbertForTokenClassification.md +++ b/docs/en/transformer_entries/AlbertForTokenClassification.md @@ -14,7 +14,7 @@ val tokenClassifier = AlbertForTokenClassification.pretrained() ``` The default model is `"albert_base_token_classifier_conll03"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Named+Entity+Recognition). and the [AlbertForTokenClassificationTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/AlbertForTokenClassificationTestSpec.scala). Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see [Import Transformers into Spark NLP 🚀](https://github.com/JohnSnowLabs/spark-nlp/discussions/5669). diff --git a/docs/en/transformer_entries/BertEmbeddings.md b/docs/en/transformer_entries/BertEmbeddings.md index 80bfdbaf0067..fa1ae450dab5 100644 --- a/docs/en/transformer_entries/BertEmbeddings.md +++ b/docs/en/transformer_entries/BertEmbeddings.md @@ -14,7 +14,7 @@ val embeddings = BertEmbeddings.pretrained() ``` The default model is `"small_bert_L2_768"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Embeddings). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Embeddings). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/dl-ner/ner_bert.ipynb) and the [BertEmbeddingsTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/embeddings/BertEmbeddingsTestSpec.scala). diff --git a/docs/en/transformer_entries/BertForQuestionAnswering.md b/docs/en/transformer_entries/BertForQuestionAnswering.md index 0b56b48007c7..23f69907cb97 100644 --- a/docs/en/transformer_entries/BertForQuestionAnswering.md +++ b/docs/en/transformer_entries/BertForQuestionAnswering.md @@ -16,7 +16,7 @@ val spanClassifier = BertForQuestionAnswering.pretrained() The default model is `"bert_base_cased_qa_squad2"`, if no name is provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models?task=Question+Answering). +[Models Hub](https://sparknlp.org/models?task=Question+Answering). Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669. and the diff --git a/docs/en/transformer_entries/BertForSequenceClassification.md b/docs/en/transformer_entries/BertForSequenceClassification.md index 8e784e2927b9..e6482c1037b4 100644 --- a/docs/en/transformer_entries/BertForSequenceClassification.md +++ b/docs/en/transformer_entries/BertForSequenceClassification.md @@ -14,9 +14,9 @@ val sequenceClassifier = BertForSequenceClassification.pretrained() ``` The default model is `"bert_base_sequence_classifier_imdb"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Text+Classification). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Text+Classification). -Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are +Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669. and the [BertForSequenceClassificationTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForSequenceClassificationTestSpec.scala). {%- endcapture -%} diff --git a/docs/en/transformer_entries/BertForTokenClassification.md b/docs/en/transformer_entries/BertForTokenClassification.md index a624227b6b61..8b01d73ff230 100644 --- a/docs/en/transformer_entries/BertForTokenClassification.md +++ b/docs/en/transformer_entries/BertForTokenClassification.md @@ -14,7 +14,7 @@ val labels = BertForTokenClassification.pretrained() ``` The default model is `"bert_base_token_classifier_conll03"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Text+Classification). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Text+Classification). and the [BertForTokenClassificationTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForTokenClassificationTestSpec.scala). Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see [Import Transformers into Spark NLP 🚀](https://github.com/JohnSnowLabs/spark-nlp/discussions/5669). diff --git a/docs/en/transformer_entries/BertSentenceEmbeddings.md b/docs/en/transformer_entries/BertSentenceEmbeddings.md index f80909dce44d..469eec7aead8 100644 --- a/docs/en/transformer_entries/BertSentenceEmbeddings.md +++ b/docs/en/transformer_entries/BertSentenceEmbeddings.md @@ -14,7 +14,7 @@ val embeddings = BertSentenceEmbeddings.pretrained() ``` The default model is `"sent_small_bert_L2_768"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Embeddings). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Embeddings). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20BERT%20Sentence.ipynb) and the [BertSentenceEmbeddingsTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/embeddings/BertSentenceEmbeddingsTestSpec.scala). diff --git a/docs/en/transformer_entries/CamemBertEmbeddings.md b/docs/en/transformer_entries/CamemBertEmbeddings.md index cee96f986471..dd059c12ab6b 100644 --- a/docs/en/transformer_entries/CamemBertEmbeddings.md +++ b/docs/en/transformer_entries/CamemBertEmbeddings.md @@ -17,7 +17,7 @@ val embeddings = CamemBertEmbeddings.pretrained() The default model is `"camembert_base"`, if no name is provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models?task=Embeddings). +[Models Hub](https://sparknlp.org/models?task=Embeddings). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/dl-ner/ner_bert.ipynb) diff --git a/docs/en/transformer_entries/CamemBertForSequenceClassification.md b/docs/en/transformer_entries/CamemBertForSequenceClassification.md index 4dfa8b36d180..13eb99395274 100644 --- a/docs/en/transformer_entries/CamemBertForSequenceClassification.md +++ b/docs/en/transformer_entries/CamemBertForSequenceClassification.md @@ -18,7 +18,7 @@ val sequenceClassifier = CamemBertForSequenceClassification.pretrained() The default model is `camembert_base_sequence_classifier_allocine"`, if no name is provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models?task=Text+Classification). +[Models Hub](https://sparknlp.org/models?task=Text+Classification). To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669 and to see more extended diff --git a/docs/en/transformer_entries/CamemBertForTokenClassification.md b/docs/en/transformer_entries/CamemBertForTokenClassification.md index f2552d5f5253..7d8b44643331 100644 --- a/docs/en/transformer_entries/CamemBertForTokenClassification.md +++ b/docs/en/transformer_entries/CamemBertForTokenClassification.md @@ -16,7 +16,7 @@ val tokenClassifier = CamemBertForTokenClassification.pretrained() The default model is `"camembert_base_token_classifier_wikiner"`, if no name is provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition). +[Models Hub](https://sparknlp.org/models?task=Named+Entity+Recognition). and the [CamemBertForTokenClassificationTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/CamemBertForTokenClassificationTestSpec.scala). @@ -48,7 +48,7 @@ tokenClassifier = CamemBertForTokenClassification.pretrained() \\ .setInputCols(["token", "document"]) \\ .setOutputCol("label") \\ .setCaseSensitive(True) - + pipeline = Pipeline().setStages([ documentAssembler, tokenizer, diff --git a/docs/en/transformer_entries/ConvNextForImageClassification.md b/docs/en/transformer_entries/ConvNextForImageClassification.md index 302918971619..9e664a7bb4ca 100644 --- a/docs/en/transformer_entries/ConvNextForImageClassification.md +++ b/docs/en/transformer_entries/ConvNextForImageClassification.md @@ -21,7 +21,7 @@ val imageClassifier = ConvNextForImageClassification.pretrained() The default model is `"image_classifier_convnext_tiny_224_local"`, if no name is provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models?task=Image+Classification). +[Models Hub](https://sparknlp.org/models?task=Image+Classification). Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see diff --git a/docs/en/transformer_entries/DeBertaForQuestionAnswering.md b/docs/en/transformer_entries/DeBertaForQuestionAnswering.md index 60918ac62507..b6ac208d4272 100644 --- a/docs/en/transformer_entries/DeBertaForQuestionAnswering.md +++ b/docs/en/transformer_entries/DeBertaForQuestionAnswering.md @@ -16,7 +16,7 @@ val spanClassifier = DeBertaForQuestionAnswering.pretrained() The default model is `"deverta_v3_xsmall_qa_squad2"`, if no name is provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models?task=Question+Answering). +[Models Hub](https://sparknlp.org/models?task=Question+Answering). To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669. and the diff --git a/docs/en/transformer_entries/DistilBertEmbeddings.md b/docs/en/transformer_entries/DistilBertEmbeddings.md index 38489c00df33..8826c621fb88 100644 --- a/docs/en/transformer_entries/DistilBertEmbeddings.md +++ b/docs/en/transformer_entries/DistilBertEmbeddings.md @@ -13,7 +13,7 @@ val embeddings = DistilBertEmbeddings.pretrained() .setOutputCol("embeddings") ``` The default model is `"distilbert_base_cased"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Embeddings). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Embeddings). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20DistilBERT.ipynb) and the [DistilBertEmbeddingsTestSpec](https://github.com/JohnSnowLabs/spark-nlp/tree/master/src/test/scala/com/johnsnowlabs/nlp/embeddings/DistilBertEmbeddingsTestSpec.scala). diff --git a/docs/en/transformer_entries/DistilBertForQuestionAnswering.md b/docs/en/transformer_entries/DistilBertForQuestionAnswering.md index 123b549aa991..ee2e0a2a54fd 100644 --- a/docs/en/transformer_entries/DistilBertForQuestionAnswering.md +++ b/docs/en/transformer_entries/DistilBertForQuestionAnswering.md @@ -16,7 +16,7 @@ val spanClassifier = DistilBertForQuestionAnswering.pretrained() The default model is `"distilbert_base_cased_qa_squad2"`, if no name is provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models?task=Question+Answering). +[Models Hub](https://sparknlp.org/models?task=Question+Answering). To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669. and the diff --git a/docs/en/transformer_entries/DistilBertForSequenceClassification.md b/docs/en/transformer_entries/DistilBertForSequenceClassification.md index 43df11c51565..bc56ccd3a61c 100644 --- a/docs/en/transformer_entries/DistilBertForSequenceClassification.md +++ b/docs/en/transformer_entries/DistilBertForSequenceClassification.md @@ -14,9 +14,9 @@ val sequenceClassifier = DistilBertForSequenceClassification.pretrained() ``` The default model is `"distilbert_base_sequence_classifier_imdb"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Text+Classification). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Text+Classification). -Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are +Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669. and the [DistilBertForSequenceClassificationTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DistilBertForSequenceClassificationTestSpec.scala). {%- endcapture -%} diff --git a/docs/en/transformer_entries/DistilBertForTokenClassification.md b/docs/en/transformer_entries/DistilBertForTokenClassification.md index cfd7f53f78cb..4d0c3a829fa0 100644 --- a/docs/en/transformer_entries/DistilBertForTokenClassification.md +++ b/docs/en/transformer_entries/DistilBertForTokenClassification.md @@ -14,7 +14,7 @@ val labels = DistilBertForTokenClassification.pretrained() ``` The default model is `"distilbert_base_token_classifier_conll03"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Text+Classification). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Text+Classification). and the [DistilBertForTokenClassificationTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DistilBertForTokenClassificationTestSpec.scala). Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see [Import Transformers into Spark NLP 🚀](https://github.com/JohnSnowLabs/spark-nlp/discussions/5669). diff --git a/docs/en/transformer_entries/ElmoEmbeddings.md b/docs/en/transformer_entries/ElmoEmbeddings.md index cc623fd0506f..c4da92c9811b 100644 --- a/docs/en/transformer_entries/ElmoEmbeddings.md +++ b/docs/en/transformer_entries/ElmoEmbeddings.md @@ -21,7 +21,7 @@ elmo = ElmoEmbeddings.load("/elmo_en_2.4.0_2.4_1580488815299") \ ``` The default model is `"elmo"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Embeddings). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Embeddings). The pooling layer can be set with `setPoolingLayer` to the following values: - `"word_emb"`: the character-based word representations with shape `[batch_size, max_length, 512]`. diff --git a/docs/en/transformer_entries/GPT2Transformer.md b/docs/en/transformer_entries/GPT2Transformer.md index a11cdae5e4c3..90e5d9af7102 100644 --- a/docs/en/transformer_entries/GPT2Transformer.md +++ b/docs/en/transformer_entries/GPT2Transformer.md @@ -26,7 +26,7 @@ val gpt2 = GPT2Transformer.pretrained() .setOutputCol("generation") ``` The default model is `"gpt2"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?q=gpt2). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?q=gpt2). For extended examples of usage, see [GPT2TestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/GPT2TestSpec.scala). diff --git a/docs/en/transformer_entries/HubertForCTC.md b/docs/en/transformer_entries/HubertForCTC.md index ff45f5235737..839afd97935a 100644 --- a/docs/en/transformer_entries/HubertForCTC.md +++ b/docs/en/transformer_entries/HubertForCTC.md @@ -23,7 +23,7 @@ val speechToText = HubertForCTC.pretrained() The default model is `"asr_hubert_large_ls960"`, if no name is provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models). +[Models Hub](https://sparknlp.org/models). To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669 and to see more extended diff --git a/docs/en/transformer_entries/LongformerEmbeddings.md b/docs/en/transformer_entries/LongformerEmbeddings.md index 64f183f98e9d..1e0043dce029 100644 --- a/docs/en/transformer_entries/LongformerEmbeddings.md +++ b/docs/en/transformer_entries/LongformerEmbeddings.md @@ -14,7 +14,7 @@ val embeddings = LongformerEmbeddings.pretrained() .setOutputCol("embeddings") ``` The default model is `"longformer_base_4096"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Embeddings). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Embeddings). For some examples of usage, see [LongformerEmbeddingsTestSpec](https://github.com/JohnSnowLabs/spark-nlp/tree/master/src/test/scala/com/johnsnowlabs/nlp/embeddings/LongformerEmbeddingsTestSpec.scala). Models from the HuggingFace 🤗 Transformers library are compatible with Spark NLP 🚀. To see which models are compatible and how to import them see [Import Transformers into Spark NLP 🚀](https://github.com/JohnSnowLabs/spark-nlp/discussions/5669). diff --git a/docs/en/transformer_entries/LongformerForQuestionAnswering.md b/docs/en/transformer_entries/LongformerForQuestionAnswering.md index a3733e2cd250..69ac0299360a 100644 --- a/docs/en/transformer_entries/LongformerForQuestionAnswering.md +++ b/docs/en/transformer_entries/LongformerForQuestionAnswering.md @@ -16,7 +16,7 @@ val spanClassifier = LongformerForQuestionAnswering.pretrained() The default model is `"longformer_base_base_qa_squad2"`, if no name is provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models?task=Question+Answering). +[Models Hub](https://sparknlp.org/models?task=Question+Answering). To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669. and the diff --git a/docs/en/transformer_entries/LongformerForSequenceClassification.md b/docs/en/transformer_entries/LongformerForSequenceClassification.md index e0bea36d25a6..dedfe06997a4 100644 --- a/docs/en/transformer_entries/LongformerForSequenceClassification.md +++ b/docs/en/transformer_entries/LongformerForSequenceClassification.md @@ -14,9 +14,9 @@ val sequenceClassifier = LongformerForSequenceClassification.pretrained() ``` The default model is `"longformer_base_sequence_classifier_imdb"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Text+Classification). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Text+Classification). -Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are +Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669. and the [LongformerForSequenceClassification](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/LongformerForSequenceClassificationTestSpec.scala). {%- endcapture -%} diff --git a/docs/en/transformer_entries/LongformerForTokenClassification.md b/docs/en/transformer_entries/LongformerForTokenClassification.md index e39bad248a61..db659606521a 100644 --- a/docs/en/transformer_entries/LongformerForTokenClassification.md +++ b/docs/en/transformer_entries/LongformerForTokenClassification.md @@ -14,7 +14,7 @@ val tokenClassifier = LongformerForTokenClassification.pretrained() ``` The default model is `"longformer_base_token_classifier_conll03"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Named+Entity+Recognition). and the [LongformerForTokenClassificationTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/LongformerForTokenClassificationTestSpec.scala). Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see [Import Transformers into Spark NLP 🚀](https://github.com/JohnSnowLabs/spark-nlp/discussions/5669). diff --git a/docs/en/transformer_entries/MarianTransformer.md b/docs/en/transformer_entries/MarianTransformer.md index 95a869f8bf4a..cee944479a29 100644 --- a/docs/en/transformer_entries/MarianTransformer.md +++ b/docs/en/transformer_entries/MarianTransformer.md @@ -20,7 +20,7 @@ val marian = MarianTransformer.pretrained() .setOutputCol("translation") ``` The default model is `"opus_mt_en_fr"`, default language is `"xx"` (meaning multi-lingual), if no values are provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Translation). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Translation). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/multilingual/Translation_Marian.ipynb) and the [MarianTransformerTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/MarianTransformerTestSpec.scala). diff --git a/docs/en/transformer_entries/RoBertaEmbeddings.md b/docs/en/transformer_entries/RoBertaEmbeddings.md index 370cb9ba07bf..fc92f5d5d1db 100644 --- a/docs/en/transformer_entries/RoBertaEmbeddings.md +++ b/docs/en/transformer_entries/RoBertaEmbeddings.md @@ -16,7 +16,7 @@ val embeddings = RoBertaEmbeddings.pretrained() .setOutputCol("embeddings") ``` The default model is `"roberta_base"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Embeddings). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Embeddings). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20RoBERTa.ipynb) and the [RoBertaEmbeddingsTestSpec](https://github.com/JohnSnowLabs/spark-nlp/tree/master/src/test/scala/com/johnsnowlabs/nlp/embeddings/RoBertaEmbeddingsTestSpec.scala). diff --git a/docs/en/transformer_entries/RoBertaForQuestionAnswering.md b/docs/en/transformer_entries/RoBertaForQuestionAnswering.md index 10d80050e8b7..89fabab31b74 100644 --- a/docs/en/transformer_entries/RoBertaForQuestionAnswering.md +++ b/docs/en/transformer_entries/RoBertaForQuestionAnswering.md @@ -16,7 +16,7 @@ val spanClassifier = RoBertaForQuestionAnswering.pretrained() The default model is `"roberta_base_qa_squad2"`, if no name is provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models?task=Question+Answering). +[Models Hub](https://sparknlp.org/models?task=Question+Answering). To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669. and the diff --git a/docs/en/transformer_entries/RoBertaForSequenceClassification.md b/docs/en/transformer_entries/RoBertaForSequenceClassification.md index 5f69bdd6303e..8d353d9e82b4 100644 --- a/docs/en/transformer_entries/RoBertaForSequenceClassification.md +++ b/docs/en/transformer_entries/RoBertaForSequenceClassification.md @@ -14,7 +14,7 @@ val sequenceClassifier = RoBertaForSequenceClassification.pretrained() ``` The default model is `"roberta_base_sequence_classifier_imdb"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Text+Classification). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Text+Classification). Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669. diff --git a/docs/en/transformer_entries/RoBertaForTokenClassification.md b/docs/en/transformer_entries/RoBertaForTokenClassification.md index 0767d598e5d3..55b04cf0cbe9 100644 --- a/docs/en/transformer_entries/RoBertaForTokenClassification.md +++ b/docs/en/transformer_entries/RoBertaForTokenClassification.md @@ -14,7 +14,7 @@ val tokenClassifier = RoBertaForTokenClassification.pretrained() ``` The default model is `"roberta_base_token_classifier_conll03"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Named+Entity+Recognition). and the [RoBertaForTokenClassificationTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/RoBertaForTokenClassificationTestSpec.scala). Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see [Import Transformers into Spark NLP 🚀](https://github.com/JohnSnowLabs/spark-nlp/discussions/5669). diff --git a/docs/en/transformer_entries/RoBertaSentenceEmbeddings.md b/docs/en/transformer_entries/RoBertaSentenceEmbeddings.md index d7c635939b89..5983b6be14f3 100644 --- a/docs/en/transformer_entries/RoBertaSentenceEmbeddings.md +++ b/docs/en/transformer_entries/RoBertaSentenceEmbeddings.md @@ -16,7 +16,7 @@ val embeddings = RoBertaSentenceEmbeddings.pretrained() .setOutputCol("sentence_embeddings") ``` The default model is `"sent_roberta_base"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Embeddings). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Embeddings). Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see [Import Transformers into Spark NLP 🚀](https://github.com/JohnSnowLabs/spark-nlp/discussions/5669). diff --git a/docs/en/transformer_entries/SpanBertCoref.md b/docs/en/transformer_entries/SpanBertCoref.md index 921161e400a6..888e444cca2c 100644 --- a/docs/en/transformer_entries/SpanBertCoref.md +++ b/docs/en/transformer_entries/SpanBertCoref.md @@ -18,7 +18,7 @@ val dependencyParserApproach = SpanBertCorefModel.pretrained() .setOutputCol("corefs") ``` The default model is `"spanbert_base_coref"`, if no name is provided. For available pretrained -models please see the [Models Hub](https://nlp.johnsnowlabs.com/models). +models please see the [Models Hub](https://sparknlp.org/models). **References:** https://github.com/mandarjoshi90/coref diff --git a/docs/en/transformer_entries/SwinForImageClassification.md b/docs/en/transformer_entries/SwinForImageClassification.md index b0c12703e85b..23e09bf5b20d 100644 --- a/docs/en/transformer_entries/SwinForImageClassification.md +++ b/docs/en/transformer_entries/SwinForImageClassification.md @@ -25,7 +25,7 @@ The default model is `"image_classifier_swin_base_patch_4_window_7_224"`, if no provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models?task=Image+Classification). +[Models Hub](https://sparknlp.org/models?task=Image+Classification). Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669 and to see more extended diff --git a/docs/en/transformer_entries/T5Transformer.md b/docs/en/transformer_entries/T5Transformer.md index f3049285ea45..1b2e0f9438fe 100644 --- a/docs/en/transformer_entries/T5Transformer.md +++ b/docs/en/transformer_entries/T5Transformer.md @@ -20,7 +20,7 @@ val t5 = T5Transformer.pretrained() .setOutputCol("summaries") ``` The default model is `"t5_small"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?q=t5). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?q=t5). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/question-answering/Question_Answering_and_Summarization_with_T5.ipynb) and the [T5TestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/T5TestSpec.scala). diff --git a/docs/en/transformer_entries/TapasForQuestionAnswering.md b/docs/en/transformer_entries/TapasForQuestionAnswering.md index d33a344e35d6..1c16dbf550f1 100644 --- a/docs/en/transformer_entries/TapasForQuestionAnswering.md +++ b/docs/en/transformer_entries/TapasForQuestionAnswering.md @@ -17,7 +17,7 @@ val tapas = TapasForQuestionAnswering.pretrained() The default model is `"table_qa_tapas_base_finetuned_wtq"`, if no name is provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models?task=Table+Question+Understanding). +[Models Hub](https://sparknlp.org/models?task=Table+Question+Understanding). {%- endcapture -%} {%- capture input_anno -%} diff --git a/docs/en/transformer_entries/UniversalSentenceEncoder.md b/docs/en/transformer_entries/UniversalSentenceEncoder.md index b1ffd8e0b678..ff45d0c48f15 100644 --- a/docs/en/transformer_entries/UniversalSentenceEncoder.md +++ b/docs/en/transformer_entries/UniversalSentenceEncoder.md @@ -12,7 +12,7 @@ val useEmbeddings = UniversalSentenceEncoder.pretrained() .setOutputCol("sentence_embeddings") ``` The default model is `"tfhub_use"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Embeddings). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Embeddings). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/classification/ClassifierDL_Train_multi_class_news_category_classifier.ipynb) and the [UniversalSentenceEncoderTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/embeddings/UniversalSentenceEncoderTestSpec.scala). diff --git a/docs/en/transformer_entries/ViTForImageClassification.md b/docs/en/transformer_entries/ViTForImageClassification.md index 3998163d481d..f482e2064ba6 100644 --- a/docs/en/transformer_entries/ViTForImageClassification.md +++ b/docs/en/transformer_entries/ViTForImageClassification.md @@ -17,7 +17,7 @@ val imageClassifier = ViTForImageClassification.pretrained() The default model is `"image_classifier_vit_base_patch16_224"`, if no name is provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models?task=Image+Classification). +[Models Hub](https://sparknlp.org/models?task=Image+Classification). Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669 and to see more extended diff --git a/docs/en/transformer_entries/Wav2Vec2ForCTC.md b/docs/en/transformer_entries/Wav2Vec2ForCTC.md index 31fa145e5b5e..f4b1e4d8f1b1 100644 --- a/docs/en/transformer_entries/Wav2Vec2ForCTC.md +++ b/docs/en/transformer_entries/Wav2Vec2ForCTC.md @@ -22,7 +22,7 @@ val speechToText = Wav2Vec2ForCTC.pretrained() The default model is `"asr_wav2vec2_base_960h"`, if no name is provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models). +[Models Hub](https://sparknlp.org/models). To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669 and to see more extended diff --git a/docs/en/transformer_entries/XlmRoBertaEmbeddings.md b/docs/en/transformer_entries/XlmRoBertaEmbeddings.md index a88d2593c92a..ff80964a345d 100644 --- a/docs/en/transformer_entries/XlmRoBertaEmbeddings.md +++ b/docs/en/transformer_entries/XlmRoBertaEmbeddings.md @@ -16,7 +16,7 @@ val embeddings = XlmRoBertaEmbeddings.pretrained() .setOutputCol("embeddings") ``` The default model is `"xlm_roberta_base"`, default language is `"xx"` (meaning multi-lingual), if no values are provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Embeddings). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Embeddings). For extended examples of usage, see the [Examples](https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20XLM-RoBERTa.ipynb) and the [XlmRoBertaEmbeddingsTestSpec](https://github.com/JohnSnowLabs/spark-nlp/tree/master/src/test/scala/com/johnsnowlabs/nlp/embeddings/XlmRoBertaEmbeddingsTestSpec.scala). diff --git a/docs/en/transformer_entries/XlmRoBertaForQuestionAnswering.md b/docs/en/transformer_entries/XlmRoBertaForQuestionAnswering.md index 6920b51fb201..1d6382a8a740 100644 --- a/docs/en/transformer_entries/XlmRoBertaForQuestionAnswering.md +++ b/docs/en/transformer_entries/XlmRoBertaForQuestionAnswering.md @@ -16,7 +16,7 @@ val spanClassifier = XlmRoBertaForQuestionAnswering.pretrained() The default model is `"xlm_roberta_base_qa_squad2"`, if no name is provided. For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models?task=Question+Answering). +[Models Hub](https://sparknlp.org/models?task=Question+Answering). To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669. and the diff --git a/docs/en/transformer_entries/XlmRoBertaForSequenceClassification.md b/docs/en/transformer_entries/XlmRoBertaForSequenceClassification.md index 01030b984765..6ee37eddca6a 100644 --- a/docs/en/transformer_entries/XlmRoBertaForSequenceClassification.md +++ b/docs/en/transformer_entries/XlmRoBertaForSequenceClassification.md @@ -14,9 +14,9 @@ val sequenceClassifier = XlmRoBertaForSequenceClassification.pretrained() ``` The default model is `"xlm_roberta_base_sequence_classifier_imdb"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Text+Classification). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Text+Classification). -Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are +Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669. and the [XlmRoBertaForSequenceClassification](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlmRoBertaForSequenceClassificationTestSpec.scala). {%- endcapture -%} diff --git a/docs/en/transformer_entries/XlmRoBertaForTokenClassification.md b/docs/en/transformer_entries/XlmRoBertaForTokenClassification.md index 3f6a89d6a5e6..f5e34506f21c 100644 --- a/docs/en/transformer_entries/XlmRoBertaForTokenClassification.md +++ b/docs/en/transformer_entries/XlmRoBertaForTokenClassification.md @@ -14,7 +14,7 @@ val tokenClassifier = XlmRoBertaForTokenClassification.pretrained() ``` The default model is `"xlm_roberta_base_token_classifier_conll03"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Named+Entity+Recognition). and the [XlmRoBertaForTokenClassificationTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlmRoBertaForTokenClassificationTestSpec.scala). Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see [Import Transformers into Spark NLP 🚀](https://github.com/JohnSnowLabs/spark-nlp/discussions/5669). diff --git a/docs/en/transformer_entries/XlmRoBertaSentenceEmbeddings.md b/docs/en/transformer_entries/XlmRoBertaSentenceEmbeddings.md index 61ba131b8837..0017debdc974 100644 --- a/docs/en/transformer_entries/XlmRoBertaSentenceEmbeddings.md +++ b/docs/en/transformer_entries/XlmRoBertaSentenceEmbeddings.md @@ -16,7 +16,7 @@ val embeddings = XlmRoBertaSentenceEmbeddings.pretrained() .setOutputCol("sentence_embeddings") ``` The default model is `"sent_xlm_roberta_base"`, default language is `"xx"` (meaning multi-lingual), if no values are provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Embeddings). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Embeddings). Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see [Import Transformers into Spark NLP 🚀](https://github.com/JohnSnowLabs/spark-nlp/discussions/5669). diff --git a/docs/en/transformer_entries/XlnetForSequenceClassification.md b/docs/en/transformer_entries/XlnetForSequenceClassification.md index 20f62a7ab22d..892d57430893 100644 --- a/docs/en/transformer_entries/XlnetForSequenceClassification.md +++ b/docs/en/transformer_entries/XlnetForSequenceClassification.md @@ -14,9 +14,9 @@ val sequenceClassifier = XlnetForSequenceClassification.pretrained() ``` The default model is `"xlnet_base_sequence_classifier_imdb"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Text+Classification). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Text+Classification). -Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are +Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669. and the [XlnetForSequenceClassification](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlnetForSequenceClassificationTestSpec.scala). {%- endcapture -%} diff --git a/docs/en/transformer_entries/XlnetForTokenClassification.md b/docs/en/transformer_entries/XlnetForTokenClassification.md index 959da56ce00b..655311b80d49 100644 --- a/docs/en/transformer_entries/XlnetForTokenClassification.md +++ b/docs/en/transformer_entries/XlnetForTokenClassification.md @@ -14,7 +14,7 @@ val tokenClassifier = XlnetForTokenClassification.pretrained() ``` The default model is `"xlnet_base_token_classifier_conll03"`, if no name is provided. -For available pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition). +For available pretrained models please see the [Models Hub](https://sparknlp.org/models?task=Named+Entity+Recognition). and the [XlnetForTokenClassificationTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlnetForTokenClassificationTestSpec.scala). Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see [Import Transformers into Spark NLP 🚀](https://github.com/JohnSnowLabs/spark-nlp/discussions/5669). diff --git a/docs/en/transformer_entries/ZeroShotNer.md b/docs/en/transformer_entries/ZeroShotNer.md index 1d7a96e15289..5423862eb1a5 100644 --- a/docs/en/transformer_entries/ZeroShotNer.md +++ b/docs/en/transformer_entries/ZeroShotNer.md @@ -23,7 +23,7 @@ val zeroShotNer = ZeroShotNerModel.pretrained() ``` For available pretrained models please see the -[Models Hub](https://nlp.johnsnowlabs.com/models?task=Zero-Shot-NER). +[Models Hub](https://sparknlp.org/models?task=Zero-Shot-NER). {%- endcapture -%} {%- capture input_anno -%} diff --git a/examples/python/annotation/audio/asr-wav2vec2/Automatic_Speech_Recognition_Wav2Vec2_(Wav2Vec2ForCTC).ipynb b/examples/python/annotation/audio/asr-wav2vec2/Automatic_Speech_Recognition_Wav2Vec2_(Wav2Vec2ForCTC).ipynb index 874498e61b05..ccd789ab7a3c 100644 --- a/examples/python/annotation/audio/asr-wav2vec2/Automatic_Speech_Recognition_Wav2Vec2_(Wav2Vec2ForCTC).ipynb +++ b/examples/python/annotation/audio/asr-wav2vec2/Automatic_Speech_Recognition_Wav2Vec2_(Wav2Vec2ForCTC).ipynb @@ -20,8 +20,8 @@ "\n", "Note that this annotator is currently not supported on Apple Silicon processors such as the M1. This is due to the processor not supporting instructions for XLA.\n", "\n", - "- List of all available ASR [models](https://nlp.johnsnowlabs.com/models?task=Automatic+Speech+Recognition&type=model)\n", - "- List of all available ASR [pipelines](https://nlp.johnsnowlabs.com/models?task=Automatic+Speech+Recognition&type=pipeline)" + "- List of all available ASR [models](https://sparknlp.org/models?task=Automatic+Speech+Recognition&type=model)\n", + "- List of all available ASR [pipelines](https://sparknlp.org/models?task=Automatic+Speech+Recognition&type=pipeline)" ] }, { @@ -234,7 +234,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### Simplest and fastest way is to use a pre-trained [pipeline for ASR](https://nlp.johnsnowlabs.com/models?task=Automatic+Speech+Recognition&type=pipeline):\n", + "### Simplest and fastest way is to use a pre-trained [pipeline for ASR](https://sparknlp.org/models?task=Automatic+Speech+Recognition&type=pipeline):\n", "\n", "\n", "\n" diff --git a/examples/python/annotation/image/ViTForImageClassification.ipynb b/examples/python/annotation/image/ViTForImageClassification.ipynb index 84478d8a0118..94529b50ba77 100644 --- a/examples/python/annotation/image/ViTForImageClassification.ipynb +++ b/examples/python/annotation/image/ViTForImageClassification.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/image/ViTForImageClassification.ipynb)" ] diff --git a/examples/python/annotation/text/chinese/word_segmentation/words_segmenter_demo.ipynb b/examples/python/annotation/text/chinese/word_segmentation/words_segmenter_demo.ipynb index b8517d9265de..b0e31bcc0944 100644 --- a/examples/python/annotation/text/chinese/word_segmentation/words_segmenter_demo.ipynb +++ b/examples/python/annotation/text/chinese/word_segmentation/words_segmenter_demo.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)" + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)" ] }, { diff --git a/examples/python/annotation/text/english/MultiDateMatcherMultiLanguage_en.ipynb b/examples/python/annotation/text/english/MultiDateMatcherMultiLanguage_en.ipynb index 7dbb59f18e17..ec5165673dba 100644 --- a/examples/python/annotation/text/english/MultiDateMatcherMultiLanguage_en.ipynb +++ b/examples/python/annotation/text/english/MultiDateMatcherMultiLanguage_en.ipynb @@ -6,7 +6,7 @@ "id": "1abcab5d", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/MultiDateMatcherMultiLanguage_en.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/Text_Preprocessing_with_SparkNLP.ipynb b/examples/python/annotation/text/english/Text_Preprocessing_with_SparkNLP.ipynb index 1f8c1890603f..1163a2285d60 100644 --- a/examples/python/annotation/text/english/Text_Preprocessing_with_SparkNLP.ipynb +++ b/examples/python/annotation/text/english/Text_Preprocessing_with_SparkNLP.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/tutorials/Certification_Trainings/Public/2.Text_Preprocessing_with_SparkNLP_Annotators_Transformers.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/chunking/Chunk_Extraction_with_Chunker.ipynb b/examples/python/annotation/text/english/chunking/Chunk_Extraction_with_Chunker.ipynb index 8f750909625d..bb3cdb2c0431 100644 --- a/examples/python/annotation/text/english/chunking/Chunk_Extraction_with_Chunker.ipynb +++ b/examples/python/annotation/text/english/chunking/Chunk_Extraction_with_Chunker.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/chunking/Chunk_Extraction_with_Chunker.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/chunking/NgramGenerator.ipynb b/examples/python/annotation/text/english/chunking/NgramGenerator.ipynb index 53a642aeb031..fa90a5e8116a 100644 --- a/examples/python/annotation/text/english/chunking/NgramGenerator.ipynb +++ b/examples/python/annotation/text/english/chunking/NgramGenerator.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/annotation/english/chunking/NgramGenerator.ipynb)\n", "\n", @@ -57,7 +57,7 @@ "\n", "**Example:**\n", "\n", - "Refer to the [NGramGenerator](https://nlp.johnsnowlabs.com/api/index#com.johnsnowlabs.nlp.annotators.NGramGenerator) Scala docs for more details on the API.\n", + "Refer to the [NGramGenerator](https://sparknlp.org/api/index#com.johnsnowlabs.nlp.annotators.NGramGenerator) Scala docs for more details on the API.\n", "\n", "```python\n", "ngrams_cum = NGramGenerator() \\\n", diff --git a/examples/python/annotation/text/english/document-assembler/Loading_Documents_With_DocumentAssembler.ipynb b/examples/python/annotation/text/english/document-assembler/Loading_Documents_With_DocumentAssembler.ipynb index 228a5fa14cd5..d5b68f73c318 100644 --- a/examples/python/annotation/text/english/document-assembler/Loading_Documents_With_DocumentAssembler.ipynb +++ b/examples/python/annotation/text/english/document-assembler/Loading_Documents_With_DocumentAssembler.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/document-assembler/Loading_Documents_With_DocumentAssembler.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/document-assembler/Loading_Multiple_Documents.ipynb b/examples/python/annotation/text/english/document-assembler/Loading_Multiple_Documents.ipynb index cd13b79c96f7..d3ae89b2e55e 100644 --- a/examples/python/annotation/text/english/document-assembler/Loading_Multiple_Documents.ipynb +++ b/examples/python/annotation/text/english/document-assembler/Loading_Multiple_Documents.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/document-assembler/Loading_Multiple_Documents.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/document-normalizer/document_normalizer_notebook.ipynb b/examples/python/annotation/text/english/document-normalizer/document_normalizer_notebook.ipynb index 99066ae0e9f0..6afbc6fe4745 100644 --- a/examples/python/annotation/text/english/document-normalizer/document_normalizer_notebook.ipynb +++ b/examples/python/annotation/text/english/document-normalizer/document_normalizer_notebook.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/document-normalizer/document_normalizer_notebook.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/embeddings/ChunkEmbeddings.ipynb b/examples/python/annotation/text/english/embeddings/ChunkEmbeddings.ipynb index bd912ef066b0..5c2746747979 100644 --- a/examples/python/annotation/text/english/embeddings/ChunkEmbeddings.ipynb +++ b/examples/python/annotation/text/english/embeddings/ChunkEmbeddings.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/embeddings/ChunkEmbeddings.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/graph-extraction/graph_extraction.ipynb b/examples/python/annotation/text/english/graph-extraction/graph_extraction.ipynb index c22fe3434489..4b0d17f81725 100644 --- a/examples/python/annotation/text/english/graph-extraction/graph_extraction.ipynb +++ b/examples/python/annotation/text/english/graph-extraction/graph_extraction.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/graph-extraction/graph_extraction.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/graph-extraction/graph_extraction_explode_entities.ipynb b/examples/python/annotation/text/english/graph-extraction/graph_extraction_explode_entities.ipynb index 59e4ef415d7d..14d3eaa9889d 100644 --- a/examples/python/annotation/text/english/graph-extraction/graph_extraction_explode_entities.ipynb +++ b/examples/python/annotation/text/english/graph-extraction/graph_extraction_explode_entities.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/graph-extraction/graph_extraction_explode_entities.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/graph-extraction/graph_extraction_helper_display.ipynb b/examples/python/annotation/text/english/graph-extraction/graph_extraction_helper_display.ipynb index 4401e4c6d6f2..ef262bae0caa 100644 --- a/examples/python/annotation/text/english/graph-extraction/graph_extraction_helper_display.ipynb +++ b/examples/python/annotation/text/english/graph-extraction/graph_extraction_helper_display.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp-workshop/blob/master/jupyter/prediction/english/graph_extraction_helper_display.ipynb)" ] diff --git a/examples/python/annotation/text/english/graph-extraction/graph_extraction_intro.ipynb b/examples/python/annotation/text/english/graph-extraction/graph_extraction_intro.ipynb index ff4fa32bd71e..ab3691118f6b 100644 --- a/examples/python/annotation/text/english/graph-extraction/graph_extraction_intro.ipynb +++ b/examples/python/annotation/text/english/graph-extraction/graph_extraction_intro.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/graph-extraction/graph_extraction_intro.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/graph-extraction/graph_extraction_roots_paths.ipynb b/examples/python/annotation/text/english/graph-extraction/graph_extraction_roots_paths.ipynb index 321cb1cb257d..6739ffeb5ee4 100644 --- a/examples/python/annotation/text/english/graph-extraction/graph_extraction_roots_paths.ipynb +++ b/examples/python/annotation/text/english/graph-extraction/graph_extraction_roots_paths.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp-workshop/blob/master/jupyter/prediction/english/graph_extraction_roots_paths.ipynb)" ] diff --git a/examples/python/annotation/text/english/keyword-extraction/Keyword_Extraction_YAKE.ipynb b/examples/python/annotation/text/english/keyword-extraction/Keyword_Extraction_YAKE.ipynb index 855467f91aa7..4931864f9035 100644 --- a/examples/python/annotation/text/english/keyword-extraction/Keyword_Extraction_YAKE.ipynb +++ b/examples/python/annotation/text/english/keyword-extraction/Keyword_Extraction_YAKE.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)" + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)" ] }, { diff --git a/examples/python/annotation/text/english/language-detection/Language_Detection_and_Indentification.ipynb b/examples/python/annotation/text/english/language-detection/Language_Detection_and_Indentification.ipynb index 01acf19bcf1c..20fcfa615592 100644 --- a/examples/python/annotation/text/english/language-detection/Language_Detection_and_Indentification.ipynb +++ b/examples/python/annotation/text/english/language-detection/Language_Detection_and_Indentification.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/language-detection/Language_Detection_and_Indentification.ipynb)\n", "\n", @@ -76,7 +76,7 @@ "source": [ "## LanguageDetectorDL Pre-trained Models & Pipelines\n", "\n", - "* Available pre-trained pipelines: https://nlp.johnsnowlabs.com/models?tag=language_detection\n", + "* Available pre-trained pipelines: https://sparknlp.org/models?tag=language_detection\n", "\n", "\n", "| Model | Name | Build | Lang \n", diff --git a/examples/python/annotation/text/english/model-downloader/Create custom pipeline - NerDL.ipynb b/examples/python/annotation/text/english/model-downloader/Create custom pipeline - NerDL.ipynb index d3049467a7e1..217305ba54e3 100644 --- a/examples/python/annotation/text/english/model-downloader/Create custom pipeline - NerDL.ipynb +++ b/examples/python/annotation/text/english/model-downloader/Create custom pipeline - NerDL.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/model-downloader/Create%20custom%20pipeline%20-%20NerDL.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/model-downloader/ModelDownloaderExample.ipynb b/examples/python/annotation/text/english/model-downloader/ModelDownloaderExample.ipynb index d1d8bb281704..13f3a16e3cb9 100644 --- a/examples/python/annotation/text/english/model-downloader/ModelDownloaderExample.ipynb +++ b/examples/python/annotation/text/english/model-downloader/ModelDownloaderExample.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/model-downloader/ModelDownloaderExample.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/named-entity-recognition/Named entity recognition - OntoNotes.ipynb b/examples/python/annotation/text/english/named-entity-recognition/Named entity recognition - OntoNotes.ipynb index a8d1c13d013b..e410fc8b0979 100644 --- a/examples/python/annotation/text/english/named-entity-recognition/Named entity recognition - OntoNotes.ipynb +++ b/examples/python/annotation/text/english/named-entity-recognition/Named entity recognition - OntoNotes.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/named-entity-recognition/Named%20entity%20recognition%20-%20OntoNotes.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/named-entity-recognition/ZeroShot_NER.ipynb b/examples/python/annotation/text/english/named-entity-recognition/ZeroShot_NER.ipynb index 85dc68c4e9ce..d7b6987dbe1b 100644 --- a/examples/python/annotation/text/english/named-entity-recognition/ZeroShot_NER.ipynb +++ b/examples/python/annotation/text/english/named-entity-recognition/ZeroShot_NER.ipynb @@ -6,7 +6,7 @@ "id": "36f39d62", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/named-entity-recognition/ZeroShot_NER.ipynb)" ] diff --git a/examples/python/annotation/text/english/pretrained-pipelines/Explain Document DL.ipynb b/examples/python/annotation/text/english/pretrained-pipelines/Explain Document DL.ipynb index 54f6568bb88a..60eade18e01a 100644 --- a/examples/python/annotation/text/english/pretrained-pipelines/Explain Document DL.ipynb +++ b/examples/python/annotation/text/english/pretrained-pipelines/Explain Document DL.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/pretrained-pipelines/Explain%20Document%20DL.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/pretrained-pipelines/Pretrained-MatchDateTime-Pipeline.ipynb b/examples/python/annotation/text/english/pretrained-pipelines/Pretrained-MatchDateTime-Pipeline.ipynb index 790531850b75..b2c06351dde5 100644 --- a/examples/python/annotation/text/english/pretrained-pipelines/Pretrained-MatchDateTime-Pipeline.ipynb +++ b/examples/python/annotation/text/english/pretrained-pipelines/Pretrained-MatchDateTime-Pipeline.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/pretrained-pipelines/Pretrained-MatchDateTime-Pipeline.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/pretrained-pipelines/Pretrained-MatchPattern-Pipeline.ipynb b/examples/python/annotation/text/english/pretrained-pipelines/Pretrained-MatchPattern-Pipeline.ipynb index 056be1d309f5..b72f444b6575 100644 --- a/examples/python/annotation/text/english/pretrained-pipelines/Pretrained-MatchPattern-Pipeline.ipynb +++ b/examples/python/annotation/text/english/pretrained-pipelines/Pretrained-MatchPattern-Pipeline.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples//home/root/Workspace/scala/spark-nlp/examples/python/annotation/text/english/pretrained-pipelines/Pretrained-MatchPattern-Pipeline.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/pretrained-pipelines/explain_document_ml.ipynb b/examples/python/annotation/text/english/pretrained-pipelines/explain_document_ml.ipynb index bbfffb677aa6..f7b7d0267263 100644 --- a/examples/python/annotation/text/english/pretrained-pipelines/explain_document_ml.ipynb +++ b/examples/python/annotation/text/english/pretrained-pipelines/explain_document_ml.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/annotation/english/explain-document-ml/explain_document_ml.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/question-answering/Question_Answering_and_Summarization_with_T5.ipynb b/examples/python/annotation/text/english/question-answering/Question_Answering_and_Summarization_with_T5.ipynb index c07130e43783..9b69e9622d48 100644 --- a/examples/python/annotation/text/english/question-answering/Question_Answering_and_Summarization_with_T5.ipynb +++ b/examples/python/annotation/text/english/question-answering/Question_Answering_and_Summarization_with_T5.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)" + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)" ] }, { @@ -63,16 +63,16 @@ "\n", "|index|model|lang|\n", "|-----:|:-----|----|\n", - "| 1| [t5_active_to_passive_styletransfer](https://nlp.johnsnowlabs.com/2022/05/31/t5_active_to_passive_styletransfer_en_3_0.html) |en|\n", - "| 2| [t5_base](https://nlp.johnsnowlabs.com/2022/05/31/t5_base_en_3_0.html) |en|\n", - "| 3| [t5_base_mediqa_mnli](https://nlp.johnsnowlabs.com/2021/02/19/t5_base_mediqa_mnli_en.html) |en|\n", - "| 4| [t5_formal_to_informal_styletransfer](https://nlp.johnsnowlabs.com/2022/05/31/t5_formal_to_informal_styletransfer_en_3_0.html) |en|\n", - "| 5| [t5_grammar_error_corrector](https://nlp.johnsnowlabs.com/2022/01/12/t5_grammar_error_corrector_en.html) |en|\n", - "| 6| [t5_informal_to_formal_styletransfer](https://nlp.johnsnowlabs.com/2022/05/31/t5_informal_to_formal_styletransfer_en_3_0.html) |en|\n", - "| 7| [t5_passive_to_active_styletransfer](https://nlp.johnsnowlabs.com/2022/05/31/t5_passive_to_active_styletransfer_en_3_0.html) |en|\n", - "| 8| [t5_question_generation_small](https://nlp.johnsnowlabs.com/2022/07/05/t5_question_generation_small_en_3_0.html) |en|\n", - "| 9| [t5_small](https://nlp.johnsnowlabs.com/2022/05/31/t5_small_en_3_0.html) |en|\n", - "| 10| [t5_small_wikiSQL](https://nlp.johnsnowlabs.com/2022/05/31/t5_small_wikiSQL_en_3_0.html) |en|\n", + "| 1| [t5_active_to_passive_styletransfer](https://sparknlp.org/2022/05/31/t5_active_to_passive_styletransfer_en_3_0.html) |en|\n", + "| 2| [t5_base](https://sparknlp.org/2022/05/31/t5_base_en_3_0.html) |en|\n", + "| 3| [t5_base_mediqa_mnli](https://sparknlp.org/2021/02/19/t5_base_mediqa_mnli_en.html) |en|\n", + "| 4| [t5_formal_to_informal_styletransfer](https://sparknlp.org/2022/05/31/t5_formal_to_informal_styletransfer_en_3_0.html) |en|\n", + "| 5| [t5_grammar_error_corrector](https://sparknlp.org/2022/01/12/t5_grammar_error_corrector_en.html) |en|\n", + "| 6| [t5_informal_to_formal_styletransfer](https://sparknlp.org/2022/05/31/t5_informal_to_formal_styletransfer_en_3_0.html) |en|\n", + "| 7| [t5_passive_to_active_styletransfer](https://sparknlp.org/2022/05/31/t5_passive_to_active_styletransfer_en_3_0.html) |en|\n", + "| 8| [t5_question_generation_small](https://sparknlp.org/2022/07/05/t5_question_generation_small_en_3_0.html) |en|\n", + "| 9| [t5_small](https://sparknlp.org/2022/05/31/t5_small_en_3_0.html) |en|\n", + "| 10| [t5_small_wikiSQL](https://sparknlp.org/2022/05/31/t5_small_wikiSQL_en_3_0.html) |en|\n", "\n", "" ] diff --git a/examples/python/annotation/text/english/regex-matcher/Matching_Text_with_RegexMatcher.ipynb b/examples/python/annotation/text/english/regex-matcher/Matching_Text_with_RegexMatcher.ipynb index f65d387b46ca..a843d6991e47 100644 --- a/examples/python/annotation/text/english/regex-matcher/Matching_Text_with_RegexMatcher.ipynb +++ b/examples/python/annotation/text/english/regex-matcher/Matching_Text_with_RegexMatcher.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/regex-matcher/Matching_Text_with_RegexMatcher.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/regex-tokenizer/regex_tokenizer_examples.ipynb b/examples/python/annotation/text/english/regex-tokenizer/regex_tokenizer_examples.ipynb index 9efc28c987ae..8ec9267d7e1f 100644 --- a/examples/python/annotation/text/english/regex-tokenizer/regex_tokenizer_examples.ipynb +++ b/examples/python/annotation/text/english/regex-tokenizer/regex_tokenizer_examples.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/regex-tokenizer/regex_tokenizer_examples.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/sentence-detection/SentenceDetector_advanced_examples.ipynb b/examples/python/annotation/text/english/sentence-detection/SentenceDetector_advanced_examples.ipynb index 0f39f3f53d0b..645a47b76656 100644 --- a/examples/python/annotation/text/english/sentence-detection/SentenceDetector_advanced_examples.ipynb +++ b/examples/python/annotation/text/english/sentence-detection/SentenceDetector_advanced_examples.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/sentence-detection/SentenceDetector_advanced_examples.ipynb)\n" ] @@ -14,7 +14,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "# [Sentence Detector](https://nlp.johnsnowlabs.com/docs/en/annotators#sentencedetector)\n", + "# [Sentence Detector](https://sparknlp.org/docs/en/annotators#sentencedetector)\n", "\n", "Sentence Detector is an annotator that detects sentence boundaries using regular\n", "expressions.\n", diff --git a/examples/python/annotation/text/english/sentiment-detection/sentiment_rb.ipynb b/examples/python/annotation/text/english/sentiment-detection/sentiment_rb.ipynb index 1cd1d1a58243..8d47c717c356 100644 --- a/examples/python/annotation/text/english/sentiment-detection/sentiment_rb.ipynb +++ b/examples/python/annotation/text/english/sentiment-detection/sentiment_rb.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/sentiment-detection/sentiment_rb.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/spark-nlp-basics/playground-dataFrames.ipynb b/examples/python/annotation/text/english/spark-nlp-basics/playground-dataFrames.ipynb index b139e4191897..a4e2372ebaf1 100644 --- a/examples/python/annotation/text/english/spark-nlp-basics/playground-dataFrames.ipynb +++ b/examples/python/annotation/text/english/spark-nlp-basics/playground-dataFrames.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/spark-nlp-basics/playground-dataFrames.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/spark-nlp-basics/spark_nlp_basics_functions.ipynb b/examples/python/annotation/text/english/spark-nlp-basics/spark_nlp_basics_functions.ipynb index 8c747f162f1d..b83461fe544b 100644 --- a/examples/python/annotation/text/english/spark-nlp-basics/spark_nlp_basics_functions.ipynb +++ b/examples/python/annotation/text/english/spark-nlp-basics/spark_nlp_basics_functions.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/spark-nlp-basics/spark_nlp_basics_functions.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/spell-check-ml-pipeline/Pretrained-SpellCheckML-Pipeline.ipynb b/examples/python/annotation/text/english/spell-check-ml-pipeline/Pretrained-SpellCheckML-Pipeline.ipynb index 84d5c7909992..ef5e428a62fb 100644 --- a/examples/python/annotation/text/english/spell-check-ml-pipeline/Pretrained-SpellCheckML-Pipeline.ipynb +++ b/examples/python/annotation/text/english/spell-check-ml-pipeline/Pretrained-SpellCheckML-Pipeline.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/annotation/english/spell-check-ml-pipeline/Pretrained-SpellCheckML-Pipeline.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/stemmer/Word_Stemming_with_Stemmer.ipynb b/examples/python/annotation/text/english/stemmer/Word_Stemming_with_Stemmer.ipynb index 713e247325d6..3893491eb2c9 100644 --- a/examples/python/annotation/text/english/stemmer/Word_Stemming_with_Stemmer.ipynb +++ b/examples/python/annotation/text/english/stemmer/Word_Stemming_with_Stemmer.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/stemmer/Word_Stemming_with_Stemmer.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/stop-words/StopWordsCleaner.ipynb b/examples/python/annotation/text/english/stop-words/StopWordsCleaner.ipynb index b1aa879c1a38..08ab18c50c41 100644 --- a/examples/python/annotation/text/english/stop-words/StopWordsCleaner.ipynb +++ b/examples/python/annotation/text/english/stop-words/StopWordsCleaner.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/stop-words/StopWordsCleaner.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/text-matcher-pipeline/extractor.ipynb b/examples/python/annotation/text/english/text-matcher-pipeline/extractor.ipynb index e0b3dbd3d479..687f4521b40b 100644 --- a/examples/python/annotation/text/english/text-matcher-pipeline/extractor.ipynb +++ b/examples/python/annotation/text/english/text-matcher-pipeline/extractor.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/text-matcher-pipeline/extractor.ipynb\n", ")\n", diff --git a/examples/python/annotation/text/english/text-similarity/Spark_NLP_Spark_ML_Text_Similarity.ipynb b/examples/python/annotation/text/english/text-similarity/Spark_NLP_Spark_ML_Text_Similarity.ipynb index 654bfa8e87e7..9867c44444fc 100644 --- a/examples/python/annotation/text/english/text-similarity/Spark_NLP_Spark_ML_Text_Similarity.ipynb +++ b/examples/python/annotation/text/english/text-similarity/Spark_NLP_Spark_ML_Text_Similarity.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/text-similarity/Spark_NLP_Spark_ML_Text_Similarity.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/english/token-assembler/Assembling_Tokens_to_Documents.ipynb b/examples/python/annotation/text/english/token-assembler/Assembling_Tokens_to_Documents.ipynb index 33af57b1afef..089f7768f82a 100644 --- a/examples/python/annotation/text/english/token-assembler/Assembling_Tokens_to_Documents.ipynb +++ b/examples/python/annotation/text/english/token-assembler/Assembling_Tokens_to_Documents.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/token-assembler/Assembling_Tokens_to_Documents.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/french/MultiDateMatcherMultiLanguage_fr.ipynb b/examples/python/annotation/text/french/MultiDateMatcherMultiLanguage_fr.ipynb index db0795764e6f..a31e3ab16c14 100644 --- a/examples/python/annotation/text/french/MultiDateMatcherMultiLanguage_fr.ipynb +++ b/examples/python/annotation/text/french/MultiDateMatcherMultiLanguage_fr.ipynb @@ -6,7 +6,7 @@ "id": "6324b870", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/french/MultiDateMatcherMultiLanguage_fr.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/french/date_matcher_multi_language_fr.ipynb b/examples/python/annotation/text/french/date_matcher_multi_language_fr.ipynb index 7219df098e05..96a7c46c2af0 100644 --- a/examples/python/annotation/text/french/date_matcher_multi_language_fr.ipynb +++ b/examples/python/annotation/text/french/date_matcher_multi_language_fr.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/french/date_matcher_multi_language_fr.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/german/MultiDateMatcherMultiLanguage_de.ipynb b/examples/python/annotation/text/german/MultiDateMatcherMultiLanguage_de.ipynb index 3975073b6f4c..72518e74f3c0 100644 --- a/examples/python/annotation/text/german/MultiDateMatcherMultiLanguage_de.ipynb +++ b/examples/python/annotation/text/german/MultiDateMatcherMultiLanguage_de.ipynb @@ -6,7 +6,7 @@ "id": "91762c58", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/german/MultiDateMatcherMultiLanguage_de.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/german/date_matcher_multi_language_de.ipynb b/examples/python/annotation/text/german/date_matcher_multi_language_de.ipynb index 45d1df5c9adb..a9846585c2e1 100644 --- a/examples/python/annotation/text/german/date_matcher_multi_language_de.ipynb +++ b/examples/python/annotation/text/german/date_matcher_multi_language_de.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/german/date_matcher_multi_language_de.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/german/pretrained_german_models.ipynb b/examples/python/annotation/text/german/pretrained_german_models.ipynb index 86cd7810fbc5..6bb09a5124b5 100644 --- a/examples/python/annotation/text/german/pretrained_german_models.ipynb +++ b/examples/python/annotation/text/german/pretrained_german_models.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/german/pretrained_german_models.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/italian/MultiDateMatcherMultiLanguage_it.ipynb b/examples/python/annotation/text/italian/MultiDateMatcherMultiLanguage_it.ipynb index 3791d2f576c0..10d52d4595b1 100644 --- a/examples/python/annotation/text/italian/MultiDateMatcherMultiLanguage_it.ipynb +++ b/examples/python/annotation/text/italian/MultiDateMatcherMultiLanguage_it.ipynb @@ -5,7 +5,7 @@ "id": "cf3d94d0", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/italian/MultiDateMatcherMultiLanguage_it.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/italian/date_matcher_multi_language_it.ipynb b/examples/python/annotation/text/italian/date_matcher_multi_language_it.ipynb index 6f67aa07ad65..3291ce92e51c 100644 --- a/examples/python/annotation/text/italian/date_matcher_multi_language_it.ipynb +++ b/examples/python/annotation/text/italian/date_matcher_multi_language_it.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/italian/date_matcher_multi_language_it.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/multilingual/SentenceDetectorDL.ipynb b/examples/python/annotation/text/multilingual/SentenceDetectorDL.ipynb index e6e41e1c4829..226b883c9f3f 100644 --- a/examples/python/annotation/text/multilingual/SentenceDetectorDL.ipynb +++ b/examples/python/annotation/text/multilingual/SentenceDetectorDL.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)" + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)" ] }, { diff --git a/examples/python/annotation/text/multilingual/Translation_Marian.ipynb b/examples/python/annotation/text/multilingual/Translation_Marian.ipynb index 58283d707df1..22262ca2d0d5 100644 --- a/examples/python/annotation/text/multilingual/Translation_Marian.ipynb +++ b/examples/python/annotation/text/multilingual/Translation_Marian.ipynb @@ -7,7 +7,7 @@ "source": [ "\n", "\n", - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/multilingual/Translation_Marian.ipynb)\n", "\n", @@ -91,10 +91,10 @@ "metadata": {}, "source": [ "For complete model list: \n", - "https://nlp.johnsnowlabs.com/models\n", + "https://sparknlp.org/models\n", "\n", "For `Translation` models:\n", - "https://nlp.johnsnowlabs.com/models?tag=translation" + "https://sparknlp.org/models?tag=translation" ] }, { diff --git a/examples/python/annotation/text/multilingual/WordSegmenterMultilingual.ipynb b/examples/python/annotation/text/multilingual/WordSegmenterMultilingual.ipynb index 73c1e9bc9635..562ff6a304cd 100644 --- a/examples/python/annotation/text/multilingual/WordSegmenterMultilingual.ipynb +++ b/examples/python/annotation/text/multilingual/WordSegmenterMultilingual.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/multilingual/WordSegmenterMultilingual.ipynb)\n", "\n", @@ -67,14 +67,14 @@ "source": [ "Setting `setEnableRegexTokenizer=True` parameter will make WordSegmenter to tokenize latin words based on spaces and apply word segmenter inference **only in non-latin words**. As show in the example below.\n", "\n", - "**Note:** There are 3 parameters to play around for tokenization of latin words. You can check those in our [official documentation](https://nlp.johnsnowlabs.com/api/com/johnsnowlabs/nlp/annotators/ws/WordSegmenterModel.html)" + "**Note:** There are 3 parameters to play around for tokenization of latin words. You can check those in our [official documentation](https://sparknlp.org/api/com/johnsnowlabs/nlp/annotators/ws/WordSegmenterModel.html)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "This example has a text with Thai and English words. So, we use a WordSegmenter model of Thai language. You can check additional WordSegmenter models in our [official model's page](https://nlp.johnsnowlabs.com/models?q=Word+Segmenter).\n", + "This example has a text with Thai and English words. So, we use a WordSegmenter model of Thai language. You can check additional WordSegmenter models in our [official model's page](https://sparknlp.org/models?q=Word+Segmenter).\n", "\n", "---\n", "\n" diff --git a/examples/python/annotation/text/portuguese/MultiDateMatcherMultiLanguage_pt.ipynb b/examples/python/annotation/text/portuguese/MultiDateMatcherMultiLanguage_pt.ipynb index e461f53e7c28..27ed4f1a153a 100644 --- a/examples/python/annotation/text/portuguese/MultiDateMatcherMultiLanguage_pt.ipynb +++ b/examples/python/annotation/text/portuguese/MultiDateMatcherMultiLanguage_pt.ipynb @@ -6,7 +6,7 @@ "id": "cfd62825", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/portuguese/MultiDateMatcherMultiLanguage_pt.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/portuguese/date_matcher_multi_language_pt.ipynb b/examples/python/annotation/text/portuguese/date_matcher_multi_language_pt.ipynb index f4b4aa4603e7..b1a46d44d4e7 100644 --- a/examples/python/annotation/text/portuguese/date_matcher_multi_language_pt.ipynb +++ b/examples/python/annotation/text/portuguese/date_matcher_multi_language_pt.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/portuguese/date_matcher_multi_language_pt.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/spanish/MultiDateMatcherMultiLanguage_es.ipynb b/examples/python/annotation/text/spanish/MultiDateMatcherMultiLanguage_es.ipynb index fc713115b7d8..87d033ec1897 100644 --- a/examples/python/annotation/text/spanish/MultiDateMatcherMultiLanguage_es.ipynb +++ b/examples/python/annotation/text/spanish/MultiDateMatcherMultiLanguage_es.ipynb @@ -6,7 +6,7 @@ "id": "233932d4", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/spanish/MultiDateMatcherMultiLanguage_es.ipynb)\n", "\n", diff --git a/examples/python/annotation/text/spanish/date_matcher_multi_language_es.ipynb b/examples/python/annotation/text/spanish/date_matcher_multi_language_es.ipynb index 225b003ec78c..6cfe6045534a 100644 --- a/examples/python/annotation/text/spanish/date_matcher_multi_language_es.ipynb +++ b/examples/python/annotation/text/spanish/date_matcher_multi_language_es.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/spanish/date_matcher_multi_language_es.ipynb)\n", "\n", diff --git a/examples/python/quick_start.ipynb b/examples/python/quick_start.ipynb index d264827f2688..e64765bc80ef 100644 --- a/examples/python/quick_start.ipynb +++ b/examples/python/quick_start.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/quick_start.ipynb)" ] diff --git a/examples/python/quick_start_google_colab.ipynb b/examples/python/quick_start_google_colab.ipynb index 0c3f4ea015cf..336465fb0e40 100644 --- a/examples/python/quick_start_google_colab.ipynb +++ b/examples/python/quick_start_google_colab.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)" + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)" ] }, { @@ -242,7 +242,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### Please check our [Models Hub](https://nlp.johnsnowlabs.com/models) for more pretrained models and pipelines! 😊 " + "### Please check our [Models Hub](https://sparknlp.org/models) for more pretrained models and pipelines! 😊 " ] } ], diff --git a/examples/python/training/chinese/word-segmentation/WordSegmenter_train_chinese_segmentation.ipynb b/examples/python/training/chinese/word-segmentation/WordSegmenter_train_chinese_segmentation.ipynb index 33dfd8feb752..d052ccdcf443 100644 --- a/examples/python/training/chinese/word-segmentation/WordSegmenter_train_chinese_segmentation.ipynb +++ b/examples/python/training/chinese/word-segmentation/WordSegmenter_train_chinese_segmentation.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)" + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)" ] }, { @@ -19,7 +19,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "# [Word Segmenter](https://nlp.johnsnowlabs.com/docs/en/annotators#wordsegmenter)\n", + "# [Word Segmenter](https://sparknlp.org/docs/en/annotators#wordsegmenter)\n", "\n", "Many languages are not whitespace separated and their sentences are a\n", "concatenation of many symbols, like Korean, Japanese or Chinese. Without\n", diff --git a/examples/python/training/english/classification/ClassifierDL_Train_and_Evaluate.ipynb b/examples/python/training/english/classification/ClassifierDL_Train_and_Evaluate.ipynb index 9f52a173d0b9..e990bc454e2a 100644 --- a/examples/python/training/english/classification/ClassifierDL_Train_and_Evaluate.ipynb +++ b/examples/python/training/english/classification/ClassifierDL_Train_and_Evaluate.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/classification/ClassifierDL_Train_and_Evaluate.ipynb)\n", "\n", diff --git a/examples/python/training/english/classification/ClassifierDL_Train_multi_class_news_category_classifier.ipynb b/examples/python/training/english/classification/ClassifierDL_Train_multi_class_news_category_classifier.ipynb index 79a96ef2652c..843a5c02b507 100644 --- a/examples/python/training/english/classification/ClassifierDL_Train_multi_class_news_category_classifier.ipynb +++ b/examples/python/training/english/classification/ClassifierDL_Train_multi_class_news_category_classifier.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/classification/ClassifierDL_Train_multi_class_news_category_classifier.ipynb)\n", "\n", diff --git a/examples/python/training/english/classification/MultiClassifierDL_Train_and_Evaluate.ipynb b/examples/python/training/english/classification/MultiClassifierDL_Train_and_Evaluate.ipynb index 861c6245ab20..d4f65bc3dc98 100644 --- a/examples/python/training/english/classification/MultiClassifierDL_Train_and_Evaluate.ipynb +++ b/examples/python/training/english/classification/MultiClassifierDL_Train_and_Evaluate.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/classification/MultiClassifierDL_Train_and_Evaluate.ipynb)\n", "\n", diff --git a/examples/python/training/english/classification/MultiClassifierDL_train_multi_label_E2E_challenge_classifier.ipynb b/examples/python/training/english/classification/MultiClassifierDL_train_multi_label_E2E_challenge_classifier.ipynb index c16a317a7f46..8de964cb0521 100644 --- a/examples/python/training/english/classification/MultiClassifierDL_train_multi_label_E2E_challenge_classifier.ipynb +++ b/examples/python/training/english/classification/MultiClassifierDL_train_multi_label_E2E_challenge_classifier.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/classification/MultiClassifierDL_train_multi_label_E2E_challenge_classifier.ipynb)\n", "\n", diff --git a/examples/python/training/english/classification/MultiClassifierDL_train_multi_label_toxic_classifier.ipynb b/examples/python/training/english/classification/MultiClassifierDL_train_multi_label_toxic_classifier.ipynb index 02ed05fc4e44..f6c657e50913 100644 --- a/examples/python/training/english/classification/MultiClassifierDL_train_multi_label_toxic_classifier.ipynb +++ b/examples/python/training/english/classification/MultiClassifierDL_train_multi_label_toxic_classifier.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/classification/MultiClassifierDL_train_multi_label_toxic_classifier.ipynb)\n", "\n", diff --git a/examples/python/training/english/classification/SentimentDL_Train_and_Evaluate.ipynb b/examples/python/training/english/classification/SentimentDL_Train_and_Evaluate.ipynb index 8bd9d8a0674e..7837ff01d769 100644 --- a/examples/python/training/english/classification/SentimentDL_Train_and_Evaluate.ipynb +++ b/examples/python/training/english/classification/SentimentDL_Train_and_Evaluate.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/classification/SentimentDL_Train_and_Evaluate.ipynb)\n", "\n", diff --git a/examples/python/training/english/classification/SentimentDL_train_multiclass_sentiment_classifier.ipynb b/examples/python/training/english/classification/SentimentDL_train_multiclass_sentiment_classifier.ipynb index 1a3d57865e08..b57727109f3b 100644 --- a/examples/python/training/english/classification/SentimentDL_train_multiclass_sentiment_classifier.ipynb +++ b/examples/python/training/english/classification/SentimentDL_train_multiclass_sentiment_classifier.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/classification/SentimentDL_train_multiclass_sentiment_classifier.ipynb)\n", "\n", diff --git a/examples/python/training/english/crf-ner/ner_dl_crf.ipynb b/examples/python/training/english/crf-ner/ner_dl_crf.ipynb index 75b8e5feb0d3..c3f0e0aff092 100644 --- a/examples/python/training/english/crf-ner/ner_dl_crf.ipynb +++ b/examples/python/training/english/crf-ner/ner_dl_crf.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/crf-ner/ner_dl_crf.ipynb)\n", "\n", diff --git a/examples/python/training/english/dl-ner/mfa_ner_graphs_s3.ipynb b/examples/python/training/english/dl-ner/mfa_ner_graphs_s3.ipynb index d488360ea692..07d4239dc41c 100644 --- a/examples/python/training/english/dl-ner/mfa_ner_graphs_s3.ipynb +++ b/examples/python/training/english/dl-ner/mfa_ner_graphs_s3.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/dl-ner/mfa_ner_graphs_s3.ipynb)\n", "\n", diff --git a/examples/python/training/english/dl-ner/ner_albert.ipynb b/examples/python/training/english/dl-ner/ner_albert.ipynb index 300eceae1869..8a75129f3a26 100644 --- a/examples/python/training/english/dl-ner/ner_albert.ipynb +++ b/examples/python/training/english/dl-ner/ner_albert.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/dl-ner/ner_albert.ipynb)\n", "\n", diff --git a/examples/python/training/english/dl-ner/ner_bert.ipynb b/examples/python/training/english/dl-ner/ner_bert.ipynb index 0f92d814e2bc..eeb9c06c87f2 100644 --- a/examples/python/training/english/dl-ner/ner_bert.ipynb +++ b/examples/python/training/english/dl-ner/ner_bert.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/dl-ner/ner_bert.ipynb)\n", "\n", diff --git a/examples/python/training/english/dl-ner/ner_dl.ipynb b/examples/python/training/english/dl-ner/ner_dl.ipynb index 4bf4ac72d8f9..cd8826e58b99 100644 --- a/examples/python/training/english/dl-ner/ner_dl.ipynb +++ b/examples/python/training/english/dl-ner/ner_dl.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/dl-ner/ner_dl.ipynb)\n", "\n", diff --git a/examples/python/training/english/dl-ner/ner_elmo.ipynb b/examples/python/training/english/dl-ner/ner_elmo.ipynb index 813f44290ba6..093b645425fd 100644 --- a/examples/python/training/english/dl-ner/ner_elmo.ipynb +++ b/examples/python/training/english/dl-ner/ner_elmo.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/dl-ner/ner_elmo.ipynb)\n", "\n", diff --git a/examples/python/training/english/dl-ner/ner_graph_builder.ipynb b/examples/python/training/english/dl-ner/ner_graph_builder.ipynb index 6fa748615a0a..fcb192a29b82 100644 --- a/examples/python/training/english/dl-ner/ner_graph_builder.ipynb +++ b/examples/python/training/english/dl-ner/ner_graph_builder.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/dl-ner/ner_graph_builder.ipynb)\n", "\n", diff --git a/examples/python/training/english/dl-ner/ner_logs.ipynb b/examples/python/training/english/dl-ner/ner_logs.ipynb index 8182b7450359..4f7a000347d3 100644 --- a/examples/python/training/english/dl-ner/ner_logs.ipynb +++ b/examples/python/training/english/dl-ner/ner_logs.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/dl-ner/ner_logs.ipynb)\n", "\n", diff --git a/examples/python/training/english/dl-ner/ner_xlnet.ipynb b/examples/python/training/english/dl-ner/ner_xlnet.ipynb index df183f54b96b..00a9f554889b 100644 --- a/examples/python/training/english/dl-ner/ner_xlnet.ipynb +++ b/examples/python/training/english/dl-ner/ner_xlnet.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/training/english/dl-ner/ner_xlnet.ipynb)\n", "\n", diff --git a/examples/python/training/english/doc2vec/Train_Doc2Vec_and_Text_Classification.ipynb b/examples/python/training/english/doc2vec/Train_Doc2Vec_and_Text_Classification.ipynb index 6bb0289f731a..2780860ddaf1 100644 --- a/examples/python/training/english/doc2vec/Train_Doc2Vec_and_Text_Classification.ipynb +++ b/examples/python/training/english/doc2vec/Train_Doc2Vec_and_Text_Classification.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/doc2vec/Train_Doc2Vec_and_Text_Classification.ipynb)\n", "\n", diff --git a/examples/python/training/english/entity-ruler/EntityRuler.ipynb b/examples/python/training/english/entity-ruler/EntityRuler.ipynb index c5c8478c8d7e..4148140ef451 100644 --- a/examples/python/training/english/entity-ruler/EntityRuler.ipynb +++ b/examples/python/training/english/entity-ruler/EntityRuler.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/entity-ruler/EntityRuler.ipynb)\n", "\n", diff --git a/examples/python/training/english/entity-ruler/EntityRuler_Alphabet.ipynb b/examples/python/training/english/entity-ruler/EntityRuler_Alphabet.ipynb index a0f65fac5235..d8642c7649c9 100644 --- a/examples/python/training/english/entity-ruler/EntityRuler_Alphabet.ipynb +++ b/examples/python/training/english/entity-ruler/EntityRuler_Alphabet.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/entity-ruler/EntityRuler_Alphabet.ipynb)\n", "\n", diff --git a/examples/python/training/english/entity-ruler/EntityRuler_LightPipeline.ipynb b/examples/python/training/english/entity-ruler/EntityRuler_LightPipeline.ipynb index 095b49d2e1c3..eb548b5e02b4 100644 --- a/examples/python/training/english/entity-ruler/EntityRuler_LightPipeline.ipynb +++ b/examples/python/training/english/entity-ruler/EntityRuler_LightPipeline.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/entity-ruler/EntityRuler_LightPipeline.ipynb)\n", "\n", diff --git a/examples/python/training/english/entity-ruler/EntityRuler_Without_Storage.ipynb b/examples/python/training/english/entity-ruler/EntityRuler_Without_Storage.ipynb index ecb65628fdbf..d2caab7b7840 100644 --- a/examples/python/training/english/entity-ruler/EntityRuler_Without_Storage.ipynb +++ b/examples/python/training/english/entity-ruler/EntityRuler_Without_Storage.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/entity-ruler/EntityRuler_Without_Storage.ipynb)\n", "\n", diff --git a/examples/python/training/english/sentiment-detection/RuleBasedSentiment.ipynb b/examples/python/training/english/sentiment-detection/RuleBasedSentiment.ipynb index b378e502580d..d45549562d17 100644 --- a/examples/python/training/english/sentiment-detection/RuleBasedSentiment.ipynb +++ b/examples/python/training/english/sentiment-detection/RuleBasedSentiment.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/sentiment-detection/RuleBasedSentiment.ipynb)\n", "\n", diff --git a/examples/python/training/english/sentiment-detection/VivekNarayanSentimentApproach.ipynb b/examples/python/training/english/sentiment-detection/VivekNarayanSentimentApproach.ipynb index 0ed6f28ee17f..0f936d91d778 100644 --- a/examples/python/training/english/sentiment-detection/VivekNarayanSentimentApproach.ipynb +++ b/examples/python/training/english/sentiment-detection/VivekNarayanSentimentApproach.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/sentiment-detection/VivekNarayanSentimentApproach.ipynb)\n", "\n", diff --git a/examples/python/training/english/word2vec/Train_Word2Vec_and_Named_Entity_Recognition.ipynb b/examples/python/training/english/word2vec/Train_Word2Vec_and_Named_Entity_Recognition.ipynb index 00b01b408851..254f1f0947b3 100644 --- a/examples/python/training/english/word2vec/Train_Word2Vec_and_Named_Entity_Recognition.ipynb +++ b/examples/python/training/english/word2vec/Train_Word2Vec_and_Named_Entity_Recognition.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/word2vec/Train_Word2Vec_and_Named_Entity_Recognition.ipynb)\n", "\n", diff --git a/examples/python/training/french/Train-Perceptron-French.ipynb b/examples/python/training/french/Train-Perceptron-French.ipynb index 8c7de9049fba..a5bee30b82f2 100644 --- a/examples/python/training/french/Train-Perceptron-French.ipynb +++ b/examples/python/training/french/Train-Perceptron-French.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/french/Train-Perceptron-French.ipynb)\n", "\n", diff --git a/examples/python/training/italian/Train-Lemmatizer-Italian.ipynb b/examples/python/training/italian/Train-Lemmatizer-Italian.ipynb index a548ddbae35a..ef3dc8710aa9 100644 --- a/examples/python/training/italian/Train-Lemmatizer-Italian.ipynb +++ b/examples/python/training/italian/Train-Lemmatizer-Italian.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/italian/Train-Lemmatizer-Italian.ipynb)\n", "\n", diff --git a/examples/python/training/italian/Train-SentimentDetector-Italian.ipynb b/examples/python/training/italian/Train-SentimentDetector-Italian.ipynb index e6139f4f018b..7aa87add7919 100644 --- a/examples/python/training/italian/Train-SentimentDetector-Italian.ipynb +++ b/examples/python/training/italian/Train-SentimentDetector-Italian.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/italian/Train-SentimentDetector-Italian.ipynb)\n", "\n", diff --git a/examples/python/training/italian/Training_Context_Spell_Checker_Italian.ipynb b/examples/python/training/italian/Training_Context_Spell_Checker_Italian.ipynb index f5ccec1c865e..3549b9087397 100644 --- a/examples/python/training/italian/Training_Context_Spell_Checker_Italian.ipynb +++ b/examples/python/training/italian/Training_Context_Spell_Checker_Italian.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/italian/Training_Context_Spell_Checker_Italian.ipynb)\n", "\n", diff --git a/examples/python/transformers/HuggingFace in Spark NLP - ALBERT.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - ALBERT.ipynb index 5103aeef09a4..7b4e57438069 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - ALBERT.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - ALBERT.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.orgimages/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20ALBERT.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - AlbertForQuestionAnswering.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - AlbertForQuestionAnswering.ipynb index 030465444ec9..0404d7ff8368 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - AlbertForQuestionAnswering.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - AlbertForQuestionAnswering.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.orgimages/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20AlbertForQuestionAnswering.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - AlbertForSequenceClassification.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - AlbertForSequenceClassification.ipynb index 9f55f30dc4b1..8b2009f3de17 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - AlbertForSequenceClassification.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - AlbertForSequenceClassification.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20AlbertForSequenceClassification.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - AlbertForTokenClassification.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - AlbertForTokenClassification.ipynb index 735d030c2acc..52d8f87c88c8 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - AlbertForTokenClassification.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - AlbertForTokenClassification.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20AlbertForTokenClassification.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - BERT Sentence.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - BERT Sentence.ipynb index 5b5e71922cc0..cc3d3bf8e270 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - BERT Sentence.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - BERT Sentence.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.orgimages/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20BERT%20Sentence.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - BERT.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - BERT.ipynb index bad6cfcf73a8..29b48e500fda 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - BERT.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - BERT.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.orgimages/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20BERT.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - BertForQuestionAnswering.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - BertForQuestionAnswering.ipynb index a7dc58b98ad8..b1162cff5a02 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - BertForQuestionAnswering.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - BertForQuestionAnswering.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20BertForQuestionAnswering.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - BertForSequenceClassification.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - BertForSequenceClassification.ipynb index d0368bdeeeb5..2615d475d3d6 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - BertForSequenceClassification.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - BertForSequenceClassification.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20BertForSequenceClassification.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - BertForTokenClassification.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - BertForTokenClassification.ipynb index 1bc19de4c5f1..d981ce88c14e 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - BertForTokenClassification.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - BertForTokenClassification.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.orgimages/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20BertForTokenClassification.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - CamemBERT.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - CamemBERT.ipynb index bc3c9ba5858e..ee619592d9d7 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - CamemBERT.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - CamemBERT.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.orgimages/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20CamemBERT.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - CamemBertForQuestionAnswering.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - CamemBertForQuestionAnswering.ipynb index af6723f1b416..117b79405e49 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - CamemBertForQuestionAnswering.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - CamemBertForQuestionAnswering.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20CamemBertForQuestionAnswering.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - CamemBertForSequenceClassification.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - CamemBertForSequenceClassification.ipynb index f50d0f94d037..ae5299bdb12b 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - CamemBertForSequenceClassification.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - CamemBertForSequenceClassification.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.orgimages/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20CamemBertForSequenceClassification.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - CamemBertForTokenClassification.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - CamemBertForTokenClassification.ipynb index cad6d91003ff..d176f03296f5 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - CamemBertForTokenClassification.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - CamemBertForTokenClassification.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20CamemBertForTokenClassification.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - DeBERTa.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - DeBERTa.ipynb index 171aef430207..54e36838a259 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - DeBERTa.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - DeBERTa.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20DeBERTa.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - DeBertaForQuestionAnswering.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - DeBertaForQuestionAnswering.ipynb index 4fda6428b576..0e52c9899a95 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - DeBertaForQuestionAnswering.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - DeBertaForQuestionAnswering.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20DeBertaForQuestionAnswering.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - DistilBERT.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - DistilBERT.ipynb index aeedcfbee2c8..2058b1d78a6a 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - DistilBERT.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - DistilBERT.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.orgimages/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20DistilBERT.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - DistilBertForQuestionAnswering.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - DistilBertForQuestionAnswering.ipynb index bb1f93ddaa91..f0aa79eee6ab 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - DistilBertForQuestionAnswering.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - DistilBertForQuestionAnswering.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20DistilBertForQuestionAnswering.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - DistilBertForSequenceClassification.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - DistilBertForSequenceClassification.ipynb index 7f7cc1786e42..86e8c21d2892 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - DistilBertForSequenceClassification.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - DistilBertForSequenceClassification.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.orgimages/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20DistilBertForSequenceClassification.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - DistilBertForTokenClassification.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - DistilBertForTokenClassification.ipynb index 0c5060185de4..7790931bd732 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - DistilBertForTokenClassification.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - DistilBertForTokenClassification.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20DistilBertForTokenClassification.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - Longformer.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - Longformer.ipynb index 5d90c82643f8..edca8ce3a6bc 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - Longformer.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - Longformer.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20Longformer.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - LongformerForQuestionAnswering.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - LongformerForQuestionAnswering.ipynb index 3333cf2507d5..0c25a58daadb 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - LongformerForQuestionAnswering.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - LongformerForQuestionAnswering.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.orgimages/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20LongformerForQuestionAnswering.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - RoBERTa.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - RoBERTa.ipynb index 9e35167c7ad5..a33e77ffb6ac 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - RoBERTa.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - RoBERTa.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20RoBERTa.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - RoBertaForQuestionAnswering.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - RoBertaForQuestionAnswering.ipynb index 49505273687c..ada82e3d786d 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - RoBertaForQuestionAnswering.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - RoBertaForQuestionAnswering.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20RoBertaForQuestionAnswering.ipynb)" diff --git a/examples/python/transformers/HuggingFace in Spark NLP - RoBertaForSequenceClassification.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - RoBertaForSequenceClassification.ipynb index 1c26c7cdfd6d..f60cae266c98 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - RoBertaForSequenceClassification.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - RoBertaForSequenceClassification.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.orgimages/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20RoBertaForSequenceClassification.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - RoBertaForTokenClassification.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - RoBertaForTokenClassification.ipynb index e09e0cfabe13..5912536126b8 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - RoBertaForTokenClassification.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - RoBertaForTokenClassification.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.orgimages/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20RoBertaForTokenClassification.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - ViTForImageClassification.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - ViTForImageClassification.ipynb index e9bd0726f676..ffad670ef575 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - ViTForImageClassification.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - ViTForImageClassification.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20ViTForImageClassification.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - XLM-RoBERTa.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - XLM-RoBERTa.ipynb index 918149f4ac05..1b594872a584 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - XLM-RoBERTa.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - XLM-RoBERTa.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.orgimages/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20XLM-RoBERTa.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - XLNet.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - XLNet.ipynb index 3d79af75e971..167812ed91ac 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - XLNet.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - XLNet.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20XLNet.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - XlmRoBertaForSequenceClassification.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - XlmRoBertaForSequenceClassification.ipynb index e9a89d40a664..af95ce7ba80b 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - XlmRoBertaForSequenceClassification.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - XlmRoBertaForSequenceClassification.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.orgimages/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20XlmRoBertaForSequenceClassification.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - XlmRoBertaForTokenClassification.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - XlmRoBertaForTokenClassification.ipynb index d0ee9315d696..fc933baab395 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - XlmRoBertaForTokenClassification.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - XlmRoBertaForTokenClassification.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20XlmRoBertaForTokenClassification.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - XlmRobertaForQuestionAnswering.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - XlmRobertaForQuestionAnswering.ipynb index 825353027d67..5b70c5f8562c 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - XlmRobertaForQuestionAnswering.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - XlmRobertaForQuestionAnswering.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20XlmRobertaForQuestionAnswering.ipynb)" ] diff --git a/examples/python/transformers/HuggingFace in Spark NLP - XlnetForSequenceClassification.ipynb b/examples/python/transformers/HuggingFace in Spark NLP - XlnetForSequenceClassification.ipynb index 1e1195f02b24..b5ab708ac18f 100644 --- a/examples/python/transformers/HuggingFace in Spark NLP - XlnetForSequenceClassification.ipynb +++ b/examples/python/transformers/HuggingFace in Spark NLP - XlnetForSequenceClassification.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.orgimages/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20XlnetForSequenceClassification.ipynb)" ] diff --git a/examples/python/transformers/Import External SavedModel From Remote Storage.ipynb b/examples/python/transformers/Import External SavedModel From Remote Storage.ipynb index b4f5be47288e..c102b12d2e70 100644 --- a/examples/python/transformers/Import External SavedModel From Remote Storage.ipynb +++ b/examples/python/transformers/Import External SavedModel From Remote Storage.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/Import%20External%20SavedModel%20From%20Remote%20Storage.ipynb)" ] diff --git a/examples/python/transformers/TF Hub in Spark NLP - ALBERT.ipynb b/examples/python/transformers/TF Hub in Spark NLP - ALBERT.ipynb index 25c104d8cdfc..53535353ab18 100644 --- a/examples/python/transformers/TF Hub in Spark NLP - ALBERT.ipynb +++ b/examples/python/transformers/TF Hub in Spark NLP - ALBERT.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/TF%20Hub%20in%20Spark%20NLP%20-%20ALBERT.ipynb)\n", "\n", diff --git a/examples/python/transformers/TF Hub in Spark NLP - BERT Sentence.ipynb b/examples/python/transformers/TF Hub in Spark NLP - BERT Sentence.ipynb index f08314af7ffc..810381109395 100644 --- a/examples/python/transformers/TF Hub in Spark NLP - BERT Sentence.ipynb +++ b/examples/python/transformers/TF Hub in Spark NLP - BERT Sentence.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/TF%20Hub%20in%20Spark%20NLP%20-%20BERT%20Sentence.ipynb)\n", "\n", diff --git a/examples/python/transformers/TF Hub in Spark NLP - BERT.ipynb b/examples/python/transformers/TF Hub in Spark NLP - BERT.ipynb index e26290028a7d..510e1e56b641 100644 --- a/examples/python/transformers/TF Hub in Spark NLP - BERT.ipynb +++ b/examples/python/transformers/TF Hub in Spark NLP - BERT.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/TF%20Hub%20in%20Spark%20NLP%20-%20BERT.ipynb)\n", "\n", diff --git a/examples/scala/training/NerDL/win/README.md b/examples/scala/training/NerDL/win/README.md index 582b81e735a8..6df7dcf1919e 100644 --- a/examples/scala/training/NerDL/win/README.md +++ b/examples/scala/training/NerDL/win/README.md @@ -3,7 +3,7 @@ * Few resolved issues which were faced while developing **CustomForNerDLPipeline** solution: >> Known Issues 1. If anyone encounters an error like 'Could not find a suitable tensorflow graph' - * Please find the solution at https://nlp.johnsnowlabs.com/docs/en/graph + * Please find the solution at https://sparknlp.org/docs/en/graph 2. Encountered an issue while working with play framework, which has a transitive dependency of guava jar * Solution: Use dependencyOverrides += "com.google.guava" % "guava" % "15.0" * Exception looks like below: diff --git a/examples/scala/training/NerDL/win/customNerDlPipeline/CustomForNerDLPipeline.java b/examples/scala/training/NerDL/win/customNerDlPipeline/CustomForNerDLPipeline.java index c4a41d4835f1..d7fabe3f4ebf 100644 --- a/examples/scala/training/NerDL/win/customNerDlPipeline/CustomForNerDLPipeline.java +++ b/examples/scala/training/NerDL/win/customNerDlPipeline/CustomForNerDLPipeline.java @@ -20,7 +20,7 @@ // The spark-nlp library has few defined configurations and if someone needs a different configuration // then one has to create a graph with required configuration - // Please go through this link for more details: https://nlp.johnsnowlabs.com/docs/en/graph + // Please go through this link for more details: https://sparknlp.org/docs/en/graph val PATH_TO_GRAPH_FOLDER="C:\\OpenSourceData\\GRAPH_FOLDER" // we have used glove word embeddings, one can learn word-embeddings related to it's data but it works fine. diff --git a/examples/util/Load_Model_From_S3.ipynb b/examples/util/Load_Model_From_S3.ipynb index 8e1604bc8186..b011b557cb0a 100644 --- a/examples/util/Load_Model_From_S3.ipynb +++ b/examples/util/Load_Model_From_S3.ipynb @@ -5,7 +5,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/util/Load_Model_From_S3.ipynb)" ] diff --git a/examples/util/Load_Model_from_GCP_Storage.ipynb b/examples/util/Load_Model_from_GCP_Storage.ipynb index c6d7b18ae1c8..99488c112ad0 100644 --- a/examples/util/Load_Model_from_GCP_Storage.ipynb +++ b/examples/util/Load_Model_from_GCP_Storage.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/util/Load_Model_from_GCP_Storage.ipynb)" ] diff --git a/examples/util/Training_Helpers.ipynb b/examples/util/Training_Helpers.ipynb index 03c9bc06d0a4..c56759513f10 100644 --- a/examples/util/Training_Helpers.ipynb +++ b/examples/util/Training_Helpers.ipynb @@ -11,7 +11,7 @@ "outputId": "5b622949-97be-460f-9deb-21a4a39c1667" }, "source": [ - "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)\n", + "![JohnSnowLabs](https://sparknlp.org/assets/images/logo.png)\n", "\n", "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/util/Training_Helpers.ipynb)" ] diff --git a/python/README.md b/python/README.md index 14da5a95cec1..fa5682b3092c 100644 --- a/python/README.md +++ b/python/README.md @@ -1100,7 +1100,7 @@ ResourceDownloader.showPublicPipelines(lang = "en", version = "3.1.0") */ ``` -#### Please check out our Models Hub for the full list of [pre-trained pipelines](https://nlp.johnsnowlabs.com/models) with examples, demos, benchmarks, and more +#### Please check out our Models Hub for the full list of [pre-trained pipelines](https://sparknlp.org/models) with examples, demos, benchmarks, and more ### Models @@ -1190,7 +1190,7 @@ XlnetEmbeddings */ ``` -#### Please check out our Models Hub for the full list of [pre-trained models](https://nlp.johnsnowlabs.com/models) with examples, demo, benchmark, and more +#### Please check out our Models Hub for the full list of [pre-trained models](https://sparknlp.org/models) with examples, demo, benchmark, and more ## Offline @@ -1201,7 +1201,7 @@ any limitations offline: - Instead of using the Maven package, you need to load our Fat JAR - Instead of using PretrainedPipeline for pretrained pipelines or the `.pretrained()` function to download pretrained - models, you will need to manually download your pipeline/model from [Models Hub](https://nlp.johnsnowlabs.com/models), + models, you will need to manually download your pipeline/model from [Models Hub](https://sparknlp.org/models), extract it, and load it. Example of `SparkSession` with Fat JAR to have Spark NLP offline: @@ -1252,13 +1252,13 @@ PipelineModel.load("/tmp/explain_document_dl_en_2.0.2_2.4_1556530585689/") Need more **examples**? Check out our dedicated [Spark NLP Examples](https://github.com/JohnSnowLabs/spark-nlp/tree/master/examples) repository to showcase all Spark NLP use cases! -Also, don't forget to check [Spark NLP in Action](https://nlp.johnsnowlabs.com/demo) built by Streamlit. +Also, don't forget to check [Spark NLP in Action](https://sparknlp.org/demo) built by Streamlit. ### All examples: [spark-nlp/examples](https://github.com/JohnSnowLabs/spark-nlp/tree/master/examples) ## FAQ -[Check our Articles and Videos page here](https://nlp.johnsnowlabs.com/learn) +[Check our Articles and Videos page here](https://sparknlp.org/learn) ## Citation diff --git a/python/docs/index.rst b/python/docs/index.rst index da71ff4474e2..e388557b1e77 100644 --- a/python/docs/index.rst +++ b/python/docs/index.rst @@ -21,7 +21,7 @@ Spark NLP Documentation ####################### -`Main Page `_ | `GitHub `_ | `Issues `_ | `Workshop `_ | `Models Hub `_ +`Main Page `_ | `GitHub `_ | `Issues `_ | `Workshop `_ | `Models Hub `_ Welcome to Spark NLP's Python documentation! This page contains information how to use the library with examples. diff --git a/python/docs/user_guide/annotators.rst b/python/docs/user_guide/annotators.rst index 09f18e66c4e7..2f32e71d5899 100644 --- a/python/docs/user_guide/annotators.rst +++ b/python/docs/user_guide/annotators.rst @@ -146,7 +146,7 @@ Sometimes we offer more than one model, in which case, you may have to use name, location to download them. For a complete list of available pretrained models, head to the `Spark NLP Models -`__. Alternatively you can also check for pretrained +`__. Alternatively you can also check for pretrained models of a particular annotator using :meth:`.ResourceDownloader.showPublicModels`. >>> ResourceDownloader.showPublicModels("ClassifierDLModel", "en") diff --git a/python/docs/user_guide/index.rst b/python/docs/user_guide/index.rst index d9e4b4223b22..5ad56d0853a3 100644 --- a/python/docs/user_guide/index.rst +++ b/python/docs/user_guide/index.rst @@ -4,7 +4,7 @@ User Guide This guide is an overview and explains the important features of Spark NLP. The in-depth documentation can be found in the :doc:`/reference/index`. -For more explanations, see also the `Main Page `_ +For more explanations, see also the `Main Page `_ and the `Workshop `_ for more examples. .. toctree:: diff --git a/python/docs/user_guide/pretrained_pipelines.rst b/python/docs/user_guide/pretrained_pipelines.rst index b3d3dbf2f20d..fb3cad6faf95 100644 --- a/python/docs/user_guide/pretrained_pipelines.rst +++ b/python/docs/user_guide/pretrained_pipelines.rst @@ -50,7 +50,7 @@ As a Spark NLP LightPipeline Available Pipelines =================== -Please see the `Pipelines Page `_ for all available pipelines. +Please see the `Pipelines Page `_ for all available pipelines. Alternatively you can also check for pretrained pipelines using :meth:`.ResourceDownloader.showPublicPipelines`. diff --git a/python/sparknlp/annotator/audio/hubert_for_ctc.py b/python/sparknlp/annotator/audio/hubert_for_ctc.py index 23df5c469031..0f7549e712ae 100644 --- a/python/sparknlp/annotator/audio/hubert_for_ctc.py +++ b/python/sparknlp/annotator/audio/hubert_for_ctc.py @@ -43,7 +43,7 @@ class HubertForCTC(AnnotatorModel, The default model is ``"asr_hubert_large_ls960"``, if no name is provided. For available pretrained models please see the - `Models Hub `__. + `Models Hub `__. To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669 and to see more extended diff --git a/python/sparknlp/annotator/audio/wav2vec2_for_ctc.py b/python/sparknlp/annotator/audio/wav2vec2_for_ctc.py index 317048b6b2c8..c1937df094e5 100644 --- a/python/sparknlp/annotator/audio/wav2vec2_for_ctc.py +++ b/python/sparknlp/annotator/audio/wav2vec2_for_ctc.py @@ -21,46 +21,46 @@ class Wav2Vec2ForCTC(AnnotatorModel, HasBatchedAnnotateAudio, HasAudioFeatureProperties, HasEngine): - """Wav2Vec2 Model with a language modeling head on top for Connectionist Temporal + """Wav2Vec2 Model with a language modeling head on top for Connectionist Temporal Classification (CTC). Wav2Vec2 was proposed in wav2vec 2.0: A Framework for Self-Supervised Learning of Speech Representations by Alexei Baevski, Henry Zhou, Abdelrahman Mohamed, Michael Auli. - + The annotator takes audio files and transcribes it as text. The audio needs to be provided pre-processed an array of floats. - + Note that this annotator is currently not supported on Apple Silicon processors such as the M1. This is due to the processor not supporting instructions for XLA. - + Pretrained models can be loaded with ``pretrained`` of the companion object: - + >>> speechToText = Wav2Vec2ForCTC.pretrained() \\ ... .setInputCols(["audio_assembler"]) \\ ... .setOutputCol("text") - - + + The default model is ``"asr_wav2vec2_base_960h"``, if no name is provided. - + For available pretrained models please see the - `Models Hub `__. - + `Models Hub `__. + To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669 and to see more extended examples, see `Wav2Vec2ForCTCTestSpec `__. - + ====================== ====================== Input Annotation types Output Annotation type ====================== ====================== ``AUDIO`` ``DOCUMENT`` ====================== ====================== - + Parameters ---------- - + batchSize Size of each batch, by default 2 - + Examples -------- >>> import sparknlp diff --git a/python/sparknlp/annotator/classifier_dl/albert_for_question_answering.py b/python/sparknlp/annotator/classifier_dl/albert_for_question_answering.py index 6ab669d68445..358c56cfd060 100755 --- a/python/sparknlp/annotator/classifier_dl/albert_for_question_answering.py +++ b/python/sparknlp/annotator/classifier_dl/albert_for_question_answering.py @@ -34,7 +34,7 @@ class AlbertForQuestionAnswering(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/classifier_dl/albert_for_sequence_classification.py b/python/sparknlp/annotator/classifier_dl/albert_for_sequence_classification.py index 3878285d9936..473b1b028d63 100755 --- a/python/sparknlp/annotator/classifier_dl/albert_for_sequence_classification.py +++ b/python/sparknlp/annotator/classifier_dl/albert_for_sequence_classification.py @@ -35,7 +35,7 @@ class AlbertForSequenceClassification(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 @@ -61,7 +61,7 @@ class AlbertForSequenceClassification(AnnotatorModel, Max sentence length to process, by default 128 coalesceSentences Instead of 1 class per sentence (if inputCols is `sentence`) output - 1 class per document by averaging probabilities in all sentences, by + 1 class per document by averaging probabilities in all sentences, by default False. activation Whether to calculate logits via Softmax or Sigmoid, by default diff --git a/python/sparknlp/annotator/classifier_dl/albert_for_token_classification.py b/python/sparknlp/annotator/classifier_dl/albert_for_token_classification.py index 2fb90576b657..eedaf3f98edc 100755 --- a/python/sparknlp/annotator/classifier_dl/albert_for_token_classification.py +++ b/python/sparknlp/annotator/classifier_dl/albert_for_token_classification.py @@ -34,7 +34,7 @@ class AlbertForTokenClassification(AnnotatorModel, The default model is ``"albert_base_token_classifier_conll03"``, if no name is provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/classifier_dl/bert_for_question_answering.py b/python/sparknlp/annotator/classifier_dl/bert_for_question_answering.py index f1fe3c309e00..f8b4e95c2b1e 100755 --- a/python/sparknlp/annotator/classifier_dl/bert_for_question_answering.py +++ b/python/sparknlp/annotator/classifier_dl/bert_for_question_answering.py @@ -34,7 +34,7 @@ class BertForQuestionAnswering(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/classifier_dl/bert_for_sequence_classification.py b/python/sparknlp/annotator/classifier_dl/bert_for_sequence_classification.py index c06b6ea1767f..959afdea2923 100755 --- a/python/sparknlp/annotator/classifier_dl/bert_for_sequence_classification.py +++ b/python/sparknlp/annotator/classifier_dl/bert_for_sequence_classification.py @@ -36,7 +36,7 @@ class BertForSequenceClassification(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/classifier_dl/bert_for_token_classification.py b/python/sparknlp/annotator/classifier_dl/bert_for_token_classification.py index ee60b600f328..2c1d39bf06a1 100755 --- a/python/sparknlp/annotator/classifier_dl/bert_for_token_classification.py +++ b/python/sparknlp/annotator/classifier_dl/bert_for_token_classification.py @@ -35,7 +35,7 @@ class BertForTokenClassification(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/classifier_dl/bert_for_zero_shot_classification.py b/python/sparknlp/annotator/classifier_dl/bert_for_zero_shot_classification.py index 532fad53510d..bf03580f80e1 100755 --- a/python/sparknlp/annotator/classifier_dl/bert_for_zero_shot_classification.py +++ b/python/sparknlp/annotator/classifier_dl/bert_for_zero_shot_classification.py @@ -41,7 +41,7 @@ class BertForZeroShotClassification(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/classifier_dl/camembert_for_question_answering.py b/python/sparknlp/annotator/classifier_dl/camembert_for_question_answering.py index 603c7f525161..7ea479326eec 100755 --- a/python/sparknlp/annotator/classifier_dl/camembert_for_question_answering.py +++ b/python/sparknlp/annotator/classifier_dl/camembert_for_question_answering.py @@ -34,7 +34,7 @@ class CamemBertForQuestionAnswering(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/classifier_dl/camembert_for_sequence_classification.py b/python/sparknlp/annotator/classifier_dl/camembert_for_sequence_classification.py index 94f5d4b84dee..6defc9687240 100644 --- a/python/sparknlp/annotator/classifier_dl/camembert_for_sequence_classification.py +++ b/python/sparknlp/annotator/classifier_dl/camembert_for_sequence_classification.py @@ -36,7 +36,7 @@ class CamemBertForSequenceClassification(AnnotatorModel, name is provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 `_. diff --git a/python/sparknlp/annotator/classifier_dl/camembert_for_token_classification.py b/python/sparknlp/annotator/classifier_dl/camembert_for_token_classification.py index 58634275628d..9c7445c031bd 100755 --- a/python/sparknlp/annotator/classifier_dl/camembert_for_token_classification.py +++ b/python/sparknlp/annotator/classifier_dl/camembert_for_token_classification.py @@ -34,7 +34,7 @@ class CamemBertForTokenClassification(AnnotatorModel, name is provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 `_. diff --git a/python/sparknlp/annotator/classifier_dl/classifier_dl.py b/python/sparknlp/annotator/classifier_dl/classifier_dl.py index 1e06a6d0a8c0..90b30db9543a 100755 --- a/python/sparknlp/annotator/classifier_dl/classifier_dl.py +++ b/python/sparknlp/annotator/classifier_dl/classifier_dl.py @@ -203,7 +203,7 @@ class ClassifierDLModel(AnnotatorModel, HasStorageRef, HasEngine): dataset. For available pretrained models please see the - `Models Hub `__. + `Models Hub `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/classifier_dl/deberta_for_question_answering.py b/python/sparknlp/annotator/classifier_dl/deberta_for_question_answering.py index e7992fe645ce..10427ba0f112 100755 --- a/python/sparknlp/annotator/classifier_dl/deberta_for_question_answering.py +++ b/python/sparknlp/annotator/classifier_dl/deberta_for_question_answering.py @@ -34,7 +34,7 @@ class DeBertaForQuestionAnswering(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/classifier_dl/deberta_for_sequence_classification.py b/python/sparknlp/annotator/classifier_dl/deberta_for_sequence_classification.py index b4327609e68d..cb3153f9ecfc 100755 --- a/python/sparknlp/annotator/classifier_dl/deberta_for_sequence_classification.py +++ b/python/sparknlp/annotator/classifier_dl/deberta_for_sequence_classification.py @@ -34,7 +34,7 @@ class DeBertaForSequenceClassification(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 @@ -60,7 +60,7 @@ class DeBertaForSequenceClassification(AnnotatorModel, Max sentence length to process, by default 128 coalesceSentences Instead of 1 class per sentence (if inputCols is `sentence`) output - 1 class per document by averaging probabilities in all sentences, by + 1 class per document by averaging probabilities in all sentences, by default False. Examples diff --git a/python/sparknlp/annotator/classifier_dl/deberta_for_token_classification.py b/python/sparknlp/annotator/classifier_dl/deberta_for_token_classification.py index 8bd5d560ca6e..f464b3a0c856 100755 --- a/python/sparknlp/annotator/classifier_dl/deberta_for_token_classification.py +++ b/python/sparknlp/annotator/classifier_dl/deberta_for_token_classification.py @@ -35,7 +35,7 @@ class DeBertaForTokenClassification(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/classifier_dl/distil_bert_for_question_answering.py b/python/sparknlp/annotator/classifier_dl/distil_bert_for_question_answering.py index 216bba6c33c2..b16f616520eb 100755 --- a/python/sparknlp/annotator/classifier_dl/distil_bert_for_question_answering.py +++ b/python/sparknlp/annotator/classifier_dl/distil_bert_for_question_answering.py @@ -34,7 +34,7 @@ class DistilBertForQuestionAnswering(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/classifier_dl/distil_bert_for_sequence_classification.py b/python/sparknlp/annotator/classifier_dl/distil_bert_for_sequence_classification.py index 899bddacad6f..a3c0d446181c 100755 --- a/python/sparknlp/annotator/classifier_dl/distil_bert_for_sequence_classification.py +++ b/python/sparknlp/annotator/classifier_dl/distil_bert_for_sequence_classification.py @@ -35,7 +35,7 @@ class DistilBertForSequenceClassification(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 @@ -61,7 +61,7 @@ class DistilBertForSequenceClassification(AnnotatorModel, Max sentence length to process, by default 128 coalesceSentences Instead of 1 class per sentence (if inputCols is `sentence`) output - 1 class per document by averaging probabilities in all sentences, by + 1 class per document by averaging probabilities in all sentences, by default False. activation Whether to calculate logits via Softmax or Sigmoid, by default diff --git a/python/sparknlp/annotator/classifier_dl/distil_bert_for_token_classification.py b/python/sparknlp/annotator/classifier_dl/distil_bert_for_token_classification.py index a9a92674ae13..218ba5336bed 100755 --- a/python/sparknlp/annotator/classifier_dl/distil_bert_for_token_classification.py +++ b/python/sparknlp/annotator/classifier_dl/distil_bert_for_token_classification.py @@ -35,7 +35,7 @@ class DistilBertForTokenClassification(AnnotatorModel, name is provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/classifier_dl/longformer_for_question_answering.py b/python/sparknlp/annotator/classifier_dl/longformer_for_question_answering.py index 3126e5948c2b..a0ead26735fc 100755 --- a/python/sparknlp/annotator/classifier_dl/longformer_for_question_answering.py +++ b/python/sparknlp/annotator/classifier_dl/longformer_for_question_answering.py @@ -34,7 +34,7 @@ class LongformerForQuestionAnswering(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/classifier_dl/longformer_for_sequence_classification.py b/python/sparknlp/annotator/classifier_dl/longformer_for_sequence_classification.py index 5b48b6c26bad..435a851501dd 100755 --- a/python/sparknlp/annotator/classifier_dl/longformer_for_sequence_classification.py +++ b/python/sparknlp/annotator/classifier_dl/longformer_for_sequence_classification.py @@ -35,7 +35,7 @@ class LongformerForSequenceClassification(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 @@ -61,7 +61,7 @@ class LongformerForSequenceClassification(AnnotatorModel, Max sentence length to process, by default 4096 coalesceSentences Instead of 1 class per sentence (if inputCols is `sentence`) output - 1 class per document by averaging probabilities in all sentences, by + 1 class per document by averaging probabilities in all sentences, by default False. activation Whether to calculate logits via Softmax or Sigmoid, by default diff --git a/python/sparknlp/annotator/classifier_dl/longformer_for_token_classification.py b/python/sparknlp/annotator/classifier_dl/longformer_for_token_classification.py index f7b7222c8d63..bb5d00705d97 100755 --- a/python/sparknlp/annotator/classifier_dl/longformer_for_token_classification.py +++ b/python/sparknlp/annotator/classifier_dl/longformer_for_token_classification.py @@ -35,7 +35,7 @@ class LongformerForTokenClassification(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/classifier_dl/multi_classifier_dl.py b/python/sparknlp/annotator/classifier_dl/multi_classifier_dl.py index 7ca27a9cc471..51922a2afbd2 100755 --- a/python/sparknlp/annotator/classifier_dl/multi_classifier_dl.py +++ b/python/sparknlp/annotator/classifier_dl/multi_classifier_dl.py @@ -265,7 +265,7 @@ class MultiClassifierDLModel(AnnotatorModel, HasStorageRef, HasEngine): The data is based on the `Jigsaw Toxic Comment Classification Challenge `__. - For available pretrained models please see the `Models Hub `__. + For available pretrained models please see the `Models Hub `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/classifier_dl/roberta_for_question_answering.py b/python/sparknlp/annotator/classifier_dl/roberta_for_question_answering.py index d2b1d30a8a51..19c042e32fe6 100755 --- a/python/sparknlp/annotator/classifier_dl/roberta_for_question_answering.py +++ b/python/sparknlp/annotator/classifier_dl/roberta_for_question_answering.py @@ -34,7 +34,7 @@ class RoBertaForQuestionAnswering(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/classifier_dl/roberta_for_sequence_classification.py b/python/sparknlp/annotator/classifier_dl/roberta_for_sequence_classification.py index 2ef1283e513d..eeb2c3e8032c 100755 --- a/python/sparknlp/annotator/classifier_dl/roberta_for_sequence_classification.py +++ b/python/sparknlp/annotator/classifier_dl/roberta_for_sequence_classification.py @@ -35,7 +35,7 @@ class RoBertaForSequenceClassification(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 @@ -61,7 +61,7 @@ class RoBertaForSequenceClassification(AnnotatorModel, Max sentence length to process, by default 128 coalesceSentences Instead of 1 class per sentence (if inputCols is `sentence`) output - 1 class per document by averaging probabilities in all sentences, by + 1 class per document by averaging probabilities in all sentences, by default False. activation Whether to calculate logits via Softmax or Sigmoid, by default diff --git a/python/sparknlp/annotator/classifier_dl/roberta_for_token_classification.py b/python/sparknlp/annotator/classifier_dl/roberta_for_token_classification.py index 055af2628136..6cc071a29092 100755 --- a/python/sparknlp/annotator/classifier_dl/roberta_for_token_classification.py +++ b/python/sparknlp/annotator/classifier_dl/roberta_for_token_classification.py @@ -35,7 +35,7 @@ class RoBertaForTokenClassification(AnnotatorModel, is provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/classifier_dl/sentiment_dl.py b/python/sparknlp/annotator/classifier_dl/sentiment_dl.py index dcad6d605a86..362df774e6d8 100755 --- a/python/sparknlp/annotator/classifier_dl/sentiment_dl.py +++ b/python/sparknlp/annotator/classifier_dl/sentiment_dl.py @@ -233,7 +233,7 @@ class SentimentDLModel(AnnotatorModel, HasStorageRef, HasEngine): The default model is ``"sentimentdl_use_imdb"``, if no name is provided. It is english sentiment analysis trained on the IMDB dataset. For available pretrained models please see the `Models Hub - `__. + `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/classifier_dl/tapas_for_question_answering.py b/python/sparknlp/annotator/classifier_dl/tapas_for_question_answering.py index ee4b84e07a11..5911d94d2f92 100644 --- a/python/sparknlp/annotator/classifier_dl/tapas_for_question_answering.py +++ b/python/sparknlp/annotator/classifier_dl/tapas_for_question_answering.py @@ -33,7 +33,7 @@ class TapasForQuestionAnswering(BertForQuestionAnswering): is provided. For available pretrained models please see the `Models Hub - `__. + `__. ====================== ====================== Input Annotation types Output Annotation type diff --git a/python/sparknlp/annotator/classifier_dl/xlm_roberta_for_question_answering.py b/python/sparknlp/annotator/classifier_dl/xlm_roberta_for_question_answering.py index b4ab6cc45ce5..e66b25785075 100755 --- a/python/sparknlp/annotator/classifier_dl/xlm_roberta_for_question_answering.py +++ b/python/sparknlp/annotator/classifier_dl/xlm_roberta_for_question_answering.py @@ -34,7 +34,7 @@ class XlmRoBertaForQuestionAnswering(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/classifier_dl/xlm_roberta_for_sequence_classification.py b/python/sparknlp/annotator/classifier_dl/xlm_roberta_for_sequence_classification.py index 0b3767b871dc..a7774e6f3884 100755 --- a/python/sparknlp/annotator/classifier_dl/xlm_roberta_for_sequence_classification.py +++ b/python/sparknlp/annotator/classifier_dl/xlm_roberta_for_sequence_classification.py @@ -35,7 +35,7 @@ class XlmRoBertaForSequenceClassification(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 @@ -61,7 +61,7 @@ class XlmRoBertaForSequenceClassification(AnnotatorModel, Max sentence length to process, by default 128 coalesceSentences Instead of 1 class per sentence (if inputCols is `sentence`) output - 1 class per document by averaging probabilities in all sentences, by + 1 class per document by averaging probabilities in all sentences, by default False. activation Whether to calculate logits via Softmax or Sigmoid, by default diff --git a/python/sparknlp/annotator/classifier_dl/xlm_roberta_for_token_classification.py b/python/sparknlp/annotator/classifier_dl/xlm_roberta_for_token_classification.py index f7043b8b4c6e..49b181e4c2dc 100755 --- a/python/sparknlp/annotator/classifier_dl/xlm_roberta_for_token_classification.py +++ b/python/sparknlp/annotator/classifier_dl/xlm_roberta_for_token_classification.py @@ -34,7 +34,7 @@ class XlmRoBertaForTokenClassification(AnnotatorModel, name is provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 `_. diff --git a/python/sparknlp/annotator/classifier_dl/xlnet_for_sequence_classification.py b/python/sparknlp/annotator/classifier_dl/xlnet_for_sequence_classification.py index 992c42b101eb..11ecf8f13a31 100755 --- a/python/sparknlp/annotator/classifier_dl/xlnet_for_sequence_classification.py +++ b/python/sparknlp/annotator/classifier_dl/xlnet_for_sequence_classification.py @@ -35,7 +35,7 @@ class XlnetForSequenceClassification(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 @@ -61,7 +61,7 @@ class XlnetForSequenceClassification(AnnotatorModel, Max sentence length to process, by default 128 coalesceSentences Instead of 1 class per sentence (if inputCols is `sentence`) output - 1 class per document by averaging probabilities in all sentences, by + 1 class per document by averaging probabilities in all sentences, by default False. activation Whether to calculate logits via Softmax or Sigmoid, by default diff --git a/python/sparknlp/annotator/classifier_dl/xlnet_for_token_classification.py b/python/sparknlp/annotator/classifier_dl/xlnet_for_token_classification.py index e101d1c61f4e..885395112853 100755 --- a/python/sparknlp/annotator/classifier_dl/xlnet_for_token_classification.py +++ b/python/sparknlp/annotator/classifier_dl/xlnet_for_token_classification.py @@ -35,7 +35,7 @@ class XlnetForTokenClassification(AnnotatorModel, provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/coref/spanbert_coref.py b/python/sparknlp/annotator/coref/spanbert_coref.py index a66e653e3b2c..c5e75a5a9327 100644 --- a/python/sparknlp/annotator/coref/spanbert_coref.py +++ b/python/sparknlp/annotator/coref/spanbert_coref.py @@ -38,7 +38,7 @@ class SpanBertCorefModel(AnnotatorModel, The default model is ``"spanbert_base_coref"``, if no name is provided. For available pretrained models please see the `Models Hub - `__. + `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/cv/convnext_for_image_classification.py b/python/sparknlp/annotator/cv/convnext_for_image_classification.py index 86d1e99f4ab4..d86b71a3e448 100644 --- a/python/sparknlp/annotator/cv/convnext_for_image_classification.py +++ b/python/sparknlp/annotator/cv/convnext_for_image_classification.py @@ -29,7 +29,7 @@ class ConvNextForImageClassification(AnnotatorModel, them. For available pretrained models please see the - `Models Hub `__. + `Models Hub `__. Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see diff --git a/python/sparknlp/annotator/cv/swin_for_image_classification.py b/python/sparknlp/annotator/cv/swin_for_image_classification.py index 388ef4b52858..bbbb74cc068b 100644 --- a/python/sparknlp/annotator/cv/swin_for_image_classification.py +++ b/python/sparknlp/annotator/cv/swin_for_image_classification.py @@ -43,7 +43,7 @@ class SwinForImageClassification(AnnotatorModel, provided. For available pretrained models please see the - `Models Hub `__. + `Models Hub `__. Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see diff --git a/python/sparknlp/annotator/cv/vit_for_image_classification.py b/python/sparknlp/annotator/cv/vit_for_image_classification.py index 623420f681eb..d8ae15df3ffd 100644 --- a/python/sparknlp/annotator/cv/vit_for_image_classification.py +++ b/python/sparknlp/annotator/cv/vit_for_image_classification.py @@ -39,7 +39,7 @@ class ViTForImageClassification(AnnotatorModel, provided. For available pretrained models please see the - `Models Hub `__. + `Models Hub `__. Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To see which models are compatible and how to import them see diff --git a/python/sparknlp/annotator/dependency/dependency_parser.py b/python/sparknlp/annotator/dependency/dependency_parser.py index 67e9e1d5075a..6a0789ae5e41 100755 --- a/python/sparknlp/annotator/dependency/dependency_parser.py +++ b/python/sparknlp/annotator/dependency/dependency_parser.py @@ -187,7 +187,7 @@ class DependencyParserModel(AnnotatorModel): The default model is ``"dependency_conllu"``, if no name is provided. For available pretrained models please see the - `Models Hub `__. + `Models Hub `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/dependency/typed_dependency_parser.py b/python/sparknlp/annotator/dependency/typed_dependency_parser.py index 547e3cd9093b..8fb0476c29bd 100755 --- a/python/sparknlp/annotator/dependency/typed_dependency_parser.py +++ b/python/sparknlp/annotator/dependency/typed_dependency_parser.py @@ -193,7 +193,7 @@ class TypedDependencyParserModel(AnnotatorModel): The default model is ``"dependency_typed_conllu"``, if no name is provided. For available pretrained models please see the `Models Hub - `__. + `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/embeddings/bert_embeddings.py b/python/sparknlp/annotator/embeddings/bert_embeddings.py index 05e207ace1ff..a55ea7744538 100755 --- a/python/sparknlp/annotator/embeddings/bert_embeddings.py +++ b/python/sparknlp/annotator/embeddings/bert_embeddings.py @@ -38,7 +38,7 @@ class BertEmbeddings(AnnotatorModel, The default model is ``"small_bert_L2_768"``, if no name is provided. For available pretrained models please see the - `Models Hub `__. + `Models Hub `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/embeddings/bert_sentence_embeddings.py b/python/sparknlp/annotator/embeddings/bert_sentence_embeddings.py index f27b78198842..700af88a8be8 100755 --- a/python/sparknlp/annotator/embeddings/bert_sentence_embeddings.py +++ b/python/sparknlp/annotator/embeddings/bert_sentence_embeddings.py @@ -38,7 +38,7 @@ class BertSentenceEmbeddings(AnnotatorModel, The default model is ``"sent_small_bert_L2_768"``, if no name is provided. For available pretrained models please see the - `Models Hub `__. + `Models Hub `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/embeddings/camembert_embeddings.py b/python/sparknlp/annotator/embeddings/camembert_embeddings.py index f43d4b597820..1171d6b4ea08 100755 --- a/python/sparknlp/annotator/embeddings/camembert_embeddings.py +++ b/python/sparknlp/annotator/embeddings/camembert_embeddings.py @@ -39,7 +39,7 @@ class CamemBertEmbeddings(AnnotatorModel, The default model is ``"camembert_base"``, if no name is provided. For available pretrained models please see the - `Models Hub `__. + `Models Hub `__. For extended examples of usage, see the `Examples `__ diff --git a/python/sparknlp/annotator/embeddings/distil_bert_embeddings.py b/python/sparknlp/annotator/embeddings/distil_bert_embeddings.py index 52246a4ef840..0afc3a7cedc7 100755 --- a/python/sparknlp/annotator/embeddings/distil_bert_embeddings.py +++ b/python/sparknlp/annotator/embeddings/distil_bert_embeddings.py @@ -37,7 +37,7 @@ class DistilBertEmbeddings(AnnotatorModel, The default model is ``"distilbert_base_cased"``, if no name is provided. For available pretrained models please see the - `Models Hub `__. + `Models Hub `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/embeddings/doc2vec.py b/python/sparknlp/annotator/embeddings/doc2vec.py index 161d17cfa349..da63d575996d 100755 --- a/python/sparknlp/annotator/embeddings/doc2vec.py +++ b/python/sparknlp/annotator/embeddings/doc2vec.py @@ -31,7 +31,7 @@ class Doc2VecApproach(AnnotatorApproach, HasStorageRef, HasEnableCachingProperti For instantiated/pretrained models, see :class:`.Doc2VecModel`. - For available pretrained models please see the `Models Hub `__. + For available pretrained models please see the `Models Hub `__. ====================== ======================= Input Annotation types Output Annotation type diff --git a/python/sparknlp/annotator/embeddings/elmo_embeddings.py b/python/sparknlp/annotator/embeddings/elmo_embeddings.py index c4ecb7bc8088..46b9858e84f6 100755 --- a/python/sparknlp/annotator/embeddings/elmo_embeddings.py +++ b/python/sparknlp/annotator/embeddings/elmo_embeddings.py @@ -38,7 +38,7 @@ class ElmoEmbeddings(AnnotatorModel, The default model is ``"elmo"``, if no name is provided. - For available pretrained models please see the `Models Hub `__. + For available pretrained models please see the `Models Hub `__. The pooling layer can be set with :meth:`.setPoolingLayer` to the following values: diff --git a/python/sparknlp/annotator/embeddings/longformer_embeddings.py b/python/sparknlp/annotator/embeddings/longformer_embeddings.py index 8a240cdd3fa0..cab8fab4f3c4 100755 --- a/python/sparknlp/annotator/embeddings/longformer_embeddings.py +++ b/python/sparknlp/annotator/embeddings/longformer_embeddings.py @@ -38,7 +38,7 @@ class LongformerEmbeddings(AnnotatorModel, The default model is ``"longformer_base_4096"``, if no name is provided. For available pretrained models please see the `Models Hub - `__. + `__. To see which models are compatible and how to import them see `Import Transformers into Spark NLP 🚀 diff --git a/python/sparknlp/annotator/embeddings/roberta_embeddings.py b/python/sparknlp/annotator/embeddings/roberta_embeddings.py index 6c9ba60446e0..24c6596e5c52 100755 --- a/python/sparknlp/annotator/embeddings/roberta_embeddings.py +++ b/python/sparknlp/annotator/embeddings/roberta_embeddings.py @@ -42,7 +42,7 @@ class RoBertaEmbeddings(AnnotatorModel, The default model is ``"roberta_base"``, if no name is provided. For available pretrained models please see the `Models Hub - `__. + `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/embeddings/roberta_sentence_embeddings.py b/python/sparknlp/annotator/embeddings/roberta_sentence_embeddings.py index bc705d6fca48..b1ca8fd3fbc8 100755 --- a/python/sparknlp/annotator/embeddings/roberta_sentence_embeddings.py +++ b/python/sparknlp/annotator/embeddings/roberta_sentence_embeddings.py @@ -39,7 +39,7 @@ class RoBertaSentenceEmbeddings(AnnotatorModel, The default model is ``"sent_roberta_base"``, if no name is provided. For available pretrained models please see the - `Models Hub `__. + `Models Hub `__. ====================== ======================= Input Annotation types Output Annotation type diff --git a/python/sparknlp/annotator/embeddings/universal_sentence_encoder.py b/python/sparknlp/annotator/embeddings/universal_sentence_encoder.py index a1624dbf62ad..ae155bba436f 100755 --- a/python/sparknlp/annotator/embeddings/universal_sentence_encoder.py +++ b/python/sparknlp/annotator/embeddings/universal_sentence_encoder.py @@ -35,7 +35,7 @@ class UniversalSentenceEncoder(AnnotatorModel, The default model is ``"tfhub_use"``, if no name is provided. For available pretrained models please see the `Models Hub - `__. + `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/embeddings/word2vec.py b/python/sparknlp/annotator/embeddings/word2vec.py index 537cecbec7de..e3e52f32f00c 100755 --- a/python/sparknlp/annotator/embeddings/word2vec.py +++ b/python/sparknlp/annotator/embeddings/word2vec.py @@ -32,7 +32,7 @@ class Word2VecApproach(AnnotatorApproach, HasStorageRef, HasEnableCachingPropert For instantiated/pretrained models, see :class:`.Word2VecModel`. - For available pretrained models please see the `Models Hub `__. + For available pretrained models please see the `Models Hub `__. ====================== ======================= Input Annotation types Output Annotation type diff --git a/python/sparknlp/annotator/embeddings/word_embeddings.py b/python/sparknlp/annotator/embeddings/word_embeddings.py index 2f43a3047fb8..986c2822c0f8 100755 --- a/python/sparknlp/annotator/embeddings/word_embeddings.py +++ b/python/sparknlp/annotator/embeddings/word_embeddings.py @@ -177,7 +177,7 @@ class WordEmbeddingsModel(AnnotatorModel, HasEmbeddingsProperties, HasStorageMod The default model is ``"glove_100d"``, if no name is provided. For available pretrained models please see the `Models Hub - `__. + `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/embeddings/xlm_roberta_embeddings.py b/python/sparknlp/annotator/embeddings/xlm_roberta_embeddings.py index f8aecb86013a..46fa091ba056 100755 --- a/python/sparknlp/annotator/embeddings/xlm_roberta_embeddings.py +++ b/python/sparknlp/annotator/embeddings/xlm_roberta_embeddings.py @@ -40,7 +40,7 @@ class XlmRoBertaEmbeddings(AnnotatorModel, The default model is ``"xlm_roberta_base"``, default language is ``"xx"`` (meaning multi-lingual), if no values are provided. For available pretrained models please see the `Models Hub - `__. + `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/embeddings/xlm_roberta_sentence_embeddings.py b/python/sparknlp/annotator/embeddings/xlm_roberta_sentence_embeddings.py index db4708cf1e2a..4d65e20f6ba7 100755 --- a/python/sparknlp/annotator/embeddings/xlm_roberta_sentence_embeddings.py +++ b/python/sparknlp/annotator/embeddings/xlm_roberta_sentence_embeddings.py @@ -39,7 +39,7 @@ class XlmRoBertaSentenceEmbeddings(AnnotatorModel, The default model is ``"sent_xlm_roberta_base"``, if no name is provided. For available pretrained models please see the - `Models Hub `__. + `Models Hub `__. ====================== ======================= Input Annotation types Output Annotation type diff --git a/python/sparknlp/annotator/ld_dl/language_detector_dl.py b/python/sparknlp/annotator/ld_dl/language_detector_dl.py index b917c3db6341..462b321dd4c6 100755 --- a/python/sparknlp/annotator/ld_dl/language_detector_dl.py +++ b/python/sparknlp/annotator/ld_dl/language_detector_dl.py @@ -37,7 +37,7 @@ class LanguageDetectorDL(AnnotatorModel, HasStorageRef, HasEngine): The default model is ``"ld_wiki_tatoeba_cnn_21"``, default language is ``"xx"`` (meaning multi-lingual), if no values are provided. - For available pretrained models please see the `Models Hub `__. + For available pretrained models please see the `Models Hub `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/lemmatizer.py b/python/sparknlp/annotator/lemmatizer.py index f1e80e8b44c3..85d4dc9b3b7a 100755 --- a/python/sparknlp/annotator/lemmatizer.py +++ b/python/sparknlp/annotator/lemmatizer.py @@ -24,7 +24,7 @@ class Lemmatizer(AnnotatorApproach): For instantiated/pretrained models, see :class:`.LemmatizerModel`. - For available pretrained models please see the `Models Hub `__. + For available pretrained models please see the `Models Hub `__. For extended examples of usage, see the `Examples `__. ====================== ====================== @@ -194,7 +194,7 @@ class LemmatizerModel(AnnotatorModel): ... .setInputCols(["token"]) \\ ... .setOutputCol("lemma") - For available pretrained models please see the `Models Hub `__. + For available pretrained models please see the `Models Hub `__. ====================== ====================== Input Annotation types Output Annotation type diff --git a/python/sparknlp/annotator/matcher/date_matcher.py b/python/sparknlp/annotator/matcher/date_matcher.py index 1d1d54fdd826..55c380104482 100755 --- a/python/sparknlp/annotator/matcher/date_matcher.py +++ b/python/sparknlp/annotator/matcher/date_matcher.py @@ -184,7 +184,7 @@ class DateMatcher(AnnotatorModel, DateMatcherUtils): ``2008/04/31``. Pretrained pipelines are available for this module, see - `Pipelines `__. + `Pipelines `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/matcher/regex_matcher.py b/python/sparknlp/annotator/matcher/regex_matcher.py index f9fc8a73c4cc..332e0835f5e7 100755 --- a/python/sparknlp/annotator/matcher/regex_matcher.py +++ b/python/sparknlp/annotator/matcher/regex_matcher.py @@ -32,7 +32,7 @@ class RegexMatcher(AnnotatorApproach): delimited text file. Pretrained pipelines are available for this module, see `Pipelines - `__. + `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/ner/ner_crf.py b/python/sparknlp/annotator/ner/ner_crf.py index d0829332f141..09b08222d7b8 100755 --- a/python/sparknlp/annotator/ner/ner_crf.py +++ b/python/sparknlp/annotator/ner/ner_crf.py @@ -278,7 +278,7 @@ class NerCrfModel(AnnotatorModel): The default model is ``"ner_crf"``, if no name is provided. For available pretrained models please see the `Models Hub - `__. + `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/ner/ner_dl.py b/python/sparknlp/annotator/ner/ner_dl.py index ea87002082ea..48dd6301ac85 100755 --- a/python/sparknlp/annotator/ner/ner_dl.py +++ b/python/sparknlp/annotator/ner/ner_dl.py @@ -420,9 +420,9 @@ class NerDLModel(AnnotatorModel, HasStorageRef, HasBatchedAnnotate, HasEngine): The default model is ``"ner_dl"``, if no name is provided. For available pretrained models please see the `Models Hub - `__. + `__. Additionally, pretrained pipelines are available for this module, see - `Pipelines `__. + `Pipelines `__. Note that some pretrained models require specific types of embeddings, depending on which they were trained on. For example, the default model diff --git a/python/sparknlp/annotator/pos/perceptron.py b/python/sparknlp/annotator/pos/perceptron.py index 4a67e4e3d2b4..1c461df7f9bd 100755 --- a/python/sparknlp/annotator/pos/perceptron.py +++ b/python/sparknlp/annotator/pos/perceptron.py @@ -174,9 +174,9 @@ class PerceptronModel(AnnotatorModel): The default model is ``"pos_anc"``, if no name is provided. For available pretrained models please see the `Models Hub - `__. + `__. Additionally, pretrained pipelines are available for this module, see - `Pipelines `__. + `Pipelines `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/sentence/sentence_detector_dl.py b/python/sparknlp/annotator/sentence/sentence_detector_dl.py index 703c461d41e3..6e7051e1a6dd 100755 --- a/python/sparknlp/annotator/sentence/sentence_detector_dl.py +++ b/python/sparknlp/annotator/sentence/sentence_detector_dl.py @@ -217,7 +217,7 @@ class SentenceDetectorDLModel(AnnotatorModel, HasEngine): The default model is ``"sentence_detector_dl"``, if no name is provided. For available pretrained models please see the `Models Hub - `__. + `__. Each extracted sentence can be returned in an Array or exploded to separate rows, if ``explodeSentences`` is set to ``true``. diff --git a/python/sparknlp/annotator/seq2seq/bart_transformer.py b/python/sparknlp/annotator/seq2seq/bart_transformer.py index 35cb40d13fe9..04e177be029a 100755 --- a/python/sparknlp/annotator/seq2seq/bart_transformer.py +++ b/python/sparknlp/annotator/seq2seq/bart_transformer.py @@ -24,22 +24,22 @@ class BartTransformer(AnnotatorModel, HasBatchedAnnotate, HasEngine): language generation model that was introduced by Facebook AI in 2019. It is based on the transformer architecture and is designed to handle a wide range of natural language processing tasks such as text generation, summarization, and machine translation. - + BART is unique in that it is both bidirectional and auto-regressive, meaning that it can generate text both from left-to-right and from right-to-left. This allows it to capture contextual information from both past and future tokens in a sentence,resulting in more accurate and natural language generation. - + The model was trained on a large corpus of text data using a combination of unsupervised and supervised learning techniques. It incorporates pretraining and fine-tuning phases, where the model is first trained on a large unlabeled corpus of text, and then fine-tuned on specific downstream tasks. - + BART has achieved state-of-the-art performance on a wide range of NLP tasks, including summarization, question-answering, and language translation. Its ability to handle multiple tasks and its high performance on each of these tasks make it a versatile and valuable tool for natural language processing applications. - + Pretrained models can be loaded with :meth:`.pretrained` of the companion object: @@ -52,7 +52,7 @@ class BartTransformer(AnnotatorModel, HasBatchedAnnotate, HasEngine): The default model is ``"distilbart_xsum_12_6"``, if no name is provided. For available pretrained models please see the `Models Hub - `__. + `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/seq2seq/gpt2_transformer.py b/python/sparknlp/annotator/seq2seq/gpt2_transformer.py index 21313eafe8a7..346050c7ac0d 100755 --- a/python/sparknlp/annotator/seq2seq/gpt2_transformer.py +++ b/python/sparknlp/annotator/seq2seq/gpt2_transformer.py @@ -43,7 +43,7 @@ class GPT2Transformer(AnnotatorModel, HasBatchedAnnotate, HasEngine): The default model is ``"gpt2"``, if no name is provided. For available pretrained models please see the `Models Hub - `__. + `__. ====================== ====================== Input Annotation types Output Annotation type diff --git a/python/sparknlp/annotator/seq2seq/marian_transformer.py b/python/sparknlp/annotator/seq2seq/marian_transformer.py index 0e860f724396..bc9c318aecf3 100755 --- a/python/sparknlp/annotator/seq2seq/marian_transformer.py +++ b/python/sparknlp/annotator/seq2seq/marian_transformer.py @@ -40,7 +40,7 @@ class MarianTransformer(AnnotatorModel, HasBatchedAnnotate, HasEngine): The default model is ``"opus_mt_en_fr"``, default language is ``"xx"`` (meaning multi-lingual), if no values are provided. - For available pretrained models please see the `Models Hub `__. + For available pretrained models please see the `Models Hub `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/seq2seq/t5_transformer.py b/python/sparknlp/annotator/seq2seq/t5_transformer.py index 621e0f95940e..6541bfd90799 100755 --- a/python/sparknlp/annotator/seq2seq/t5_transformer.py +++ b/python/sparknlp/annotator/seq2seq/t5_transformer.py @@ -39,7 +39,7 @@ class T5Transformer(AnnotatorModel, HasBatchedAnnotate, HasEngine): The default model is ``"t5_small"``, if no name is provided. For available pretrained models please see the `Models Hub - `__. + `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/spell_check/context_spell_checker.py b/python/sparknlp/annotator/spell_check/context_spell_checker.py index 79b3533d5ceb..1c41a13796f0 100755 --- a/python/sparknlp/annotator/spell_check/context_spell_checker.py +++ b/python/sparknlp/annotator/spell_check/context_spell_checker.py @@ -438,7 +438,7 @@ def setGraphFolder(self, path): Folder path that contain external graph files. """ return self._set(graphFolder=path) - + def setMaxSentLen(self, sentlen): """Sets the maximum length of a sentence. @@ -516,7 +516,7 @@ class ContextSpellCheckerModel(AnnotatorModel, HasEngine): The default model is ``"spellcheck_dl"``, if no name is provided. - For available pretrained models please see the `Models Hub `__. + For available pretrained models please see the `Models Hub `__. For extended examples of usage, see the `Examples `__. @@ -562,7 +562,7 @@ class ContextSpellCheckerModel(AnnotatorModel, HasEngine): Levenshtein weights. useNewLines When set to true new lines will be treated as any other character. When set to false correction is applied on paragraphs as defined by newline characters. - + References ------------- @@ -796,7 +796,7 @@ def setIdsVocab(self, idsVocab: dict): Mapping of ids to vocabulary. """ return self._set(idsVocab=idsVocab) - + def setVocabIds(self, vocabIds: dict): """Sets mapping of vocabulary to ids. diff --git a/python/sparknlp/annotator/spell_check/norvig_sweeting.py b/python/sparknlp/annotator/spell_check/norvig_sweeting.py index 6e23c96ace44..74135d25fdfd 100755 --- a/python/sparknlp/annotator/spell_check/norvig_sweeting.py +++ b/python/sparknlp/annotator/spell_check/norvig_sweeting.py @@ -267,7 +267,7 @@ class NorvigSweetingModel(AnnotatorModel): The default model is ``"spellcheck_norvig"``, if no name is provided. For available pretrained models please see the `Models Hub - `__. + `__. For extended examples of usage, see the `Examples diff --git a/python/sparknlp/annotator/spell_check/symmetric_delete.py b/python/sparknlp/annotator/spell_check/symmetric_delete.py index 5e7c9dcf896f..34862efb9b35 100755 --- a/python/sparknlp/annotator/spell_check/symmetric_delete.py +++ b/python/sparknlp/annotator/spell_check/symmetric_delete.py @@ -212,7 +212,7 @@ class SymmetricDeleteModel(AnnotatorModel): The default model is ``"spellcheck_sd"``, if no name is provided. For available pretrained models please see the `Models Hub - `__. + `__. ====================== ====================== Input Annotation types Output Annotation type diff --git a/python/sparknlp/annotator/stop_words_cleaner.py b/python/sparknlp/annotator/stop_words_cleaner.py index 881efaf0507d..63536d394d4b 100755 --- a/python/sparknlp/annotator/stop_words_cleaner.py +++ b/python/sparknlp/annotator/stop_words_cleaner.py @@ -34,7 +34,7 @@ class StopWordsCleaner(AnnotatorModel): This will load the default pretrained model ``"stopwords_en"``. For available pretrained models please see the `Models Hub - `__. + `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/annotator/ws/word_segmenter.py b/python/sparknlp/annotator/ws/word_segmenter.py index 78f6d0854cc7..188de3bb21b3 100755 --- a/python/sparknlp/annotator/ws/word_segmenter.py +++ b/python/sparknlp/annotator/ws/word_segmenter.py @@ -307,7 +307,7 @@ class WordSegmenterModel(AnnotatorModel): The default model is ``"wordseg_pku"``, default language is ``"zh"``, if no values are provided. For available pretrained models please see the `Models - Hub `__. + Hub `__. For extended examples of usage, see the `Examples `__. diff --git a/python/sparknlp/pretrained/pretrained_pipeline.py b/python/sparknlp/pretrained/pretrained_pipeline.py index ab2784a9cede..18a217d15c1b 100644 --- a/python/sparknlp/pretrained/pretrained_pipeline.py +++ b/python/sparknlp/pretrained/pretrained_pipeline.py @@ -29,7 +29,7 @@ class PretrainedPipeline: :attr:`.light_model`. For more extended examples see the `Pipelines page - `_ and our `Github Model + `_ and our `Github Model Repository `_ for available pipeline models. diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/DateMatcher.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/DateMatcher.scala index 31ef2d056a36..d0ae20ad26aa 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/DateMatcher.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/DateMatcher.scala @@ -43,7 +43,7 @@ import scala.util.matching.Regex * For example `"The 31st of April in the year 2008"` will be converted into `2008/04/31`. * * Pretrained pipelines are available for this module, see - * [[https://nlp.johnsnowlabs.com/docs/en/pipelines Pipelines]]. + * [[https://sparknlp.org/docs/en/pipelines Pipelines]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/MultiDateMatcherMultiLanguage_en.ipynb Examples]] diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/Lemmatizer.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/Lemmatizer.scala index 95a33e212f04..9cd5df23f80a 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/Lemmatizer.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/Lemmatizer.scala @@ -36,7 +36,7 @@ import scala.collection.mutable * Pretrained models can be loaded with [[LemmatizerModel LemmatizerModel.pretrained]]. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Lemmatization Models Hub]]. For extended examples + * [[https://sparknlp.org/models?task=Lemmatization Models Hub]]. For extended examples * of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/italian/Train-Lemmatizer-Italian.ipynb Examples]] * and the diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/LemmatizerModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/LemmatizerModel.scala index 2d3bce939691..bd1f6cb676ac 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/LemmatizerModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/LemmatizerModel.scala @@ -23,7 +23,7 @@ import org.apache.spark.ml.util.Identifiable /** Instantiated Model of the [[Lemmatizer]]. For usage and examples, please see the documentation * of that class. For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Lemmatization Models Hub]]. + * [[https://sparknlp.org/models?task=Lemmatization Models Hub]]. * * ==Example== * The lemmatizer from the example of the [[Lemmatizer]] can be replaced with: diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/RegexMatcher.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/RegexMatcher.scala index 8f4d4abd8982..c6da14716be6 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/RegexMatcher.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/RegexMatcher.scala @@ -39,7 +39,7 @@ import org.apache.spark.sql.Dataset * or directly as an [[com.johnsnowlabs.nlp.util.io.ExternalResource ExternalResource]]. * * Pretrained pipelines are available for this module, see - * [[https://nlp.johnsnowlabs.com/docs/en/pipelines Pipelines]]. + * [[https://sparknlp.org/docs/en/pipelines Pipelines]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/regex-matcher/Matching_Text_with_RegexMatcher.ipynb Examples]] diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/StopWordsCleaner.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/StopWordsCleaner.scala index 8e01343d80eb..0fcc7bc8dd0d 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/StopWordsCleaner.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/StopWordsCleaner.scala @@ -40,7 +40,7 @@ import java.util.Locale * // will load the default pretrained model `"stopwords_en"`. * }}} * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Stop+Words+Removal Models Hub]]. + * [[https://sparknlp.org/models?task=Stop+Words+Removal Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/stop-words/StopWordsCleaner.ipynb Examples]] diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/audio/HubertForCTC.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/audio/HubertForCTC.scala index 04916405bfa4..b7613e2997af 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/audio/HubertForCTC.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/audio/HubertForCTC.scala @@ -50,7 +50,7 @@ import org.json4s.jackson.JsonMethods._ * The default model is `"asr_hubert_large_ls960"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models Models Hub]]. + * [[https://sparknlp.org/models Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/audio/Wav2Vec2ForCTC.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/audio/Wav2Vec2ForCTC.scala index 95367d99f90a..54bab95c12fe 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/audio/Wav2Vec2ForCTC.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/audio/Wav2Vec2ForCTC.scala @@ -58,7 +58,7 @@ import org.json4s.jackson.JsonMethods._ * The default model is `"asr_wav2vec2_base_960h"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models Models Hub]]. + * [[https://sparknlp.org/models Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/AlbertForQuestionAnswering.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/AlbertForQuestionAnswering.scala index 26608246a4f4..c9a659ff6947 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/AlbertForQuestionAnswering.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/AlbertForQuestionAnswering.scala @@ -49,7 +49,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"albert_base_qa_squad2"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Question+Answering Models Hub]]. + * [[https://sparknlp.org/models?task=Question+Answering Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -91,7 +91,7 @@ import org.apache.spark.sql.SparkSession * @see * [[AlbertForSequenceClassification]] for sequence-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/AlbertForSequenceClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/AlbertForSequenceClassification.scala index 9112666a78e2..4f19afeedbcd 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/AlbertForSequenceClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/AlbertForSequenceClassification.scala @@ -51,7 +51,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"albert_base_sequence_classifier_imdb"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Text+Classification Models Hub]]. + * [[https://sparknlp.org/models?task=Text+Classification Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -99,7 +99,7 @@ import org.apache.spark.sql.SparkSession * @see * [[AlbertForSequenceClassification]] for sequence-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/AlbertForTokenClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/AlbertForTokenClassification.scala index 9f660dcb68cc..289244653896 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/AlbertForTokenClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/AlbertForTokenClassification.scala @@ -51,7 +51,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"albert_base_token_classifier_conll03"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition Models Hub]]. + * [[https://sparknlp.org/models?task=Named+Entity+Recognition Models Hub]]. * * and the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/AlbertForTokenClassificationTestSpec.scala AlbertForTokenClassificationTestSpec]]. @@ -98,7 +98,7 @@ import org.apache.spark.sql.SparkSession * @see * [[AlbertForTokenClassification]] for token-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForQuestionAnswering.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForQuestionAnswering.scala index b6d27fc7862c..436cb313027c 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForQuestionAnswering.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForQuestionAnswering.scala @@ -44,7 +44,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"bert_base_cased_qa_squad2"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Question+Answering Models Hub]]. + * [[https://sparknlp.org/models?task=Question+Answering Models Hub]]. * * Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To * see which models are compatible and how to import them see @@ -87,7 +87,7 @@ import org.apache.spark.sql.SparkSession * @see * [[BertForSequenceClassification]] for span-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForSequenceClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForSequenceClassification.scala index f5d97fce5fcc..127c61decbfd 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForSequenceClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForSequenceClassification.scala @@ -49,7 +49,7 @@ import java.io.File * The default model is `"bert_base_sequence_classifier_imdb"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Text+Classification Models Hub]]. + * [[https://sparknlp.org/models?task=Text+Classification Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -97,7 +97,7 @@ import java.io.File * @see * [[BertForSequenceClassification]] for sequence-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForTokenClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForTokenClassification.scala index 3e39961bdfff..5f9f963ce165 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForTokenClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForTokenClassification.scala @@ -45,7 +45,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"bert_base_token_classifier_conll03"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition Models Hub]]. + * [[https://sparknlp.org/models?task=Named+Entity+Recognition Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -92,7 +92,7 @@ import org.apache.spark.sql.SparkSession * @see * [[BertForTokenClassification]] for token-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification.scala index b3c05c9d7e7f..054838b89225 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification.scala @@ -53,7 +53,7 @@ import java.io.File * The default model is `"bert_base_cased_zero_shot_classifier_xnli"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Text+Classification Models Hub]]. + * [[https://sparknlp.org/models?task=Text+Classification Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -101,7 +101,7 @@ import java.io.File * @see * [[BertForZeroShotClassification]] for sequence-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk @@ -400,7 +400,7 @@ trait ReadBertForZeroShotDLModel extends ReadTensorflowModel { require( entailmentIds.length == 1 && contradictionIds.length == 1, s"""This annotator supports classifiers trained on NLI datasets. You must have only at least 2 or maximum 3 labels in your dataset: - + example with 3 labels: 'contradict', 'neutral', 'entailment' example with 2 labels: 'contradict', 'entailment' diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/CamemBertForQuestionAnswering.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/CamemBertForQuestionAnswering.scala index 31c34925c256..8d68a111699a 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/CamemBertForQuestionAnswering.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/CamemBertForQuestionAnswering.scala @@ -49,7 +49,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"camembert_base_qa_fquad"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Question+Answering Models Hub]]. + * [[https://sparknlp.org/models?task=Question+Answering Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -91,7 +91,7 @@ import org.apache.spark.sql.SparkSession * @see * [[CamemBertForQuestionAnswering]] for sequence-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/CamemBertForSequenceClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/CamemBertForSequenceClassification.scala index e5cf40fc761f..03d62880a929 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/CamemBertForSequenceClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/CamemBertForSequenceClassification.scala @@ -51,7 +51,7 @@ import org.apache.spark.sql.SparkSession * The default model is `camembert_base_sequence_classifier_allocine"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Text+Classification Models Hub]]. + * [[https://sparknlp.org/models?task=Text+Classification Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -99,7 +99,7 @@ import org.apache.spark.sql.SparkSession * @see * [[CamemBertForSequenceClassification]] for sequence-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/CamemBertForTokenClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/CamemBertForTokenClassification.scala index d5dafd5fc916..aaf48b0a36b2 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/CamemBertForTokenClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/CamemBertForTokenClassification.scala @@ -51,7 +51,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"camembert_base_token_classifier_wikiner"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition Models Hub]]. + * [[https://sparknlp.org/models?task=Named+Entity+Recognition Models Hub]]. * * and the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/CamemBertForTokenClassificationTestSpec.scala CamemBertForTokenClassificationTestSpec]]. @@ -98,7 +98,7 @@ import org.apache.spark.sql.SparkSession * @see * [[CamemBertForTokenClassification]] for token-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/ClassifierDLModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/ClassifierDLModel.scala index 32a5fb14caaf..9576c99c3a0d 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/ClassifierDLModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/ClassifierDLModel.scala @@ -48,7 +48,7 @@ import org.apache.spark.sql.{Dataset, SparkSession} * and is trained on the * [[https://deepai.org/dataset/trec-6#:~:text=The%20TREC%20dataset%20is%20dataset,50%20has%20finer%2Dgrained%20labels TREC-6]] * dataset. For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Text+Classification Models Hub]]. + * [[https://sparknlp.org/models?task=Text+Classification Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/classification/ClassifierDL_Train_multi_class_news_category_classifier.ipynb Examples]] diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DeBertaForQuestionAnswering.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DeBertaForQuestionAnswering.scala index e7721d1bed86..8816b5cbbb8c 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DeBertaForQuestionAnswering.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DeBertaForQuestionAnswering.scala @@ -49,7 +49,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"deberta_v3_xsmall_qa_squad2"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Question+Answering Models Hub]]. + * [[https://sparknlp.org/models?task=Question+Answering Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -91,7 +91,7 @@ import org.apache.spark.sql.SparkSession * @see * [[DeBertaForQuestionAnswering]] for span-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DeBertaForSequenceClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DeBertaForSequenceClassification.scala index e77f8bb6b875..d3b254c824f4 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DeBertaForSequenceClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DeBertaForSequenceClassification.scala @@ -51,7 +51,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"deberta_v3_xsmall_sequence_classifier_imdb"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Text+Classification Models Hub]]. + * [[https://sparknlp.org/models?task=Text+Classification Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -99,7 +99,7 @@ import org.apache.spark.sql.SparkSession * @see * [[DeBertaForSequenceClassification]] for sequence-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DeBertaForTokenClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DeBertaForTokenClassification.scala index b5717b14c6cd..6c851aa2c68c 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DeBertaForTokenClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DeBertaForTokenClassification.scala @@ -51,7 +51,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"deberta_v3_xsmall_token_classifier_conll03"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition Models Hub]]. + * [[https://sparknlp.org/models?task=Named+Entity+Recognition Models Hub]]. * * and the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DeBertaForTokenClassificationTestSpec.scala DeBertaForTokenClassificationTestSpec]]. @@ -99,7 +99,7 @@ import org.apache.spark.sql.SparkSession * @see * [[DeBertaForTokenClassification]] for token-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DistilBertForQuestionAnswering.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DistilBertForQuestionAnswering.scala index 031d8a5a3c5b..60e814350a77 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DistilBertForQuestionAnswering.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DistilBertForQuestionAnswering.scala @@ -44,7 +44,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"distilbert_base_cased_qa_squad2"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Question+Answering Models Hub]]. + * [[https://sparknlp.org/models?task=Question+Answering Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -86,7 +86,7 @@ import org.apache.spark.sql.SparkSession * @see * [[DistilBertForSequenceClassification]] for sequence-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DistilBertForSequenceClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DistilBertForSequenceClassification.scala index c978284e7fd0..7e152abfeb31 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DistilBertForSequenceClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DistilBertForSequenceClassification.scala @@ -45,7 +45,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"distilbert_base_sequence_classifier_imdb"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Text+Classification Models Hub]]. + * [[https://sparknlp.org/models?task=Text+Classification Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -93,7 +93,7 @@ import org.apache.spark.sql.SparkSession * @see * [[DistilBertForSequenceClassification]] for sequence-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DistilBertForTokenClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DistilBertForTokenClassification.scala index 8643f523be7d..c5c517d2d506 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DistilBertForTokenClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/DistilBertForTokenClassification.scala @@ -45,7 +45,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"distilbert_base_token_classifier_conll03"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition Models Hub]]. + * [[https://sparknlp.org/models?task=Named+Entity+Recognition Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -92,7 +92,7 @@ import org.apache.spark.sql.SparkSession * @see * [[DistilBertForTokenClassification]] for token-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/LongformerForQuestionAnswering.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/LongformerForQuestionAnswering.scala index b7b0991e34a7..c668da21a09a 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/LongformerForQuestionAnswering.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/LongformerForQuestionAnswering.scala @@ -44,7 +44,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"longformer_base_base_qa_squad2"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Question+Answering Models Hub]]. + * [[https://sparknlp.org/models?task=Question+Answering Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -86,7 +86,7 @@ import org.apache.spark.sql.SparkSession * @see * [[LongformerForSequenceClassification]] for sequence-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/LongformerForSequenceClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/LongformerForSequenceClassification.scala index 85c420685423..8783bebc6c11 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/LongformerForSequenceClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/LongformerForSequenceClassification.scala @@ -45,7 +45,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"longformer_base_sequence_classifier_imdb"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Text+Classification Models Hub]]. + * [[https://sparknlp.org/models?task=Text+Classification Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -93,7 +93,7 @@ import org.apache.spark.sql.SparkSession * @see * [[LongformerForSequenceClassification]] for sequence-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/LongformerForTokenClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/LongformerForTokenClassification.scala index 4738190f4b0f..605044b129b1 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/LongformerForTokenClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/LongformerForTokenClassification.scala @@ -45,7 +45,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"longformer_base_token_classifier_conll03"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition Models Hub]]. + * [[https://sparknlp.org/models?task=Named+Entity+Recognition Models Hub]]. * * and the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/LongformerForTokenClassificationTestSpec.scala LongformerForTokenClassificationTestSpec]]. @@ -92,7 +92,7 @@ import org.apache.spark.sql.SparkSession * @see * [[LongformerForTokenClassification]] for token-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/MultiClassifierDLModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/MultiClassifierDLModel.scala index 87e5abd95f59..734dab21288c 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/MultiClassifierDLModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/MultiClassifierDLModel.scala @@ -52,7 +52,7 @@ import org.apache.spark.sql.{Dataset, SparkSession} * classifies toxic comments. The data is based on the * [[https://www.kaggle.com/c/jigsaw-toxic-comment-classification-challenge/overview Jigsaw Toxic Comment Classification Challenge]]. * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Text+Classification Models Hub]]. + * [[https://sparknlp.org/models?task=Text+Classification Models Hub]]. * * In machine learning, multi-label classification and the strongly related problem of * multi-output classification are variants of the classification problem where multiple labels diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/RoBertaForQuestionAnswering.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/RoBertaForQuestionAnswering.scala index 3e41ece75484..776884ba0453 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/RoBertaForQuestionAnswering.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/RoBertaForQuestionAnswering.scala @@ -44,7 +44,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"roberta_base_qa_squad2"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Question+Answering Models Hub]]. + * [[https://sparknlp.org/models?task=Question+Answering Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -86,7 +86,7 @@ import org.apache.spark.sql.SparkSession * @see * [[RoBertaForSequenceClassification]] for sequence-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/RoBertaForSequenceClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/RoBertaForSequenceClassification.scala index b0ca76a2bb70..9396c8a31430 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/RoBertaForSequenceClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/RoBertaForSequenceClassification.scala @@ -45,7 +45,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"roberta_base_sequence_classifier_imdb"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Text+Classification Models Hub]]. + * [[https://sparknlp.org/models?task=Text+Classification Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -93,7 +93,7 @@ import org.apache.spark.sql.SparkSession * @see * [[RoBertaForSequenceClassification]] for sequence-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/RoBertaForTokenClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/RoBertaForTokenClassification.scala index 74f1af3e1939..2de35736a509 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/RoBertaForTokenClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/RoBertaForTokenClassification.scala @@ -45,7 +45,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"roberta_base_token_classifier_conll03"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition Models Hub]]. + * [[https://sparknlp.org/models?task=Named+Entity+Recognition Models Hub]]. * * and the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/RoBertaForTokenClassificationTestSpec.scala RoBertaForTokenClassificationTestSpec]]. @@ -92,7 +92,7 @@ import org.apache.spark.sql.SparkSession * @see * [[RoBertaForTokenClassification]] for token-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/SentimentDLModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/SentimentDLModel.scala index 2bc1b1a97a8e..5a4fb2518aa4 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/SentimentDLModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/SentimentDLModel.scala @@ -45,7 +45,7 @@ import org.apache.spark.sql.{Dataset, SparkSession} * }}} * The default model is `"sentimentdl_use_imdb"`, if no name is provided. It is english sentiment * analysis trained on the IMDB dataset. For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Sentiment+Analysis Models Hub]]. + * [[https://sparknlp.org/models?task=Sentiment+Analysis Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/classification/SentimentDL_train_multiclass_sentiment_classifier.ipynb Examples]] diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/TapasForQuestionAnswering.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/TapasForQuestionAnswering.scala index 96fba2a4b316..acc1bec59d9c 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/TapasForQuestionAnswering.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/TapasForQuestionAnswering.scala @@ -44,7 +44,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"table_qa_tapas_base_finetuned_wtq"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Table+Question+Understanding Models Hub]]. + * [[https://sparknlp.org/models?task=Table+Question+Understanding Models Hub]]. * * ==Example== * {{{ @@ -126,7 +126,7 @@ import org.apache.spark.sql.SparkSession * @see * [[TableAssembler]] for loading tabular data * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlmRoBertaForQuestionAnswering.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlmRoBertaForQuestionAnswering.scala index efe7f7036225..7320fc3a95c4 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlmRoBertaForQuestionAnswering.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlmRoBertaForQuestionAnswering.scala @@ -49,7 +49,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"xlm_roberta_base_qa_squad2"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Question+Answering Models Hub]]. + * [[https://sparknlp.org/models?task=Question+Answering Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -91,7 +91,7 @@ import org.apache.spark.sql.SparkSession * @see * [[XlmRoBertaForSequenceClassification]] for sequence-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlmRoBertaForSequenceClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlmRoBertaForSequenceClassification.scala index 06c889b9d7f0..3d7c11b8b0e7 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlmRoBertaForSequenceClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlmRoBertaForSequenceClassification.scala @@ -51,7 +51,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"xlm_roberta_base_sequence_classifier_imdb"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Text+Classification Models Hub]]. + * [[https://sparknlp.org/models?task=Text+Classification Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -99,7 +99,7 @@ import org.apache.spark.sql.SparkSession * @see * [[XlmRoBertaForSequenceClassification]] for sequence-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlmRoBertaForTokenClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlmRoBertaForTokenClassification.scala index 8f843dac3031..61f3d5ede997 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlmRoBertaForTokenClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlmRoBertaForTokenClassification.scala @@ -51,7 +51,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"xlm_roberta_base_token_classifier_conll03"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition Models Hub]]. + * [[https://sparknlp.org/models?task=Named+Entity+Recognition Models Hub]]. * * and the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlmRoBertaForTokenClassificationTestSpec.scala XlmRoBertaForTokenClassificationTestSpec]]. @@ -98,7 +98,7 @@ import org.apache.spark.sql.SparkSession * @see * [[XlmRoBertaForTokenClassification]] for token-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlnetForSequenceClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlnetForSequenceClassification.scala index c90e85cc9b17..f0409c90d5bb 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlnetForSequenceClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlnetForSequenceClassification.scala @@ -51,7 +51,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"xlnet_base_sequence_classifier_imdb"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Text+Classification Models Hub]]. + * [[https://sparknlp.org/models?task=Text+Classification Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -99,7 +99,7 @@ import org.apache.spark.sql.SparkSession * @see * [[XlnetForSequenceClassification]] for sequence-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlnetForTokenClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlnetForTokenClassification.scala index e0eaa762fbde..0de6ced512c4 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlnetForTokenClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlnetForTokenClassification.scala @@ -51,7 +51,7 @@ import org.apache.spark.sql.SparkSession * The default model is `"xlnet_base_token_classifier_conll03"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition Models Hub]]. + * [[https://sparknlp.org/models?task=Named+Entity+Recognition Models Hub]]. * * and the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/XlnetForTokenClassificationTestSpec.scala XlnetForTokenClassificationTestSpec]]. @@ -98,7 +98,7 @@ import org.apache.spark.sql.SparkSession * @see * [[XlnetForTokenClassification]] for token-level classification * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based classifiers * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/coref/SpanBertCorefModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/coref/SpanBertCorefModel.scala index af3789b38f85..92767d359dc5 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/coref/SpanBertCorefModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/coref/SpanBertCorefModel.scala @@ -54,7 +54,7 @@ import org.slf4j.{Logger, LoggerFactory} * .setOutputCol("corefs") * }}} * The default model is `"spanbert_base_coref"`, if no name is provided. For available pretrained - * models please see the [[https://nlp.johnsnowlabs.com/models Models Hub]]. + * models please see the [[https://sparknlp.org/models Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/coreference-resolution/Coreference_Resolution_SpanBertCorefModel.ipynb Examples]] diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassification.scala index bfb5128ad002..b87de63bae8e 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassification.scala @@ -49,7 +49,7 @@ import org.json4s.jackson.JsonMethods._ * The default model is `"image_classifier_convnext_tiny_224_local"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Image+Classification Models Hub]]. + * [[https://sparknlp.org/models?task=Image+Classification Models Hub]]. * * Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To * see which models are compatible and how to import them see diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/SwinForImageClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/SwinForImageClassification.scala index 21ce7a0d175f..4341fa23cd4b 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/SwinForImageClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/SwinForImageClassification.scala @@ -51,7 +51,7 @@ import org.json4s.jackson.JsonMethods._ * provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Image+Classification Models Hub]]. + * [[https://sparknlp.org/models?task=Image+Classification Models Hub]]. * * Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To * see which models are compatible and how to import them see diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ViTForImageClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ViTForImageClassification.scala index 768cda90ae54..07d979ed0a74 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ViTForImageClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/cv/ViTForImageClassification.scala @@ -55,7 +55,7 @@ import java.io.File * The default model is `"image_classifier_vit_base_patch16_224"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Image+Classification Models Hub]]. + * [[https://sparknlp.org/models?task=Image+Classification Models Hub]]. * * Models from the HuggingFace 🤗 Transformers library are also compatible with Spark NLP 🚀. To * see which models are compatible and how to import them see diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/ld/dl/LanguageDetectorDL.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/ld/dl/LanguageDetectorDL.scala index ba305077b0c5..444dad7b4fec 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/ld/dl/LanguageDetectorDL.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/ld/dl/LanguageDetectorDL.scala @@ -49,7 +49,7 @@ import scala.collection.immutable.ListMap * }}} * The default model is `"ld_wiki_tatoeba_cnn_21"`, default language is `"xx"` (meaning * multi-lingual), if no values are provided. For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Language+Detection Models Hub]]. + * [[https://sparknlp.org/models?task=Language+Detection Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/language-detection/Language_Detection_and_Indentification.ipynb Examples]] diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/crf/NerCrfModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/crf/NerCrfModel.scala index ab76616300fb..bb6ab18b7066 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/crf/NerCrfModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/crf/NerCrfModel.scala @@ -49,7 +49,7 @@ import scala.collection.Map * }}} * The default model is `"ner_crf"`, if no name is provided. For available pretrained models * please see the - * [[https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition Models Hub]]. + * [[https://sparknlp.org/models?task=Named+Entity+Recognition Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/crf-ner/ner_dl_crf.ipynb Examples]]. diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/dl/NerDLApproach.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/dl/NerDLApproach.scala index f73ce01a5d7e..93b2ca2325a3 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/dl/NerDLApproach.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/dl/NerDLApproach.scala @@ -627,7 +627,7 @@ trait WithGraphResolver { require( embeddingsFiltered.exists(_.nonEmpty), s"Graph dimensions should be $embeddingsNDims: Could not find a suitable tensorflow graph for embeddings dim: $embeddingsNDims tags: $tags nChars: $nChars. " + - s"Check https://nlp.johnsnowlabs.com/docs/en/graph for instructions to generate the required graph.") + s"Check https://sparknlp.org/docs/en/graph for instructions to generate the required graph.") // 2. Filter by labels and nChars val tagsFiltered = embeddingsFiltered.map { @@ -642,7 +642,7 @@ trait WithGraphResolver { require( tagsFiltered.exists(_.nonEmpty), s"Graph tags size should be $tags: Could not find a suitable tensorflow graph for embeddings dim: $embeddingsNDims tags: $tags nChars: $nChars. " + - s"Check https://nlp.johnsnowlabs.com/docs/en/graph for instructions to generate the required graph.") + s"Check https://sparknlp.org/docs/en/graph for instructions to generate the required graph.") // 3. Filter by labels and nChars val charsFiltered = tagsFiltered.map { @@ -657,7 +657,7 @@ trait WithGraphResolver { require( charsFiltered.exists(_.nonEmpty), s"Graph chars size should be $nChars: Could not find a suitable tensorflow graph for embeddings dim: $embeddingsNDims tags: $tags nChars: $nChars. " + - s"Check https://nlp.johnsnowlabs.com/docs/en/graph for instructions to generate the required graph") + s"Check https://sparknlp.org/docs/en/graph for instructions to generate the required graph") for (i <- files.indices) { if (charsFiltered(i).nonEmpty) diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/dl/NerDLModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/dl/NerDLModel.scala index 68dcb0d6aafd..c9246d80c8b7 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/dl/NerDLModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/dl/NerDLModel.scala @@ -47,9 +47,9 @@ import org.apache.spark.sql.{Dataset, SparkSession} * The default model is `"ner_dl"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Named+Entity+Recognition Models Hub]]. + * [[https://sparknlp.org/models?task=Named+Entity+Recognition Models Hub]]. * Additionally, pretrained pipelines are available for this module, see - * [[https://nlp.johnsnowlabs.com/docs/en/pipelines Pipelines]]. + * [[https://sparknlp.org/docs/en/pipelines Pipelines]]. * * Note that some pretrained models require specific types of embeddings, depending on which they * were trained on. For example, the default model `"ner_dl"` requires the diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/dl/ZeroShotNerModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/dl/ZeroShotNerModel.scala index 2dd777c72510..fa6de5fe5af9 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/dl/ZeroShotNerModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/ner/dl/ZeroShotNerModel.scala @@ -51,7 +51,7 @@ import scala.collection.JavaConverters._ * }}} * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Zero-Shot-NER Models Hub]]. + * [[https://sparknlp.org/models?task=Zero-Shot-NER Models Hub]]. * * ==Example== * {{{ diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/parser/dep/DependencyParserModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/parser/dep/DependencyParserModel.scala index 9abdb9af186b..e74c2c94f575 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/parser/dep/DependencyParserModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/parser/dep/DependencyParserModel.scala @@ -45,7 +45,7 @@ import org.apache.spark.ml.util.Identifiable * .setOutputCol("dependency") * }}} * The default model is `"dependency_conllu"`, if no name is provided. For available pretrained - * models please see the [[https://nlp.johnsnowlabs.com/models Models Hub]]. + * models please see the [[https://sparknlp.org/models Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/graph-extraction/graph_extraction_intro.ipynb Examples]] diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/parser/typdep/TypedDependencyParserModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/parser/typdep/TypedDependencyParserModel.scala index 597edbb4ead1..1a3866113759 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/parser/typdep/TypedDependencyParserModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/parser/typdep/TypedDependencyParserModel.scala @@ -46,7 +46,7 @@ import org.apache.spark.ml.util.Identifiable * .setOutputCol("dependency_type") * }}} * The default model is `"dependency_typed_conllu"`, if no name is provided. For available - * pretrained models please see the [[https://nlp.johnsnowlabs.com/models Models Hub]]. + * pretrained models please see the [[https://sparknlp.org/models Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/graph-extraction/graph_extraction_intro.ipynb Examples]] diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/pos/perceptron/PerceptronModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/pos/perceptron/PerceptronModel.scala index b4f3faf82843..2b5a2d6f60bc 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/pos/perceptron/PerceptronModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/pos/perceptron/PerceptronModel.scala @@ -37,9 +37,9 @@ import org.apache.spark.ml.util.Identifiable * The default model is `"pos_anc"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Part+of+Speech+Tagging Models Hub]]. Additionally, + * [[https://sparknlp.org/models?task=Part+of+Speech+Tagging Models Hub]]. Additionally, * pretrained pipelines are available for this module, see - * [[https://nlp.johnsnowlabs.com/docs/en/pipelines Pipelines]]. + * [[https://sparknlp.org/docs/en/pipelines Pipelines]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/french/Train-Perceptron-French.ipynb Examples]]. diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/sentence_detector_dl/SentenceDetectorDLModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/sentence_detector_dl/SentenceDetectorDLModel.scala index 9f87fb730d12..9278a1dd65ad 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/sentence_detector_dl/SentenceDetectorDLModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/sentence_detector_dl/SentenceDetectorDLModel.scala @@ -50,7 +50,7 @@ case class Metrics(accuracy: Double, recall: Double, precision: Double, f1: Doub * }}} * The default model is `"sentence_detector_dl"`, if no name is provided. For available * pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Sentence+Detection Models Hub]]. + * [[https://sparknlp.org/models?task=Sentence+Detection Models Hub]]. * * Each extracted sentence can be returned in an Array or exploded to separate rows, if * `explodeSentences` is set to `true`. diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala index b7f878f8e781..a539823efa9f 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala @@ -66,7 +66,7 @@ import org.apache.spark.sql.SparkSession * .setOutputCol("generation") * }}} * The default model is `"distilbart_xsum_12_6"`, if no name is provided. For available - * pretrained models please see the [[https://nlp.johnsnowlabs.com/models?q=bart Models Hub]]. + * pretrained models please see the [[https://sparknlp.org/models?q=bart Models Hub]]. * * For extended examples of usage, see * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTestSpec.scala BartTestSpec]]. diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/GPT2Transformer.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/GPT2Transformer.scala index 8dd03277400d..5cafbe4865d5 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/GPT2Transformer.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/GPT2Transformer.scala @@ -63,7 +63,7 @@ import org.apache.spark.sql.SparkSession * .setOutputCol("generation") * }}} * The default model is `"gpt2"`, if no name is provided. For available pretrained models please - * see the [[https://nlp.johnsnowlabs.com/models?q=gpt2 Models Hub]]. + * see the [[https://sparknlp.org/models?q=gpt2 Models Hub]]. * * For extended examples of usage, see * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/GPT2TestSpec.scala GPT2TestSpec]]. diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/MarianTransformer.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/MarianTransformer.scala index 65de3dfe44b1..381648c91b1c 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/MarianTransformer.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/MarianTransformer.scala @@ -56,7 +56,7 @@ import org.apache.spark.sql.SparkSession * }}} * The default model is `"opus_mt_en_fr"`, default language is `"xx"` (meaning multi-lingual), if * no values are provided. For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Translation Models Hub]]. + * [[https://sparknlp.org/models?task=Translation Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/multilingual/Translation_Marian.ipynb Examples]] diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/T5Transformer.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/T5Transformer.scala index ae9779d25161..2643730c5190 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/T5Transformer.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/T5Transformer.scala @@ -59,7 +59,7 @@ import org.apache.spark.sql.SparkSession * .setOutputCol("summaries") * }}} * The default model is `"t5_small"`, if no name is provided. For available pretrained models - * please see the [[https://nlp.johnsnowlabs.com/models?q=t5 Models Hub]]. + * please see the [[https://sparknlp.org/models?q=t5 Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/question-answering/Question_Answering_and_Summarization_with_T5.ipynb Examples]] diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/spell/context/ContextSpellCheckerModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/spell/context/ContextSpellCheckerModel.scala index ce7fa7c770d9..e4a5de7dee37 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/spell/context/ContextSpellCheckerModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/spell/context/ContextSpellCheckerModel.scala @@ -56,7 +56,7 @@ import scala.collection.mutable * .setOutputCol("checked") * }}} * The default model is `"spellcheck_dl"`, if no name is provided. For available pretrained - * models please see the [[https://nlp.johnsnowlabs.com/models?task=Spell+Check Models Hub]]. + * models please see the [[https://sparknlp.org/models?task=Spell+Check Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/italian/Training_Context_Spell_Checker_Italian.ipynb Examples]] diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/spell/norvig/NorvigSweetingModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/spell/norvig/NorvigSweetingModel.scala index b7a410e0a7b8..37fe61f7acda 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/spell/norvig/NorvigSweetingModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/spell/norvig/NorvigSweetingModel.scala @@ -43,7 +43,7 @@ import scala.collection.immutable.HashSet * .setDoubleVariants(true) * }}} * The default model is `"spellcheck_norvig"`, if no name is provided. For available pretrained - * models please see the [[https://nlp.johnsnowlabs.com/models?task=Spell+Check Models Hub]]. + * models please see the [[https://sparknlp.org/models?task=Spell+Check Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/spell/norvig/NorvigSweetingTestSpec.scala NorvigSweetingTestSpec]]. diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/spell/symmetric/SymmetricDeleteModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/spell/symmetric/SymmetricDeleteModel.scala index fc32e0608d96..cc6ce666fa8a 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/spell/symmetric/SymmetricDeleteModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/spell/symmetric/SymmetricDeleteModel.scala @@ -42,7 +42,7 @@ import scala.util.control.Breaks._ * .setOutputCol("spell") * }}} * The default model is `"spellcheck_sd"`, if no name is provided. For available pretrained - * models please see the [[https://nlp.johnsnowlabs.com/models?task=Spell+Check Models Hub]]. + * models please see the [[https://sparknlp.org/models?task=Spell+Check Models Hub]]. * * See * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/spell/symmetric/SymmetricDeleteModelTestSpec.scala SymmetricDeleteModelTestSpec]] diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/ws/WordSegmenterModel.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/ws/WordSegmenterModel.scala index 550b2c5854a5..67473a7006d4 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/ws/WordSegmenterModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/ws/WordSegmenterModel.scala @@ -63,7 +63,7 @@ import org.apache.spark.ml.util.Identifiable * }}} * The default model is `"wordseg_pku"`, default language is `"zh"`, if no values are provided. * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Word+Segmentation Models Hub]]. + * [[https://sparknlp.org/models?task=Word+Segmentation Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/jupyter/annotation/chinese/word_segmentation/words_segmenter_demo.ipynb Examples]] diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/AlbertEmbeddings.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/AlbertEmbeddings.scala index 88611c91a10b..673dcf3fd53a 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/AlbertEmbeddings.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/AlbertEmbeddings.scala @@ -154,7 +154,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * [[com.johnsnowlabs.nlp.annotators.classifier.dl.AlbertForTokenClassification AlbertForTokenClassification]] * for AlbertEmbeddings with a token classification layer on top * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based embeddings * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/BertEmbeddings.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/BertEmbeddings.scala index c09656d33a90..e48f4739f39b 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/BertEmbeddings.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/BertEmbeddings.scala @@ -48,7 +48,7 @@ import org.slf4j.{Logger, LoggerFactory} * The default model is `"small_bert_L2_768"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Embeddings Models Hub]]. + * [[https://sparknlp.org/models?task=Embeddings Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/dl-ner/ner_bert.ipynb Examples]] @@ -132,7 +132,7 @@ import org.slf4j.{Logger, LoggerFactory} * [[com.johnsnowlabs.nlp.annotators.classifier.dl.BertForTokenClassification BertForTokenClassification]] * For BertEmbeddings with a token classification layer on top * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based embeddings * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/BertSentenceEmbeddings.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/BertSentenceEmbeddings.scala index e9eeb993df44..c881719e8e78 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/BertSentenceEmbeddings.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/BertSentenceEmbeddings.scala @@ -47,7 +47,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * The default model is `"sent_small_bert_L2_768"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Embeddings Models Hub]]. + * [[https://sparknlp.org/models?task=Embeddings Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20BERT%20Sentence.ipynb Examples]] @@ -127,7 +127,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * [[com.johnsnowlabs.nlp.annotators.classifier.dl.BertForSequenceClassification BertForSequenceClassification]] * for embeddings with a sequence classification layer on top * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based embeddings * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/CamemBertEmbeddings.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/CamemBertEmbeddings.scala index bc6251c50d9d..bc81d53ed6c3 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/CamemBertEmbeddings.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/CamemBertEmbeddings.scala @@ -36,7 +36,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * The default model is `"camembert_base"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Embeddings Models Hub]]. + * [[https://sparknlp.org/models?task=Embeddings Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/dl-ner/ner_bert.ipynb Examples]] @@ -113,7 +113,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * }}} * * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based embeddings * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/DeBertaEmbeddings.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/DeBertaEmbeddings.scala index bcfe2ae33d42..993e5aae018b 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/DeBertaEmbeddings.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/DeBertaEmbeddings.scala @@ -135,7 +135,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * }}} * * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based embeddings * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/DistilBertEmbeddings.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/DistilBertEmbeddings.scala index afa7b2f3ff68..ac4113265e41 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/DistilBertEmbeddings.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/DistilBertEmbeddings.scala @@ -46,7 +46,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * }}} * The default model is `"distilbert_base_cased"`, if no name is provided. For available * pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Embeddings Models Hub]]. + * [[https://sparknlp.org/models?task=Embeddings Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20DistilBERT.ipynb Examples]] @@ -139,7 +139,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * [[com.johnsnowlabs.nlp.annotators.classifier.dl.DistilBertForSequenceClassification DistilBertForSequenceClassification]] * for DistilBertEmbeddings with a sequence classification layer on top * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based embeddings * @groupname anno Annotator types * @groupdesc anno diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/Doc2VecModel.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/Doc2VecModel.scala index 88d5aabee448..f1ed150232db 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/Doc2VecModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/Doc2VecModel.scala @@ -47,7 +47,7 @@ import org.apache.spark.sql.DataFrame * The default model is `"doc2vec_gigaword_300"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models Models Hub]]. + * [[https://sparknlp.org/models Models Hub]]. * * '''Sources''' : * diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/ElmoEmbeddings.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/ElmoEmbeddings.scala index 8ced250f5dcf..5e1d2a1a323d 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/ElmoEmbeddings.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/ElmoEmbeddings.scala @@ -43,7 +43,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * The default model is `"elmo"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Embeddings Models Hub]]. + * [[https://sparknlp.org/models?task=Embeddings Models Hub]]. * * The pooling layer can be set with `setPoolingLayer` to the following values: * - `"word_emb"`: the character-based word representations with shape `[batch_size, @@ -129,7 +129,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * }}} * * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of other + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of other * transformer based embeddings * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/LongformerEmbeddings.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/LongformerEmbeddings.scala index 3ea3c2a6f336..f34cda45c5f0 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/LongformerEmbeddings.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/LongformerEmbeddings.scala @@ -48,7 +48,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * }}} * The default model is `"longformer_base_4096"`, if no name is provided. For available * pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Embeddings Models Hub]]. + * [[https://sparknlp.org/models?task=Embeddings Models Hub]]. * * For some examples of usage, see * [[https://github.com/JohnSnowLabs/spark-nlp/tree/master/src/test/scala/com/johnsnowlabs/nlp/embeddings/LongformerEmbeddingsTestSpec.scala LongformerEmbeddingsTestSpec]]. @@ -127,7 +127,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * [[com.johnsnowlabs.nlp.annotators.classifier.dl.LongformerForTokenClassification LongformerForTokenClassification]] * for Longformer embeddings with a token classification layer on top * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based embeddings * @groupname anno Annotator types * @groupdesc anno diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/RoBertaEmbeddings.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/RoBertaEmbeddings.scala index 27eeda15c8cd..d8e21c289fa6 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/RoBertaEmbeddings.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/RoBertaEmbeddings.scala @@ -50,7 +50,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * .setOutputCol("embeddings") * }}} * The default model is `"roberta_base"`, if no name is provided. For available pretrained models - * please see the [[https://nlp.johnsnowlabs.com/models?task=Embeddings Models Hub]]. + * please see the [[https://sparknlp.org/models?task=Embeddings Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20RoBERTa.ipynb Examples]] @@ -139,7 +139,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * [[com.johnsnowlabs.nlp.annotators.classifier.dl.RoBertaForTokenClassification RoBertaForTokenClassification]] * For RoBerta embeddings with a token classification layer on top * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based embeddings * @groupname anno Annotator types * @groupdesc anno diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/RoBertaSentenceEmbeddings.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/RoBertaSentenceEmbeddings.scala index e71a26005c90..4bf688b02932 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/RoBertaSentenceEmbeddings.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/RoBertaSentenceEmbeddings.scala @@ -50,7 +50,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * .setOutputCol("sentence_embeddings") * }}} * The default model is `"sent_roberta_base"`, if no name is provided. For available pretrained - * models please see the [[https://nlp.johnsnowlabs.com/models?task=Embeddings Models Hub]]. + * models please see the [[https://sparknlp.org/models?task=Embeddings Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -136,7 +136,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * @see * [[RoBertaEmbeddings]] for token-level embeddings * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based embeddings * @groupname anno Annotator types * @groupdesc anno diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/UniversalSentenceEncoder.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/UniversalSentenceEncoder.scala index 457dba10a22b..2fb571c9f1cf 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/UniversalSentenceEncoder.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/UniversalSentenceEncoder.scala @@ -43,7 +43,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * .setOutputCol("sentence_embeddings") * }}} * The default model is `"tfhub_use"`, if no name is provided. For available pretrained models - * please see the [[https://nlp.johnsnowlabs.com/models?task=Embeddings Models Hub]]. + * please see the [[https://sparknlp.org/models?task=Embeddings Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/training/english/classification/ClassifierDL_Train_multi_class_news_category_classifier.ipynb Examples]] @@ -119,7 +119,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * }}} * * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based embeddings * @groupname anno Annotator types * @groupdesc anno diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/Word2VecModel.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/Word2VecModel.scala index 751a8c44da89..bc7692c7a26a 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/Word2VecModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/Word2VecModel.scala @@ -48,7 +48,7 @@ import org.apache.spark.sql.DataFrame * The default model is `"word2vec_gigaword_300"`, if no name is provided. * * For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models Models Hub]]. + * [[https://sparknlp.org/models Models Hub]]. * * '''Sources''' : * diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/WordEmbeddings.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/WordEmbeddings.scala index debe836455ed..6f30aaa59eaf 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/WordEmbeddings.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/WordEmbeddings.scala @@ -111,7 +111,7 @@ import org.apache.spark.sql.Dataset * @see * [[SentenceEmbeddings]] to combine embeddings into a sentence-level representation * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based embeddings * @param uid * required uid for storing annotator to disk diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/WordEmbeddingsModel.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/WordEmbeddingsModel.scala index f32c7dace570..fbd5e813f179 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/WordEmbeddingsModel.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/WordEmbeddingsModel.scala @@ -43,7 +43,7 @@ import org.apache.spark.sql.{DataFrame, Dataset, Row} * .setOutputCol("embeddings") * }}} * The default model is `"glove_100d"`, if no name is provided. For available pretrained models - * please see the [[https://nlp.johnsnowlabs.com/models?task=Embeddings Models Hub]]. + * please see the [[https://sparknlp.org/models?task=Embeddings Models Hub]]. * * There are also two convenient functions to retrieve the embeddings coverage with respect to * the transformed dataset: @@ -125,7 +125,7 @@ import org.apache.spark.sql.{DataFrame, Dataset, Row} * @see * [[SentenceEmbeddings]] to combine embeddings into a sentence-level representation * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based embeddings * @groupname anno Annotator types * @groupdesc anno diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/XlmRoBertaEmbeddings.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/XlmRoBertaEmbeddings.scala index 75ba2f2f3391..386a21f5069b 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/XlmRoBertaEmbeddings.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/XlmRoBertaEmbeddings.scala @@ -53,7 +53,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * }}} * The default model is `"xlm_roberta_base"`, default language is `"xx"` (meaning multi-lingual), * if no values are provided. For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Embeddings Models Hub]]. + * [[https://sparknlp.org/models?task=Embeddings Models Hub]]. * * For extended examples of usage, see the * [[https://github.com/JohnSnowLabs/spark-nlp/blob/master/examples/python/transformers/HuggingFace%20in%20Spark%20NLP%20-%20XLM-RoBERTa.ipynb Examples]] @@ -143,7 +143,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * [[com.johnsnowlabs.nlp.annotators.classifier.dl.XlmRoBertaForTokenClassification XlmRoBertaForTokenClassification]] * For XlmRoBerta embeddings with a token classification layer on top * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based embeddings * @groupname anno Annotator types * @groupdesc anno diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/XlmRoBertaSentenceEmbeddings.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/XlmRoBertaSentenceEmbeddings.scala index a4172ce5843d..9f716778c57f 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/XlmRoBertaSentenceEmbeddings.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/XlmRoBertaSentenceEmbeddings.scala @@ -53,7 +53,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * }}} * The default model is `"sent_xlm_roberta_base"`, default language is `"xx"` (meaning * multi-lingual), if no values are provided. For available pretrained models please see the - * [[https://nlp.johnsnowlabs.com/models?task=Embeddings Models Hub]]. + * [[https://sparknlp.org/models?task=Embeddings Models Hub]]. * * To see which models are compatible and how to import them see * [[https://github.com/JohnSnowLabs/spark-nlp/discussions/5669]] and to see more extended @@ -140,7 +140,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * @see * [[XlmRoBertaEmbeddings]] for token-level embeddings * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based embeddings * @groupname anno Annotator types * @groupdesc anno diff --git a/src/main/scala/com/johnsnowlabs/nlp/embeddings/XlnetEmbeddings.scala b/src/main/scala/com/johnsnowlabs/nlp/embeddings/XlnetEmbeddings.scala index 9f4ffecdafdf..f85f4a5854b0 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/embeddings/XlnetEmbeddings.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/embeddings/XlnetEmbeddings.scala @@ -150,7 +150,7 @@ import org.apache.spark.sql.{DataFrame, SparkSession} * [[com.johnsnowlabs.nlp.annotators.classifier.dl.XlnetForTokenClassification XlnetForTokenClassification]] * For Xlnet embeddings with a token classification layer on top * @see - * [[https://nlp.johnsnowlabs.com/docs/en/annotators Annotators Main Page]] for a list of + * [[https://sparknlp.org/docs/en/annotators Annotators Main Page]] for a list of * transformer based embeddings * @param uid * required internal uid for saving annotator diff --git a/src/main/scala/com/johnsnowlabs/nlp/pretrained/PretrainedPipeline.scala b/src/main/scala/com/johnsnowlabs/nlp/pretrained/PretrainedPipeline.scala index 664508a72aa6..f4cbd25c52b0 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/pretrained/PretrainedPipeline.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/pretrained/PretrainedPipeline.scala @@ -25,7 +25,7 @@ import org.apache.spark.sql.DataFrame * model can be retrieved with member `lightModel`. * * For more extended examples see the - * [[https://nlp.johnsnowlabs.com/docs/en/pipelines Pipelines page]] and our + * [[https://sparknlp.org/docs/en/pipelines Pipelines page]] and our * [[https://github.com/JohnSnowLabs/spark-nlp-models Github Model Repository]] for available * pipeline models. * From 2e78960986723f1b867705fd17f1810e4f874ce4 Mon Sep 17 00:00:00 2001 From: Prabod Rathnayaka Date: Mon, 10 Apr 2023 00:12:44 +1000 Subject: [PATCH 17/26] Update INT64 to INT32 (#13748) --- .../scala/com/johnsnowlabs/ml/ai/Bart.scala | 106 +++++++++--------- .../ml/ai/util/Generation/Generate.scala | 36 +++--- .../ml/ai/util/Generation/Logit/Logit.scala | 2 +- .../MinLengthLogitProcessor.scala | 4 +- .../NoRepeatNgramsLogitProcessor.scala | 20 ++-- .../RepetitionPenaltyLogitProcessor.scala | 2 +- .../Generation/Logit/LogitProcessorList.scala | 4 +- .../LogitWarper/TemperatureLogitWarper.scala | 2 +- .../Logit/LogitWarper/TopKLogitWarper.scala | 2 +- .../Logit/LogitWarper/TopPLogitWarper.scala | 2 +- .../Generation/Search/BeamHypotheses.scala | 8 +- .../util/Generation/Search/BeamScorer.scala | 28 ++--- .../Generation/Search/BeamSearchScorer.scala | 54 ++++----- 13 files changed, 135 insertions(+), 135 deletions(-) diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/Bart.scala b/src/main/scala/com/johnsnowlabs/ml/ai/Bart.scala index 9ba7c6b8ffe5..57f51fd68abc 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/Bart.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/Bart.scala @@ -66,12 +66,12 @@ private[johnsnowlabs] class Bart( .forModel("bart", merges = merges, vocab = vocabulary, padWithSentenceTokens = false) .asInstanceOf[BartTokenizer] - private val paddingTokenId = 1L - private val eosTokenId = 2L + private val paddingTokenId = 1 + private val eosTokenId = 2 private val vocab_size = 50264 private def sessionWarmup(): Unit = { - val dummyInput = Array.fill(1)(0L) ++ Array(eosTokenId) + val dummyInput = Array.fill(1)(0) ++ Array(eosTokenId) tag( Seq(dummyInput), minOutputLength = 0, @@ -82,15 +82,15 @@ private[johnsnowlabs] class Bart( topP = 0f, repetitionPenalty = 0f, noRepeatNgramSize = 0, - randomSeed = Option(0L), + randomSeed = Option(0), ignoreTokenIds = Array(0), beamSize = 1) } - sessionWarmup() +// sessionWarmup() def tag( - batch: Seq[Array[Long]], + batch: Seq[Array[Int]], minOutputLength: Int, maxOutputLength: Int, doSample: Boolean, @@ -101,8 +101,8 @@ private[johnsnowlabs] class Bart( noRepeatNgramSize: Int, randomSeed: Option[Long], ignoreTokenIds: Array[Int] = Array(), - beamSize: Int): Array[Array[Long]] = { - val ignoreTokenIdsInt = ignoreTokenIds.map(_.toLong) + beamSize: Int): Array[Array[Int]] = { + val ignoreTokenIdsInt = ignoreTokenIds val expandedEncoderInputIdsVals = batch.flatMap(x => List.fill(beamSize)(x)) // val expandedEncoderInputIdsVals = batch val sequencesLength = expandedEncoderInputIdsVals.map(x => x.length).toArray @@ -127,8 +127,8 @@ private[johnsnowlabs] class Bart( val tensorEncoder = new TensorResources() val inputDim = expandedEncoderInputIdsVals.length * maxSentenceLength - val encoderInputBuffers = tensorEncoder.createLongBuffer(inputDim) - val encoderAttentionMaskBuffers = tensorEncoder.createLongBuffer(inputDim) + val encoderInputBuffers = tensorEncoder.createIntBuffer(inputDim) + val encoderAttentionMaskBuffers = tensorEncoder.createIntBuffer(inputDim) val shape = Array(expandedEncoderInputIdsVals.length.toLong, maxSentenceLength) @@ -136,9 +136,9 @@ private[johnsnowlabs] class Bart( val offset = idx * maxSentenceLength val diff = maxSentenceLength - tokenIds.length - val s = tokenIds.take(maxSentenceLength) ++ Array.fill[Long](diff)(this.paddingTokenId) + val s = tokenIds.take(maxSentenceLength) ++ Array.fill[Int](diff)(this.paddingTokenId) encoderInputBuffers.offset(offset).write(s) - val mask = s.map(x => if (x != this.paddingTokenId) 1L else 0L) + val mask = s.map(x => if (x != this.paddingTokenId) 1 else 0) encoderAttentionMaskBuffers.offset(offset).write(mask) } @@ -147,9 +147,9 @@ private[johnsnowlabs] class Bart( initAllTables = false, savedSignatures = signatures) - val encoderInputTensors = tensorEncoder.createLongBufferTensor(shape, encoderInputBuffers) + val encoderInputTensors = tensorEncoder.createIntBufferTensor(shape, encoderInputBuffers) val encoderAttentionMaskTensors = - tensorEncoder.createLongBufferTensor(shape, encoderAttentionMaskBuffers) + tensorEncoder.createIntBufferTensor(shape, encoderAttentionMaskBuffers) val runner = session.runner runner @@ -188,7 +188,7 @@ private[johnsnowlabs] class Bart( } val decoderEncoderStateTensors = tensorEncoder.createFloatBufferTensor( - Array(expandedEncoderInputIdsVals.length.toLong, maxSentenceLength, dim), + Array(expandedEncoderInputIdsVals.length, maxSentenceLength, dim), decoderEncoderStateBuffers) // val modelOutputs = generateNoBeamSearch( @@ -232,7 +232,7 @@ private[johnsnowlabs] class Bart( } def generateBeamSearch( - inputIds: Seq[Array[Long]], + inputIds: Seq[Array[Int]], decoderEncoderStateTensors: Tensor, encoderAttentionMaskTensors: Tensor, maxOutputLength: Int, @@ -246,8 +246,8 @@ private[johnsnowlabs] class Bart( repetitionPenalty: Double, noRepeatNgramSize: Int, randomSeed: Option[Long], - ignoreTokenIds: Array[Long] = Array(), - session: Session): Array[Array[Long]] = { + ignoreTokenIds: Array[Int] = Array(), + session: Session): Array[Array[Int]] = { var decoderInputs = inputIds.map(_ => Array(this.eosTokenId)).toArray @@ -293,7 +293,7 @@ private[johnsnowlabs] class Bart( } def generateNoBeamSearch( - inputIds: Seq[Array[Long]], + inputIds: Seq[Array[Int]], decoderEncoderStateTensors: Tensor, encoderAttentionMaskTensors: Tensor, maxOutputLength: Int, @@ -306,7 +306,7 @@ private[johnsnowlabs] class Bart( noRepeatNgramSize: Int, randomSeed: Option[Long], ignoreTokenIds: Array[Int] = Array(), - session: Session): Array[Array[Long]] = { + session: Session): Array[Array[Int]] = { /** Generate sequences for each example without beam search (numBeams == 1). All returned * sequence are generated independently. @@ -346,22 +346,22 @@ private[johnsnowlabs] class Bart( val tensorDecoder = new TensorResources() val decoderInputBuffers = - tensorDecoder.createLongBuffer(decoderInputs.length * decoderInputLength) + tensorDecoder.createIntBuffer(decoderInputs.length * decoderInputLength) val decoderAttentionBuffers = - tensorDecoder.createLongBuffer(decoderInputs.length * decoderInputLength) + tensorDecoder.createIntBuffer(decoderInputs.length * decoderInputLength) decoderInputs.zipWithIndex.foreach { case (pieceIds, idx) => val offset = idx * decoderInputLength decoderInputBuffers.offset(offset).write(pieceIds) - val paddingMasks = pieceIds.map(_ => 1L) + val paddingMasks = pieceIds.map(_ => 1) decoderAttentionBuffers.offset(offset).write(paddingMasks) } - val decoderInputTensors = tensorDecoder.createLongBufferTensor( - Array(decoderInputs.length.toLong, decoderInputLength), + val decoderInputTensors = tensorDecoder.createIntBufferTensor( + Array(decoderInputs.length, decoderInputLength), decoderInputBuffers) - val decoderAttentionMaskTensors = tensorDecoder.createLongBufferTensor( - Array(decoderInputs.length.toLong, decoderInputLength), + val decoderAttentionMaskTensors = tensorDecoder.createIntBufferTensor( + Array(decoderInputs.length, decoderInputLength), decoderAttentionBuffers) val runner = session.runner @@ -454,7 +454,7 @@ private[johnsnowlabs] class Bart( Float.NegativeInfinity) } - var nextToken = Array.ofDim[Long](decoderInputs.length) + var nextToken = Array.ofDim[Int](decoderInputs.length) if (doSample) { // Temperature (higher temperature => more likely to sample low probability tokens) @@ -468,9 +468,9 @@ private[johnsnowlabs] class Bart( nextToken = nextTokenLogits.map(input => categoricalSample(input, randomSeed)) } else { // Greedy decoding - nextToken = nextTokenLogits.map(input => input.indexOf(input.max).toLong) + nextToken = nextTokenLogits.map(input => input.indexOf(input.max)) } - var tokensToAdd = Array.ofDim[Long](decoderInputs.length) + var tokensToAdd = Array.ofDim[Int](decoderInputs.length) // update generations and finished sentences if (!eosTokenId.isNaN) @@ -521,7 +521,7 @@ private[johnsnowlabs] class Bart( } def createNextTokenLogitsPenalties( - inputIds: Seq[Array[Long]], + inputIds: Seq[Array[Int]], logits: Array[Array[Float]], repetitionPenalty: Double): Array[Array[Float]] = { // create logit penalties for already seen inputIds @@ -547,16 +547,16 @@ private[johnsnowlabs] class Bart( } private def calcBannedNgramTokens( - prevInputIds: Seq[Array[Long]], + prevInputIds: Seq[Array[Int]], numHypos: Int, noRepeatNgramSize: Int, - curLen: Int): Array[Array[Long]] = { + curLen: Int): Array[Array[Int]] = { // based on fairseq for noRepeatNgram in beam_search if (curLen + 1 < noRepeatNgramSize) // return no banned tokens if we haven't generated noRepeatNgram_size tokens yet - return Array.ofDim[Long](numHypos, 0) + return Array.ofDim[Int](numHypos, 0) val generatedNgrams = - Array.tabulate(numHypos)(_ => mutable.Map.empty[IndexedSeq[Long], List[Long]]) + Array.tabulate(numHypos)(_ => mutable.Map.empty[IndexedSeq[Int], List[Int]]) for (idx <- 0 until numHypos) { val genTokens = prevInputIds(idx) val generatedNgram = generatedNgrams(idx) @@ -565,7 +565,7 @@ private[johnsnowlabs] class Bart( val ngram = for (e <- ngramArrays) yield e(ngramInd) val prevNgramTuple = ngram.dropRight(1) generatedNgram(prevNgramTuple) = - generatedNgram.getOrElse(prevNgramTuple, List.empty[Long]) :+ ngram.last + generatedNgram.getOrElse(prevNgramTuple, List.empty[Int]) :+ ngram.last } } (for (hypoIdx <- 0 until numHypos) @@ -578,15 +578,15 @@ private[johnsnowlabs] class Bart( } def getGeneratedNgrams( - prevInputIds: Seq[Array[Long]], - generatedNgrams: Array[mutable.Map[IndexedSeq[Long], List[Long]]], + prevInputIds: Seq[Array[Int]], + generatedNgrams: Array[mutable.Map[IndexedSeq[Int], List[Int]]], hypoIdx: Int, curLen: Int, - noRepeatNgramSize: Int): Array[Long] = { + noRepeatNgramSize: Int): Array[Int] = { // Before decoding the next token, prevent decoding of ngrams that have already appeared val startIdx = curLen + 1 - noRepeatNgramSize val ngramIdx = prevInputIds(hypoIdx).slice(startIdx, curLen) - generatedNgrams(hypoIdx).getOrElse(ngramIdx, List.empty[Long]).toArray + generatedNgrams(hypoIdx).getOrElse(ngramIdx, List.empty[Int]).toArray } private def topKTopPFiltering( @@ -677,7 +677,7 @@ private[johnsnowlabs] class Bart( for ((inputId, index) <- prevInputIds.zip(indices)) yield if (index) value else inputId } - private def categoricalSample(dist: Array[Float], randomSeed: Option[Long]): Long = { + private def categoricalSample(dist: Array[Float], randomSeed: Option[Long]): Int = { val (distFiltered, indices) = dist.zipWithIndex.filter { case (elem, index) => !elem.isInfinite }.sorted.unzip @@ -702,11 +702,11 @@ private[johnsnowlabs] class Bart( indices(0) } - def decode(sentences: Array[Array[Long]]): Seq[String] = { + def decode(sentences: Array[Array[Int]]): Seq[String] = { sentences.map(s => bpeTokenizer.decodeTokens(s.map(_.toInt))) } - def encode(sentences: Seq[Annotation], task: String): Seq[Array[Long]] = { + def encode(sentences: Seq[Annotation], task: String): Seq[Array[Int]] = { SentenceSplit .unpack(sentences) .map(s => { @@ -722,7 +722,7 @@ private[johnsnowlabs] class Bart( bpeTokenizer .tokenize(sentWithTask) .map(bpeTokenizer.encode) - .flatMap(_.map(_.pieceId.toLong)) + .flatMap(_.map(_.pieceId)) }) } @@ -777,8 +777,8 @@ private[johnsnowlabs] class Bart( } override def getModelOutput( - encoderInputIds: Seq[Array[Long]], - decoderInputIds: Seq[Array[Long]], + encoderInputIds: Seq[Array[Int]], + decoderInputIds: Seq[Array[Int]], decoderEncoderStateTensors: Tensor, encoderAttentionMaskTensors: Tensor, maxLength: Int, @@ -792,22 +792,22 @@ private[johnsnowlabs] class Bart( val tensorDecoder = new TensorResources() val decoderInputBuffers = - tensorDecoder.createLongBuffer(decoderInputIds.length * decoderInputLength) + tensorDecoder.createIntBuffer(decoderInputIds.length * decoderInputLength) val decoderAttentionBuffers = - tensorDecoder.createLongBuffer(decoderInputIds.length * decoderInputLength) + tensorDecoder.createIntBuffer(decoderInputIds.length * decoderInputLength) decoderInputIds.zipWithIndex.foreach { case (pieceIds, idx) => val offset = idx * decoderInputLength decoderInputBuffers.offset(offset).write(pieceIds) - val paddingMasks = pieceIds.map(_ => 1L) + val paddingMasks = pieceIds.map(_ => 1) decoderAttentionBuffers.offset(offset).write(paddingMasks) } - val decoderInputTensors = tensorDecoder.createLongBufferTensor( - Array(decoderInputIds.length.toLong, decoderInputLength), + val decoderInputTensors = tensorDecoder.createIntBufferTensor( + Array(decoderInputIds.length, decoderInputLength), decoderInputBuffers) - val decoderAttentionMaskTensors = tensorDecoder.createLongBufferTensor( - Array(decoderInputIds.length.toLong, decoderInputLength), + val decoderAttentionMaskTensors = tensorDecoder.createIntBufferTensor( + Array(decoderInputIds.length, decoderInputLength), decoderAttentionBuffers) val runner = session.runner diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Generate.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Generate.scala index 6432043b0231..892cbe708c1e 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Generate.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Generate.scala @@ -24,18 +24,18 @@ import org.tensorflow.{Session, Tensor} trait Generate { def beamSearch( - encoderInputIdsVals: Seq[Array[Long]], - inputIdsVal: Seq[Array[Long]], + encoderInputIdsVals: Seq[Array[Int]], + inputIdsVal: Seq[Array[Int]], decoderEncoderStateTensors: Tensor, encoderAttentionMaskTensors: Tensor, beamScorer: BeamScorer, logitProcessor: LogitProcessorList, maxLength: Int, - padTokenId: Long, - eosTokenId: Long, + padTokenId: Int, + eosTokenId: Int, doSample: Boolean, randomSeed: Option[Long], - session: Session): Array[Array[Long]] = { + session: Session): Array[Array[Int]] = { var inputIds = inputIdsVal val batchSize = beamScorer.getBeamHypothesesSeq.length val numBeams = beamScorer.getNumBeams @@ -46,9 +46,9 @@ trait Generate { beamScores = beamScores.zipWithIndex.map { case (_, ind) => if (ind % numBeams == 0) 0 else (-1e-9).toFloat } - var beamIndices = Seq.fill(batchBeamSize)(Array[Long]()) - var nextIndices = Array[Array[Long]]() - var nextTokens = Array[Array[Long]]() + var beamIndices = Seq.fill(batchBeamSize)(Array[Int]()) + var nextIndices = Array[Array[Int]]() + var nextTokens = Array[Array[Int]]() var expandedInputs = inputIds.flatMap(x => List.fill(numBeams)(x)) val expandedEncoderInputIdsVals = encoderInputIdsVals.flatMap(x => List.fill(numBeams)(x)) breakable { @@ -90,7 +90,7 @@ trait Generate { nextTokenScores = reshapedNextTokenScores var nextKTopTokenScores: Array[Array[Float]] = Array[Array[Float]]() - var nextKTopTokens: Array[Array[Long]] = Array[Array[Long]]() + var nextKTopTokens: Array[Array[Int]] = Array[Array[Int]]() if (doSample) { val nextKIndices = nextTokenScores.map(x => { @@ -106,7 +106,7 @@ trait Generate { nextKTopTokenScores.map(x => x.zipWithIndex.sortWith(_._1 > _._1).map(_._1)) val tempNextKInd = nextKTopTokenScores.map(x => x.zipWithIndex.sortWith(_._1 > _._1).map(_._2)) - nextKTopTokens = Array.ofDim[Long](nextKIndices.length, nextKIndices.head.length) + nextKTopTokens = Array.ofDim[Int](nextKIndices.length, nextKIndices.head.length) for (i <- tempNextKInd.indices) { for (j <- tempNextKInd(i).indices) { @@ -117,7 +117,7 @@ trait Generate { nextKTopTokenScores = nextTokenScores.map(x => x.zipWithIndex.sortWith(_._1 > _._1).take(2 * numBeams).map(_._1)) nextKTopTokens = nextTokenScores.map(x => - x.zipWithIndex.sortWith(_._1 > _._1).take(2 * numBeams).map(_._2.toLong)) + x.zipWithIndex.sortWith(_._1 > _._1).take(2 * numBeams).map(_._2)) } nextIndices = nextKTopTokens.map(y => y.map(x => x / vocabSize)) nextTokens = nextKTopTokens.map(y => y.map(x => x % vocabSize)) @@ -134,7 +134,7 @@ trait Generate { val newBeamScores = beamOutputs._1.flatMap(_.toList) val beamNextTokens = beamOutputs._2.flatMap(_.toList) val beamIdx = beamOutputs._3.flatMap(_.toList) - var newInputIds = Seq[Array[Long]]() + var newInputIds = Seq[Array[Int]]() for ((i, ind) <- beamIdx.zipWithIndex) { val tempInput = expandedInputs(i.toInt) :+ beamNextTokens(ind) @@ -166,8 +166,8 @@ trait Generate { } def getModelOutput( - encoderInputIds: Seq[Array[Long]], - decoderInputIds: Seq[Array[Long]], + encoderInputIds: Seq[Array[Int]], + decoderInputIds: Seq[Array[Int]], decoderEncoderStateTensors: Tensor, encoderAttentionMaskTensors: Tensor, maxLength: Int, @@ -202,7 +202,7 @@ trait Generate { outputArray // Return the reshaped array } - def sample(logits: Seq[Float], k: Int, seed: Long = 42): Array[Long] = { + def sample(logits: Seq[Float], k: Int, seed: Long = 42): Array[Int] = { val maxLogit = logits.max val logitsExp = logits.map(logit => math.exp(logit - maxLogit)) val sumExp = logitsExp.sum @@ -219,10 +219,10 @@ trait Generate { } results :+= index } - results.map(_.toLong).toArray + results.toArray } - def multinomialSampling(logitValues: Array[Float], k: Int, seed: Option[Long]): Array[Long] = { + def multinomialSampling(logitValues: Array[Float], k: Int, seed: Option[Long]): Array[Int] = { val (distFiltered, indices) = logitValues.zipWithIndex.filter { case (elem, index) => !elem.isInfinite }.sorted.unzip @@ -232,7 +232,7 @@ trait Generate { val probabilities = expLogitValues.map(_ / sumExpLogitValues) // val indices = Array.range(0, logitValues.length) - val selectedIndices = new Array[Long](k) + val selectedIndices = new Array[Int](k) var seededRandom = new scala.util.Random() if (seed.isDefined) { seededRandom = new scala.util.Random(seed.get) diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/Logit.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/Logit.scala index 832ba60bbe4f..1ce50ea9577a 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/Logit.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/Logit.scala @@ -18,7 +18,7 @@ package com.johnsnowlabs.ml.ai.util.Generation.Logit abstract class Logit { def call( - inputIds: Seq[Array[Long]], + inputIds: Seq[Array[Int]], scores: Array[Array[Float]], currentLength: Int): Array[Array[Float]] diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/MinLengthLogitProcessor.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/MinLengthLogitProcessor.scala index 614ddc0f17ea..930ac5196936 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/MinLengthLogitProcessor.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/MinLengthLogitProcessor.scala @@ -16,10 +16,10 @@ package com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitProcess -class MinLengthLogitProcessor(val eosTokenId: Long, val minLength: Int, val vocabSize: Int) +class MinLengthLogitProcessor(val eosTokenId: Int, val minLength: Int, val vocabSize: Int) extends LogitProcessor { override def call( - inputIds: Seq[Array[Long]], + inputIds: Seq[Array[Int]], scores: Array[Array[Float]], currentLength: Int): Array[Array[Float]] = { if (!eosTokenId.isNaN && currentLength < this.minLength) { diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/NoRepeatNgramsLogitProcessor.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/NoRepeatNgramsLogitProcessor.scala index e83c7107376f..3f022718da08 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/NoRepeatNgramsLogitProcessor.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/NoRepeatNgramsLogitProcessor.scala @@ -20,7 +20,7 @@ import scala.collection.mutable class NoRepeatNgramsLogitProcessor(val noRepeatNgramSize: Int, val vocabSize: Int) extends LogitProcessor { override def call( - inputIds: Seq[Array[Long]], + inputIds: Seq[Array[Int]], scores: Array[Array[Float]], currentLength: Int): Array[Array[Float]] = { if (noRepeatNgramSize > 0) { @@ -51,16 +51,16 @@ class NoRepeatNgramsLogitProcessor(val noRepeatNgramSize: Int, val vocabSize: In } private def calcBannedNgramTokens( - prevInputIds: Seq[Array[Long]], + prevInputIds: Seq[Array[Int]], numHypos: Int, noRepeatNgramSize: Int, - curLen: Int): Array[Array[Long]] = { + curLen: Int): Array[Array[Int]] = { // based on fairseq for noRepeatNgram in beam_search if (curLen + 1 < noRepeatNgramSize) // return no banned tokens if we haven't generated noRepeatNgram_size tokens yet - return Array.ofDim[Long](numHypos, 0) + return Array.ofDim[Int](numHypos, 0) val generatedNgrams = - Array.tabulate(numHypos)(_ => mutable.Map.empty[IndexedSeq[Long], List[Long]]) + Array.tabulate(numHypos)(_ => mutable.Map.empty[IndexedSeq[Int], List[Int]]) for (idx <- 0 until numHypos) { val genTokens = prevInputIds(idx) val generatedNgram = generatedNgrams(idx) @@ -69,7 +69,7 @@ class NoRepeatNgramsLogitProcessor(val noRepeatNgramSize: Int, val vocabSize: In val ngram = for (e <- ngramArrays) yield e(ngramInd) val prevNgramTuple = ngram.dropRight(1) generatedNgram(prevNgramTuple) = - generatedNgram.getOrElse(prevNgramTuple, List.empty[Long]) :+ ngram.last + generatedNgram.getOrElse(prevNgramTuple, List.empty[Int]) :+ ngram.last } } (for (hypoIdx <- 0 until numHypos) @@ -82,14 +82,14 @@ class NoRepeatNgramsLogitProcessor(val noRepeatNgramSize: Int, val vocabSize: In } private def getGeneratedNgrams( - prevInputIds: Seq[Array[Long]], - generatedNgrams: Array[mutable.Map[IndexedSeq[Long], List[Long]]], + prevInputIds: Seq[Array[Int]], + generatedNgrams: Array[mutable.Map[IndexedSeq[Int], List[Int]]], hypoIdx: Int, curLen: Int, - noRepeatNgramSize: Int): Array[Long] = { + noRepeatNgramSize: Int): Array[Int] = { // Before decoding the next token, prevent decoding of ngrams that have already appeared val startIdx = curLen + 1 - noRepeatNgramSize val ngramIdx = prevInputIds(hypoIdx).slice(startIdx, curLen) - generatedNgrams(hypoIdx).getOrElse(ngramIdx, List.empty[Long]).toArray + generatedNgrams(hypoIdx).getOrElse(ngramIdx, List.empty[Int]).toArray } } diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/RepetitionPenaltyLogitProcessor.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/RepetitionPenaltyLogitProcessor.scala index 1d2222967b75..877e8fdef8c6 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/RepetitionPenaltyLogitProcessor.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/RepetitionPenaltyLogitProcessor.scala @@ -18,7 +18,7 @@ package com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitProcess class RepetitionPenaltyLogitProcessor(val penalty: Double) extends LogitProcessor { override def call( - inputIds: Seq[Array[Long]], + inputIds: Seq[Array[Int]], scores: Array[Array[Float]], currentLength: Int): Array[Array[Float]] = { if (penalty != 1.0) { diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcessorList.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcessorList.scala index fe8be1edfce8..dcb77f477b04 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcessorList.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcessorList.scala @@ -25,7 +25,7 @@ class LogitProcessorList { } def process( - inputIds: Seq[Array[Long]], + inputIds: Seq[Array[Int]], scores: Array[Array[Float]], currentLength: Int): Array[Array[Float]] = { var tempScores = scores @@ -38,7 +38,7 @@ class LogitProcessorList { } def warp( - inputIds: Seq[Array[Long]], + inputIds: Seq[Array[Int]], scores: Array[Array[Float]], currentLength: Int): Array[Array[Float]] = { var tempScores = scores diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TemperatureLogitWarper.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TemperatureLogitWarper.scala index 611ceb699aa6..20f17b081dc0 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TemperatureLogitWarper.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TemperatureLogitWarper.scala @@ -18,7 +18,7 @@ package com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitWarper class TemperatureLogitWarper(val temperature: Double) extends LogitWarper { override def call( - inputIds: Seq[Array[Long]], + inputIds: Seq[Array[Int]], scores: Array[Array[Float]], currentLength: Int): Array[Array[Float]] = { if (temperature > 0 && temperature <= 1) { diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopKLogitWarper.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopKLogitWarper.scala index 937033d368aa..6ec064de2b73 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopKLogitWarper.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopKLogitWarper.scala @@ -23,7 +23,7 @@ class TopKLogitWarper( val minTokensToKeep: Int = 1) extends LogitWarper { override def call( - inputIds: Seq[Array[Long]], + inputIds: Seq[Array[Int]], scores: Array[Array[Float]], currentLength: Int): Array[Array[Float]] = { var logitsUpd = scores diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopPLogitWarper.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopPLogitWarper.scala index 2b74e3284b6d..f96c87c11eef 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopPLogitWarper.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopPLogitWarper.scala @@ -18,7 +18,7 @@ package com.johnsnowlabs.ml.ai.util.Generation.Logit.LogitWarper class TopPLogitWarper(val p: Double, val minTokensToKeep: Int = 1) extends LogitWarper { override def call( - inputIds: Seq[Array[Long]], + inputIds: Seq[Array[Int]], scores: Array[Array[Float]], currentLength: Int): Array[Array[Float]] = { var scoresUpd = scores diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamHypotheses.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamHypotheses.scala index 04c1b7c1c037..7ada974f852a 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamHypotheses.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamHypotheses.scala @@ -21,14 +21,14 @@ class BeamHypotheses( var numBeams: Int, var earlyStopping: Boolean = false, var maxLength: Int) { - private var beams: Seq[(Double, Array[Long], Array[Long])] = Seq() + private var beams: Seq[(Double, Array[Int], Array[Int])] = Seq() private var worstScore: Double = 1e9 def length(): Int = { beams.length } - def getBeams: Seq[(Double, Array[Long], Array[Long])] = { + def getBeams: Seq[(Double, Array[Int], Array[Int])] = { this.beams } @@ -40,7 +40,7 @@ class BeamHypotheses( * @param beamIndices * Beam Indices */ - def add(hypotheses: Array[Long], sumLogProbs: Double, beamIndices: Array[Long]): Unit = { + def add(hypotheses: Array[Int], sumLogProbs: Double, beamIndices: Array[Int]): Unit = { val score = sumLogProbs / Math.pow(hypotheses.length, this.lengthPenalty) if (this.beams.length < this.numBeams || score > this.worstScore) { this.beams = beams :+ (score, hypotheses, beamIndices) @@ -65,7 +65,7 @@ class BeamHypotheses( * @return * Status of the sentence */ - def isDone(bestSumLogProbs: Double, currentLength: Long): Boolean = { + def isDone(bestSumLogProbs: Double, currentLength: Int): Boolean = { if (this.beams.length < this.numBeams) { false } else if (this.earlyStopping) { diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamScorer.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamScorer.scala index 43471fd28e45..2fcbcada9533 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamScorer.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamScorer.scala @@ -19,24 +19,24 @@ package com.johnsnowlabs.ml.ai.util.Generation.Search abstract class BeamScorer() { def process( - inputIds: Seq[Array[Long]], + inputIds: Seq[Array[Int]], nextScores: Seq[Array[Float]], - nextTokens: Seq[Array[Long]], - nextIndices: Seq[Array[Long]], - padTokenId: Long, - eosTokenId: Long, - beamIndices: Seq[Array[Long]], - currentLength: Long): (Array[Array[Float]], Array[Array[Long]], Array[Array[Long]]) + nextTokens: Seq[Array[Int]], + nextIndices: Seq[Array[Int]], + padTokenId: Int, + eosTokenId: Int, + beamIndices: Seq[Array[Int]], + currentLength: Int): (Array[Array[Float]], Array[Array[Int]], Array[Array[Int]]) def finalize( - inputIds: Seq[Array[Long]], + inputIds: Seq[Array[Int]], finalBeamScores: Array[Float], - finalBeamTokens: Array[Long], - finalBeamIndices: Array[Long], - maxLength: Long, - padTokenId: Long, - eosTokenId: Long, - beamIndices: Seq[Array[Long]]): (Array[Array[Long]], Array[Float], Array[Array[Long]]) + finalBeamTokens: Array[Int], + finalBeamIndices: Array[Int], + maxLength: Int, + padTokenId: Int, + eosTokenId: Int, + beamIndices: Seq[Array[Int]]): (Array[Array[Int]], Array[Float], Array[Array[Int]]) def getBeamHypothesesSeq: Seq[BeamHypotheses] def getNumBeams: Int def isDone: Boolean diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamSearchScorer.scala b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamSearchScorer.scala index afce9389f850..2bbe617140bf 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamSearchScorer.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamSearchScorer.scala @@ -44,26 +44,26 @@ class BeamSearchScorer( private val done: Array[Boolean] = Array.fill(batchSize)(false) override def process( - inputIds: Seq[Array[Long]], + inputIds: Seq[Array[Int]], nextScores: Seq[Array[Float]], - nextTokens: Seq[Array[Long]], - nextIndices: Seq[Array[Long]], - padTokenId: Long, - eosTokenId: Long, - beamIndices: Seq[Array[Long]], - currentLength: Long): (Array[Array[Float]], Array[Array[Long]], Array[Array[Long]]) = { + nextTokens: Seq[Array[Int]], + nextIndices: Seq[Array[Int]], + padTokenId: Int, + eosTokenId: Int, + beamIndices: Seq[Array[Int]], + currentLength: Int): (Array[Array[Float]], Array[Array[Int]], Array[Array[Int]]) = { // val currentLength = inputIds.length val batchSize = this.beamHypothesesSeq.length val nextBeamScores = Array.ofDim[Float](batchSize, this.beamSize) - val nextBeamTokens = Array.ofDim[Long](batchSize, this.beamSize) - val nextBeamIndices = Array.ofDim[Long](batchSize, this.beamSize) + val nextBeamTokens = Array.ofDim[Int](batchSize, this.beamSize) + val nextBeamIndices = Array.ofDim[Int](batchSize, this.beamSize) this.beamHypothesesSeq.zipWithIndex.foreach { case (hypotheses, batchIdx) => breakable { if (this.done(batchIdx)) { nextBeamScores(batchIdx) = nextBeamScores(batchIdx).map(_ => 0.0f) nextBeamTokens(batchIdx) = nextBeamTokens(batchIdx).map(_ => padTokenId) - nextBeamIndices(batchIdx) = nextBeamIndices(batchIdx).map(_ => 0L) + nextBeamIndices(batchIdx) = nextBeamIndices(batchIdx).map(_ => 0) break } var beamIdx = 0 @@ -79,13 +79,13 @@ class BeamSearchScorer( if (beamTokenRank >= this.beamSize) { break } - var beamIndex = Array[Long]() + var beamIndex = Array[Int]() if (beamIndices.nonEmpty) { - beamIndex = beamIndices(batchBeamIdx.toInt) + beamIndex = beamIndices(batchBeamIdx) beamIndex = beamIndex.map(i => i + batchBeamIdx) } - hypotheses.add(inputIds(batchBeamIdx.toInt), nextScore, beamIndex) + hypotheses.add(inputIds(batchBeamIdx), nextScore, beamIndex) } else { nextBeamScores(batchIdx)(beamIdx) = nextScore nextBeamTokens(batchIdx)(beamIdx) = nextToken @@ -102,14 +102,14 @@ class BeamSearchScorer( } override def finalize( - inputIds: Seq[Array[Long]], + inputIds: Seq[Array[Int]], finalBeamScores: Array[Float], - finalBeamTokens: Array[Long], - finalBeamIndices: Array[Long], - maxLength: Long, - padTokenId: Long, - eosTokenId: Long, - beamIndices: Seq[Array[Long]]): (Array[Array[Long]], Array[Float], Array[Array[Long]]) = { + finalBeamTokens: Array[Int], + finalBeamIndices: Array[Int], + maxLength: Int, + padTokenId: Int, + eosTokenId: Int, + beamIndices: Seq[Array[Int]]): (Array[Array[Int]], Array[Float], Array[Array[Int]]) = { val batchSize = this.beamHypothesesSeq.length this.beamHypothesesSeq.zipWithIndex.foreach { case (hypotheses, batchIdx) => breakable { @@ -120,7 +120,7 @@ class BeamSearchScorer( var batchBeamIdx = batchIdx * this.beamSize + beamId var finalScore = finalBeamScores(batchBeamIdx) var finalTokens = inputIds(batchBeamIdx) - var beamIndex = Array[Long]() + var beamIndex = Array[Int]() if (beamIndices.nonEmpty) { beamIndex = beamIndices(batchBeamIdx) } @@ -128,9 +128,9 @@ class BeamSearchScorer( } } } - val sentLengths = Array.ofDim[Long](batchSize * this.numBeamHypothesisToKeep) - var best = Seq[Array[Long]]() - var bestIndices = Seq[Array[Long]]() + val sentLengths = Array.ofDim[Int](batchSize * this.numBeamHypothesisToKeep) + var best = Seq[Array[Int]]() + var bestIndices = Seq[Array[Int]]() val bestScores = Array.ofDim[Float](batchSize * this.numBeamHypothesisToKeep) this.beamHypothesesSeq.zipWithIndex.foreach { case (hypotheses, i) => breakable { @@ -150,13 +150,13 @@ class BeamSearchScorer( } val sentLengthMax = sentLengths.max + 1 val sentMaxLength = Math.min(sentLengthMax, maxLength) + 1 - var decoded = Array.ofDim[Long](batchSize * this.numBeamHypothesisToKeep, sentMaxLength.toInt) - var indices = Array.ofDim[Long](batchSize * this.numBeamHypothesisToKeep, sentMaxLength.toInt) + var decoded = Array.ofDim[Int](batchSize * this.numBeamHypothesisToKeep, sentMaxLength.toInt) + var indices = Array.ofDim[Int](batchSize * this.numBeamHypothesisToKeep, sentMaxLength.toInt) if (sentLengths.min != sentLengths.max) { decoded = decoded.map(each => each.map(_ => padTokenId)) } - indices = indices.map(each => each.map(_ => -1L)) + indices = indices.map(each => each.map(_ => -1)) for (i <- best.indices) { val hypo = best(i) val bestIdx = bestIndices(i) From 58e6ab43a40e7a54468aa7697371495aeebe4306 Mon Sep 17 00:00:00 2001 From: Maziyar Panahi Date: Sat, 8 Apr 2023 12:51:40 +0000 Subject: [PATCH 18/26] Fix the wrong column in unit test [skip test] Signed-off-by: Maziyar Panahi --- python/test/annotator/seq2seq/bart_transformer_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/test/annotator/seq2seq/bart_transformer_test.py b/python/test/annotator/seq2seq/bart_transformer_test.py index c2637a853ae2..d489d488ae8a 100644 --- a/python/test/annotator/seq2seq/bart_transformer_test.py +++ b/python/test/annotator/seq2seq/bart_transformer_test.py @@ -44,7 +44,7 @@ def runTest(self): pipeline = Pipeline().setStages([document_assembler, bart]) results = pipeline.fit(data).transform(data) - results.select("questions.result", "answers.result").show(truncate=False) + results.select("documents.result", "answers.result").show(truncate=False) @pytest.mark.slow From bf42fa02baa4ae2d99147b311244155c85d6b7c8 Mon Sep 17 00:00:00 2001 From: Devin Ha <33089471+DevinTDHa@users.noreply.github.com> Date: Sun, 9 Apr 2023 16:36:29 +0200 Subject: [PATCH 19/26] SPARKNLP-805: Documentation for release/440 (#13743) --- docs/en/annotators.md | 4 +- .../en/transformer_entries/BartTransformer.md | 176 ++++++++++++++++++ .../BertForZeroShotClassification.md | 135 ++++++++++++++ .../bert_for_zero_shot_classification.py | 7 +- .../annotator/seq2seq/bart_transformer.py | 58 +++--- .../dl/BertForZeroShotClassification.scala | 2 +- .../annotators/seq2seq/BartTransformer.scala | 8 +- 7 files changed, 353 insertions(+), 37 deletions(-) create mode 100644 docs/en/transformer_entries/BartTransformer.md create mode 100644 docs/en/transformer_entries/BertForZeroShotClassification.md diff --git a/docs/en/annotators.md b/docs/en/annotators.md index 3f24ab1c5bb5..b081fc98e2aa 100644 --- a/docs/en/annotators.md +++ b/docs/en/annotators.md @@ -110,10 +110,12 @@ Additionally, these transformers are available. {% include templates/anno_table_entry.md path="./transformers" name="AlbertForQuestionAnswering" summary="AlbertForQuestionAnswering can load ALBERT Models with a span classification head on top for extractive question-answering tasks like SQuAD."%} {% include templates/anno_table_entry.md path="./transformers" name="AlbertForTokenClassification" summary="AlbertForTokenClassification can load ALBERT Models with a token classification head on top (a linear layer on top of the hidden-states output) e.g. for Named-Entity-Recognition (NER) tasks."%} {% include templates/anno_table_entry.md path="./transformers" name="AlbertForSequenceClassification" summary="AlbertForSequenceClassification can load ALBERT Models with sequence classification/regression head on top e.g. for multi-class document classification tasks."%} -{% include templates/anno_table_entry.md path="./transformers" name="BertEmbeddings" summary="Token-level embeddings using BERT. BERT (Bidirectional Encoder Representations from Transformers) provides dense vector representations for natural language by using a deep, pre-trained neural network with the Transformer architecture."%} +{% include templates/anno_table_entry.md path="./transformers" name="AlbertForSequenceClassification" summary="AlbertForSequenceClassification can load ALBERT Models with sequence classification/regression head on top e.g. for multi-class document classification tasks."%} +{% include templates/anno_table_entry.md path="./transformers" name="BartTransformer" summary="BART: Denoising Sequence-to-Sequence Pre-training for Natural Language Generation, Translation, and Comprehension Transformer"%} {% include templates/anno_table_entry.md path="./transformers" name="BertForQuestionAnswering" summary="BertForQuestionAnswering can load Bert Models with a span classification head on top for extractive question-answering tasks like SQuAD."%} {% include templates/anno_table_entry.md path="./transformers" name="BertForSequenceClassification" summary="Bert Models with sequence classification/regression head on top."%} {% include templates/anno_table_entry.md path="./transformers" name="BertForTokenClassification" summary="BertForTokenClassification can load Bert Models with a token classification head on top (a linear layer on top of the hidden-states output) e.g. for Named-Entity-Recognition (NER) tasks."%} +{% include templates/anno_table_entry.md path="./transformers" name="BertForZeroShotClassification" summary="BertForZeroShotClassification using a `ModelForSequenceClassification` trained on NLI (natural language inference) tasks."%} {% include templates/anno_table_entry.md path="./transformers" name="BertSentenceEmbeddings" summary="Sentence-level embeddings using BERT. BERT (Bidirectional Encoder Representations from Transformers) provides dense vector representations for natural language by using a deep, pre-trained neural network with the Transformer architecture."%} {% include templates/anno_table_entry.md path="./transformers" name="CamemBertEmbeddings" summary="CamemBert is based on Facebook’s RoBERTa model released in 2019."%} {% include templates/anno_table_entry.md path="./transformers" name="CamemBertForSequenceClassification" summary="amemBertForSequenceClassification can load CamemBERT Models with sequence classification/regression head on top (a linear layer on top of the pooled output) e.g. for multi-class document classification tasks."%} diff --git a/docs/en/transformer_entries/BartTransformer.md b/docs/en/transformer_entries/BartTransformer.md new file mode 100644 index 000000000000..c101b44c8ed2 --- /dev/null +++ b/docs/en/transformer_entries/BartTransformer.md @@ -0,0 +1,176 @@ +{%- capture title -%} +BartTransformer +{%- endcapture -%} + +{%- capture description -%} +BART: Denoising Sequence-to-Sequence Pre-training for Natural Language Generation, +Translation, and Comprehension Transformer + +The Facebook BART (Bidirectional and Auto-Regressive Transformer) model is a state-of-the-art +language generation model that was introduced by Facebook AI in 2019. It is based on the +transformer architecture and is designed to handle a wide range of natural language processing +tasks such as text generation, summarization, and machine translation. + +BART is unique in that it is both bidirectional and auto-regressive, meaning that it can +generate text both from left-to-right and from right-to-left. This allows it to capture +contextual information from both past and future tokens in a sentence,resulting in more +accurate and natural language generation. + +The model was trained on a large corpus of text data using a combination of unsupervised and +supervised learning techniques. It incorporates pretraining and fine-tuning phases, where the +model is first trained on a large unlabeled corpus of text, and then fine-tuned on specific +downstream tasks. + +BART has achieved state-of-the-art performance on a wide range of NLP tasks, including +summarization, question-answering, and language translation. Its ability to handle multiple +tasks and its high performance on each of these tasks make it a versatile and valuable tool +for natural language processing applications. + +Pretrained models can be loaded with `pretrained` of the companion object: + +```scala +val bart = BartTransformer.pretrained() + .setInputCols("document") + .setOutputCol("generation") +``` + +The default model is `"bart_large_cnn"`, if no name is provided. For available pretrained +models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?q=bart). + +For extended examples of usage, see +[BartTestSpec](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTestSpec.scala). + +**References:** + +- [BART: Denoising Sequence-to-Sequence Pre-training for Natural Language Generation, Translation, and Comprehension](https://aclanthology.org/2020.acl-main.703.pdf) +- https://github.com/pytorch/fairseq + +**Paper Abstract:** + +*We present BART, a denoising autoencoder for pretraining sequence-to-sequence models. BART +is trained by (1) corrupting text with an arbitrary noising function, and (2) learning a model +to reconstruct the original text. It uses a standard Tranformer-based neural machine +translation architecture which, despite its simplicity, can be seen as generalizing BERT (due +to the bidirectional encoder), GPT (with the left-to-right decoder), and other recent +pretraining schemes. We evaluate a number of noising approaches, finding the best performance +by both randomly shuffling the order of sentences and using a novel in-filling scheme, where +spans of text are replaced with a single mask token. BART is particularly effective when fine +tuned for text generation but also works well for comprehension tasks. It matches the +performance of RoBERTa on GLUE and SQuAD, and achieves new stateof-the-art results on a range +of abstractive dialogue, question answering, and summarization tasks, with gains of up to 3.5 +ROUGE. BART also provides a 1.1 BLEU increase over a back-translation system for machine +translation, with only target language pretraining. We also replicate other pretraining +schemes within the BART framework, to understand their effect on end-task performance* + +**Note:** + +This is a very computationally expensive module especially on larger sequence. The use of an +accelerator such as GPU is recommended. +{%- endcapture -%} + +{%- capture input_anno -%} +DOCUMENT +{%- endcapture -%} + +{%- capture output_anno -%} +DOCUMENT +{%- endcapture -%} + +{%- capture python_example -%} +import sparknlp +from sparknlp.base import * +from sparknlp.annotator import * +from pyspark.ml import Pipeline + +documentAssembler = DocumentAssembler() \ + .setInputCol("text") \ + .setOutputCol("documents") +bart = BartTransformer.pretrained("bart_large_cnn") \ + .setTask("summarize:") \ + .setInputCols(["documents"]) \ + .setMaxOutputLength(200) \ + .setOutputCol("summaries") + +pipeline = Pipeline().setStages([documentAssembler, bart]) + +data = spark.createDataFrame([[ + "Transfer learning, where a model is first pre-trained on a data-rich task before being fine-tuned on a " + + "downstream task, has emerged as a powerful technique in natural language processing (NLP). The effectiveness" + + " of transfer learning has given rise to a diversity of approaches, methodology, and practice. In this " + + "paper, we explore the landscape of transfer learning techniques for NLP by introducing a unified framework " + + "that converts all text-based language problems into a text-to-text format. Our systematic study compares " + + "pre-training objectives, architectures, unlabeled data sets, transfer approaches, and other factors on dozens " + + "of language understanding tasks. By combining the insights from our exploration with scale and our new " + + "Colossal Clean Crawled Corpus, we achieve state-of-the-art results on many benchmarks covering " + + "summarization, question answering, text classification, and more. To facilitate future work on transfer " + + "learning for NLP, we release our data set, pre-trained models, and code." +]]).toDF("text") + +result = pipeline.fit(data).transform(data) +result.select("summaries.result").show(truncate=False) ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +|result | ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +|[transfer learning has emerged as a powerful technique in natural language processing (NLP) the effectiveness of transfer learning has given rise to a diversity of approaches, methodologies, and practice .]| ++--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +{%- endcapture -%} + +{%- capture scala_example -%} +import spark.implicits._ +import com.johnsnowlabs.nlp.base.DocumentAssembler +import com.johnsnowlabs.nlp.annotators.seq2seq.GPT2Transformer +import org.apache.spark.ml.Pipeline + +val documentAssembler = new DocumentAssembler() + .setInputCol("text") + .setOutputCol("documents") + +val bart = BartTransformer.pretrained("bart_large_cnn") + .setInputCols(Array("documents")) + .setMinOutputLength(10) + .setMaxOutputLength(30) + .setDoSample(true) + .setTopK(50) + .setOutputCol("generation") + +val pipeline = new Pipeline().setStages(Array(documentAssembler, bart)) + +val data = Seq( + "PG&E stated it scheduled the blackouts in response to forecasts for high winds " + + "amid dry conditions. The aim is to reduce the risk of wildfires. Nearly 800 thousand customers were " + + "scheduled to be affected by the shutoffs which were expected to last through at least midday tomorrow." +).toDF("text") +val result = pipeline.fit(data).transform(data) + +results.select("generation.result").show(truncate = false) ++--------------------------------------------------------------+ +|result | ++--------------------------------------------------------------+ +|[Nearly 800 thousand customers were affected by the shutoffs.]| ++--------------------------------------------------------------+ + +{%- endcapture -%} + +{%- capture api_link -%} +[BartTransformer](/api/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer) +{%- endcapture -%} + +{%- capture python_api_link -%} +[BartTransformer](/api/python/reference/autosummary/sparknlp/annotator/seq2seq/bart_transformer/index.html#sparknlp.annotator.seq2seq.bart_transformer.BartTransformer) +{%- endcapture -%} + +{%- capture source_link -%} +[BartTransformer](https://github.com/JohnSnowLabs/spark-nlp/tree/master/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala) +{%- endcapture -%} + +{% include templates/anno_template.md +title=title +description=description +input_anno=input_anno +output_anno=output_anno +python_example=python_example +scala_example=scala_example +api_link=api_link +python_api_link=python_api_link +source_link=source_link +%} \ No newline at end of file diff --git a/docs/en/transformer_entries/BertForZeroShotClassification.md b/docs/en/transformer_entries/BertForZeroShotClassification.md new file mode 100644 index 000000000000..0802114d750b --- /dev/null +++ b/docs/en/transformer_entries/BertForZeroShotClassification.md @@ -0,0 +1,135 @@ +{%- capture title -%} +BertForZeroShotClassification +{%- endcapture -%} + +{%- capture description -%} +BertForZeroShotClassification using a `ModelForSequenceClassification` trained on NLI (natural +language inference) tasks. Equivalent of `BertForSequenceClassification` models, but these +models don't require a hardcoded number of potential classes, they can be chosen at runtime. +It usually means it's slower but it is much more flexible. + +Any combination of sequences and labels can be passed and each combination will be posed as a +premise/hypothesis pair and passed to the pretrained model. + +Pretrained models can be loaded with `pretrained` of the companion object: + +```scala +val sequenceClassifier = BertForZeroShotClassification.pretrained() + .setInputCols("token", "document") + .setOutputCol("label") +``` + +The default model is `"bert_base_cased_zero_shot_classifier_xnli"`, if no name is provided. + +For available pretrained models please see the +[Models Hub](https://nlp.johnsnowlabs.com/models?task=Text+Classification). + +To see which models are compatible and how to import them see +https://github.com/JohnSnowLabs/spark-nlp/discussions/5669 and to see more extended +examples, see +[BertForZeroShotClassification](https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification.scala). +{%- endcapture -%} + +{%- capture input_anno -%} +DOCUMENT, TOKEN +{%- endcapture -%} + +{%- capture output_anno -%} +CATEGORY +{%- endcapture -%} + +{%- capture python_example -%} +import sparknlp +from sparknlp.base import * +from sparknlp.annotator import * +from pyspark.ml import Pipeline + +documentAssembler = DocumentAssembler() \ + .setInputCol("text") \ + .setOutputCol("document") +tokenizer = Tokenizer() \ + .setInputCols(["document"]) \ + .setOutputCol("token") +sequenceClassifier = BertForZeroShotClassification.pretrained() \ + .setInputCols(["token", "document"]) \ + .setOutputCol("label") \ + .setCaseSensitive(True) + +pipeline = Pipeline().setStages([ + documentAssembler, + tokenizer, + sequenceClassifier +]) + +data = spark.createDataFrame([["I loved this movie when I was a child.", "It was pretty boring."]]).toDF("text") +result = pipeline.fit(data).transform(data) +result.select("label.result").show(truncate=False) ++------+ +|result| ++------+ +|[pos] | +|[neg] | ++------+ +{%- endcapture -%} + +{%- capture scala_example -%} +import spark.implicits._ +import com.johnsnowlabs.nlp.base._ +import com.johnsnowlabs.nlp.annotator._ +import org.apache.spark.ml.Pipeline + +val documentAssembler = new DocumentAssembler() + .setInputCol("text") + .setOutputCol("document") + +val tokenizer = new Tokenizer() + .setInputCols("document") + .setOutputCol("token") + +val sequenceClassifier = BertForZeroShotClassification.pretrained() + .setInputCols("token", "document") + .setOutputCol("label") + .setCaseSensitive(true) + +val pipeline = new Pipeline().setStages(Array( + documentAssembler, + tokenizer, + sequenceClassifier +)) + +val data = Seq("I loved this movie when I was a child.", "It was pretty boring.").toDF("text") +val result = pipeline.fit(data).transform(data) + +result.select("label.result").show(false) ++------+ +|result| ++------+ +|[pos] | +|[neg] | ++------+ + +{%- endcapture -%} + +{%- capture api_link -%} +[BertForZeroShotClassification](/api/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification) +{%- endcapture -%} + +{%- capture python_api_link -%} +[BertForZeroShotClassification](/api/python/reference/autosummary/sparknlp/annotator/classifier_dl/bert_for_zero_shot_classification/index.html#sparknlp.annotator.classifier_dl.bert_for_zero_shot_classification.BertForZeroShotClassification) +{%- endcapture -%} + +{%- capture source_link -%} +[BertForZeroShotClassification](https://github.com/JohnSnowLabs/spark-nlp/tree/master/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification.scala) +{%- endcapture -%} + +{% include templates/anno_template.md +title=title +description=description +input_anno=input_anno +output_anno=output_anno +python_example=python_example +scala_example=scala_example +api_link=api_link +python_api_link=python_api_link +source_link=source_link +%} \ No newline at end of file diff --git a/python/sparknlp/annotator/classifier_dl/bert_for_zero_shot_classification.py b/python/sparknlp/annotator/classifier_dl/bert_for_zero_shot_classification.py index bf03580f80e1..5287ea6f1b21 100755 --- a/python/sparknlp/annotator/classifier_dl/bert_for_zero_shot_classification.py +++ b/python/sparknlp/annotator/classifier_dl/bert_for_zero_shot_classification.py @@ -151,9 +151,10 @@ def setMaxSentenceLength(self, value): return self._set(maxSentenceLength=value) def setCoalesceSentences(self, value): - """Instead of 1 class per sentence (if inputCols is '''sentence''') output 1 class per document by averaging probabilities in all sentences. - Due to max sequence length limit in almost all transformer models such as BERT (512 tokens), this parameter helps feeding all the sentences - into the model and averaging all the probabilities for the entire document instead of probabilities per sentence. (Default: true) + """Instead of 1 class per sentence (if inputCols is '''sentence''') output 1 class per document by averaging + probabilities in all sentences. Due to max sequence length limit in almost all transformer models such as BERT + (512 tokens), this parameter helps to feed all the sentences into the model and averaging all the probabilities + for the entire document instead of probabilities per sentence. (Default: true) Parameters ---------- diff --git a/python/sparknlp/annotator/seq2seq/bart_transformer.py b/python/sparknlp/annotator/seq2seq/bart_transformer.py index 04e177be029a..5c04a3729197 100755 --- a/python/sparknlp/annotator/seq2seq/bart_transformer.py +++ b/python/sparknlp/annotator/seq2seq/bart_transformer.py @@ -54,8 +54,8 @@ class BartTransformer(AnnotatorModel, HasBatchedAnnotate, HasEngine): pretrained models please see the `Models Hub `__. - For extended examples of usage, see the `Examples - `__. + For extended examples of usage, see the `BartTestSpec + `__. ====================== ====================== Input Annotation types Output Annotation type @@ -65,34 +65,36 @@ class BartTransformer(AnnotatorModel, HasBatchedAnnotate, HasEngine): Parameters ---------- + batchSize + Batch Size, by default `1`. configProtoBytes ConfigProto from tensorflow, serialized into byte array. task - Transformer's task, e.g. ``summarize:`` + Transformer's task, e.g. ``summarize:``, by default `""`. minOutputLength - Minimum length of the sequence to be generated + Minimum length of the sequence to be generated, by default `0`. maxOutputLength - Maximum length of output text + Maximum length of output text, by default `20`. doSample - Whether or not to use sampling; use greedy decoding otherwise + Whether or not to use sampling; use greedy decoding otherwise, by default `False`. temperature - The value used to module the next token probabilities + The value used to module the next token probabilities, by default `1.0`. topK The number of highest probability vocabulary tokens to keep for - top-k-filtering - BeamSize - The number of beam size for beam search + top-k-filtering, by default `50`. + beamSize + The number of beam size for beam search, by default `1`. topP - Top cumulative probability for vocabulary tokens + Top cumulative probability for vocabulary tokens, by default `1.0`. If set to float < 1, only the most probable tokens with probabilities that add up to ``topP`` or higher are kept for generation. repetitionPenalty - The parameter for repetition penalty. 1.0 means no penalty. + The parameter for repetition penalty. 1.0 means no penalty, by default `1.0`. noRepeatNgramSize - If set to int > 0, all ngrams of that size can only occur once + If set to int > 0, all ngrams of that size can only occur once, by default `0`. ignoreTokenIds - A list of token ids which are ignored in the decoder's output + A list of token ids which are ignored in the decoder's output, by default `[]`. Notes ----- @@ -155,7 +157,7 @@ class BartTransformer(AnnotatorModel, HasBatchedAnnotate, HasEngine): |result | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ |[transfer learning has emerged as a powerful technique in natural language processing (NLP) the effectiveness of transfer learning has given rise to a diversity of approaches, methodologies, and practice .]| - --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ """ name = "BartTransformer" @@ -204,11 +206,11 @@ class BartTransformer(AnnotatorModel, HasBatchedAnnotate, HasEngine): typeConverter=TypeConverters.toListInt) beamSize = Param(Params._dummy(), "beamSize", - "The Number of beams for beam search.", - typeConverter=TypeConverters.toInt) + "The Number of beams for beam search.", + typeConverter=TypeConverters.toInt) def setIgnoreTokenIds(self, value): - """A list of token ids which are ignored in the decoder's output. + """A list of token ids which are ignored in the decoder's output, by default `[]`. Parameters ---------- @@ -228,7 +230,7 @@ def setConfigProtoBytes(self, b): return self._set(configProtoBytes=b) def setTask(self, value): - """Sets the transformer's task, e.g. ``summarize:``. + """Sets the transformer's task, e.g. ``summarize:``, by default `""`. Parameters ---------- @@ -238,7 +240,7 @@ def setTask(self, value): return self._set(task=value) def setMinOutputLength(self, value): - """Sets minimum length of the sequence to be generated. + """Sets minimum length of the sequence to be generated, by default `0`. Parameters ---------- @@ -248,7 +250,7 @@ def setMinOutputLength(self, value): return self._set(minOutputLength=value) def setMaxOutputLength(self, value): - """Sets maximum length of output text. + """Sets maximum length of output text, by default `20`. Parameters ---------- @@ -258,7 +260,7 @@ def setMaxOutputLength(self, value): return self._set(maxOutputLength=value) def setDoSample(self, value): - """Sets whether or not to use sampling, use greedy decoding otherwise. + """Sets whether or not to use sampling, use greedy decoding otherwise, by default `False`. Parameters ---------- @@ -268,7 +270,7 @@ def setDoSample(self, value): return self._set(doSample=value) def setTemperature(self, value): - """Sets the value used to module the next token probabilities. + """Sets the value used to module the next token probabilities, by default `1.0`. Parameters ---------- @@ -279,7 +281,7 @@ def setTemperature(self, value): def setTopK(self, value): """Sets the number of highest probability vocabulary tokens to keep for - top-k-filtering. + top-k-filtering, by default `50`. Parameters ---------- @@ -289,7 +291,7 @@ def setTopK(self, value): return self._set(topK=value) def setTopP(self, value): - """Sets the top cumulative probability for vocabulary tokens. + """Sets the top cumulative probability for vocabulary tokens, by default `1.0`. If set to float < 1, only the most probable tokens with probabilities that add up to ``topP`` or higher are kept for generation. @@ -302,7 +304,7 @@ def setTopP(self, value): return self._set(topP=value) def setRepetitionPenalty(self, value): - """Sets the parameter for repetition penalty. 1.0 means no penalty. + """Sets the parameter for repetition penalty. 1.0 means no penalty, by default `1.0`. Parameters ---------- @@ -317,7 +319,7 @@ def setRepetitionPenalty(self, value): return self._set(repetitionPenalty=value) def setNoRepeatNgramSize(self, value): - """Sets size of n-grams that can only occur once. + """Sets size of n-grams that can only occur once, by default `0`. If set to int > 0, all ngrams of that size can only occur once. @@ -329,7 +331,7 @@ def setNoRepeatNgramSize(self, value): return self._set(noRepeatNgramSize=value) def setBeamSize(self, value): - """Sets the number of beam size for beam search + """Sets the number of beam size for beam search, by default `4`. Parameters ---------- diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification.scala index 054838b89225..46101feb73e5 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification.scala @@ -202,7 +202,7 @@ class BertForZeroShotClassification(override val uid: String) val coalesceSentences = new BooleanParam( this, "coalesceSentences", - "If sets to true the output of all sentences will be averaged to one output instead of one output per sentence. Default to true.") + "If sets to true the output of all sentences will be averaged to one output instead of one output per sentence. Defaults to false.") /** @group setParam */ def setCoalesceSentences(value: Boolean): this.type = set(coalesceSentences, value) diff --git a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala index a539823efa9f..4afd0796a99d 100644 --- a/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala +++ b/src/main/scala/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.scala @@ -126,11 +126,11 @@ import org.apache.spark.sql.SparkSession * val result = pipeline.fit(data).transform(data) * * results.select("generation.result").show(truncate = false) - * +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ - * |result | - * +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + * +--------------------------------------------------------------+ + * |result | + * +--------------------------------------------------------------+ * |[Nearly 800 thousand customers were affected by the shutoffs.]| - * +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + * +--------------------------------------------------------------+ * }}} * * @param uid From a9dc89481fa82caf3e1d76ff7df7f59fbd29b7ea Mon Sep 17 00:00:00 2001 From: Prabod Rathnayaka Date: Sun, 9 Apr 2023 14:56:43 +0000 Subject: [PATCH 20/26] Fixed memory leak --- src/main/scala/com/johnsnowlabs/ml/ai/Bart.scala | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/scala/com/johnsnowlabs/ml/ai/Bart.scala b/src/main/scala/com/johnsnowlabs/ml/ai/Bart.scala index 57f51fd68abc..680cfc0bf5b6 100644 --- a/src/main/scala/com/johnsnowlabs/ml/ai/Bart.scala +++ b/src/main/scala/com/johnsnowlabs/ml/ai/Bart.scala @@ -227,6 +227,10 @@ private[johnsnowlabs] class Bart( tensorEncoder.clearTensors() tensorEncoder.clearSession(encoderOuts) + decoderEncoderStateTensorResources.clearTensors() + decoderEncoderStateTensors.close() + encoderAttentionMaskTensors.close() + encoderInputTensors.close() modelOutputs } @@ -845,9 +849,11 @@ private[johnsnowlabs] class Bart( .grouped(decoderInputLength) .toArray val nextTokenLogits = for (decoderOutput <- decoderOutputs) yield decoderOutput.last + decoderOuts.foreach(_.close()) tensorDecoder.clearTensors() tensorDecoder.clearSession(decoderOuts) decoderInputTensors.close() + decoderAttentionMaskTensors.close() nextTokenLogits } } From 46d4cb44601a8a2ea11d4cf4f50568a15d93f795 Mon Sep 17 00:00:00 2001 From: Prabod Rathnayaka Date: Sun, 9 Apr 2023 15:04:05 +0000 Subject: [PATCH 21/26] Added Bart Notebook --- .../Text_Summarization_with_BART.ipynb | 635 ++++++++++++++++++ 1 file changed, 635 insertions(+) create mode 100644 examples/python/annotation/text/english/text-summarization/Text_Summarization_with_BART.ipynb diff --git a/examples/python/annotation/text/english/text-summarization/Text_Summarization_with_BART.ipynb b/examples/python/annotation/text/english/text-summarization/Text_Summarization_with_BART.ipynb new file mode 100644 index 000000000000..4b67426c8864 --- /dev/null +++ b/examples/python/annotation/text/english/text-summarization/Text_Summarization_with_BART.ipynb @@ -0,0 +1,635 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "sXatvRX899i0" + }, + "source": [ + "![JohnSnowLabs](https://nlp.johnsnowlabs.com/assets/images/logo.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "44B_JtXmyOuF" + }, + "source": [ + "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/JohnSnowLabs/spark-nlp/blob/master/examples/python/annotation/text/english/Text_Summarization_with_BART.ipynb)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "Kl6fW8Fkf3vN" + }, + "source": [ + "# Document Summarization with [BART](https://arxiv.org/pdf/1910.13461.pdf)\n", + "\n", + "The Facebook BART (Bidirectional and Auto-Regressive Transformer) model is a state-of-the-art language generation model that was introduced by Facebook AI in 2019. It is based on the transformer architecture and is designed to handle a wide range of natural language processing tasks such as text generation, summarization, and machine translation.\n", + " \n", + "BART is unique in that it is both bidirectional and auto-regressive, meaning that it can generate text both from left-to-right and from right-to-left. This allows it to capture contextual information from both past and future tokens in a sentence,resulting in more accurate and natural language generation.\n", + " \n", + "The model was trained on a large corpus of text data using a combination of unsupervised and supervised learning techniques. It incorporates pretraining and fine-tuning phases, where the model is first trained on a large unlabeled corpus of text, and then fine-tuned on specific downstream tasks.\n", + " \n", + "BART has achieved state-of-the-art performance on a wide range of NLP tasks, including summarization, question-answering, and language translation. Its ability to handle multiple tasks and its high performance on each of these tasks make it a versatile and valuable tool for natural language processing applications." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "06DMedvcgjKa" + }, + "source": [ + "## Colab Setup" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "3Mc2rld9f7YW" + }, + "outputs": [], + "source": [ + "!pip install -q pyspark==3.3.2 spark-nlp==4.4.0" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "KjcBNzFVgoky" + }, + "outputs": [], + "source": [ + "import sparknlp\n", + "\n", + "from sparknlp.base import *\n", + "from sparknlp.common import *\n", + "from sparknlp.annotator import *\n", + "from pyspark.ml import Pipeline\n", + "import pandas as pd\n", + "\n", + "# Comment out this line and uncomment the next one to enable GPU mode and High RAM\n", + "# \n", + "spark = sparknlp.start()\n", + "\n", + "# spark = sparknlp.start(gpu=True)\n", + "\n", + "print(\"Spark NLP version\", sparknlp.version())\n", + "print(\"Apache Spark version:\", spark.version)\n", + "\n", + "spark" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "JZyycKyzQcwQ" + }, + "source": [ + "# Download BART Model and Create Spark NLP Pipeline" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 375 + }, + "id": "gXdynTiFHKLK", + "outputId": "bebd77ef-ac8c-49ab-bc06-dbf8f7f03a32", + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "distilbart_xsum_12_6 download started this may take some time.\n", + "Approximate size to download 814.9 MB\n", + "[ / ]distilbart_xsum_12_6 download started this may take some time.\n", + "Approximate size to download 814.9 MB\n", + "Download done! Loading the resource.\n", + "[ — ]" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " \r" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ — ]" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-04-08 08:52:08.552206: I external/org_tensorflow/tensorflow/core/platform/cpu_feature_guard.cc:151] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA\n", + "To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[OK!]\n" + ] + } + ], + "source": [ + "documentAssembler = DocumentAssembler() \\\n", + " .setInputCol(\"text\") \\\n", + " .setOutputCol(\"document\") \n", + "\n", + "# Can take in document or sentence columns\n", + "bart = BartTransformer.pretrained(name=\"distilbart_xsum_12_6\",lang='en') \\\n", + " .setInputCols('document')\\\n", + " .setOutputCol(\"Bart\")\\\n", + " .setMaxOutputLength(100)\n", + "\n", + "# Build pipeline with BART\n", + "pipe_components = [documentAssembler, bart]\n", + "pipeline = Pipeline().setStages( pipe_components)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "tUfqQBdtNTS6" + }, + "source": [ + "# Summarize documents" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "X1-x-TLL5iJK", + "outputId": "e5409d11-8ee2-4f94-d78b-697a53fa584f", + "tags": [] + }, + "outputs": [ + { + "data": { + "text/plain": [ + "BartTRANSFORMER_117e3797a285" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Set the task for questions on T5\n", + "bart.setTask('summarize')" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "fzKvMHteNUTB", + "outputId": "f5a3227d-c481-461d-c032-f1ceb9d1571c", + "tags": [] + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[Stage 7:=======================================================> (30 + 1) / 31]\r" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "+---------------------------------------------------------------------------------------------------------------------------+\n", + "|result |\n", + "+---------------------------------------------------------------------------------------------------------------------------+\n", + "|[The world's biggest credit- card company is joining the growing trend of accepting cryptocurrencies as a form of payment.]|\n", + "+---------------------------------------------------------------------------------------------------------------------------+\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " \r" + ] + } + ], + "source": [ + "# https://www.reuters.com/article/instant-article/idCAKBN2AA2WF\n", + "\n", + "text = \"\"\"(Reuters) - Mastercard Inc said on Wednesday it was planning to offer support for some cryptocurrencies on its network this year, joining a string of big-ticket firms that have pledged similar support.\n", + "\n", + "The credit-card giant’s announcement comes days after Elon Musk’s Tesla Inc revealed it had purchased $1.5 billion of bitcoin and would soon accept it as a form of payment.\n", + "\n", + "Asset manager BlackRock Inc and payments companies Square and PayPal have also recently backed cryptocurrencies.\n", + "\n", + "Mastercard already offers customers cards that allow people to transact using their cryptocurrencies, although without going through its network.\n", + "\n", + "\"Doing this work will create a lot more possibilities for shoppers and merchants, allowing them to transact in an entirely new form of payment. This change may open merchants up to new customers who are already flocking to digital assets,\" Mastercard said. (mstr.cd/3tLaPZM)\n", + "\n", + "Mastercard specified that not all cryptocurrencies will be supported on its network, adding that many of the hundreds of digital assets in circulation still need to tighten their compliance measures.\n", + "\n", + "Many cryptocurrencies have struggled to win the trust of mainstream investors and the general public due to their speculative nature and potential for money laundering.\n", + "\"\"\"\n", + "data = [[text]]\n", + "df=spark.createDataFrame(data).toDF('text')\n", + "#Predict on text data with BART\n", + "model = pipeline.fit(df)\n", + "annotated_df = model.transform(df)\n", + "annotated_df.select(['bart.result']).show(truncate=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "cdII1LrdNq3p", + "outputId": "5bc00a17-7de1-49e3-d2ca-03ec07d89b73", + "tags": [] + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[Stage 15:======================================================> (30 + 1) / 31]\r" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Original Length 1284 Summarized Length : 121 \n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " \r" + ] + } + ], + "source": [ + "v = annotated_df.take(1)\n", + "print(f\"Original Length {len(v[0].text)} Summarized Length : {len(v[0].Bart[0].result)} \")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 53 + }, + "id": "do_7s8baOCej", + "outputId": "7425b0b5-b6b5-45b3-a07c-3db2c2fd35c4", + "tags": [] + }, + "outputs": [ + { + "data": { + "text/plain": [ + "\"The world's biggest credit- card company is joining the growing trend of accepting cryptocurrencies as a form of payment.\"" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Full summarized text\n", + "v[0].Bart[0].result" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "_XcVWsrDtW6X" + }, + "source": [ + "# Explore BART Parameters and Play with Params\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "Yxj99xiOtRwX" + }, + "source": [ + "### Sampling Methods\n", + "\n", + "\n", + "Sampling means we **randomly** draw from a distribution of words. \n", + "The probability distribution is conditioned on all previous tokens in a text to generate the next token. \n", + "\n", + "By default the distribution contains all words in the vocabulary of BART, where many candidates are incorrect to generate.\n", + "\n", + "There are two methods of reshaping and drawing from those distributions : \n", + "\n", + "1. **Top-K Sampling** Take the k most likely words from the original distribution. Redistribute probability mass among those k words and draw according to the new probabilities.\n", + "\n", + "2. **Top-P Nucleus sampling** Take smallest possible set of N words, which together have a probability of p. Redistribute probability mass among those N words and draw according to the new probabilities.\n", + "\n", + "\n", + "\n", + "Additionally, both methods can be tweaked ith the following parameters : \n", + "\n", + "- **temperature** : Parameter of the softmax function which affect the distrubtion computed by the model. The closer we are to 0, the more deterministic the probability will become, distribution tails will become slimmer and outlier word probabilites are more close to 0. Temperature values closer values to 1 make tails of probability fatter which makes outliers more probable and generic results less probable. \n", + "\n", + "\n", + "These parameters are shared by all method : \n", + "- **beamSize**: Number of beams in the beam search\n", + "- **ignoreTokenIds**: A list of token ids which are ignored in the decoder's output (default: [])\n", + "- **noRepeatNgramSize**: If set to int > 0, all ngrams of that size can only occur once \n", + "- **repetitionPenalty**: The parameter for repetition penalty. 1.0 means no penalty. https://arxiv.org/pdf/1909.05858.pdf> \n", + "- **task**: Transformer's task, e.g. 'is it true that'> (default: , current: generate)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "rtj0kZV5tvBm" + }, + "source": [ + "### Play with temperature \n", + "Set Temperature higher to make GPT more random/creative and text less coherent\n", + "Temperature > 0 and Temperature <=1\n", + "You must set `bart.setDoSample(True)` to have non-deterministic results" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "id": "Gmf32IdwgNlO", + "tags": [] + }, + "outputs": [ + { + "data": { + "text/plain": [ + "BartTRANSFORMER_117e3797a285" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "bart.setTemperature(0.7)\n", + "bart.setDoSample(True)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "id": "chCkax_jtF4R" + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[Stage 19:======================================================> (30 + 1) / 31]\r" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "+--------------------------------------------------------------------------------------------------------------------------------------------------------+\n", + "|result |\n", + "+--------------------------------------------------------------------------------------------------------------------------------------------------------+\n", + "|[The bitcoin virtual currency is set to get a major boost from the US credit card giant Mastercard its support for some of the virtual currency's cash.]|\n", + "+--------------------------------------------------------------------------------------------------------------------------------------------------------+\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " \r" + ] + } + ], + "source": [ + "data = [[text]]\n", + "df=spark.createDataFrame(data).toDF('text')\n", + "#Predict on text data with BART\n", + "model = pipeline.fit(df)\n", + "annotated_df = model.transform(df)\n", + "annotated_df.select(['bart.result']).show(truncate=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "_nfbE1r7gSEb" + }, + "source": [ + "### Play with beamSize\n", + "\n", + "When `beamSize = 1` the decoding process produce the greedy search, and when beamSize > 1 it produce the decoded output with beam search\n" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "id": "Qn4_6A6lhcGX" + }, + "outputs": [ + { + "data": { + "text/plain": [ + "BartTRANSFORMER_117e3797a285" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "bart.setBeamSize(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "id": "qkoBNgpuhi-f" + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[Stage 23:======================================================> (30 + 1) / 31]\r" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "+-------------------------------------------------------------------------------------------------------------------------------------------------+\n", + "|result |\n", + "+-------------------------------------------------------------------------------------------------------------------------------------------------+\n", + "|[The cryptocurrency bitcoin is expected to reach a new level of use this year, after Mastercard said it would accept some of the digital assets.]|\n", + "+-------------------------------------------------------------------------------------------------------------------------------------------------+\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " \r" + ] + } + ], + "source": [ + "data = [[text]]\n", + "df=spark.createDataFrame(data).toDF('text')\n", + "#Predict on text data with BART\n", + "model = pipeline.fit(df)\n", + "annotated_df = model.transform(df)\n", + "annotated_df.select(['bart.result']).show(truncate=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "id": "GRDbFRWDhkte" + }, + "outputs": [ + { + "data": { + "text/plain": [ + "BartTRANSFORMER_117e3797a285" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# set beam size to 4\n", + "bart.setBeamSize(4)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "id": "yrtCol7WhnSF" + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[Stage 31:======================================================> (30 + 1) / 31]\r" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "+-----------------------------------------------------------------------------------------------------------------------------------------+\n", + "|result |\n", + "+-----------------------------------------------------------------------------------------------------------------------------------------+\n", + "|[South a row has escalidated over the the value of cryptocurrencies, with Mastercard now pledging to support some of the digital assets.]|\n", + "+-----------------------------------------------------------------------------------------------------------------------------------------+\n", + "\n", + "CPU times: user 48.6 ms, sys: 10.9 ms, total: 59.5 ms\n", + "Wall time: 1min 6s\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " \r" + ] + } + ], + "source": [ + "%%time\n", + "data = [[text]]\n", + "df=spark.createDataFrame(data).toDF('text')\n", + "#Predict on text data with BART\n", + "model = pipeline.fit(df)\n", + "annotated_df = model.transform(df)\n", + "annotated_df.select(['bart.result']).show(truncate=False)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.16" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} From 6fb47c094f51ed93a2e3a1b2c1da9d3ab32dda17 Mon Sep 17 00:00:00 2001 From: Maziyar Panahi Date: Mon, 10 Apr 2023 17:00:05 +0200 Subject: [PATCH 22/26] Add new features and update docs[run doc] --- README.md | 17 ++++++++++------- docs/_layouts/landing.html | 38 ++++++++++++++++++++------------------ docs/en/install.md | 22 +++++++++++----------- python/README.md | 17 ++++++++++------- 4 files changed, 51 insertions(+), 43 deletions(-) diff --git a/README.md b/README.md index fa5682b3092c..82746009c1b8 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,10 @@ Spark NLP is a state-of-the-art Natural Language Processing library built on top of Apache Spark. It provides **simple**, **performant** & **accurate** NLP annotations for machine learning pipelines that **scale** easily in a distributed environment. -Spark NLP comes with **11000+** pretrained **pipelines** and **models** in more than **200+** languages. -It also offers tasks such as **Tokenization**, **Word Segmentation**, **Part-of-Speech Tagging**, Word and Sentence **Embeddings**, **Named Entity Recognition**, **Dependency Parsing**, **Spell Checking**, **Text Classification**, **Sentiment Analysis**, **Token Classification**, **Machine Translation** (+180 languages), **Summarization**, **Question Answering**, **Table Question Answering**, **Text Generation**, **Image Classification**, **Automatic Speech Recognition**, and many more [NLP tasks](#features). +Spark NLP comes with **17000+** pretrained **pipelines** and **models** in more than **200+** languages. +It also offers tasks such as **Tokenization**, **Word Segmentation**, **Part-of-Speech Tagging**, Word and Sentence **Embeddings**, **Named Entity Recognition**, **Dependency Parsing**, **Spell Checking**, **Text Classification**, **Sentiment Analysis**, **Token Classification**, **Machine Translation** (+180 languages), **Summarization**, **Question Answering**, **Table Question Answering**, **Text Generation**, **Image Classification**, **Automatic Speech Recognition**, **Zero-Shot Learning**, and many more [NLP tasks](#features). -**Spark NLP** is the only open-source NLP library in **production** that offers state-of-the-art transformers such as **BERT**, **CamemBERT**, **ALBERT**, **ELECTRA**, **XLNet**, **DistilBERT**, **RoBERTa**, **DeBERTa**, **XLM-RoBERTa**, **Longformer**, **ELMO**, **Universal Sentence Encoder**, **Google T5**, **MarianMT**, **GPT2**, and **Vision Transformers (ViT)** not only to **Python** and **R**, but also to **JVM** ecosystem (**Java**, **Scala**, and **Kotlin**) at **scale** by extending **Apache Spark** natively. +**Spark NLP** is the only open-source NLP library in **production** that offers state-of-the-art transformers such as **BERT**, **CamemBERT**, **ALBERT**, **ELECTRA**, **XLNet**, **DistilBERT**, **RoBERTa**, **DeBERTa**, **XLM-RoBERTa**, **Longformer**, **ELMO**, **Universal Sentence Encoder**, **Facebook BART**, **Google T5**, **MarianMT**, **OpenAI GPT2**, and **Vision Transformers (ViT)** not only to **Python** and **R**, but also to **JVM** ecosystem (**Java**, **Scala**, and **Kotlin**) at **scale** by extending **Apache Spark** natively. ## Project's website @@ -137,19 +137,22 @@ documentation and examples - Longformer for Question Answering - Table Question Answering (TAPAS) - Zero-Shot NER Model +- Zero Shot Text Classification by BERT (ZSL) - Neural Machine Translation (MarianMT) - Text-To-Text Transfer Transformer (Google T5) - Generative Pre-trained Transformer 2 (OpenAI GPT2) -- Vision Transformer (ViT) -- Swin Image Classification +- Seq2Seq for NLG, Translation, and Comprehension (Facebook BART) +- Vision Transformer (Google ViT) +- Swin Image Classification (Microsoft Swin Transformer) +- ConvNext Image Classification (Facebook ConvNext) - Automatic Speech Recognition (Wav2Vec2) - Automatic Speech Recognition (HuBERT) - Named entity recognition (Deep learning) - Easy TensorFlow integration - GPU Support - Full integration with Spark ML functions -- +9400 pre-trained models in +200 languages! -- +3200 pre-trained pipelines in +200 languages! +- +12000 pre-trained models in +200 languages! +- +5000 pre-trained pipelines in +200 languages! - Multi-lingual NER models: Arabic, Bengali, Chinese, Danish, Dutch, English, Finnish, French, German, Hebrew, Italian, Japanese, Korean, Norwegian, Persian, Polish, Portuguese, Russian, Spanish, Swedish, Urdu, and more. diff --git a/docs/_layouts/landing.html b/docs/_layouts/landing.html index 4ffd3f28d5b8..2c33f6187ec6 100755 --- a/docs/_layouts/landing.html +++ b/docs/_layouts/landing.html @@ -201,22 +201,22 @@

{{ _section.title }}

{% highlight bash %} # Install Spark NLP from PyPI - $ pip install spark-nlp==4.3.2 pyspark==3.3.0 + $ pip install spark-nlp==4.4.0 pyspark==3.3.0 # Install Spark NLP from Anaconda/Conda $ conda install -c johnsnowlabs spark-nlp # Load Spark NLP with Spark Shell - $ spark-shell --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 + $ spark-shell --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 # Load Spark NLP with PySpark - $ pyspark --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 + $ pyspark --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 # Load Spark NLP with Spark Submit - $ spark-submit --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.3.2 + $ spark-submit --packages com.johnsnowlabs.nlp:spark-nlp_2.12:4.4.0 # Load Spark NLP as an external Fat JAR - $ spark-shell --jars spark-nlp-assembly-4.3.2.jar + $ spark-shell --jars spark-nlp-assembly-4.4.0.jar {% endhighlight %}
@@ -236,8 +236,8 @@

Transformers at Scale

Spark NLP is the only open-source NLP library in production that offers state-of-the-art transformers such as BERT, CamemBERT, ALBERT, ELECTRA, XLNet, DistilBERT, RoBERTa, DeBERTa, - XLM-RoBERTa, Longformer, ELMO, Universal Sentence Encoder, Google T5, MarianMT, and OpenAI GPT2 not only to Python, and R - but also to JVM ecosystem (Java, Scala, and Kotlin) at scale by extending Apache Spark natively + XLM-RoBERTa, Longformer, ELMO, Universal Sentence Encoder, Facebook BART, Google T5, MarianMT, OpenAI GPT2, + Google ViT, ASR Wav2Vec2 and many more not only to Python, and R but also to JVM ecosystem (Java, Scala, and Kotlin) at scale by extending Apache Spark natively
@@ -313,18 +313,11 @@

NLP Features

  • ALBERT Embeddings
  • XLNet Embeddings
  • ELMO Embeddings
  • - - -
      -
    • Universal Sentence Encoder
    • Sentence Embeddings
    • Chunk Embeddings
    • -
    • Neural Machine Translation (MarianMT)
    • -
    • Text-To-Text Transfer Transformer (Google T5)
    • -
    • Generative Pre-trained Transformer 2 (OpenAI GPT-2)
    • -
    • Vision Transformer (ViT) Image Classification
    • -
    • Automatic Speech Recognition (Wav2Vec2)
    • +
    +
    • Table Question Answering (TAPAS)
    • Unsupervised keywords extraction
    • Language Detection & Identification (up to 375 languages)
    • @@ -342,11 +335,20 @@

      NLP Features

    • Longformer for Token & Sequence Classification
    • Transformer-based Question Answering
    • Named entity recognition (DL model)
    • +
    • Facebook BART NLG, Translation, and Comprehension
    • +
    • Zero-Shot NER & Text Classification (ZSL)
    • +
    • Neural Machine Translation (MarianMT)
    • +
    • Text-To-Text Transfer Transformer (Google T5)
    • +
    • Generative Pre-trained Transformer 2 (OpenAI GPT-2)
    • +
    • Vision Transformer (Google ViT) Image Classification
    • +
    • Microsoft Swin Transformer Image Classification
    • +
    • Facebook ConvNext Image Classification
    • +
    • Automatic Speech Recognition (Wav2Vec2 & HuBERT)
    • Easy TensorFlow integration
    • GPU Support
    • Full integration with Spark ML functions
    • -
    • 9400+ pre-trained models in 200+ languages! -
    • 3200+ pre-trained pipelines in 200+ languages! +
    • 12000+ pre-trained models in 200+ languages! +
    • 5000+ pre-trained pipelines in 200+ languages!
    {% highlight python %} diff --git a/docs/en/install.md b/docs/en/install.md index 0a777d03bef0..eb5744580b1e 100644 --- a/docs/en/install.md +++ b/docs/en/install.md @@ -106,13 +106,13 @@ spark = SparkSession.builder \ ``` -**spark-nlp-m1:** +**spark-nlp-silicon:** ```xml - + com.johnsnowlabs.nlp - spark-nlp-m1_2.12 + spark-nlp-silicon_2.12 4.4.0 ``` @@ -144,11 +144,11 @@ libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp" % "4.4.0" libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-gpu" % "4.4.0" ``` -**spark-nlp-m1:** +**spark-nlp-silicon:** ```scala -// https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/spark-nlp-m1 -libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-m1" % "4.4.0" +// https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/spark-nlp-silicon +libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-silicon" % "4.4.0" ``` **spark-nlp-aarch64:** @@ -220,7 +220,7 @@ as expected. Adding Spark NLP to your Scala or Java project is easy: -Simply change to dependency coordinates to `spark-nlp-m1` and add the dependency to your +Simply change to dependency coordinates to `spark-nlp-silicon` and add the dependency to your project. How to do this is mentioned above: [Scala And Java](#scala-and-java) @@ -229,10 +229,10 @@ So for example for Spark NLP with Apache Spark 3.0.x and 3.1.x you will end up w maven coordinates like these: ```xml - + com.johnsnowlabs.nlp - spark-nlp-m1_2.12 + spark-nlp-silicon_2.12 4.4.0 ``` @@ -241,7 +241,7 @@ or in case of sbt: ```scala // https://mvnrepository.com/artifact/com.johnsnowlabs.nlp/spark-nlp -libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-m1" % "4.4.0" +libraryDependencies += "com.johnsnowlabs.nlp" %% "spark-nlp-silicon" % "4.4.0" ``` If everything went well, you can now start Spark NLP with the `m1` flag set to `true`: @@ -269,7 +269,7 @@ If everything went well, you can now start Spark NLP with the `m1` flag set to ` ```python import sparknlp -spark = sparknlp.start(m1=True) +spark = sparknlp.start(apple_silicon=True) ``` ## Installation for Linux Aarch64 Systems diff --git a/python/README.md b/python/README.md index fa5682b3092c..82746009c1b8 100644 --- a/python/README.md +++ b/python/README.md @@ -19,10 +19,10 @@ Spark NLP is a state-of-the-art Natural Language Processing library built on top of Apache Spark. It provides **simple**, **performant** & **accurate** NLP annotations for machine learning pipelines that **scale** easily in a distributed environment. -Spark NLP comes with **11000+** pretrained **pipelines** and **models** in more than **200+** languages. -It also offers tasks such as **Tokenization**, **Word Segmentation**, **Part-of-Speech Tagging**, Word and Sentence **Embeddings**, **Named Entity Recognition**, **Dependency Parsing**, **Spell Checking**, **Text Classification**, **Sentiment Analysis**, **Token Classification**, **Machine Translation** (+180 languages), **Summarization**, **Question Answering**, **Table Question Answering**, **Text Generation**, **Image Classification**, **Automatic Speech Recognition**, and many more [NLP tasks](#features). +Spark NLP comes with **17000+** pretrained **pipelines** and **models** in more than **200+** languages. +It also offers tasks such as **Tokenization**, **Word Segmentation**, **Part-of-Speech Tagging**, Word and Sentence **Embeddings**, **Named Entity Recognition**, **Dependency Parsing**, **Spell Checking**, **Text Classification**, **Sentiment Analysis**, **Token Classification**, **Machine Translation** (+180 languages), **Summarization**, **Question Answering**, **Table Question Answering**, **Text Generation**, **Image Classification**, **Automatic Speech Recognition**, **Zero-Shot Learning**, and many more [NLP tasks](#features). -**Spark NLP** is the only open-source NLP library in **production** that offers state-of-the-art transformers such as **BERT**, **CamemBERT**, **ALBERT**, **ELECTRA**, **XLNet**, **DistilBERT**, **RoBERTa**, **DeBERTa**, **XLM-RoBERTa**, **Longformer**, **ELMO**, **Universal Sentence Encoder**, **Google T5**, **MarianMT**, **GPT2**, and **Vision Transformers (ViT)** not only to **Python** and **R**, but also to **JVM** ecosystem (**Java**, **Scala**, and **Kotlin**) at **scale** by extending **Apache Spark** natively. +**Spark NLP** is the only open-source NLP library in **production** that offers state-of-the-art transformers such as **BERT**, **CamemBERT**, **ALBERT**, **ELECTRA**, **XLNet**, **DistilBERT**, **RoBERTa**, **DeBERTa**, **XLM-RoBERTa**, **Longformer**, **ELMO**, **Universal Sentence Encoder**, **Facebook BART**, **Google T5**, **MarianMT**, **OpenAI GPT2**, and **Vision Transformers (ViT)** not only to **Python** and **R**, but also to **JVM** ecosystem (**Java**, **Scala**, and **Kotlin**) at **scale** by extending **Apache Spark** natively. ## Project's website @@ -137,19 +137,22 @@ documentation and examples - Longformer for Question Answering - Table Question Answering (TAPAS) - Zero-Shot NER Model +- Zero Shot Text Classification by BERT (ZSL) - Neural Machine Translation (MarianMT) - Text-To-Text Transfer Transformer (Google T5) - Generative Pre-trained Transformer 2 (OpenAI GPT2) -- Vision Transformer (ViT) -- Swin Image Classification +- Seq2Seq for NLG, Translation, and Comprehension (Facebook BART) +- Vision Transformer (Google ViT) +- Swin Image Classification (Microsoft Swin Transformer) +- ConvNext Image Classification (Facebook ConvNext) - Automatic Speech Recognition (Wav2Vec2) - Automatic Speech Recognition (HuBERT) - Named entity recognition (Deep learning) - Easy TensorFlow integration - GPU Support - Full integration with Spark ML functions -- +9400 pre-trained models in +200 languages! -- +3200 pre-trained pipelines in +200 languages! +- +12000 pre-trained models in +200 languages! +- +5000 pre-trained pipelines in +200 languages! - Multi-lingual NER models: Arabic, Bengali, Chinese, Danish, Dutch, English, Finnish, French, German, Hebrew, Italian, Japanese, Korean, Norwegian, Persian, Polish, Portuguese, Russian, Spanish, Swedish, Urdu, and more. From f1ff4c1e836e55feb30de55203f8620a59fba1f5 Mon Sep 17 00:00:00 2001 From: Maziyar Panahi Date: Mon, 10 Apr 2023 17:01:35 +0200 Subject: [PATCH 23/26] Update install.md --- docs/en/install.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/install.md b/docs/en/install.md index eb5744580b1e..684e1f5ddb09 100644 --- a/docs/en/install.md +++ b/docs/en/install.md @@ -249,10 +249,10 @@ If everything went well, you can now start Spark NLP with the `m1` flag set to ` ```scala import com.johnsnowlabs.nlp.SparkNLP -val spark = SparkNLP.start(m1 = true) +val spark = SparkNLP.start(apple_silicon = true) ``` -### Python for M1 +### Python for M1 & M2 First, make sure you have a recent Python 3 installation. From f83c4e4d3d1eb50c3849928c9a828bc17e1d71c1 Mon Sep 17 00:00:00 2001 From: Maziyar Panahi Date: Mon, 10 Apr 2023 18:03:23 +0200 Subject: [PATCH 24/26] Update CHANGELOG [run doc] --- CHANGELOG | 20 + ...ero_Shot_Text_Classification_by_BERT.ipynb | 445 ++++++++++++++++++ 2 files changed, 465 insertions(+) create mode 100644 examples/python/annotation/text/english/zero-shot text classification/Zero_Shot_Text_Classification_by_BERT.ipynb diff --git a/CHANGELOG b/CHANGELOG index 8a87d011587c..47dcdddaba3a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,23 @@ +======== +4.4.0 +======== +---------------- +New Features +---------------- +* Implement a new Zero-Shot Text Classification for BERT annotator called `BertForZeroShotClassification` +* Implement a new ConvNextForImageClassification annotator +* Introducing BART Transformer for text-to-text generation tasks like translation and summarization +* Set custom entity name in Data2Chunk via `setEntityName` param +* Add a new `nerHasNoSchema` param for NerConverter when labels coming from NerDLMOdel and NerCrfModel don't have any schema +---------------- +Bug Fixes & Enhancements +---------------- +* Fix loading `WordEmbeddingsModel` bug when loading a model from S3 via `cache_folder` config +* Fix `WordEmbeddingsModel` bug failing when it's used with `setEnableInMemoryStorage` set to `True` and LightPipeline +* Remove deprecated parameter enablePatternRegex from EntityRulerApproach & EntityRulerModel +* Deprecate Python 3.6 + + ======== 4.3.2 ======== diff --git a/examples/python/annotation/text/english/zero-shot text classification/Zero_Shot_Text_Classification_by_BERT.ipynb b/examples/python/annotation/text/english/zero-shot text classification/Zero_Shot_Text_Classification_by_BERT.ipynb new file mode 100644 index 000000000000..a4a5feba2151 --- /dev/null +++ b/examples/python/annotation/text/english/zero-shot text classification/Zero_Shot_Text_Classification_by_BERT.ipynb @@ -0,0 +1,445 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# Zero-Shot Learning in Modern NLP\n", + "### State-of-the-art NLP models for text classification without annotated data\n", + "\n", + ">Natural language processing is a very exciting field right now. In recent years, the community has begun to figure out some pretty effective methods of learning from the enormous amounts of unlabeled data available on the internet. The success of transfer learning from unsupervised models has allowed us to surpass virtually all existing benchmarks on downstream supervised learning tasks. As we continue to develop new model architectures and unsupervised learning objectives, \"state of the art\" continues to be a rapidly moving target for many tasks where large amounts of labeled data are available.\n", + "\n" + ], + "metadata": { + "id": "hQEd60qjN_0t" + } + }, + { + "cell_type": "code", + "source": [ + "# This is only to setup PySpark and Spark NLP on Colab\n", + "!wget https://setup.johnsnowlabs.com/colab.sh -O - | bash" + ], + "metadata": { + "id": "z5EXpkAOFRu9" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "import sparknlp\n", + "spark = sparknlp.start()" + ], + "metadata": { + "id": "5fyaA76PFZA6" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "from sparknlp.base import *\n", + "from sparknlp.annotator import *\n", + "from pyspark.ml import Pipeline, PipelineModel\n", + "\n", + "document_assembler = DocumentAssembler() \\\n", + " .setInputCol(\"text\") \\\n", + " .setOutputCol(\"document\")\n", + "\n", + "tokenizer = Tokenizer().setInputCols(\"document\").setOutputCol(\"token\")\n", + "\n", + "zero_shot_classifier = BertForZeroShotClassification \\\n", + " .pretrained() \\\n", + " .setInputCols([\"document\", \"token\"]) \\\n", + " .setOutputCol(\"class\") \\\n", + " .setCandidateLabels([\"urgent\", \"mobile\", \"travel\", \"movie\", \"music\", \"sport\", \"weather\", \"technology\"])\n", + "\n", + "pipeline = Pipeline(stages=[\n", + " document_assembler,\n", + " tokenizer,\n", + " zero_shot_classifier\n", + "])" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "_N2AoLRkFYdZ", + "outputId": "f1a1e08f-d20d-4efa-e8d4-f38914ab9c69" + }, + "execution_count": 3, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "bert_base_cased_zero_shot_classifier_xnli download started this may take some time.\n", + "Approximate size to download 387.7 MB\n", + "[OK!]\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "text = [[\"I have a problem with my iphone that needs to be resolved asap!!\"],\n", + " [\"Last week I upgraded my iOS version and ever since then my phone has been overheating whenever I use your app.\"],\n", + " [\"I have a phone and I love it!\"],\n", + " [\"I really want to visit Germany and I am planning to go there next year.\"],\n", + " [\"Let's watch some movies tonight! I am in the mood for a horror movie.\"],\n", + " [\"Have you watched the match yesterday? It was a great game!\"],\n", + " [\"We need to harry up and get to the airport. We are going to miss our flight!\"]]\n", + "\n", + "# create a DataFrame in PySpark\n", + "inputDataset = spark.createDataFrame(text, [\"text\"])\n", + "model = pipeline.fit(inputDataset)\n", + "predictionDF = model.transform(inputDataset)" + ], + "metadata": { + "id": "5LKrJRuFNQNs" + }, + "execution_count": 4, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "predictionDF.select(\"document.result\", \"class.result\").show(10, False)" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "BCIiOgJtN83v", + "outputId": "319bc31a-384f-4793-80b3-8e8aa08e159e" + }, + "execution_count": 5, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "+----------------------------------------------------------------------------------------------------------------+--------+\n", + "|result |result |\n", + "+----------------------------------------------------------------------------------------------------------------+--------+\n", + "|[I have a problem with my iphone that needs to be resolved asap!!] |[mobile]|\n", + "|[Last week I upgraded my iOS version and ever since then my phone has been overheating whenever I use your app.]|[mobile]|\n", + "|[I have a phone and I love it!] |[mobile]|\n", + "|[I really want to visit Germany and I am planning to go there next year.] |[travel]|\n", + "|[Let's watch some movies tonight! I am in the mood for a horror movie.] |[movie] |\n", + "|[Have you watched the match yesterday? It was a great game!] |[sport] |\n", + "|[We need to harry up and get to the airport. We are going to miss our flight!] |[urgent]|\n", + "+----------------------------------------------------------------------------------------------------------------+--------+\n", + "\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "sample_text = \"Last week I upgraded my iOS version and ever since then my phone has been overheating whenever I use your app.\"\n", + "\n", + "light_pipeline = LightPipeline(model)\n", + "\n", + "results = light_pipeline.annotate(sample_text)\n", + "results\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "MaRW4KPGNkjc", + "outputId": "49c0e99b-da4f-42e2-ba98-960bcdc22cdd" + }, + "execution_count": 6, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "{'document': ['Last week I upgraded my iOS version and ever since then my phone has been overheating whenever I use your app.'],\n", + " 'token': ['Last',\n", + " 'week',\n", + " 'I',\n", + " 'upgraded',\n", + " 'my',\n", + " 'iOS',\n", + " 'version',\n", + " 'and',\n", + " 'ever',\n", + " 'since',\n", + " 'then',\n", + " 'my',\n", + " 'phone',\n", + " 'has',\n", + " 'been',\n", + " 'overheating',\n", + " 'whenever',\n", + " 'I',\n", + " 'use',\n", + " 'your',\n", + " 'app',\n", + " '.'],\n", + " 'class': ['mobile']}" + ] + }, + "metadata": {}, + "execution_count": 6 + } + ] + }, + { + "cell_type": "code", + "source": [ + "for tx in text:\n", + " res = light_pipeline.annotate(tx[0])\n", + " print(f\"document: {res['document']} prediction: {res['class']}\")\n" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "Vbg44saZRtnw", + "outputId": "6d16b175-6014-45a3-b7cb-311b840deb72" + }, + "execution_count": 7, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "document: ['I have a problem with my iphone that needs to be resolved asap!!'] prediction: ['mobile']\n", + "document: ['Last week I upgraded my iOS version and ever since then my phone has been overheating whenever I use your app.'] prediction: ['mobile']\n", + "document: ['I have a phone and I love it!'] prediction: ['mobile']\n", + "document: ['I really want to visit Germany and I am planning to go there next year.'] prediction: ['travel']\n", + "document: [\"Let's watch some movies tonight! I am in the mood for a horror movie.\"] prediction: ['movie']\n", + "document: ['Have you watched the match yesterday? It was a great game!'] prediction: ['sport']\n", + "document: ['We need to harry up and get to the airport. We are going to miss our flight!'] prediction: ['urgent']\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [], + "metadata": { + "id": "Ss4pE3i4S_SU" + }, + "execution_count": null, + "outputs": [] + }, + { + "cell_type": "markdown", + "source": [ + "## Multi Label vs. Multi Class\n", + "\n", + "We can use `activation` parameter to set whether or not the result should be multi-class (the sum of all probabilities is `1.0`) or multi-label (each label has a probability between `0.0` to `1.0`)\n", + "\n", + "- multi-class: `softmax` (default)\n", + "- multi-label: `sigmoid`" + ], + "metadata": { + "id": "RfQrLMxATYyY" + } + }, + { + "cell_type": "code", + "source": [ + "zero_shot_classifier\\\n", + " .setCandidateLabels([\"urgent\", \"mobile\", \"travel\", \"movie\", \"music\", \"sport\", \"weather\", \"technology\"])\\\n", + " .setActivation(\"sigmoid\")\n", + "\n", + "pipeline = Pipeline(stages=[\n", + " document_assembler,\n", + " tokenizer,\n", + " zero_shot_classifier\n", + "])" + ], + "metadata": { + "id": "zHB6w1-dTaQC" + }, + "execution_count": 15, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "text = [[\"I have a problem with my iphone that needs to be resolved asap!!\"],\n", + " [\"Last week I upgraded my iOS version and ever since then my phone has been overheating whenever I use your app.\"],\n", + " [\"I have a phone and I love it!\"],\n", + " [\"I really want to visit Germany and I am planning to go there next year.\"],\n", + " [\"Let's watch some movies tonight! I am in the mood for a horror movie.\"],\n", + " [\"Have you watched the match yesterday? It was a great game!\"],\n", + " [\"We need to harry up and get to the airport. We are going to miss our flight!\"]]\n", + "\n", + "# create a DataFrame in PySpark\n", + "inputDataset = spark.createDataFrame(text, [\"text\"])\n", + "model = pipeline.fit(inputDataset)\n", + "predictionDF = model.transform(inputDataset)" + ], + "metadata": { + "id": "F0QgxciuUG4V" + }, + "execution_count": 16, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "predictionDF.select(\"document.result\", \"class.result\").show(10, False)" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "VkvAGrbAUJQn", + "outputId": "902a43eb-8c3e-4d63-9273-455460a7e6a4" + }, + "execution_count": 17, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "+----------------------------------------------------------------------------------------------------------------+-----------------------------------+\n", + "|result |result |\n", + "+----------------------------------------------------------------------------------------------------------------+-----------------------------------+\n", + "|[I have a problem with my iphone that needs to be resolved asap!!] |[urgent, mobile, movie, technology]|\n", + "|[Last week I upgraded my iOS version and ever since then my phone has been overheating whenever I use your app.]|[urgent, technology] |\n", + "|[I have a phone and I love it!] |[mobile] |\n", + "|[I really want to visit Germany and I am planning to go there next year.] |[travel] |\n", + "|[Let's watch some movies tonight! I am in the mood for a horror movie.] |[movie] |\n", + "|[Have you watched the match yesterday? It was a great game!] |[sport] |\n", + "|[We need to harry up and get to the airport. We are going to miss our flight!] |[urgent, travel] |\n", + "+----------------------------------------------------------------------------------------------------------------+-----------------------------------+\n", + "\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [ + "# check the scores\n", + "predictionDF.select(\"class.metadata\").show(10, False)" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "DAcVGaBVUJ4a", + "outputId": "7ffe547b-df85-478f-b214-5e8dde8d5527" + }, + "execution_count": 18, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+\n", + "|metadata |\n", + "+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+\n", + "|[{urgent -> 0.94203824, music -> 0.273361, movie -> 0.8155173, technology -> 0.9432713, travel -> 0.19155306, sport -> 7.5020565E-4, weather -> 0.012860995, mobile -> 0.81718224, sentence -> 0}, {urgent -> 0.94203824, music -> 0.273361, movie -> 0.8155173, technology -> 0.9432713, travel -> 0.19155306, sport -> 7.5020565E-4, weather -> 0.012860995, mobile -> 0.81718224, sentence -> 0}, {urgent -> 0.94203824, music -> 0.273361, movie -> 0.8155173, technology -> 0.9432713, travel -> 0.19155306, sport -> 7.5020565E-4, weather -> 0.012860995, mobile -> 0.81718224, sentence -> 0}, {urgent -> 0.94203824, music -> 0.273361, movie -> 0.8155173, technology -> 0.9432713, travel -> 0.19155306, sport -> 7.5020565E-4, weather -> 0.012860995, mobile -> 0.81718224, sentence -> 0}]|\n", + "|[{urgent -> 0.5989145, music -> 0.009265149, movie -> 0.004853843, technology -> 0.83162993, travel -> 0.2232338, sport -> 0.0011306163, weather -> 0.0057875705, mobile -> 0.39459854, sentence -> 0}, {urgent -> 0.5989145, music -> 0.009265149, movie -> 0.004853843, technology -> 0.83162993, travel -> 0.2232338, sport -> 0.0011306163, weather -> 0.0057875705, mobile -> 0.39459854, sentence -> 0}] |\n", + "|[{urgent -> 0.0024619207, music -> 0.030493928, movie -> 0.10384921, technology -> 0.01819679, travel -> 0.025316363, sport -> 5.448147E-4, weather -> 5.9901236E-4, mobile -> 0.822738, sentence -> 0}] |\n", + "|[{urgent -> 0.0074373055, music -> 0.06391685, movie -> 0.009793872, technology -> 0.08052815, travel -> 0.95946944, sport -> 0.0033297893, weather -> 0.11855726, mobile -> 0.011235076, sentence -> 0}] |\n", + "|[{urgent -> 0.0032734834, music -> 0.00897034, movie -> 0.7762647, technology -> 2.2468095E-4, travel -> 0.0016853365, sport -> 5.059199E-4, weather -> 7.164882E-4, mobile -> 0.0029863138, sentence -> 0}] |\n", + "|[{urgent -> 6.5108406E-4, music -> 0.0819624, movie -> 0.07504165, technology -> 0.0013726762, travel -> 0.0011811191, sport -> 0.9228904, weather -> 0.003503337, mobile -> 0.0048036124, sentence -> 0}] |\n", + "|[{urgent -> 0.9887839, music -> 0.13705872, movie -> 0.3061645, technology -> 0.008889678, travel -> 0.8829653, sport -> 0.0101994965, weather -> 0.105074614, mobile -> 0.011163117, sentence -> 0}, {urgent -> 0.9887839, music -> 0.13705872, movie -> 0.3061645, technology -> 0.008889678, travel -> 0.8829653, sport -> 0.0101994965, weather -> 0.105074614, mobile -> 0.011163117, sentence -> 0}] |\n", + "+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+\n", + "\n" + ] + } + ] + }, + { + "cell_type": "markdown", + "source": [ + "### Zero-Shot Learning (ZSL)\n", + "> Traditionally, zero-shot learning (ZSL) most often referred to a fairly specific type of task: learn a classifier on one set of labels and then evaluate on a different set of labels that the classifier has never seen before. Recently, especially in NLP, it's been used much more broadly to mean get a model to do something that it wasn't explicitly trained to do. A well-known example of this is in the [GPT-2 paper](https://pdfs.semanticscholar.org/9405/cc0d6169988371b2755e573cc28650d14dfe.pdf) where the authors evaluate a language model on downstream tasks like machine translation without fine-tuning on these tasks directly.\n", + "\n", + "Let's see how easy it is to just use any set of lables our trained model has never seen via `setCandidateLabels()` param:" + ], + "metadata": { + "id": "ICDQOrwPOeu4" + } + }, + { + "cell_type": "code", + "source": [ + "zero_shot_classifier\\\n", + " .setCandidateLabels([\"space & cosmos\", \"scientific discovery\", \"microbiology\", \"robots\", \"archeology\", \"politics\"])\\\n", + " .setActivation(\"sigmoid\") # multi-label\n", + "\n", + "pipeline = Pipeline(stages=[\n", + " document_assembler,\n", + " tokenizer,\n", + " zero_shot_classifier\n", + "])\n", + "\n", + "input_text3 = [\n", + " [\"Learn about the presidential election process, including the Electoral College, caucuses and primaries, and the national conventions.\"],\n", + " [\"\"\"In a new book, Sean Carroll brings together physics and philosophy while advocating for \"poetic naturalism.\" Ramin Skibba, Contributor. Space ...\"\"\"],\n", + " [\"Who are you voting for in 2024?\"]]\n", + "\n", + "# create a DataFrame in PySpark\n", + "inputDataset = spark.createDataFrame(input_text3, [\"text\"])\n", + "model = pipeline.fit(inputDataset)\n", + "predictionDF = model.transform(inputDataset)\n", + "\n", + "predictionDF.select(\"document.result\", \"class.result\").show(3, False)" + ], + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "JnVfw4T9PWyb", + "outputId": "ee01e459-2a07-4adb-8cf0-625465d4d4c7" + }, + "execution_count": 27, + "outputs": [ + { + "output_type": "stream", + "name": "stdout", + "text": [ + "+---------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------+\n", + "|result |result |\n", + "+---------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------+\n", + "|[Learn about the presidential election process, including the Electoral College, caucuses and primaries, and the national conventions.] |[politics] |\n", + "|[In a new book, Sean Carroll brings together physics and philosophy while advocating for \"poetic naturalism.\" Ramin Skibba, Contributor. Space ...]|[space & cosmos, scientific discovery]|\n", + "|[Who are you voting for in 2024?] |[politics] |\n", + "+---------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------+\n", + "\n" + ] + } + ] + }, + { + "cell_type": "code", + "source": [], + "metadata": { + "id": "pJK49gj_RqOQ" + }, + "execution_count": null, + "outputs": [] + } + ] +} \ No newline at end of file From 23a055904ef75a0bb7b2875798d4c61c4a3b317b Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 10 Apr 2023 16:12:33 +0000 Subject: [PATCH 25/26] Update Scala and Python APIs --- docs/api/com/index.html | 8 +- .../johnsnowlabs/client/CredentialParams.html | 8 +- .../client/aws/AWSAnonymousCredentials.html | 8 +- .../client/aws/AWSBasicCredentials.html | 8 +- .../client/aws/AWSCredentialsProvider.html | 8 +- .../johnsnowlabs/client/aws/AWSGateway.html | 14 +- .../client/aws/AWSProfileCredentials.html | 8 +- .../client/aws/AWSTokenCredentials.html | 8 +- .../johnsnowlabs/client/aws/Credentials.html | 8 +- .../com/johnsnowlabs/client/aws/index.html | 8 +- .../johnsnowlabs/client/gcp/GCPGateway.html | 8 +- .../com/johnsnowlabs/client/gcp/index.html | 8 +- docs/api/com/johnsnowlabs/client/index.html | 8 +- .../johnsnowlabs/collections/SearchTrie$.html | 8 +- .../johnsnowlabs/collections/SearchTrie.html | 8 +- .../collections/StorageSearchTrie$.html | 8 +- .../collections/StorageSearchTrie.html | 8 +- .../com/johnsnowlabs/collections/index.html | 8 +- docs/api/com/johnsnowlabs/index.html | 8 +- docs/api/com/johnsnowlabs/ml/ai/DeBerta.html | 24 +- .../ml/ai/MergeTokenStrategy$.html | 24 +- docs/api/com/johnsnowlabs/ml/ai/index.html | 24 +- .../ml/ai/util/Generation/Generate.html | 805 ++++ .../ml/ai/util/Generation/Logit/Logit.html | 753 ++++ .../Logit/LogitProcess/LogitProcessor.html | 747 ++++ .../LogitProcess/MinLengthLogitProcessor.html | 789 ++++ .../NoRepeatNgramsLogitProcessor.html | 773 ++++ .../RepetitionPenaltyLogitProcessor.html | 757 ++++ .../Generation/Logit/LogitProcess/index.html | 369 ++ .../Generation/Logit/LogitProcessorList.html | 761 ++++ .../Logit/LogitWarper/LogitWarper.html | 795 ++++ .../LogitWarper/TemperatureLogitWarper.html | 805 ++++ .../Logit/LogitWarper/TopKLogitWarper.html | 837 ++++ .../Logit/LogitWarper/TopPLogitWarper.html | 821 ++++ .../Generation/Logit/LogitWarper/index.html | 369 ++ .../ml/ai/util/Generation/Logit/index.html | 345 ++ .../Generation/Search/BeamHypotheses.html | 822 ++++ .../ai/util/Generation/Search/BeamScorer.html | 773 ++++ .../Generation/Search/BeamSearchScorer.html | 879 +++++ .../ml/ai/util/Generation/Search/index.html | 333 ++ .../ml/ai/util/Generation/index.html | 293 ++ .../com/johnsnowlabs/ml/ai/util/index.html | 238 ++ docs/api/com/johnsnowlabs/ml/crf/Attr.html | 8 +- .../com/johnsnowlabs/ml/crf/AttrFeature.html | 8 +- .../api/com/johnsnowlabs/ml/crf/AttrStat.html | 8 +- .../com/johnsnowlabs/ml/crf/CrfDataset.html | 8 +- .../com/johnsnowlabs/ml/crf/CrfParams.html | 8 +- .../johnsnowlabs/ml/crf/DatasetEncoder.html | 8 +- .../johnsnowlabs/ml/crf/DatasetMetadata.html | 8 +- .../johnsnowlabs/ml/crf/DatasetReader$.html | 8 +- .../johnsnowlabs/ml/crf/EdgeCalculator$.html | 8 +- .../com/johnsnowlabs/ml/crf/FbCalculator.html | 8 +- .../api/com/johnsnowlabs/ml/crf/Instance.html | 8 +- .../johnsnowlabs/ml/crf/InstanceLabels.html | 8 +- .../johnsnowlabs/ml/crf/L2DecayStrategy.html | 8 +- .../johnsnowlabs/ml/crf/LinearChainCrf.html | 8 +- .../ml/crf/LinearChainCrfModel.html | 8 +- .../ml/crf/SerializedDatasetMetadata.html | 8 +- .../ml/crf/SerializedLinearChainCrfModel.html | 8 +- .../ml/crf/SparseArray$$SeqWrapper.html | 8 +- .../com/johnsnowlabs/ml/crf/SparseArray$.html | 8 +- .../com/johnsnowlabs/ml/crf/SparseArray.html | 8 +- .../ml/crf/TextSentenceAttrs.html | 8 +- .../ml/crf/TextSentenceLabels.html | 8 +- .../com/johnsnowlabs/ml/crf/Transition.html | 8 +- .../com/johnsnowlabs/ml/crf/VectorMath$.html | 8 +- .../com/johnsnowlabs/ml/crf/WordAttrs.html | 8 +- docs/api/com/johnsnowlabs/ml/crf/index.html | 8 +- docs/api/com/johnsnowlabs/ml/index.html | 8 +- .../tensorflow/ClassifierDatasetEncoder.html | 8 +- .../ClassifierDatasetEncoderParams.html | 8 +- .../ml/tensorflow/DatasetEncoderParams.html | 8 +- .../johnsnowlabs/ml/tensorflow/Logging.html | 8 +- .../ml/tensorflow/ModelSignature.html | 8 +- .../johnsnowlabs/ml/tensorflow/NerBatch$.html | 8 +- .../johnsnowlabs/ml/tensorflow/NerBatch.html | 8 +- .../ml/tensorflow/NerDatasetEncoder.html | 8 +- .../ml/tensorflow/ReadTensorflowModel.html | 10 +- .../ml/tensorflow/SentenceGrouper.html | 8 +- .../ml/tensorflow/TensorResources$.html | 8 +- .../ml/tensorflow/TensorResources.html | 8 +- .../ml/tensorflow/TensorflowClassifier.html | 8 +- .../ml/tensorflow/TensorflowWrapper$.html | 8 +- .../ml/tensorflow/TensorflowWrapper.html | 8 +- .../johnsnowlabs/ml/tensorflow/Variables.html | 8 +- .../ml/tensorflow/WriteTensorflowModel.html | 10 +- .../com/johnsnowlabs/ml/tensorflow/index.html | 8 +- .../sentencepiece/ReadSentencePieceModel.html | 8 +- .../sentencepiece/SentencePieceException.html | 8 +- .../sentencepiece/SentencePieceProcessor.html | 8 +- .../sentencepiece/SentencePieceWrapper$.html | 8 +- .../WriteSentencePieceModel.html | 8 +- .../ml/tensorflow/sentencepiece/index.html | 8 +- ...delSignatureConstants$$AttentionMask$.html | 8 +- ...lSignatureConstants$$AttentionMaskV1$.html | 8 +- ...SignatureConstants$$AudioValuesInput$.html | 8 +- .../sign/ModelSignatureConstants$$DType$.html | 8 +- ...atureConstants$$DecoderAttentionMask$.html | 8 +- ...nstants$$DecoderEncoderAttentionMask$.html | 8 +- ...ureConstants$$DecoderEncoderInputIds$.html | 8 +- ...lSignatureConstants$$DecoderInputIds$.html | 8 +- ...delSignatureConstants$$DecoderOutput$.html | 8 +- .../ModelSignatureConstants$$DimCount$.html | 8 +- ...atureConstants$$EncoderAttentionMask$.html | 8 +- ...lSignatureConstants$$EncoderInputIds$.html | 8 +- ...delSignatureConstants$$EncoderOutput$.html | 8 +- ...lSignatureConstants$$EndLogitsOutput$.html | 8 +- .../ModelSignatureConstants$$InputIds$.html | 8 +- .../ModelSignatureConstants$$InputIdsV1$.html | 8 +- ...lSignatureConstants$$LastHiddenState$.html | 8 +- ...ignatureConstants$$LastHiddenStateV1$.html | 8 +- ...odelSignatureConstants$$LogitsOutput$.html | 8 +- .../sign/ModelSignatureConstants$$Name$.html | 8 +- ...SignatureConstants$$PixelValuesInput$.html | 8 +- ...odelSignatureConstants$$PoolerOutput$.html | 8 +- ...elSignatureConstants$$PoolerOutputV1$.html | 8 +- ...elSignatureConstants$$SerializedSize$.html | 8 +- ...odelSignatureConstants$$ShapeDimList$.html | 8 +- ...ignatureConstants$$StartLogitsOutput$.html | 8 +- ...lSignatureConstants$$TFInfoDescriptor.html | 8 +- ...lSignatureConstants$$TFInfoNameMapper.html | 8 +- ...stants$$TapasLogitsAggregationOutput$.html | 8 +- ...ignatureConstants$$TapasLogitsOutput$.html | 8 +- ...odelSignatureConstants$$TokenTypeIds$.html | 8 +- ...elSignatureConstants$$TokenTypeIdsV1$.html | 8 +- .../sign/ModelSignatureConstants$.html | 8 +- .../sign/ModelSignatureManager$.html | 8 +- .../ml/tensorflow/sign/index.html | 8 +- .../ml/util/LoadExternalModel$.html | 8 +- .../johnsnowlabs/ml/util/ModelEngine$.html | 8 +- docs/api/com/johnsnowlabs/ml/util/index.html | 8 +- .../johnsnowlabs/nlp/ActivationFunction$.html | 12 +- .../nlp/Annotation$$AnnotationContainer.html | 8 +- ...nnotation$$extractors$$AnnotationData.html | 8 +- .../nlp/Annotation$$extractors$.html | 8 +- .../api/com/johnsnowlabs/nlp/Annotation$.html | 12 +- docs/api/com/johnsnowlabs/nlp/Annotation.html | 12 +- .../AnnotationAudio$$AnnotationContainer.html | 8 +- .../nlp/AnnotationAudio$$AudioFields.html | 8 +- .../johnsnowlabs/nlp/AnnotationAudio$.html | 12 +- .../com/johnsnowlabs/nlp/AnnotationAudio.html | 12 +- .../AnnotationImage$$AnnotationContainer.html | 8 +- .../nlp/AnnotationImage$$ImageFields.html | 8 +- .../johnsnowlabs/nlp/AnnotationImage$.html | 12 +- .../com/johnsnowlabs/nlp/AnnotationImage.html | 12 +- .../johnsnowlabs/nlp/AnnotatorApproach.html | 12 +- .../com/johnsnowlabs/nlp/AnnotatorModel.html | 14 +- .../com/johnsnowlabs/nlp/AnnotatorType$.html | 12 +- .../com/johnsnowlabs/nlp/AudioAssembler$.html | 12 +- .../com/johnsnowlabs/nlp/AudioAssembler.html | 12 +- docs/api/com/johnsnowlabs/nlp/CanBeLazy.html | 14 +- docs/api/com/johnsnowlabs/nlp/Doc2Chunk$.html | 12 +- docs/api/com/johnsnowlabs/nlp/Doc2Chunk.html | 12 +- .../johnsnowlabs/nlp/DocumentAssembler$.html | 12 +- .../johnsnowlabs/nlp/DocumentAssembler.html | 12 +- .../johnsnowlabs/nlp/EmbeddingsFinisher$.html | 12 +- .../johnsnowlabs/nlp/EmbeddingsFinisher.html | 12 +- .../com/johnsnowlabs/nlp/FeaturesReader.html | 12 +- .../com/johnsnowlabs/nlp/FeaturesWriter.html | 12 +- docs/api/com/johnsnowlabs/nlp/Finisher$.html | 12 +- docs/api/com/johnsnowlabs/nlp/Finisher.html | 12 +- .../com/johnsnowlabs/nlp/GraphFinisher.html | 12 +- .../nlp/HasAudioFeatureProperties.html | 12 +- .../johnsnowlabs/nlp/HasBatchedAnnotate.html | 14 +- .../nlp/HasBatchedAnnotateAudio.html | 12 +- .../nlp/HasBatchedAnnotateImage.html | 14 +- .../nlp/HasCandidateLabelsProperties.html | 1728 +++++++++ .../nlp/HasCaseSensitiveProperties.html | 14 +- .../HasClassifierActivationProperties.html | 14 +- .../nlp/HasEnableCachingProperties.html | 12 +- docs/api/com/johnsnowlabs/nlp/HasEngine.html | 14 +- .../api/com/johnsnowlabs/nlp/HasFeatures.html | 14 +- .../nlp/HasImageFeatureProperties.html | 14 +- .../nlp/HasInputAnnotationCols.html | 14 +- .../nlp/HasMultipleInputAnnotationCols.html | 12 +- .../nlp/HasOutputAnnotationCol.html | 14 +- .../nlp/HasOutputAnnotatorType.html | 14 +- .../com/johnsnowlabs/nlp/HasPretrained.html | 14 +- .../com/johnsnowlabs/nlp/HasRecursiveFit.html | 12 +- .../nlp/HasRecursiveTransform.html | 12 +- .../johnsnowlabs/nlp/HasSimpleAnnotate.html | 12 +- .../api/com/johnsnowlabs/nlp/IAnnotation.html | 12 +- .../com/johnsnowlabs/nlp/ImageAssembler$.html | 12 +- .../com/johnsnowlabs/nlp/ImageAssembler.html | 12 +- .../com/johnsnowlabs/nlp/JavaAnnotation.html | 12 +- .../com/johnsnowlabs/nlp/LightPipeline.html | 12 +- .../nlp/MultiDocumentAssembler$.html | 12 +- .../nlp/MultiDocumentAssembler.html | 12 +- .../nlp/ParamsAndFeaturesReadable.html | 14 +- .../nlp/ParamsAndFeaturesWritable.html | 14 +- .../com/johnsnowlabs/nlp/RawAnnotator.html | 14 +- .../johnsnowlabs/nlp/RecursivePipeline.html | 12 +- .../nlp/RecursivePipelineModel.html | 12 +- docs/api/com/johnsnowlabs/nlp/SparkNLP$.html | 12 +- .../com/johnsnowlabs/nlp/TableAssembler$.html | 12 +- .../com/johnsnowlabs/nlp/TableAssembler.html | 12 +- .../com/johnsnowlabs/nlp/TokenAssembler$.html | 12 +- .../com/johnsnowlabs/nlp/TokenAssembler.html | 12 +- .../nlp/annotators/Chunk2Doc$.html | 8 +- .../nlp/annotators/Chunk2Doc.html | 8 +- .../nlp/annotators/ChunkTokenizer$.html | 8 +- .../nlp/annotators/ChunkTokenizer.html | 8 +- .../nlp/annotators/ChunkTokenizerModel$.html | 8 +- .../nlp/annotators/ChunkTokenizerModel.html | 8 +- .../johnsnowlabs/nlp/annotators/Chunker$.html | 8 +- .../johnsnowlabs/nlp/annotators/Chunker.html | 8 +- .../nlp/annotators/Date2Chunk$.html | 8 +- .../nlp/annotators/Date2Chunk.html | 54 +- .../nlp/annotators/DateMatcher$.html | 8 +- .../nlp/annotators/DateMatcher.html | 10 +- .../nlp/annotators/DateMatcherTranslator.html | 8 +- .../DateMatcherTranslatorPolicy.html | 8 +- .../nlp/annotators/DateMatcherUtils.html | 8 +- .../nlp/annotators/DocumentNormalizer$.html | 8 +- .../nlp/annotators/DocumentNormalizer.html | 8 +- .../nlp/annotators/EnglishStemmer$.html | 8 +- .../nlp/annotators/GraphExtraction.html | 8 +- .../nlp/annotators/Lemmatizer$.html | 8 +- .../nlp/annotators/Lemmatizer.html | 12 +- .../nlp/annotators/LemmatizerModel$.html | 8 +- .../nlp/annotators/LemmatizerModel.html | 10 +- .../nlp/annotators/LookAroundManager$.html | 8 +- .../nlp/annotators/MultiDateMatcher$.html | 8 +- .../nlp/annotators/MultiDateMatcher.html | 8 +- .../nlp/annotators/MultiDatePolicy$.html | 8 +- .../nlp/annotators/NGramGenerator$.html | 8 +- .../nlp/annotators/NGramGenerator.html | 8 +- .../nlp/annotators/Normalizer$.html | 8 +- .../nlp/annotators/Normalizer.html | 8 +- .../nlp/annotators/NormalizerModel$.html | 8 +- ...alizerModel$TokenizerAndNormalizerMap.html | 8 +- .../nlp/annotators/NormalizerModel.html | 8 +- .../annotators/PretrainedAnnotations$.html | 8 +- .../ReadablePretrainedLemmatizer.html | 8 +- ...adablePretrainedStopWordsCleanerModel.html | 8 +- .../ReadablePretrainedTextMatcher.html | 8 +- .../ReadablePretrainedTokenizer.html | 8 +- .../nlp/annotators/RecursiveTokenizer.html | 8 +- .../annotators/RecursiveTokenizerModel$.html | 8 +- .../annotators/RecursiveTokenizerModel.html | 8 +- .../nlp/annotators/RegexMatcher$.html | 8 +- .../nlp/annotators/RegexMatcher.html | 10 +- .../nlp/annotators/RegexMatcherModel$.html | 8 +- .../nlp/annotators/RegexMatcherModel.html | 8 +- .../nlp/annotators/RegexTokenizer$.html | 8 +- .../nlp/annotators/RegexTokenizer.html | 8 +- .../nlp/annotators/SingleDatePolicy$.html | 8 +- .../johnsnowlabs/nlp/annotators/Stemmer$.html | 8 +- .../johnsnowlabs/nlp/annotators/Stemmer.html | 8 +- .../nlp/annotators/StopWordsCleaner$.html | 8 +- .../nlp/annotators/StopWordsCleaner.html | 10 +- .../nlp/annotators/TextMatcher$.html | 8 +- .../nlp/annotators/TextMatcher.html | 8 +- .../nlp/annotators/TextMatcherModel$.html | 8 +- .../nlp/annotators/TextMatcherModel.html | 8 +- .../nlp/annotators/Token2Chunk$.html | 8 +- .../nlp/annotators/Token2Chunk.html | 8 +- .../nlp/annotators/Tokenizer$.html | 8 +- .../nlp/annotators/Tokenizer.html | 8 +- .../nlp/annotators/TokenizerModel$.html | 8 +- .../nlp/annotators/TokenizerModel.html | 8 +- .../nlp/annotators/audio/HubertForCTC$.html | 8 +- .../nlp/annotators/audio/HubertForCTC.html | 11 +- .../audio/ReadHubertForAudioDLModel.html | 8 +- .../audio/ReadWav2Vec2ForAudioDLModel.html | 8 +- ...ReadablePretrainedHubertForAudioModel.html | 8 +- ...adablePretrainedWav2Vec2ForAudioModel.html | 8 +- .../nlp/annotators/audio/Wav2Vec2ForCTC$.html | 8 +- .../nlp/annotators/audio/Wav2Vec2ForCTC.html | 11 +- .../nlp/annotators/audio/index.html | 14 +- .../nlp/annotators/btm/BigTextMatcher$.html | 8 +- .../nlp/annotators/btm/BigTextMatcher.html | 8 +- .../annotators/btm/BigTextMatcherModel$.html | 8 +- .../annotators/btm/BigTextMatcherModel.html | 8 +- .../btm/ReadablePretrainedBigTextMatcher.html | 8 +- .../nlp/annotators/btm/TMEdgesReadWriter.html | 8 +- .../nlp/annotators/btm/TMEdgesReader.html | 8 +- .../nlp/annotators/btm/TMNodesReader.html | 8 +- .../nlp/annotators/btm/TMNodesWriter.html | 8 +- .../nlp/annotators/btm/TMVocabReadWriter.html | 8 +- .../nlp/annotators/btm/TMVocabReader.html | 8 +- .../nlp/annotators/btm/TrieNode.html | 8 +- .../nlp/annotators/btm/index.html | 8 +- .../dl/AlbertForQuestionAnswering$.html | 20 +- .../dl/AlbertForQuestionAnswering.html | 26 +- .../dl/AlbertForSequenceClassification$.html | 20 +- .../dl/AlbertForSequenceClassification.html | 26 +- .../dl/AlbertForTokenClassification$.html | 20 +- .../dl/AlbertForTokenClassification.html | 26 +- .../dl/BertForQuestionAnswering$.html | 20 +- .../dl/BertForQuestionAnswering.html | 26 +- .../dl/BertForSequenceClassification$.html | 20 +- .../dl/BertForSequenceClassification.html | 28 +- .../dl/BertForTokenClassification$.html | 20 +- .../dl/BertForTokenClassification.html | 26 +- .../dl/BertForZeroShotClassification$.html | 1334 +++++++ .../dl/BertForZeroShotClassification.html | 3396 +++++++++++++++++ .../dl/CamemBertForQuestionAnswering$.html | 20 +- .../dl/CamemBertForQuestionAnswering.html | 26 +- .../CamemBertForSequenceClassification$.html | 20 +- .../CamemBertForSequenceClassification.html | 26 +- .../dl/CamemBertForTokenClassification$.html | 20 +- .../dl/CamemBertForTokenClassification.html | 26 +- .../classifier/dl/ClassifierDLApproach$.html | 20 +- .../classifier/dl/ClassifierDLApproach.html | 20 +- .../classifier/dl/ClassifierDLModel$.html | 20 +- .../classifier/dl/ClassifierDLModel.html | 22 +- .../classifier/dl/ClassifierEncoder.html | 20 +- .../classifier/dl/ClassifierMetrics.html | 20 +- .../dl/DeBertaForQuestionAnswering$.html | 20 +- .../dl/DeBertaForQuestionAnswering.html | 26 +- .../dl/DeBertaForSequenceClassification$.html | 20 +- .../dl/DeBertaForSequenceClassification.html | 26 +- .../dl/DeBertaForTokenClassification$.html | 20 +- .../dl/DeBertaForTokenClassification.html | 26 +- .../dl/DistilBertForQuestionAnswering$.html | 20 +- .../dl/DistilBertForQuestionAnswering.html | 26 +- .../DistilBertForSequenceClassification$.html | 20 +- .../DistilBertForSequenceClassification.html | 26 +- .../dl/DistilBertForTokenClassification$.html | 20 +- .../dl/DistilBertForTokenClassification.html | 26 +- .../dl/LongformerForQuestionAnswering$.html | 20 +- .../dl/LongformerForQuestionAnswering.html | 26 +- .../LongformerForSequenceClassification$.html | 20 +- .../LongformerForSequenceClassification.html | 26 +- .../dl/LongformerForTokenClassification$.html | 20 +- .../dl/LongformerForTokenClassification.html | 26 +- .../dl/MultiClassifierDLApproach.html | 20 +- .../dl/MultiClassifierDLModel$.html | 20 +- .../classifier/dl/MultiClassifierDLModel.html | 22 +- ...ReadAlbertForQuestionAnsweringDLModel.html | 20 +- .../dl/ReadAlbertForSequenceDLModel.html | 20 +- .../dl/ReadAlbertForTokenDLModel.html | 20 +- .../ReadBertForQuestionAnsweringDLModel.html | 20 +- .../dl/ReadBertForSequenceDLModel.html | 20 +- .../dl/ReadBertForTokenDLModel.html | 20 +- .../dl/ReadBertForZeroShotDLModel.html | 1153 ++++++ .../dl/ReadCamemBertForQADLModel.html | 20 +- .../dl/ReadCamemBertForSequenceDLModel.html | 20 +- .../dl/ReadCamemBertForTokenDLModel.html | 20 +- .../dl/ReadClassifierDLTensorflowModel.html | 20 +- ...eadDeBertaForQuestionAnsweringDLModel.html | 20 +- .../dl/ReadDeBertaForSequenceDLModel.html | 20 +- .../dl/ReadDeBertaForTokenDLModel.html | 20 +- ...DistilBertForQuestionAnsweringDLModel.html | 20 +- .../dl/ReadDistilBertForSequenceDLModel.html | 20 +- .../dl/ReadDistilBertForTokenDLModel.html | 20 +- ...LongformerForQuestionAnsweringDLModel.html | 20 +- .../dl/ReadLongformerForSequenceDLModel.html | 20 +- .../dl/ReadLongformerForTokenDLModel.html | 20 +- .../ReadMultiClassifierDLTensorflowModel.html | 20 +- ...eadRoBertaForQuestionAnsweringDLModel.html | 20 +- .../dl/ReadRoBertaForSequenceDLModel.html | 20 +- .../dl/ReadRoBertaForTokenDLModel.html | 20 +- .../dl/ReadSentimentDLTensorflowModel.html | 20 +- .../ReadTapasForQuestionAnsweringDLModel.html | 20 +- ...XlmRoBertaForQuestionAnsweringDLModel.html | 20 +- .../dl/ReadXlmRoBertaForSequenceDLModel.html | 20 +- .../dl/ReadXlmRoBertaForTokenDLModel.html | 20 +- .../dl/ReadXlnetForSequenceDLModel.html | 20 +- .../dl/ReadXlnetForTokenDLModel.html | 20 +- .../ReadablePretrainedAlbertForQAModel.html | 20 +- ...dablePretrainedAlbertForSequenceModel.html | 20 +- ...ReadablePretrainedAlbertForTokenModel.html | 20 +- .../dl/ReadablePretrainedBertForQAModel.html | 20 +- ...eadablePretrainedBertForSequenceModel.html | 20 +- .../ReadablePretrainedBertForTokenModel.html | 20 +- ...eadablePretrainedBertForZeroShotModel.html | 1213 ++++++ ...ReadablePretrainedCamemBertForQAModel.html | 20 +- ...lePretrainedCamemBertForSequenceModel.html | 20 +- ...dablePretrainedCamemBertForTokenModel.html | 20 +- .../dl/ReadablePretrainedClassifierDL.html | 20 +- .../ReadablePretrainedDeBertaForQAModel.html | 20 +- ...ablePretrainedDeBertaForSequenceModel.html | 20 +- ...eadablePretrainedDeBertaForTokenModel.html | 20 +- ...eadablePretrainedDistilBertForQAModel.html | 20 +- ...ePretrainedDistilBertForSequenceModel.html | 20 +- ...ablePretrainedDistilBertForTokenModel.html | 20 +- ...eadablePretrainedLongformerForQAModel.html | 20 +- ...ePretrainedLongformerForSequenceModel.html | 20 +- ...ablePretrainedLongformerForTokenModel.html | 20 +- .../ReadablePretrainedMultiClassifierDL.html | 20 +- .../ReadablePretrainedRoBertaForQAModel.html | 20 +- ...ablePretrainedRoBertaForSequenceModel.html | 20 +- ...eadablePretrainedRoBertaForTokenModel.html | 20 +- .../dl/ReadablePretrainedSentimentDL.html | 20 +- .../dl/ReadablePretrainedTapasForQAModel.html | 20 +- ...eadablePretrainedXlmRoBertaForQAModel.html | 20 +- ...ePretrainedXlmRoBertaForSequenceModel.html | 20 +- ...ablePretrainedXlmRoBertaForTokenModel.html | 20 +- ...adablePretrainedXlnetForSequenceModel.html | 20 +- .../ReadablePretrainedXlnetForTokenModel.html | 20 +- .../dl/RoBertaForQuestionAnswering$.html | 20 +- .../dl/RoBertaForQuestionAnswering.html | 26 +- .../dl/RoBertaForSequenceClassification$.html | 20 +- .../dl/RoBertaForSequenceClassification.html | 26 +- .../dl/RoBertaForTokenClassification$.html | 20 +- .../dl/RoBertaForTokenClassification.html | 26 +- .../classifier/dl/SentimentApproach$.html | 20 +- .../classifier/dl/SentimentDLApproach.html | 20 +- .../classifier/dl/SentimentDLModel$.html | 20 +- .../classifier/dl/SentimentDLModel.html | 22 +- .../dl/TapasForQuestionAnswering$.html | 20 +- .../dl/TapasForQuestionAnswering.html | 26 +- .../dl/XlmRoBertaForQuestionAnswering$.html | 20 +- .../dl/XlmRoBertaForQuestionAnswering.html | 26 +- .../XlmRoBertaForSequenceClassification$.html | 20 +- .../XlmRoBertaForSequenceClassification.html | 26 +- .../dl/XlmRoBertaForTokenClassification$.html | 20 +- .../dl/XlmRoBertaForTokenClassification.html | 26 +- .../dl/XlnetForSequenceClassification$.html | 20 +- .../dl/XlnetForSequenceClassification.html | 26 +- .../dl/XlnetForTokenClassification$.html | 20 +- .../dl/XlnetForTokenClassification.html | 26 +- .../nlp/annotators/classifier/dl/index.html | 303 +- .../nlp/annotators/classifier/index.html | 8 +- .../nlp/annotators/common/Annotated$.html | 8 +- .../nlp/annotators/common/Annotated.html | 8 +- .../nlp/annotators/common/ChunkSplit$.html | 8 +- .../nlp/annotators/common/ConllSentence.html | 8 +- .../DatasetHelpers$$DataFrameHelper.html | 8 +- .../annotators/common/DatasetHelpers$.html | 8 +- .../annotators/common/DependencyParsed$.html | 8 +- .../common/DependencyParsedSentence.html | 8 +- .../common/EmbeddingsWithSentence$.html | 8 +- .../annotators/common/IndexedTaggedWord.html | 8 +- .../nlp/annotators/common/IndexedToken.html | 8 +- .../nlp/annotators/common/InfixToken$.html | 8 +- .../nlp/annotators/common/InfixToken.html | 8 +- .../LabeledDependency$$DependencyInfo.html | 8 +- .../annotators/common/LabeledDependency$.html | 8 +- .../nlp/annotators/common/NerTagged$.html | 8 +- .../nlp/annotators/common/PosTagged$.html | 8 +- .../nlp/annotators/common/PrefixedToken$.html | 8 +- .../nlp/annotators/common/PrefixedToken.html | 8 +- .../common/PreprocessingParser.html | 8 +- .../nlp/annotators/common/Sentence$.html | 8 +- .../nlp/annotators/common/Sentence.html | 8 +- .../nlp/annotators/common/SentenceSplit$.html | 8 +- .../nlp/annotators/common/SuffixedToken$.html | 8 +- .../nlp/annotators/common/SuffixedToken.html | 8 +- .../nlp/annotators/common/TableData$.html | 8 +- .../nlp/annotators/common/TableData.html | 8 +- .../nlp/annotators/common/Tagged.html | 8 +- .../annotators/common/TaggedSentence$.html | 8 +- .../nlp/annotators/common/TaggedSentence.html | 8 +- .../nlp/annotators/common/TaggedWord.html | 8 +- .../nlp/annotators/common/TokenPiece.html | 8 +- .../common/TokenPieceEmbeddings$.html | 8 +- .../common/TokenPieceEmbeddings.html | 8 +- .../annotators/common/TokenizedSentence.html | 8 +- .../common/TokenizedWithSentence$.html | 8 +- .../annotators/common/WordWithDependency.html | 8 +- .../common/WordpieceEmbeddingsSentence$.html | 8 +- .../common/WordpieceEmbeddingsSentence.html | 8 +- .../common/WordpieceTokenized$.html | 8 +- .../common/WordpieceTokenizedSentence.html | 8 +- .../nlp/annotators/common/index.html | 8 +- .../ReadSpanBertCorefTensorflowModel.html | 8 +- .../ReadablePretrainedSpanBertCorefModel.html | 8 +- .../annotators/coref/SpanBertCorefModel$.html | 8 +- .../annotators/coref/SpanBertCorefModel.html | 10 +- .../nlp/annotators/coref/index.html | 10 +- .../cv/ConvNextForImageClassification$.html | 958 +++++ .../cv/ConvNextForImageClassification.html | 3181 +++++++++++++++ .../cv/ReadConvNextForImageDLModel.html | 777 ++++ .../cv/ReadSwinForImageDLModel.html | 20 +- .../annotators/cv/ReadViTForImageDLModel.html | 20 +- ...adablePretrainedConvNextForImageModel.html | 837 ++++ .../ReadablePretrainedSwinForImageModel.html | 20 +- .../ReadablePretrainedViTForImageModel.html | 20 +- .../cv/SwinForImageClassification$.html | 20 +- .../cv/SwinForImageClassification.html | 67 +- .../cv/ViTForImageClassification$.html | 20 +- .../cv/ViTForImageClassification.html | 30 +- .../johnsnowlabs/nlp/annotators/cv/index.html | 156 +- .../er/AhoCorasickAutomaton$Node.html | 8 +- .../annotators/er/AhoCorasickAutomaton.html | 8 +- .../nlp/annotators/er/EntityPattern.html | 8 +- .../annotators/er/EntityRulerApproach.html | 55 +- .../annotators/er/EntityRulerFeatures.html | 8 +- .../nlp/annotators/er/EntityRulerModel$.html | 8 +- .../nlp/annotators/er/EntityRulerModel.html | 8 +- .../nlp/annotators/er/EntityRulerUtil$.html | 8 +- .../annotators/er/FlattenEntityPattern.html | 8 +- .../nlp/annotators/er/PatternsReadWriter.html | 8 +- .../nlp/annotators/er/PatternsReader.html | 8 +- .../er/ReadablePretrainedEntityRuler.html | 8 +- .../er/RegexPatternsReadWriter.html | 8 +- .../annotators/er/RegexPatternsReader.html | 8 +- .../johnsnowlabs/nlp/annotators/er/index.html | 11 +- .../johnsnowlabs/nlp/annotators/index.html | 22 +- .../nlp/annotators/keyword/index.html | 8 +- .../keyword/yake/YakeKeywordExtraction$.html | 8 +- .../keyword/yake/YakeKeywordExtraction.html | 8 +- .../annotators/keyword/yake/YakeParams.html | 8 +- .../nlp/annotators/keyword/yake/index.html | 8 +- .../annotators/keyword/yake/util/Token.html | 8 +- .../keyword/yake/util/Utilities$.html | 8 +- .../annotators/keyword/yake/util/index.html | 8 +- .../annotators/ld/dl/LanguageDetectorDL$.html | 8 +- .../annotators/ld/dl/LanguageDetectorDL.html | 10 +- ...ReadLanguageDetectorDLTensorflowModel.html | 8 +- ...ablePretrainedLanguageDetectorDLModel.html | 8 +- .../nlp/annotators/ld/dl/index.html | 10 +- .../johnsnowlabs/nlp/annotators/ld/index.html | 8 +- .../nlp/annotators/ner/ModelMetrics$.html | 8 +- .../nlp/annotators/ner/NamedEntity.html | 8 +- .../nlp/annotators/ner/NerApproach.html | 8 +- .../nlp/annotators/ner/NerConverter$.html | 8 +- .../nlp/annotators/ner/NerConverter.html | 41 +- .../nlp/annotators/ner/NerOverwriter$.html | 8 +- .../nlp/annotators/ner/NerOverwriter.html | 8 +- .../nlp/annotators/ner/NerTagsEncoding$.html | 14 +- .../nlp/annotators/ner/Verbose$.html | 8 +- .../ner/crf/DictionaryFeatures$.html | 8 +- .../ner/crf/DictionaryFeatures.html | 8 +- .../ner/crf/FeatureGenerator$TokenType$.html | 8 +- .../annotators/ner/crf/FeatureGenerator.html | 8 +- .../annotators/ner/crf/NerCrfApproach$.html | 8 +- .../annotators/ner/crf/NerCrfApproach.html | 8 +- .../nlp/annotators/ner/crf/NerCrfModel$.html | 8 +- .../nlp/annotators/ner/crf/NerCrfModel.html | 11 +- .../ner/crf/ReadablePretrainedNerCrf.html | 8 +- .../nlp/annotators/ner/crf/index.html | 11 +- .../nlp/annotators/ner/dl/LoadsContrib$.html | 8 +- .../nlp/annotators/ner/dl/NerDLApproach$.html | 8 +- .../nlp/annotators/ner/dl/NerDLApproach.html | 8 +- .../nlp/annotators/ner/dl/NerDLModel$.html | 8 +- .../nlp/annotators/ner/dl/NerDLModel.html | 14 +- .../ner/dl/NerDLModelPythonReader$.html | 8 +- .../ner/dl/ReadZeroShotNerDLModel.html | 8 +- .../ner/dl/ReadablePretrainedNerDL.html | 8 +- .../ner/dl/ReadablePretrainedZeroShotNer.html | 8 +- .../nlp/annotators/ner/dl/ReadsNERGraph.html | 8 +- .../annotators/ner/dl/WithGraphResolver.html | 8 +- .../annotators/ner/dl/ZeroShotNerModel$.html | 8 +- .../annotators/ner/dl/ZeroShotNerModel.html | 10 +- .../nlp/annotators/ner/dl/index.html | 16 +- .../nlp/annotators/ner/index.html | 8 +- ...lizableFormat$$SerializableDateFormat.html | 8 +- .../AnnotatorParam$SerializableFormat$.html | 8 +- .../nlp/annotators/param/AnnotatorParam.html | 8 +- .../annotators/param/EvaluationDLParams.html | 8 +- .../param/ExternalResourceParam.html | 8 +- .../param/SerializedAnnotatorComponent.html | 8 +- .../param/WritableAnnotatorComponent.html | 8 +- .../nlp/annotators/param/index.html | 8 +- .../parser/dep/DependencyParserApproach$.html | 8 +- .../parser/dep/DependencyParserApproach.html | 8 +- .../parser/dep/DependencyParserModel$.html | 8 +- .../parser/dep/DependencyParserModel.html | 10 +- .../GreedyTransition/DependencyMaker$.html | 8 +- .../DependencyMaker$CurrentState.html | 8 +- .../DependencyMaker$ParseState.html | 8 +- .../dep/GreedyTransition/DependencyMaker.html | 8 +- .../GreedyTransitionApproach$.html | 8 +- .../parser/dep/GreedyTransition/index.html | 8 +- .../GreedyTransition/package$$Feature.html | 8 +- .../GreedyTransition/package$$WordData.html | 8 +- .../parser/dep/Perceptron$WeightLearner.html | 8 +- .../nlp/annotators/parser/dep/Perceptron.html | 8 +- .../dep/ReadablePretrainedDependency.html | 8 +- .../annotators/parser/dep/TagDictionary$.html | 8 +- .../nlp/annotators/parser/dep/Tagger$.html | 8 +- .../nlp/annotators/parser/dep/Tagger.html | 8 +- .../nlp/annotators/parser/dep/index.html | 10 +- .../nlp/annotators/parser/index.html | 8 +- .../annotators/parser/typdep/ConllData.html | 8 +- .../parser/typdep/DependencyArcList.html | 8 +- .../parser/typdep/DependencyInstance.html | 8 +- .../parser/typdep/DependencyPipe.html | 8 +- .../parser/typdep/LocalFeatureData.html | 8 +- .../parser/typdep/LowRankTensor.html | 8 +- .../nlp/annotators/parser/typdep/Options.html | 8 +- .../annotators/parser/typdep/Parameters.html | 8 +- .../parser/typdep/PredictionParameters.html | 8 +- .../ReadablePretrainedTypedDependency.html | 8 +- .../parser/typdep/TrainDependencies.html | 8 +- .../annotators/parser/typdep/TrainFile.html | 8 +- .../parser/typdep/TypedDependencyParser.html | 8 +- .../TypedDependencyParserApproach$.html | 8 +- .../typdep/TypedDependencyParserApproach.html | 8 +- .../typdep/TypedDependencyParserModel$.html | 8 +- .../typdep/TypedDependencyParserModel.html | 10 +- .../typdep/feature/FeatureTemplate.html | 8 +- .../feature/SyntacticFeatureFactory.html | 8 +- .../parser/typdep/feature/index.html | 8 +- .../nlp/annotators/parser/typdep/index.html | 10 +- .../parser/typdep/io/Conll09Reader.html | 8 +- .../parser/typdep/io/ConllUReader.html | 8 +- .../parser/typdep/io/ConllWriter.html | 8 +- .../parser/typdep/io/DependencyReader.html | 8 +- .../annotators/parser/typdep/io/index.html | 8 +- .../parser/typdep/util/Alphabet.html | 8 +- .../parser/typdep/util/Collector.html | 8 +- .../parser/typdep/util/DependencyLabel.html | 8 +- .../parser/typdep/util/Dictionary.html | 8 +- .../parser/typdep/util/DictionarySet.html | 8 +- .../parser/typdep/util/FeatureVector.html | 8 +- .../parser/typdep/util/ScoreCollector.html | 8 +- .../annotators/parser/typdep/util/Utils.html | 8 +- .../annotators/parser/typdep/util/index.html | 8 +- .../nlp/annotators/pos/index.html | 8 +- .../pos/perceptron/AveragedPerceptron.html | 8 +- .../pos/perceptron/PerceptronApproach$.html | 8 +- .../pos/perceptron/PerceptronApproach.html | 8 +- .../PerceptronApproachDistributed$.html | 8 +- .../PerceptronApproachDistributed.html | 8 +- .../pos/perceptron/PerceptronModel$.html | 8 +- .../pos/perceptron/PerceptronModel.html | 12 +- .../perceptron/PerceptronPredictionUtils.html | 8 +- .../perceptron/PerceptronTrainingUtils.html | 8 +- .../pos/perceptron/PerceptronUtils.html | 8 +- .../ReadablePretrainedPerceptron.html | 8 +- .../StringMapStringDoubleAccumulator.html | 8 +- .../perceptron/TrainingPerceptronLegacy.html | 8 +- .../TupleKeyLongDoubleMapAccumulator.html | 8 +- .../nlp/annotators/pos/perceptron/index.html | 12 +- .../sbd/SentenceDetectorParams.html | 8 +- .../nlp/annotators/sbd/index.html | 8 +- .../sbd/pragmatic/CustomPragmaticMethod.html | 8 +- .../sbd/pragmatic/DefaultPragmaticMethod.html | 8 +- .../sbd/pragmatic/MixedPragmaticMethod.html | 8 +- .../pragmatic/PragmaticContentFormatter$.html | 8 +- .../pragmatic/PragmaticContentFormatter.html | 8 +- .../sbd/pragmatic/PragmaticDictionaries$.html | 8 +- .../sbd/pragmatic/PragmaticMethod.html | 8 +- .../pragmatic/PragmaticSentenceExtractor.html | 8 +- .../sbd/pragmatic/PragmaticSymbols$.html | 8 +- .../annotators/sbd/pragmatic/RuleSymbols.html | 8 +- .../sbd/pragmatic/SentenceDetector$.html | 8 +- .../sbd/pragmatic/SentenceDetector.html | 8 +- .../nlp/annotators/sbd/pragmatic/index.html | 8 +- .../nlp/annotators/sda/index.html | 8 +- .../sda/pragmatic/PragmaticScorer.html | 8 +- .../sda/pragmatic/SentimentDetector$.html | 8 +- .../sda/pragmatic/SentimentDetector.html | 8 +- .../pragmatic/SentimentDetectorModel$.html | 8 +- .../sda/pragmatic/SentimentDetectorModel.html | 8 +- .../nlp/annotators/sda/pragmatic/index.html | 8 +- .../sda/vivekn/ReadablePretrainedVivekn.html | 8 +- .../sda/vivekn/ViveknSentimentApproach.html | 8 +- .../sda/vivekn/ViveknSentimentModel$.html | 8 +- .../sda/vivekn/ViveknSentimentModel.html | 8 +- .../sda/vivekn/ViveknSentimentUtils.html | 8 +- .../nlp/annotators/sda/vivekn/index.html | 8 +- .../sentence_detector_dl/Metrics.html | 8 +- .../ReadablePretrainedSentenceDetectorDL.html | 8 +- .../ReadsSentenceDetectorDLGraph.html | 8 +- .../SentenceDetectorDLApproach.html | 8 +- .../SentenceDetectorDLEncoder$.html | 8 +- .../SentenceDetectorDLEncoder.html | 8 +- .../SentenceDetectorDLEncoderParam.html | 8 +- .../SentenceDetectorDLModel$.html | 8 +- .../SentenceDetectorDLModel.html | 10 +- .../sentence_detector_dl/index.html | 10 +- .../annotators/seq2seq/BartTransformer$.html | 968 +++++ .../annotators/seq2seq/BartTransformer.html | 3280 ++++++++++++++++ .../annotators/seq2seq/GPT2Transformer$.html | 20 +- .../annotators/seq2seq/GPT2Transformer.html | 22 +- .../seq2seq/MarianTransformer$.html | 20 +- .../annotators/seq2seq/MarianTransformer.html | 22 +- .../seq2seq/ReadBartTransformerDLModel.html | 789 ++++ .../seq2seq/ReadGPT2TransformerDLModel.html | 20 +- .../seq2seq/ReadMarianMTDLModel.html | 20 +- .../seq2seq/ReadT5TransformerDLModel.html | 20 +- ...eadablePretrainedBartTransformerModel.html | 849 +++++ ...eadablePretrainedGPT2TransformerModel.html | 20 +- .../ReadablePretrainedMarianMTModel.html | 20 +- .../ReadablePretrainedT5TransformerModel.html | 20 +- .../annotators/seq2seq/T5Transformer$.html | 20 +- .../nlp/annotators/seq2seq/T5Transformer.html | 22 +- .../nlp/annotators/seq2seq/index.html | 157 +- .../spell/context/CandidateStrategy$.html | 8 +- ...ntextSpellCheckerApproach$ArrayHelper.html | 8 +- .../context/ContextSpellCheckerApproach.html | 8 +- .../context/ContextSpellCheckerModel$.html | 8 +- .../ContextSpellCheckerModel$StringTools.html | 10 +- .../context/ContextSpellCheckerModel.html | 10 +- .../spell/context/HasTransducerFeatures.html | 8 +- .../spell/context/LangModelSentence.html | 8 +- .../ReadablePretrainedContextSpell.html | 8 +- .../context/ReadsLanguageModelGraph.html | 8 +- .../spell/context/WeightedLevenshtein.html | 8 +- .../nlp/annotators/spell/context/index.html | 10 +- .../spell/context/parser/AgeToken.html | 8 +- .../spell/context/parser/DateToken.html | 8 +- .../context/parser/GenericRegexParser.html | 8 +- .../context/parser/GenericVocabParser.html | 8 +- .../spell/context/parser/LocationClass.html | 8 +- .../spell/context/parser/MainVocab.html | 8 +- .../spell/context/parser/MedicationClass.html | 8 +- .../spell/context/parser/NamesClass.html | 8 +- .../spell/context/parser/NumberToken.html | 8 +- .../spell/context/parser/RegexParser.html | 8 +- .../context/parser/SerializableClass.html | 8 +- .../context/parser/SpecialClassParser.html | 8 +- .../context/parser/TransducerSeqFeature.html | 8 +- .../spell/context/parser/UnitToken.html | 8 +- .../spell/context/parser/VocabParser.html | 8 +- .../spell/context/parser/index.html | 8 +- .../nlp/annotators/spell/index.html | 8 +- .../spell/norvig/NorvigSweetingApproach$.html | 8 +- .../spell/norvig/NorvigSweetingApproach.html | 8 +- .../spell/norvig/NorvigSweetingModel$.html | 8 +- .../spell/norvig/NorvigSweetingModel.html | 10 +- .../spell/norvig/NorvigSweetingParams.html | 8 +- .../norvig/ReadablePretrainedNorvig.html | 8 +- .../nlp/annotators/spell/norvig/index.html | 10 +- .../ReadablePretrainedSymmetric.html | 8 +- .../symmetric/SymmetricDeleteApproach$.html | 8 +- .../symmetric/SymmetricDeleteApproach.html | 8 +- .../symmetric/SymmetricDeleteModel$.html | 8 +- .../SymmetricDeleteModel$SuggestedWord.html | 10 +- .../spell/symmetric/SymmetricDeleteModel.html | 10 +- .../symmetric/SymmetricDeleteParams.html | 8 +- .../nlp/annotators/spell/symmetric/index.html | 10 +- .../nlp/annotators/spell/util/Utilities$.html | 8 +- .../nlp/annotators/spell/util/index.html | 8 +- .../nlp/annotators/tapas/TapasCellDate$.html | 8 +- .../nlp/annotators/tapas/TapasCellDate.html | 8 +- .../nlp/annotators/tapas/TapasCellValue$.html | 8 +- .../nlp/annotators/tapas/TapasCellValue.html | 8 +- .../nlp/annotators/tapas/TapasEncoder.html | 8 +- .../nlp/annotators/tapas/TapasInputData.html | 8 +- .../tapas/TapasNumericRelation$.html | 8 +- .../tapas/TapasNumericValueSpan$.html | 8 +- .../tapas/TapasNumericValueSpan.html | 8 +- .../nlp/annotators/tapas/index.html | 8 +- .../tokenizer/bpe/BartTokenizer.html | 1052 +++++ .../tokenizer/bpe/BpeTokenizer$.html | 12 +- .../tokenizer/bpe/Gpt2Tokenizer.html | 14 +- .../tokenizer/bpe/RobertaTokenizer.html | 12 +- .../tokenizer/bpe/SpecialToken.html | 12 +- .../nlp/annotators/tokenizer/bpe/index.html | 30 +- .../nlp/annotators/tokenizer/index.html | 8 +- .../ws/ReadablePretrainedWordSegmenter.html | 8 +- .../nlp/annotators/ws/TagsType$.html | 8 +- .../annotators/ws/WordSegmenterApproach$.html | 8 +- .../annotators/ws/WordSegmenterApproach.html | 8 +- .../annotators/ws/WordSegmenterModel$.html | 8 +- .../nlp/annotators/ws/WordSegmenterModel.html | 10 +- .../johnsnowlabs/nlp/annotators/ws/index.html | 10 +- .../nlp/embeddings/AlbertEmbeddings$.html | 8 +- .../nlp/embeddings/AlbertEmbeddings.html | 12 +- .../nlp/embeddings/BertEmbeddings$.html | 8 +- .../nlp/embeddings/BertEmbeddings.html | 14 +- .../embeddings/BertSentenceEmbeddings$.html | 8 +- .../embeddings/BertSentenceEmbeddings.html | 14 +- .../nlp/embeddings/CamemBertEmbeddings$.html | 8 +- .../nlp/embeddings/CamemBertEmbeddings.html | 14 +- .../nlp/embeddings/ChunkEmbeddings$.html | 8 +- .../nlp/embeddings/ChunkEmbeddings.html | 8 +- .../nlp/embeddings/DeBertaEmbeddings$.html | 8 +- .../nlp/embeddings/DeBertaEmbeddings.html | 12 +- .../nlp/embeddings/DistilBertEmbeddings$.html | 8 +- .../nlp/embeddings/DistilBertEmbeddings.html | 15 +- .../nlp/embeddings/Doc2VecApproach$.html | 8 +- .../nlp/embeddings/Doc2VecApproach.html | 8 +- .../nlp/embeddings/Doc2VecModel$.html | 8 +- .../nlp/embeddings/Doc2VecModel.html | 11 +- .../nlp/embeddings/ElmoEmbeddings$.html | 8 +- .../nlp/embeddings/ElmoEmbeddings.html | 12 +- .../EmbeddingsCoverage$CoverageResult.html | 8 +- .../nlp/embeddings/EmbeddingsCoverage.html | 8 +- .../embeddings/HasEmbeddingsProperties.html | 8 +- .../nlp/embeddings/LongformerEmbeddings$.html | 8 +- .../nlp/embeddings/LongformerEmbeddings.html | 15 +- .../PoolingStrategy$$AnnotatorType$.html | 8 +- .../nlp/embeddings/PoolingStrategy$.html | 8 +- .../nlp/embeddings/ReadAlbertDLModel.html | 8 +- .../nlp/embeddings/ReadBertDLModel.html | 8 +- .../embeddings/ReadBertSentenceDLModel.html | 8 +- .../nlp/embeddings/ReadCamemBertDLModel.html | 8 +- .../nlp/embeddings/ReadDeBertaDLModel.html | 8 +- .../nlp/embeddings/ReadDistilBertDLModel.html | 8 +- .../nlp/embeddings/ReadElmoDLModel.html | 8 +- .../nlp/embeddings/ReadLongformerDLModel.html | 8 +- .../nlp/embeddings/ReadRobertaDLModel.html | 8 +- .../ReadRobertaSentenceDLModel.html | 8 +- .../nlp/embeddings/ReadUSEDLModel.html | 8 +- .../nlp/embeddings/ReadXlmRobertaDLModel.html | 8 +- .../ReadXlmRobertaSentenceDLModel.html | 8 +- .../nlp/embeddings/ReadXlnetDLModel.html | 8 +- .../ReadablePretrainedAlbertModel.html | 8 +- .../ReadablePretrainedBertModel.html | 8 +- .../ReadablePretrainedBertSentenceModel.html | 8 +- .../ReadablePretrainedCamemBertModel.html | 8 +- .../ReadablePretrainedDeBertaModel.html | 8 +- .../ReadablePretrainedDistilBertModel.html | 8 +- .../embeddings/ReadablePretrainedDoc2Vec.html | 8 +- .../ReadablePretrainedElmoModel.html | 8 +- .../ReadablePretrainedLongformerModel.html | 8 +- .../ReadablePretrainedRobertaModel.html | 8 +- ...eadablePretrainedRobertaSentenceModel.html | 8 +- .../ReadablePretrainedUSEModel.html | 8 +- .../ReadablePretrainedWord2Vec.html | 8 +- .../ReadablePretrainedWordEmbeddings.html | 8 +- .../ReadablePretrainedXlmRobertaModel.html | 8 +- ...ablePretrainedXlmRobertaSentenceModel.html | 8 +- .../ReadablePretrainedXlnetModel.html | 8 +- .../nlp/embeddings/ReadsFromBytes.html | 8 +- .../nlp/embeddings/RoBertaEmbeddings$.html | 8 +- .../nlp/embeddings/RoBertaEmbeddings.html | 14 +- .../RoBertaSentenceEmbeddings$.html | 8 +- .../embeddings/RoBertaSentenceEmbeddings.html | 14 +- .../nlp/embeddings/SentenceEmbeddings$.html | 8 +- .../nlp/embeddings/SentenceEmbeddings.html | 8 +- .../embeddings/UniversalSentenceEncoder$.html | 8 +- .../embeddings/UniversalSentenceEncoder.html | 14 +- .../nlp/embeddings/Word2VecApproach$.html | 8 +- .../nlp/embeddings/Word2VecApproach.html | 8 +- .../nlp/embeddings/Word2VecModel$.html | 8 +- .../nlp/embeddings/Word2VecModel.html | 11 +- .../nlp/embeddings/WordEmbeddings$.html | 8 +- .../nlp/embeddings/WordEmbeddings.html | 12 +- .../WordEmbeddingsBinaryIndexer$.html | 8 +- .../nlp/embeddings/WordEmbeddingsModel$.html | 8 +- .../nlp/embeddings/WordEmbeddingsModel.html | 46 +- .../nlp/embeddings/WordEmbeddingsReader.html | 8 +- .../WordEmbeddingsTextIndexer$.html | 8 +- .../nlp/embeddings/WordEmbeddingsWriter.html | 8 +- .../nlp/embeddings/XlmRoBertaEmbeddings$.html | 8 +- .../nlp/embeddings/XlmRoBertaEmbeddings.html | 14 +- .../XlmRoBertaSentenceEmbeddings$.html | 8 +- .../XlmRoBertaSentenceEmbeddings.html | 14 +- .../nlp/embeddings/XlnetEmbeddings$.html | 8 +- .../nlp/embeddings/XlnetEmbeddings.html | 12 +- .../johnsnowlabs/nlp/embeddings/index.html | 102 +- .../nlp/functions$$EachAnnotations.html | 8 +- .../nlp/functions$$ExplodeAnnotations.html | 8 +- .../nlp/functions$$FilterAnnotations.html | 8 +- .../nlp/functions$$MapAnnotations.html | 8 +- docs/api/com/johnsnowlabs/nlp/functions$.html | 12 +- docs/api/com/johnsnowlabs/nlp/index.html | 28 +- .../nlp/pretrained/PretrainedPipeline$.html | 8 +- .../nlp/pretrained/PretrainedPipeline.html | 15 +- .../pretrained/PythonResourceDownloader$.html | 8 +- .../nlp/pretrained/RepositoryMetadata.html | 8 +- .../nlp/pretrained/ResourceDownloader$.html | 16 +- .../nlp/pretrained/ResourceDownloader.html | 8 +- .../nlp/pretrained/ResourceMetadata$.html | 8 +- .../nlp/pretrained/ResourceMetadata.html | 8 +- .../nlp/pretrained/ResourceRequest.html | 8 +- .../nlp/pretrained/ResourceType$.html | 8 +- .../nlp/pretrained/S3ResourceDownloader.html | 8 +- .../johnsnowlabs/nlp/pretrained/index.html | 15 +- .../com/johnsnowlabs/nlp/recursive/index.html | 8 +- .../nlp/recursive/package$$Recursive.html | 8 +- .../recursive/package$$RecursiveModel.html | 8 +- .../nlp/serialization/ArrayFeature.html | 8 +- .../nlp/serialization/Feature.html | 8 +- .../nlp/serialization/MapFeature.html | 8 +- .../SerializedExternalResource.html | 8 +- .../nlp/serialization/SetFeature.html | 8 +- .../nlp/serialization/StructFeature.html | 8 +- .../nlp/serialization/TransducerFeature.html | 8 +- .../johnsnowlabs/nlp/serialization/index.html | 8 +- .../com/johnsnowlabs/nlp/training/CoNLL.html | 8 +- .../nlp/training/CoNLL2003NerReader.html | 8 +- .../nlp/training/CoNLLDocument.html | 8 +- .../CoNLLHelper$$CoNLLSentenceCols.html | 8 +- .../training/CoNLLHelper$$CoNLLTokenCols.html | 8 +- .../nlp/training/CoNLLHelper$.html | 8 +- .../com/johnsnowlabs/nlp/training/CoNLLU.html | 8 +- .../nlp/training/CoNLLUCols$.html | 8 +- .../nlp/training/CoNLLUDocument.html | 8 +- .../com/johnsnowlabs/nlp/training/POS.html | 8 +- .../johnsnowlabs/nlp/training/PubTator.html | 8 +- .../nlp/training/SpacyToAnnotation.html | 8 +- .../com/johnsnowlabs/nlp/training/index.html | 8 +- .../johnsnowlabs/nlp/util/FinisherUtil$.html | 8 +- .../johnsnowlabs/nlp/util/GraphBuilder.html | 8 +- .../nlp/util/LfuCache$CachedItem.html | 8 +- .../nlp/util/LfuCache$DoubleLinked.html | 8 +- .../nlp/util/LfuCache$FrequencyList.html | 8 +- .../com/johnsnowlabs/nlp/util/LfuCache.html | 8 +- .../nlp/util/LruMap$KeyPriority.html | 8 +- .../nlp/util/LruMap$KeyPriorityOrdering$.html | 8 +- .../api/com/johnsnowlabs/nlp/util/LruMap.html | 8 +- .../nlp/util/SparkNlpConfigKeys$.html | 8 +- docs/api/com/johnsnowlabs/nlp/util/index.html | 8 +- .../nlp/util/io/ExternalResource$.html | 8 +- .../nlp/util/io/ExternalResource.html | 8 +- .../nlp/util/io/OutputHelper$.html | 8 +- .../com/johnsnowlabs/nlp/util/io/ReadAs$.html | 8 +- .../util/io/ResourceHelper$$SourceStream.html | 8 +- .../nlp/util/io/ResourceHelper$.html | 8 +- .../com/johnsnowlabs/nlp/util/io/index.html | 8 +- .../nlp/util/regex/MatchStrategy$.html | 8 +- .../nlp/util/regex/RegexRule.html | 8 +- .../util/regex/RuleFactory$$RuleMatch.html | 8 +- .../nlp/util/regex/RuleFactory$.html | 8 +- .../nlp/util/regex/RuleFactory.html | 8 +- .../nlp/util/regex/TransformStrategy$.html | 8 +- .../johnsnowlabs/nlp/util/regex/index.html | 8 +- .../com/johnsnowlabs/storage/BytesKey.html | 8 +- .../com/johnsnowlabs/storage/Database$.html | 32 +- .../com/johnsnowlabs/storage/Database.html | 8 +- .../johnsnowlabs/storage/HasConnection.html | 8 +- .../com/johnsnowlabs/storage/HasStorage.html | 8 +- .../johnsnowlabs/storage/HasStorageModel.html | 8 +- .../storage/HasStorageOptions.html | 8 +- .../storage/HasStorageReader.html | 8 +- .../johnsnowlabs/storage/HasStorageRef$.html | 8 +- .../johnsnowlabs/storage/HasStorageRef.html | 8 +- .../storage/RocksDBConnection$.html | 8 +- .../storage/RocksDBConnection.html | 8 +- .../storage/StorageBatchWriter.html | 8 +- .../johnsnowlabs/storage/StorageFormat.html | 8 +- .../johnsnowlabs/storage/StorageHelper$.html | 8 +- .../johnsnowlabs/storage/StorageLocator$.html | 8 +- .../johnsnowlabs/storage/StorageLocator.html | 8 +- .../storage/StorageReadWriter.html | 8 +- .../johnsnowlabs/storage/StorageReadable.html | 8 +- .../johnsnowlabs/storage/StorageReader.html | 8 +- .../johnsnowlabs/storage/StorageWriter.html | 8 +- docs/api/com/johnsnowlabs/storage/index.html | 8 +- .../api/com/johnsnowlabs/util/Benchmark$.html | 8 +- docs/api/com/johnsnowlabs/util/Build$.html | 8 +- .../johnsnowlabs/util/CoNLLGenerator$.html | 8 +- .../com/johnsnowlabs/util/ConfigHelper$.html | 8 +- .../com/johnsnowlabs/util/ConfigLoader$.html | 8 +- .../com/johnsnowlabs/util/FileHelper$.html | 8 +- .../com/johnsnowlabs/util/JsonParser$.html | 8 +- .../johnsnowlabs/util/PipelineModels$.html | 8 +- .../johnsnowlabs/util/TrainingHelper$.html | 8 +- docs/api/com/johnsnowlabs/util/Version$.html | 8 +- docs/api/com/johnsnowlabs/util/Version.html | 8 +- .../johnsnowlabs/util/ZipArchiveUtil$.html | 8 +- docs/api/com/johnsnowlabs/util/index.html | 8 +- .../util/spark/LongMapAccumulator.html | 8 +- .../util/spark/MapAccumulator.html | 8 +- .../johnsnowlabs/util/spark/SparkUtil$.html | 8 +- .../com/johnsnowlabs/util/spark/index.html | 8 +- docs/api/index.html | 8 +- docs/api/index.js | 2 +- docs/api/python/.buildinfo | 2 +- docs/api/python/genindex.html | 167 +- docs/api/python/getting_started/index.html | 64 +- docs/api/python/index.html | 36 +- docs/api/python/modules/index.html | 37 +- docs/api/python/modules/sparknlp.html | 43 +- .../python/modules/sparknlp/annotation.html | 34 +- .../modules/sparknlp/annotation_audio.html | 34 +- .../modules/sparknlp/annotation_image.html | 34 +- .../annotator/audio/hubert_for_ctc.html | 36 +- .../annotator/audio/wav2vec2_for_ctc.html | 62 +- .../sparknlp/annotator/chunk2_doc.html | 34 +- .../modules/sparknlp/annotator/chunker.html | 34 +- .../albert_for_question_answering.html | 36 +- .../albert_for_sequence_classification.html | 38 +- .../albert_for_token_classification.html | 36 +- .../bert_for_question_answering.html | 36 +- .../bert_for_sequence_classification.html | 36 +- .../bert_for_token_classification.html | 36 +- .../bert_for_zero_shot_classification.html | 638 ++++ .../camembert_for_question_answering.html | 36 +- ...camembert_for_sequence_classification.html | 36 +- .../camembert_for_token_classification.html | 36 +- .../classifier_dl/classifier_dl.html | 36 +- .../deberta_for_question_answering.html | 36 +- .../deberta_for_sequence_classification.html | 38 +- .../deberta_for_token_classification.html | 36 +- .../distil_bert_for_question_answering.html | 36 +- ...stil_bert_for_sequence_classification.html | 38 +- .../distil_bert_for_token_classification.html | 36 +- .../longformer_for_question_answering.html | 36 +- ...ongformer_for_sequence_classification.html | 38 +- .../longformer_for_token_classification.html | 36 +- .../classifier_dl/multi_classifier_dl.html | 36 +- .../roberta_for_question_answering.html | 36 +- .../roberta_for_sequence_classification.html | 38 +- .../roberta_for_token_classification.html | 36 +- .../annotator/classifier_dl/sentiment_dl.html | 36 +- .../tapas_for_question_answering.html | 36 +- .../xlm_roberta_for_question_answering.html | 36 +- ...m_roberta_for_sequence_classification.html | 38 +- .../xlm_roberta_for_token_classification.html | 36 +- .../xlnet_for_sequence_classification.html | 38 +- .../xlnet_for_token_classification.html | 36 +- .../annotator/coref/spanbert_coref.html | 36 +- .../cv/convnext_for_image_classification.html | 685 ++++ .../cv/swin_for_image_classification.html | 57 +- .../cv/vit_for_image_classification.html | 53 +- .../sparknlp/annotator/date2_chunk.html | 62 +- .../dependency/dependency_parser.html | 36 +- .../dependency/typed_dependency_parser.html | 36 +- .../annotator/document_normalizer.html | 34 +- .../embeddings/albert_embeddings.html | 34 +- .../annotator/embeddings/bert_embeddings.html | 36 +- .../embeddings/bert_sentence_embeddings.html | 36 +- .../embeddings/camembert_embeddings.html | 36 +- .../embeddings/chunk_embeddings.html | 34 +- .../embeddings/deberta_embeddings.html | 34 +- .../embeddings/distil_bert_embeddings.html | 36 +- .../annotator/embeddings/doc2vec.html | 36 +- .../annotator/embeddings/elmo_embeddings.html | 36 +- .../embeddings/longformer_embeddings.html | 36 +- .../embeddings/roberta_embeddings.html | 36 +- .../roberta_sentence_embeddings.html | 36 +- .../embeddings/sentence_embeddings.html | 34 +- .../universal_sentence_encoder.html | 36 +- .../annotator/embeddings/word2vec.html | 36 +- .../annotator/embeddings/word_embeddings.html | 36 +- .../embeddings/xlm_roberta_embeddings.html | 36 +- .../xlm_roberta_sentence_embeddings.html | 36 +- .../embeddings/xlnet_embeddings.html | 34 +- .../sparknlp/annotator/er/entity_ruler.html | 57 +- .../sparknlp/annotator/graph_extraction.html | 34 +- .../yake_keyword_extraction.html | 34 +- .../annotator/ld_dl/language_detector_dl.html | 36 +- .../sparknlp/annotator/lemmatizer.html | 38 +- .../annotator/matcher/big_text_matcher.html | 34 +- .../annotator/matcher/date_matcher.html | 36 +- .../annotator/matcher/multi_date_matcher.html | 34 +- .../annotator/matcher/regex_matcher.html | 36 +- .../annotator/matcher/text_matcher.html | 34 +- .../sparknlp/annotator/n_gram_generator.html | 34 +- .../sparknlp/annotator/ner/ner_approach.html | 34 +- .../sparknlp/annotator/ner/ner_converter.html | 52 +- .../sparknlp/annotator/ner/ner_crf.html | 36 +- .../sparknlp/annotator/ner/ner_dl.html | 38 +- .../annotator/ner/ner_overwriter.html | 34 +- .../annotator/ner/zero_shot_ner_model.html | 34 +- .../sparknlp/annotator/normalizer.html | 34 +- .../annotator/param/classifier_encoder.html | 34 +- .../annotator/param/evaluation_dl_params.html | 34 +- .../sparknlp/annotator/pos/perceptron.html | 38 +- .../annotator/sentence/sentence_detector.html | 34 +- .../sentence/sentence_detector_dl.html | 36 +- .../sentiment/sentiment_detector.html | 34 +- .../annotator/sentiment/vivekn_sentiment.html | 34 +- .../annotator/seq2seq/bart_transformer.html | 820 ++++ .../annotator/seq2seq/gpt2_transformer.html | 36 +- .../annotator/seq2seq/marian_transformer.html | 36 +- .../annotator/seq2seq/t5_transformer.html | 36 +- .../spell_check/context_spell_checker.html | 42 +- .../spell_check/norvig_sweeting.html | 36 +- .../spell_check/symmetric_delete.html | 36 +- .../modules/sparknlp/annotator/stemmer.html | 34 +- .../annotator/stop_words_cleaner.html | 36 +- .../annotator/tf_ner_dl_graph_builder.html | 34 +- .../annotator/token/chunk_tokenizer.html | 34 +- .../annotator/token/recursive_tokenizer.html | 34 +- .../annotator/token/regex_tokenizer.html | 34 +- .../sparknlp/annotator/token/tokenizer.html | 34 +- .../sparknlp/annotator/ws/word_segmenter.html | 36 +- .../sparknlp/base/audio_assembler.html | 34 +- .../modules/sparknlp/base/doc2_chunk.html | 34 +- .../sparknlp/base/document_assembler.html | 34 +- .../sparknlp/base/embeddings_finisher.html | 34 +- .../modules/sparknlp/base/finisher.html | 34 +- .../modules/sparknlp/base/graph_finisher.html | 34 +- .../sparknlp/base/has_recursive_fit.html | 34 +- .../base/has_recursive_transform.html | 34 +- .../sparknlp/base/image_assembler.html | 34 +- .../modules/sparknlp/base/light_pipeline.html | 34 +- .../base/multi_document_assembler.html | 34 +- .../sparknlp/base/recursive_pipeline.html | 34 +- .../sparknlp/base/table_assembler.html | 34 +- .../modules/sparknlp/base/token2_chunk.html | 34 +- .../sparknlp/base/token_assembler.html | 34 +- .../sparknlp/common/annotator_approach.html | 34 +- .../sparknlp/common/annotator_model.html | 34 +- .../sparknlp/common/annotator_properties.html | 34 +- .../modules/sparknlp/common/properties.html | 88 +- .../modules/sparknlp/common/read_as.html | 34 +- .../common/recursive_annotator_approach.html | 34 +- .../python/modules/sparknlp/common/utils.html | 34 +- .../python/modules/sparknlp/functions.html | 34 +- .../sparknlp/internal/annotator_java_ml.html | 34 +- .../internal/annotator_transformer.html | 34 +- .../internal/extended_java_wrapper.html | 34 +- .../internal/params_getters_setters.html | 34 +- .../modules/sparknlp/internal/recursive.html | 34 +- .../modules/sparknlp/logging/comet.html | 34 +- .../pretrained/pretrained_pipeline.html | 36 +- .../pretrained/resource_downloader.html | 34 +- .../modules/sparknlp/training/conll.html | 34 +- .../modules/sparknlp/training/conllu.html | 34 +- .../python/modules/sparknlp/training/pos.html | 34 +- .../modules/sparknlp/training/pub_tator.html | 34 +- .../training/spacy_to_annotation.html | 34 +- docs/api/python/objects.inv | Bin 11876 -> 12170 bytes docs/api/python/py-modindex.html | 49 +- .../sparknlp/annotation/index.html | 42 +- .../sparknlp/annotation_audio/index.html | 38 +- .../sparknlp/annotation_image/index.html | 38 +- .../annotator/audio/hubert_for_ctc/index.html | 42 +- .../sparknlp/annotator/audio/index.html | 34 +- .../audio/wav2vec2_for_ctc/index.html | 42 +- .../sparknlp/annotator/chunk2_doc/index.html | 37 +- .../sparknlp/annotator/chunker/index.html | 40 +- .../albert_for_question_answering/index.html | 43 +- .../index.html | 47 +- .../index.html | 46 +- .../bert_for_question_answering/index.html | 43 +- .../index.html | 47 +- .../bert_for_token_classification/index.html | 46 +- .../index.html | 796 ++++ .../index.html | 43 +- .../index.html | 47 +- .../index.html | 46 +- .../classifier_dl/classifier_dl/index.html | 47 +- .../deberta_for_question_answering/index.html | 43 +- .../index.html | 47 +- .../index.html | 46 +- .../index.html | 43 +- .../index.html | 47 +- .../index.html | 46 +- .../annotator/classifier_dl/index.html | 37 +- .../index.html | 43 +- .../index.html | 47 +- .../index.html | 46 +- .../multi_classifier_dl/index.html | 49 +- .../roberta_for_question_answering/index.html | 43 +- .../index.html | 47 +- .../index.html | 46 +- .../classifier_dl/sentiment_dl/index.html | 51 +- .../tapas_for_question_answering/index.html | 41 +- .../index.html | 43 +- .../index.html | 47 +- .../index.html | 46 +- .../index.html | 47 +- .../xlnet_for_token_classification/index.html | 46 +- .../sparknlp/annotator/coref/index.html | 34 +- .../annotator/coref/spanbert_coref/index.html | 45 +- .../index.html | 692 ++++ .../sparknlp/annotator/cv/index.html | 35 +- .../swin_for_image_classification/index.html | 65 +- .../vit_for_image_classification/index.html | 59 +- .../sparknlp/annotator/date2_chunk/index.html | 118 +- .../dependency/dependency_parser/index.html | 48 +- .../sparknlp/annotator/dependency/index.html | 36 +- .../typed_dependency_parser/index.html | 48 +- .../annotator/document_normalizer/index.html | 45 +- .../embeddings/albert_embeddings/index.html | 43 +- .../embeddings/bert_embeddings/index.html | 45 +- .../bert_sentence_embeddings/index.html | 46 +- .../camembert_embeddings/index.html | 45 +- .../embeddings/chunk_embeddings/index.html | 41 +- .../embeddings/deberta_embeddings/index.html | 43 +- .../distil_bert_embeddings/index.html | 45 +- .../annotator/embeddings/doc2vec/index.html | 54 +- .../embeddings/elmo_embeddings/index.html | 46 +- .../sparknlp/annotator/embeddings/index.html | 36 +- .../longformer_embeddings/index.html | 45 +- .../embeddings/roberta_embeddings/index.html | 45 +- .../roberta_sentence_embeddings/index.html | 45 +- .../embeddings/sentence_embeddings/index.html | 40 +- .../universal_sentence_encoder/index.html | 45 +- .../annotator/embeddings/word2vec/index.html | 54 +- .../embeddings/word_embeddings/index.html | 51 +- .../xlm_roberta_embeddings/index.html | 45 +- .../index.html | 45 +- .../embeddings/xlnet_embeddings/index.html | 43 +- .../annotator/er/entity_ruler/index.html | 67 +- .../sparknlp/annotator/er/index.html | 36 +- .../annotator/graph_extraction/index.html | 52 +- .../autosummary/sparknlp/annotator/index.html | 38 +- .../annotator/keyword_extraction/index.html | 36 +- .../yake_keyword_extraction/index.html | 47 +- .../sparknlp/annotator/ld_dl/index.html | 36 +- .../ld_dl/language_detector_dl/index.html | 46 +- .../sparknlp/annotator/lemmatizer/index.html | 50 +- .../matcher/big_text_matcher/index.html | 50 +- .../annotator/matcher/date_matcher/index.html | 49 +- .../sparknlp/annotator/matcher/index.html | 36 +- .../matcher/multi_date_matcher/index.html | 37 +- .../matcher/regex_matcher/index.html | 46 +- .../annotator/matcher/text_matcher/index.html | 51 +- .../annotator/n_gram_generator/index.html | 42 +- .../sparknlp/annotator/ner/index.html | 36 +- .../annotator/ner/ner_approach/index.html | 45 +- .../annotator/ner/ner_converter/index.html | 56 +- .../sparknlp/annotator/ner/ner_crf/index.html | 53 +- .../sparknlp/annotator/ner/ner_dl/index.html | 62 +- .../annotator/ner/ner_overwriter/index.html | 42 +- .../ner/zero_shot_ner_model/index.html | 42 +- .../sparknlp/annotator/normalizer/index.html | 45 +- .../param/classifier_encoder/index.html | 43 +- .../param/evaluation_dl_params/index.html | 43 +- .../sparknlp/annotator/param/index.html | 36 +- .../sparknlp/annotator/pos/index.html | 36 +- .../annotator/pos/perceptron/index.html | 50 +- .../sparknlp/annotator/sentence/index.html | 36 +- .../sentence/sentence_detector/index.html | 49 +- .../sentence/sentence_detector_dl/index.html | 59 +- .../sparknlp/annotator/sentiment/index.html | 36 +- .../sentiment/sentiment_detector/index.html | 41 +- .../sentiment/vivekn_sentiment/index.html | 45 +- .../seq2seq/bart_transformer/index.html | 983 +++++ .../seq2seq/gpt2_transformer/index.html | 54 +- .../sparknlp/annotator/seq2seq/index.html | 37 +- .../seq2seq/marian_transformer/index.html | 48 +- .../seq2seq/t5_transformer/index.html | 54 +- .../context_spell_checker/index.html | 84 +- .../sparknlp/annotator/spell_check/index.html | 36 +- .../spell_check/norvig_sweeting/index.html | 50 +- .../spell_check/symmetric_delete/index.html | 49 +- .../sparknlp/annotator/stemmer/index.html | 37 +- .../annotator/stop_words_cleaner/index.html | 46 +- .../tf_ner_dl_graph_builder/index.html | 48 +- .../token/chunk_tokenizer/index.html | 38 +- .../sparknlp/annotator/token/index.html | 36 +- .../token/recursive_tokenizer/index.html | 44 +- .../token/regex_tokenizer/index.html | 46 +- .../annotator/token/tokenizer/index.html | 69 +- .../sparknlp/annotator/ws/index.html | 36 +- .../annotator/ws/word_segmenter/index.html | 58 +- .../sparknlp/base/audio_assembler/index.html | 40 +- .../sparknlp/base/doc2_chunk/index.html | 43 +- .../base/document_assembler/index.html | 43 +- .../base/embeddings_finisher/index.html | 43 +- .../sparknlp/base/finisher/index.html | 47 +- .../sparknlp/base/graph_finisher/index.html | 41 +- .../base/has_recursive_fit/index.html | 35 +- .../base/has_recursive_transform/index.html | 35 +- .../sparknlp/base/image_assembler/index.html | 40 +- .../autosummary/sparknlp/base/index.html | 34 +- .../sparknlp/base/light_pipeline/index.html | 43 +- .../base/multi_document_assembler/index.html | 43 +- .../base/recursive_pipeline/index.html | 36 +- .../sparknlp/base/table_assembler/index.html | 40 +- .../sparknlp/base/token2_chunk/index.html | 35 +- .../sparknlp/base/token_assembler/index.html | 38 +- .../common/annotator_approach/index.html | 35 +- .../common/annotator_model/index.html | 35 +- .../common/annotator_properties/index.html | 43 +- .../sparknlp/common/annotator_type/index.html | 34 +- .../common/coverage_result/index.html | 34 +- .../autosummary/sparknlp/common/index.html | 34 +- .../sparknlp/common/properties/index.html | 39 +- .../sparknlp/common/read_as/index.html | 35 +- .../recursive_annotator_approach/index.html | 35 +- .../sparknlp/common/storage/index.html | 34 +- .../sparknlp/common/utils/index.html | 35 +- .../autosummary/sparknlp/functions/index.html | 41 +- .../reference/autosummary/sparknlp/index.html | 39 +- .../internal/annotator_java_ml/index.html | 39 +- .../internal/annotator_transformer/index.html | 35 +- .../internal/extended_java_wrapper/index.html | 38 +- .../autosummary/sparknlp/internal/index.html | 34 +- .../params_getters_setters/index.html | 39 +- .../sparknlp/internal/recursive/index.html | 39 +- .../sparknlp/logging/comet/index.html | 46 +- .../autosummary/sparknlp/logging/index.html | 34 +- .../sparknlp/pretrained/index.html | 34 +- .../pretrained/pretrained_pipeline/index.html | 43 +- .../pretrained/resource_downloader/index.html | 45 +- .../sparknlp/pretrained/utils/index.html | 34 +- .../sparknlp/training/conll/index.html | 38 +- .../sparknlp/training/conllu/index.html | 38 +- .../autosummary/sparknlp/training/index.html | 34 +- .../sparknlp/training/pos/index.html | 38 +- .../sparknlp/training/pub_tator/index.html | 38 +- .../training/spacy_to_annotation/index.html | 35 +- .../sparknlp/training/tfgraphs/index.html | 34 +- .../sparknlp/upload_to_hub/index.html | 34 +- .../autosummary/sparknlp/util/index.html | 34 +- docs/api/python/reference/index.html | 34 +- docs/api/python/search.html | 34 +- docs/api/python/searchindex.js | 2 +- .../python/static/documentation_options.js | 2 +- docs/api/python/static/scripts/bootstrap.js | 10 +- .../static/scripts/bootstrap.js.LICENSE.txt | 5 + .../python/static/scripts/bootstrap.js.map | 1 + .../static/scripts/pydata-sphinx-theme.js | 3 +- .../static/scripts/pydata-sphinx-theme.js.map | 1 + docs/api/python/static/styles/bootstrap.css | 10 +- .../static/styles/pydata-sphinx-theme.css | 2 +- .../vendor/fontawesome/6.1.2/css/all.min.css | 3 +- docs/api/python/static/webpack-macros.html | 16 +- docs/api/python/third_party/Comet.html | 34 +- docs/api/python/third_party/MLflow.html | 34 +- docs/api/python/third_party/index.html | 34 +- docs/api/python/user_guide/annotation.html | 34 +- docs/api/python/user_guide/annotators.html | 36 +- .../python/user_guide/custom_pipelines.html | 34 +- docs/api/python/user_guide/helpers.html | 34 +- docs/api/python/user_guide/index.html | 36 +- .../python/user_guide/light_pipelines.html | 34 +- .../user_guide/pretrained_pipelines.html | 36 +- docs/api/python/user_guide/training.html | 34 +- .../nlp/annotators/Lemmatizer.scala | 4 +- .../nlp/annotators/audio/HubertForCTC.scala | 3 +- .../nlp/annotators/audio/Wav2Vec2ForCTC.scala | 3 +- .../dl/AlbertForQuestionAnswering.scala | 4 +- .../dl/AlbertForSequenceClassification.scala | 4 +- .../dl/AlbertForTokenClassification.scala | 4 +- .../dl/BertForQuestionAnswering.scala | 4 +- .../dl/BertForSequenceClassification.scala | 4 +- .../dl/BertForTokenClassification.scala | 4 +- .../dl/BertForZeroShotClassification.scala | 4 +- .../dl/CamemBertForQuestionAnswering.scala | 4 +- .../CamemBertForSequenceClassification.scala | 4 +- .../dl/CamemBertForTokenClassification.scala | 4 +- .../dl/DeBertaForQuestionAnswering.scala | 4 +- .../dl/DeBertaForSequenceClassification.scala | 4 +- .../dl/DeBertaForTokenClassification.scala | 4 +- .../dl/DistilBertForQuestionAnswering.scala | 4 +- .../DistilBertForSequenceClassification.scala | 4 +- .../dl/DistilBertForTokenClassification.scala | 4 +- .../dl/LongformerForQuestionAnswering.scala | 4 +- .../LongformerForSequenceClassification.scala | 4 +- .../dl/LongformerForTokenClassification.scala | 4 +- .../dl/RoBertaForQuestionAnswering.scala | 4 +- .../dl/RoBertaForSequenceClassification.scala | 4 +- .../dl/RoBertaForTokenClassification.scala | 4 +- .../dl/TapasForQuestionAnswering.scala | 4 +- .../dl/XlmRoBertaForQuestionAnswering.scala | 4 +- .../XlmRoBertaForSequenceClassification.scala | 4 +- .../dl/XlmRoBertaForTokenClassification.scala | 4 +- .../dl/XlnetForSequenceClassification.scala | 4 +- .../dl/XlnetForTokenClassification.scala | 4 +- .../nlp/annotators/ner/crf/NerCrfModel.scala | 3 +- .../nlp/annotators/ner/dl/NerDLModel.scala | 4 +- .../nlp/embeddings/AlbertEmbeddings.scala | 4 +- .../nlp/embeddings/BertEmbeddings.scala | 4 +- .../embeddings/BertSentenceEmbeddings.scala | 4 +- .../nlp/embeddings/CamemBertEmbeddings.scala | 4 +- .../nlp/embeddings/DeBertaEmbeddings.scala | 4 +- .../nlp/embeddings/DistilBertEmbeddings.scala | 7 +- .../nlp/embeddings/Doc2VecModel.scala | 3 +- .../nlp/embeddings/LongformerEmbeddings.scala | 7 +- .../nlp/embeddings/RoBertaEmbeddings.scala | 4 +- .../RoBertaSentenceEmbeddings.scala | 4 +- .../embeddings/UniversalSentenceEncoder.scala | 4 +- .../nlp/embeddings/Word2VecModel.scala | 3 +- .../nlp/embeddings/WordEmbeddings.scala | 4 +- .../nlp/embeddings/WordEmbeddingsModel.scala | 4 +- .../nlp/embeddings/XlmRoBertaEmbeddings.scala | 4 +- .../XlmRoBertaSentenceEmbeddings.scala | 4 +- .../nlp/embeddings/XlnetEmbeddings.scala | 4 +- .../nlp/pretrained/PretrainedPipeline.scala | 7 +- 1337 files changed, 53272 insertions(+), 10275 deletions(-) create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Generate.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Logit/Logit.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/LogitProcessor.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/MinLengthLogitProcessor.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/NoRepeatNgramsLogitProcessor.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/RepetitionPenaltyLogitProcessor.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcess/index.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitProcessorList.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/LogitWarper.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TemperatureLogitWarper.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopKLogitWarper.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/TopPLogitWarper.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Logit/LogitWarper/index.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Logit/index.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamHypotheses.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamScorer.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Search/BeamSearchScorer.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/Search/index.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/Generation/index.html create mode 100644 docs/api/com/johnsnowlabs/ml/ai/util/index.html create mode 100644 docs/api/com/johnsnowlabs/nlp/HasCandidateLabelsProperties.html create mode 100644 docs/api/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification$.html create mode 100644 docs/api/com/johnsnowlabs/nlp/annotators/classifier/dl/BertForZeroShotClassification.html create mode 100644 docs/api/com/johnsnowlabs/nlp/annotators/classifier/dl/ReadBertForZeroShotDLModel.html create mode 100644 docs/api/com/johnsnowlabs/nlp/annotators/classifier/dl/ReadablePretrainedBertForZeroShotModel.html create mode 100644 docs/api/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassification$.html create mode 100644 docs/api/com/johnsnowlabs/nlp/annotators/cv/ConvNextForImageClassification.html create mode 100644 docs/api/com/johnsnowlabs/nlp/annotators/cv/ReadConvNextForImageDLModel.html create mode 100644 docs/api/com/johnsnowlabs/nlp/annotators/cv/ReadablePretrainedConvNextForImageModel.html create mode 100644 docs/api/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer$.html create mode 100644 docs/api/com/johnsnowlabs/nlp/annotators/seq2seq/BartTransformer.html create mode 100644 docs/api/com/johnsnowlabs/nlp/annotators/seq2seq/ReadBartTransformerDLModel.html create mode 100644 docs/api/com/johnsnowlabs/nlp/annotators/seq2seq/ReadablePretrainedBartTransformerModel.html create mode 100644 docs/api/com/johnsnowlabs/nlp/annotators/tokenizer/bpe/BartTokenizer.html create mode 100644 docs/api/python/modules/sparknlp/annotator/classifier_dl/bert_for_zero_shot_classification.html create mode 100644 docs/api/python/modules/sparknlp/annotator/cv/convnext_for_image_classification.html create mode 100644 docs/api/python/modules/sparknlp/annotator/seq2seq/bart_transformer.html create mode 100644 docs/api/python/reference/autosummary/sparknlp/annotator/classifier_dl/bert_for_zero_shot_classification/index.html create mode 100644 docs/api/python/reference/autosummary/sparknlp/annotator/cv/convnext_for_image_classification/index.html create mode 100644 docs/api/python/reference/autosummary/sparknlp/annotator/seq2seq/bart_transformer/index.html create mode 100644 docs/api/python/static/scripts/bootstrap.js.LICENSE.txt create mode 100644 docs/api/python/static/scripts/bootstrap.js.map create mode 100644 docs/api/python/static/scripts/pydata-sphinx-theme.js.map diff --git a/docs/api/com/index.html b/docs/api/com/index.html index 72b6f8a65552..0664cf76d7d6 100644 --- a/docs/api/com/index.html +++ b/docs/api/com/index.html @@ -3,9 +3,9 @@ - Spark NLP 4.3.2 ScalaDoc - com - - + Spark NLP 4.4.0 ScalaDoc - com + + @@ -28,7 +28,7 @@
  • @@ -815,7 +815,7 @@

    Type Members

    in 2019. It is a model trained on 138GB of French text.

    Pretrained models can be loaded with pretrained of the companion object:

    val embeddings = CamemBertEmbeddings.pretrained()
       .setInputCols("token", "document")
       .setOutputCol("camembert_embeddings")

    The default model is "camembert_base", if no name is provided.

    For available pretrained models please see the -Models Hub.

    For extended examples of usage, see the +Models Hub.

    For extended examples of usage, see the Examples and the CamemBertEmbeddingsTestSpec. @@ -873,8 +873,8 @@

    Type Members

    |[0.02690504491329193,0.12104076147079468,0.012526623904705048,-0.031543646007...| |[0.05877285450696945,-0.08773420006036758,-0.06381352990865707,0.122621834278...| +--------------------------------------------------------------------------------+
    See also

    - Annotators Main Page for a list of - transformer based embeddings

    + Annotators Main Page for a list of transformer + based embeddings

  • @@ -1043,8 +1043,8 @@

    Type Members

    |[-0.04192575812339783,-0.5764210224151611,-0.3196685314178467,-0.527840495109...| |[0.15583214163780212,-0.1614152491092682,-0.28423872590065,-0.135491415858268...| +--------------------------------------------------------------------------------+
    See also

    - Annotators Main Page for a list of - transformer based embeddings

    + Annotators Main Page for a list of transformer + based embeddings

  • @@ -1066,8 +1066,7 @@

    Type Members

    over 95% of BERT's performances as measured on the GLUE language understanding benchmark.

    Pretrained models can be loaded with pretrained of the companion object:

    val embeddings = DistilBertEmbeddings.pretrained()
       .setInputCols("document", "token")
       .setOutputCol("embeddings")

    The default model is "distilbert_base_cased", if no name is provided. For available -pretrained models please see the -Models Hub.

    For extended examples of usage, see the +pretrained models please see the Models Hub.

    For extended examples of usage, see the Examples and the DistilBertEmbeddingsTestSpec. @@ -1139,8 +1138,8 @@

    Type Members

    for DistilBertEmbeddings with a token classification layer on top

    DistilBertForSequenceClassification for DistilBertEmbeddings with a sequence classification layer on top

    - Annotators Main Page for a list of - transformer based embeddings

    + Annotators Main Page for a list of transformer + based embeddings

  • @@ -1213,8 +1212,7 @@

    Type Members

    the original C implementation.

    This is the instantiated model of the Doc2VecApproach. For training your own model, please see the documentation of that class.

    Pretrained models can be loaded with pretrained of the companion object:

    val embeddings = Doc2VecModel.pretrained()
       .setInputCols("token")
    -  .setOutputCol("embeddings")

    The default model is "doc2vec_gigaword_300", if no name is provided.

    For available pretrained models please see the -Models Hub.

    Sources :

    For the original C implementation, see https://code.google.com/p/word2vec/

    For the research paper, see + .setOutputCol("embeddings")

    The default model is "doc2vec_gigaword_300", if no name is provided.

    For available pretrained models please see the Models Hub.

    Sources :

    For the original C implementation, see https://code.google.com/p/word2vec/

    For the research paper, see Efficient Estimation of Word Representations in Vector Space and Distributed Representations of Words and Phrases and their Compositionality.

    Example

    import spark.implicits._
    @@ -1278,7 +1276,7 @@ 

    Type Members

    that only perform embedding lookups. The use of an accelerator is recommended.

    Pretrained models can be loaded with pretrained of the companion object:

    val embeddings = ElmoEmbeddings.pretrained()
       .setInputCols("sentence", "token")
       .setOutputCol("elmo_embeddings")

    The default model is "elmo", if no name is provided.

    For available pretrained models please see the -Models Hub.

    The pooling layer can be set with setPoolingLayer to the following values:

    • "word_emb": the character-based word representations with shape [batch_size, +Models Hub.

      The pooling layer can be set with setPoolingLayer to the following values:

      • "word_emb": the character-based word representations with shape [batch_size, max_length, 512].
      • "lstm_outputs1": the first LSTM hidden state with shape [batch_size, max_length, 1024].
      • "lstm_outputs2": the second LSTM hidden state with shape [batch_size, max_length, 1024].
      • "elmo": the weighted sum of the 3 layers, where the weights are trainable. This tensor @@ -1339,7 +1337,7 @@

        Type Members

        |[0.49932169914245605,-0.12706467509269714,0.30969417095184326,0.2643227577209...| |[-0.8871506452560425,-0.20039963722229004,-1.0601330995559692,0.0348707810044...| +--------------------------------------------------------------------------------+
    See also

    - Annotators Main Page for a list of other + Annotators Main Page for a list of other transformer based embeddings

  • @@ -1395,8 +1393,7 @@

    Type Members

    length up to 4,096.

    Pretrained models can be loaded with pretrained of the companion object:

    val embeddings = LongformerEmbeddings.pretrained()
       .setInputCols("document", "token")
       .setOutputCol("embeddings")

    The default model is "longformer_base_4096", if no name is provided. For available -pretrained models please see the -Models Hub.

    For some examples of usage, see +pretrained models please see the Models Hub.

    For some examples of usage, see LongformerEmbeddingsTestSpec. To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669.

    Paper Abstract:

    Transformer-based models are unable to process long sequences due to their self-attention @@ -1459,8 +1456,8 @@

    Type Members

    +--------------------------------------------------------------------------------+
    See also

    LongformerForTokenClassification for Longformer embeddings with a token classification layer on top

    - Annotators Main Page for a list of - transformer based embeddings

    + Annotators Main Page for a list of transformer + based embeddings

  • @@ -1999,7 +1996,7 @@

    Type Members

    objective and training with much larger mini-batches and learning rates.

    Pretrained models can be loaded with pretrained of the companion object:

    val embeddings = RoBertaEmbeddings.pretrained()
       .setInputCols("document", "token")
       .setOutputCol("embeddings")

    The default model is "roberta_base", if no name is provided. For available pretrained models -please see the Models Hub.

    For extended examples of usage, see the +please see the Models Hub.

    For extended examples of usage, see the Examples and the RoBertaEmbeddingsTestSpec. @@ -2067,8 +2064,8 @@

    Type Members

    RoBertaSentenceEmbeddings for sentence-level embeddings

    RoBertaForTokenClassification For RoBerta embeddings with a token classification layer on top

    - Annotators Main Page for a list of - transformer based embeddings

    + Annotators Main Page for a list of transformer + based embeddings

  • @@ -2092,7 +2089,7 @@

    Type Members

    objective and training with much larger mini-batches and learning rates.

    Pretrained models can be loaded with pretrained of the companion object:

    val embeddings = RoBertaSentenceEmbeddings.pretrained()
       .setInputCols("sentence")
       .setOutputCol("sentence_embeddings")

    The default model is "sent_roberta_base", if no name is provided. For available pretrained -models please see the Models Hub.

    To see which models are compatible and how to import them see +models please see the Models Hub.

    To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669 and to see more extended examples, see RoBertaEmbeddingsTestSpec.

    Paper Abstract:

    Language model pretraining has led to significant performance gains but careful comparison @@ -2158,8 +2155,8 @@

    Type Members

    |[0.22409197688102722,-0.4312366545200348,0.1401449590921402,0.356410235166549...| +--------------------------------------------------------------------------------+
    See also

    RoBertaEmbeddings for token-level embeddings

    - Annotators Main Page for a list of - transformer based embeddings

    + Annotators Main Page for a list of transformer + based embeddings

  • @@ -2251,7 +2248,7 @@

    Type Members

    text classification, semantic similarity, clustering and other natural language tasks.

    Pretrained models can be loaded with pretrained of the companion object:

    val useEmbeddings = UniversalSentenceEncoder.pretrained()
       .setInputCols("sentence")
       .setOutputCol("sentence_embeddings")

    The default model is "tfhub_use", if no name is provided. For available pretrained models -please see the Models Hub.

    For extended examples of usage, see the +please see the Models Hub.

    For extended examples of usage, see the Examples and the UniversalSentenceEncoderTestSpec.

    References:

    Universal Sentence Encoder

    https://tfhub.dev/google/universal-sentence-encoder/2

    Paper abstract:

    We present models for encoding sentences into embedding vectors that specifically target @@ -2308,8 +2305,8 @@

    Type Members

    +--------------------------------------------------------------------------------+ |[0.04616805538535118,0.022307956591248512,-0.044395286589860916,-0.0016493503...| +--------------------------------------------------------------------------------+
    See also

    - Annotators Main Page for a list of - transformer based embeddings

    + Annotators Main Page for a list of transformer + based embeddings

  • @@ -2382,8 +2379,7 @@

    Type Members

    the original C implementation.

    This is the instantiated model of the Word2VecApproach. For training your own model, please see the documentation of that class.

    Pretrained models can be loaded with pretrained of the companion object:

    val embeddings = Word2VecModel.pretrained()
       .setInputCols("token")
    -  .setOutputCol("embeddings")

    The default model is "word2vec_gigaword_300", if no name is provided.

    For available pretrained models please see the -Models Hub.

    Sources :

    For the original C implementation, see https://code.google.com/p/word2vec/

    For the research paper, see + .setOutputCol("embeddings")

    The default model is "word2vec_gigaword_300", if no name is provided.

    For available pretrained models please see the Models Hub.

    Sources :

    For the original C implementation, see https://code.google.com/p/word2vec/

    For the research paper, see Efficient Estimation of Word Representations in Vector Space and Distributed Representations of Words and Phrases and their Compositionality.

    Example

    import spark.implicits._
    @@ -2507,8 +2503,8 @@ 

    Type Members

    |[0.9840458631515503,0.7599489092826843,0.9417727589607239,0.8624503016471863] | +----------------------------------------------------------------------------------+
    See also

    SentenceEmbeddings to combine embeddings into a sentence-level representation

    - Annotators Main Page for a list of - transformer based embeddings

    + Annotators Main Page for a list of transformer + based embeddings

  • @@ -2527,7 +2523,7 @@

    Type Members

    Word Embeddings lookup annotator that maps tokens to vectors

    Word Embeddings lookup annotator that maps tokens to vectors

    This is the instantiated model of WordEmbeddings.

    Pretrained models can be loaded with pretrained of the companion object:

    val embeddings = WordEmbeddingsModel.pretrained()
         .setInputCols("document", "token")
         .setOutputCol("embeddings")

    The default model is "glove_100d", if no name is provided. For available pretrained models -please see the Models Hub.

    There are also two convenient functions to retrieve the embeddings coverage with respect to +please see the Models Hub.

    There are also two convenient functions to retrieve the embeddings coverage with respect to the transformed dataset:

    • withCoverageColumn(dataset, embeddingsCol, outputCol): Adds a custom column with word coverage stats for the embedded field: (coveredWords, totalWords, coveragePercentage). This creates a new column with statistics for each row.
    val wordsCoverage = WordEmbeddingsModel.withCoverageColumn(resultDF, "embeddings", "cov_embeddings")
    @@ -2589,8 +2585,8 @@ 

    Type Members

    |[-0.3397899866104126,0.20940999686717987,0.46347999572753906,-0.6479200124740...| +--------------------------------------------------------------------------------+
    See also

    SentenceEmbeddings to combine embeddings into a sentence-level representation

    - Annotators Main Page for a list of - transformer based embeddings

    + Annotators Main Page for a list of transformer + based embeddings

  • @@ -2650,7 +2646,7 @@

    Type Members

    .setInputCols("document", "token") .setOutputCol("embeddings")

    The default model is "xlm_roberta_base", default language is "xx" (meaning multi-lingual), if no values are provided. For available pretrained models please see the -Models Hub.

    For extended examples of usage, see the +Models Hub.

    For extended examples of usage, see the Examples and the XlmRoBertaEmbeddingsTestSpec. @@ -2721,8 +2717,8 @@

    Type Members

    XlmRoBertaSentenceEmbeddings for sentence-level embeddings

    XlmRoBertaForTokenClassification For XlmRoBerta embeddings with a token classification layer on top

    - Annotators Main Page for a list of - transformer based embeddings

    + Annotators Main Page for a list of transformer + based embeddings

  • @@ -2747,7 +2743,7 @@

    Type Members

    .setInputCols("document") .setOutputCol("sentence_embeddings")

    The default model is "sent_xlm_roberta_base", default language is "xx" (meaning multi-lingual), if no values are provided. For available pretrained models please see the -Models Hub.

    To see which models are compatible and how to import them see +Models Hub.

    To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669 and to see more extended examples, see XlmRoBertaSentenceEmbeddingsTestSpec.

    Paper Abstract:

    This paper shows that pretraining multilingual language models at scale leads to significant @@ -2816,8 +2812,8 @@

    Type Members

    |[0.004710011184215546,-0.022148698568344116,0.011723337695002556,-0.013356896...| +--------------------------------------------------------------------------------+
    See also

    XlmRoBertaEmbeddings for token-level embeddings

    - Annotators Main Page for a list of - transformer based embeddings

    + Annotators Main Page for a list of transformer + based embeddings

  • @@ -2909,8 +2905,8 @@

    Type Members

    +--------------------------------------------------------------------------------+
    See also

    XlnetForTokenClassification For Xlnet embeddings with a token classification layer on top

    - Annotators Main Page for a list of - transformer based embeddings

    + Annotators Main Page for a list of transformer + based embeddings

  • diff --git a/docs/api/com/johnsnowlabs/nlp/functions$$EachAnnotations.html b/docs/api/com/johnsnowlabs/nlp/functions$$EachAnnotations.html index 1d5230fd5079..f98a4e148dd7 100644 --- a/docs/api/com/johnsnowlabs/nlp/functions$$EachAnnotations.html +++ b/docs/api/com/johnsnowlabs/nlp/functions$$EachAnnotations.html @@ -3,9 +3,9 @@ - Spark NLP 4.3.2 ScalaDoc - com.johnsnowlabs.nlp.functions.EachAnnotations - - + Spark NLP 4.4.0 ScalaDoc - com.johnsnowlabs.nlp.functions.EachAnnotations + + @@ -28,7 +28,7 @@